-- -- PostgreSQL database dump -- SET statement_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = off; SET check_function_bodies = false; SET client_min_messages = warning; SET escape_string_warning = off; -- -- Name: plpgsql; Type: PROCEDURAL LANGUAGE; Schema: -; Owner: postgres -- CREATE PROCEDURAL LANGUAGE plpgsql; ALTER PROCEDURAL LANGUAGE plpgsql OWNER TO postgres; SET search_path = public, pg_catalog; -- -- Name: _current_event(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION _current_event() RETURNS bigint LANGUAGE plpgsql AS $$ DECLARE eid int8; BEGIN IF NOT EXISTS(SELECT table_name FROM information_schema.tables where table_name = '_current_session') THEN RETURN 0; END IF; SELECT INTO eid event_id FROM _current_session; RETURN eid; END;$$; ALTER FUNCTION public._current_event() OWNER TO db_user; -- -- Name: _current_or_new_event(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION _current_or_new_event() RETURNS bigint LANGUAGE plpgsql AS $$ DECLARE eid int8; BEGIN SELECT INTO eid _current_event(); IF eid = 0 OR eid IS NULL THEN SELECT INTO eid ome_nextval('seq_event'); INSERT INTO event (id, permissions, status, time, experimenter, experimentergroup, session, type) SELECT eid, -52, 'TRIGGERED', clock_timestamp(), 0, 0, 0, 0; END IF; RETURN eid; END;$$; ALTER FUNCTION public._current_or_new_event() OWNER TO db_user; -- -- Name: _prepare_session(bigint, bigint, bigint); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION _prepare_session(_event_id bigint, _user_id bigint, _group_id bigint) RETURNS void LANGUAGE plpgsql AS $$ BEGIN IF NOT EXISTS(SELECT table_name FROM information_schema.tables where table_name = '_current_session') THEN CREATE TEMP TABLE _current_session ("event_id" int8, "user_id" int8, "group_id" int8) ON COMMIT DELETE ROWS; INSERT INTO _current_session VALUES (_event_id, _user_id, _group_id); ELSE DELETE FROM _current_session; INSERT INTO _current_session VALUES (_event_id, _user_id, _group_id); END IF; END;$$; ALTER FUNCTION public._prepare_session(_event_id bigint, _user_id bigint, _group_id bigint) OWNER TO db_user; -- -- Name: annotation_link_delete_trigger(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION annotation_link_delete_trigger() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE eid int8; BEGIN SELECT INTO eid _current_or_new_event(); INSERT INTO eventlog (id, action, permissions, entityid, entitytype, event) SELECT ome_nextval('seq_eventlog'), 'REINDEX', -52, old.parent, TG_ARGV[0], eid; RETURN old; END;$$; ALTER FUNCTION public.annotation_link_delete_trigger() OWNER TO db_user; -- -- Name: annotation_link_event_trigger(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION annotation_link_event_trigger() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE eid int8; BEGIN SELECT INTO eid _current_or_new_event(); INSERT INTO eventlog (id, action, permissions, entityid, entitytype, event) SELECT ome_nextval('seq_eventlog'), 'REINDEX', -52, new.parent, TG_ARGV[0], eid; RETURN new; END;$$; ALTER FUNCTION public.annotation_link_event_trigger() OWNER TO db_user; -- -- Name: annotation_update_event_trigger(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION annotation_update_event_trigger() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE rec RECORD; eid int8; cnt int8; BEGIN IF NOT EXISTS(SELECT table_name FROM information_schema.tables where table_name = '_updated_annotations') THEN CREATE TEMP TABLE _updated_annotations (entitytype varchar, entityid int8) ON COMMIT DELETE ROWS; END IF; FOR rec IN SELECT id, parent FROM datasetannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.containers.Dataset'); END LOOP; FOR rec IN SELECT id, parent FROM plateannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.screen.Plate'); END LOOP; FOR rec IN SELECT id, parent FROM channelannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.core.Channel'); END LOOP; FOR rec IN SELECT id, parent FROM wellsampleannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.screen.WellSample'); END LOOP; FOR rec IN SELECT id, parent FROM planeinfoannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.core.PlaneInfo'); END LOOP; FOR rec IN SELECT id, parent FROM namespaceannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.meta.Namespace'); END LOOP; FOR rec IN SELECT id, parent FROM imageannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.core.Image'); END LOOP; FOR rec IN SELECT id, parent FROM experimentergroupannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.meta.ExperimenterGroup'); END LOOP; FOR rec IN SELECT id, parent FROM projectannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.containers.Project'); END LOOP; FOR rec IN SELECT id, parent FROM pixelsannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.core.Pixels'); END LOOP; FOR rec IN SELECT id, parent FROM roiannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.roi.Roi'); END LOOP; FOR rec IN SELECT id, parent FROM wellannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.screen.Well'); END LOOP; FOR rec IN SELECT id, parent FROM reagentannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.screen.Reagent'); END LOOP; FOR rec IN SELECT id, parent FROM originalfileannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.core.OriginalFile'); END LOOP; FOR rec IN SELECT id, parent FROM annotationannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.annotations.Annotation'); END LOOP; FOR rec IN SELECT id, parent FROM screenannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.screen.Screen'); END LOOP; FOR rec IN SELECT id, parent FROM sessionannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.meta.Session'); END LOOP; FOR rec IN SELECT id, parent FROM plateacquisitionannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.screen.PlateAcquisition'); END LOOP; FOR rec IN SELECT id, parent FROM nodeannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.meta.Node'); END LOOP; FOR rec IN SELECT id, parent FROM experimenterannotationlink WHERE child = new.id LOOP INSERT INTO _updated_annotations (entityid, entitytype) values (rec.parent, 'ome.model.meta.Experimenter'); END LOOP; SELECT INTO cnt count(*) FROM _updated_annotations; IF cnt <> 0 THEN SELECT INTO eid _current_or_new_event(); INSERT INTO eventlog (id, action, permissions, entityid, entitytype, event) SELECT ome_nextval('seq_eventlog'), 'REINDEX', -52, entityid, entitytype, eid FROM _updated_annotations; END IF; RETURN new; END;$$; ALTER FUNCTION public.annotation_update_event_trigger() OWNER TO db_user; -- -- Name: channel_pixels_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION channel_pixels_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.pixels = old.pixels AND new.pixels_index = old.pixels_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM channel WHERE pixels = new.pixels AND pixels_index = new.pixels_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping channel % via (-1 - oldvalue )', duplicate; UPDATE channel SET pixels_index = -1 - pixels_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.channel_pixels_index_move() OWNER TO db_user; -- -- Name: channelbinding_renderingdef_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION channelbinding_renderingdef_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.renderingDef = old.renderingDef AND new.renderingDef_index = old.renderingDef_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM channelbinding WHERE renderingDef = new.renderingDef AND renderingDef_index = new.renderingDef_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping channelbinding % via (-1 - oldvalue )', duplicate; UPDATE channelbinding SET renderingDef_index = -1 - renderingDef_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.channelbinding_renderingdef_index_move() OWNER TO db_user; -- -- Name: codomainmapcontext_renderingdef_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION codomainmapcontext_renderingdef_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.renderingDef = old.renderingDef AND new.renderingDef_index = old.renderingDef_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM codomainmapcontext WHERE renderingDef = new.renderingDef AND renderingDef_index = new.renderingDef_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping codomainmapcontext % via (-1 - oldvalue )', duplicate; UPDATE codomainmapcontext SET renderingDef_index = -1 - renderingDef_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.codomainmapcontext_renderingdef_index_move() OWNER TO db_user; -- -- Name: groupexperimentermap_child_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION groupexperimentermap_child_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.child = old.child AND new.child_index = old.child_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM groupexperimentermap WHERE child = new.child AND child_index = new.child_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping groupexperimentermap % via (-1 - oldvalue )', duplicate; UPDATE groupexperimentermap SET child_index = -1 - child_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.groupexperimentermap_child_index_move() OWNER TO db_user; -- -- Name: lightpathexcitationfilterlink_parent_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION lightpathexcitationfilterlink_parent_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.parent = old.parent AND new.parent_index = old.parent_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM lightpathexcitationfilterlink WHERE parent = new.parent AND parent_index = new.parent_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping lightpathexcitationfilterlink % via (-1 - oldvalue )', duplicate; UPDATE lightpathexcitationfilterlink SET parent_index = -1 - parent_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.lightpathexcitationfilterlink_parent_index_move() OWNER TO db_user; -- -- Name: ome_nextval(character varying); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION ome_nextval(seq character varying) RETURNS bigint LANGUAGE plpgsql AS $$ BEGIN RETURN ome_nextval(seq, 1); END;$$; ALTER FUNCTION public.ome_nextval(seq character varying) OWNER TO db_user; -- -- Name: ome_nextval(character varying, integer); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION ome_nextval(seq character varying, increment integer) RETURNS bigint LANGUAGE plpgsql AS $$ DECLARE Lid int4; nv int8; BEGIN SELECT id INTO Lid FROM _lock_ids WHERE name = seq; IF Lid IS NULL THEN SELECT INTO Lid nextval('_lock_seq'); INSERT INTO _lock_ids (id, name) VALUES (Lid, seq); END IF; BEGIN PERFORM pg_advisory_lock(1, Lid); EXCEPTION WHEN undefined_function THEN RAISE DEBUG 'No function pg_advisory_lock'; END; PERFORM nextval(seq) FROM generate_series(1, increment); SELECT currval(seq) INTO nv; BEGIN PERFORM pg_advisory_unlock(1, Lid); EXCEPTION WHEN undefined_function THEN RAISE DEBUG 'No function pg_advisory_unlock'; END; RETURN nv; END;$$; ALTER FUNCTION public.ome_nextval(seq character varying, increment integer) OWNER TO db_user; -- -- Name: ome_perms(bigint); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION ome_perms(p bigint) RETURNS character varying LANGUAGE plpgsql AS $$ DECLARE ur CHAR DEFAULT '-'; uw CHAR DEFAULT '-'; gr CHAR DEFAULT '-'; gw CHAR DEFAULT '-'; wr CHAR DEFAULT '-'; ww CHAR DEFAULT '-'; BEGIN -- annotate flags may be overwritten by write flags -- shift 8 (-RWA--------) SELECT INTO ur CASE WHEN (p & 1024) = 1024 THEN 'r' ELSE '-' END; SELECT INTO uw CASE WHEN (p & 512) = 512 THEN 'w' WHEN (p & 256) = 256 THEN 'a' ELSE '-' END; -- shift 4 (-----RWA----) SELECT INTO gr CASE WHEN (p & 64) = 64 THEN 'r' ELSE '-' END; SELECT INTO gw CASE WHEN (p & 32) = 32 THEN 'w' WHEN (p & 16) = 16 THEN 'a' ELSE '-' END; -- shift 0 (---------RWA) SELECT INTO wr CASE WHEN (p & 4) = 4 THEN 'r' ELSE '-' END; SELECT INTO ww CASE WHEN (p & 2) = 2 THEN 'w' WHEN (p & 1) = 1 THEN 'a' ELSE '-' END; RETURN ur || uw || gr || gw || wr || ww; END;$$; ALTER FUNCTION public.ome_perms(p bigint) OWNER TO db_user; -- -- Name: pixels_image_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION pixels_image_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.image = old.image AND new.image_index = old.image_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM pixels WHERE image = new.image AND image_index = new.image_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping pixels % via (-1 - oldvalue )', duplicate; UPDATE pixels SET image_index = -1 - image_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.pixels_image_index_move() OWNER TO db_user; -- -- Name: shape_roi_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION shape_roi_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.roi = old.roi AND new.roi_index = old.roi_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM shape WHERE roi = new.roi AND roi_index = new.roi_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping shape % via (-1 - oldvalue )', duplicate; UPDATE shape SET roi_index = -1 - roi_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.shape_roi_index_move() OWNER TO db_user; -- -- Name: uuid(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION uuid() RETURNS character LANGUAGE sql AS $$ select substring(x.my_rand from 1 for 8)||'-'|| substring(x.my_rand from 9 for 4)||'-4'|| substring(x.my_rand from 13 for 3)||'-'||x.clock_1|| substring(x.my_rand from 16 for 3)||'-'|| substring(x.my_rand from 19 for 12) from (select md5(clock_timestamp()::text||random()) as my_rand, to_hex(8+(3*random())::int) as clock_1) as x;$$; ALTER FUNCTION public.uuid() OWNER TO db_user; -- -- Name: wellsample_well_index_move(); Type: FUNCTION; Schema: public; Owner: db_user -- CREATE FUNCTION wellsample_well_index_move() RETURNS trigger LANGUAGE plpgsql AS $$ DECLARE duplicate INT8; BEGIN -- Avoids a query if the new and old values of x are the same. IF new.well = old.well AND new.well_index = old.well_index THEN RETURN new; END IF; -- At most, there should be one duplicate SELECT id INTO duplicate FROM wellsample WHERE well = new.well AND well_index = new.well_index OFFSET 0 LIMIT 1; IF duplicate IS NOT NULL THEN RAISE NOTICE 'Remapping wellsample % via (-1 - oldvalue )', duplicate; UPDATE wellsample SET well_index = -1 - well_index WHERE id = duplicate; END IF; RETURN new; END;$$; ALTER FUNCTION public.wellsample_well_index_move() OWNER TO db_user; -- -- Name: _lock_seq; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE _lock_seq START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public._lock_seq OWNER TO db_user; -- -- Name: _lock_seq; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('_lock_seq', 109, true); SET default_tablespace = ''; SET default_with_oids = false; -- -- Name: _lock_ids; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE _lock_ids ( name character varying(255) NOT NULL, id integer DEFAULT nextval('_lock_seq'::regclass) NOT NULL ); ALTER TABLE public._lock_ids OWNER TO db_user; -- -- Name: acquisitionmode; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE acquisitionmode ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.acquisitionmode OWNER TO db_user; -- -- Name: annotation; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE annotation ( discriminator character varying(31) NOT NULL, id bigint NOT NULL, description text, permissions bigint NOT NULL, ns character varying(255), version integer, timevalue timestamp without time zone, textvalue text, boolvalue boolean, termvalue text, longvalue bigint, doublevalue double precision, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, file bigint ); ALTER TABLE public.annotation OWNER TO db_user; -- -- Name: annotationannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE annotationannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.annotationannotationlink OWNER TO db_user; -- -- Name: arc; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE arc ( lightsource_id bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.arc OWNER TO db_user; -- -- Name: arctype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE arctype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.arctype OWNER TO db_user; -- -- Name: binning; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE binning ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.binning OWNER TO db_user; -- -- Name: channel; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE channel ( id bigint NOT NULL, alpha integer, blue integer, permissions bigint NOT NULL, green integer, red integer, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, logicalchannel bigint NOT NULL, pixels bigint NOT NULL, statsinfo bigint, pixels_index integer NOT NULL ); ALTER TABLE public.channel OWNER TO db_user; -- -- Name: channelannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE channelannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.channelannotationlink OWNER TO db_user; -- -- Name: channelbinding; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE channelbinding ( id bigint NOT NULL, active boolean NOT NULL, alpha integer NOT NULL, blue integer NOT NULL, coefficient double precision NOT NULL, permissions bigint NOT NULL, green integer NOT NULL, inputend double precision NOT NULL, inputstart double precision NOT NULL, noisereduction boolean NOT NULL, red integer NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, family bigint NOT NULL, renderingdef bigint NOT NULL, renderingdef_index integer NOT NULL ); ALTER TABLE public.channelbinding OWNER TO db_user; -- -- Name: codomainmapcontext; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE codomainmapcontext ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, renderingdef bigint NOT NULL, renderingdef_index integer NOT NULL ); ALTER TABLE public.codomainmapcontext OWNER TO db_user; -- -- Name: configuration; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE configuration ( name character varying(255) NOT NULL, value text ); ALTER TABLE public.configuration OWNER TO db_user; -- -- Name: contrastmethod; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE contrastmethod ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.contrastmethod OWNER TO db_user; -- -- Name: contraststretchingcontext; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE contraststretchingcontext ( xend integer NOT NULL, xstart integer NOT NULL, yend integer NOT NULL, ystart integer NOT NULL, codomainmapcontext_id bigint NOT NULL ); ALTER TABLE public.contraststretchingcontext OWNER TO db_user; -- -- Name: correction; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE correction ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.correction OWNER TO db_user; -- -- Name: count_annotation_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_annotation_annotationlinks_by_owner AS SELECT annotationannotationlink.parent AS annotation_id, annotationannotationlink.owner_id, count(*) AS count FROM annotationannotationlink GROUP BY annotationannotationlink.parent, annotationannotationlink.owner_id ORDER BY annotationannotationlink.parent; ALTER TABLE public.count_annotation_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_channel_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_channel_annotationlinks_by_owner AS SELECT channelannotationlink.parent AS channel_id, channelannotationlink.owner_id, count(*) AS count FROM channelannotationlink GROUP BY channelannotationlink.parent, channelannotationlink.owner_id ORDER BY channelannotationlink.parent; ALTER TABLE public.count_channel_annotationlinks_by_owner OWNER TO db_user; -- -- Name: datasetannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE datasetannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.datasetannotationlink OWNER TO db_user; -- -- Name: count_dataset_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_dataset_annotationlinks_by_owner AS SELECT datasetannotationlink.parent AS dataset_id, datasetannotationlink.owner_id, count(*) AS count FROM datasetannotationlink GROUP BY datasetannotationlink.parent, datasetannotationlink.owner_id ORDER BY datasetannotationlink.parent; ALTER TABLE public.count_dataset_annotationlinks_by_owner OWNER TO db_user; -- -- Name: datasetimagelink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE datasetimagelink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.datasetimagelink OWNER TO db_user; -- -- Name: count_dataset_imagelinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_dataset_imagelinks_by_owner AS SELECT datasetimagelink.parent AS dataset_id, datasetimagelink.owner_id, count(*) AS count FROM datasetimagelink GROUP BY datasetimagelink.parent, datasetimagelink.owner_id ORDER BY datasetimagelink.parent; ALTER TABLE public.count_dataset_imagelinks_by_owner OWNER TO db_user; -- -- Name: projectdatasetlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE projectdatasetlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.projectdatasetlink OWNER TO db_user; -- -- Name: count_dataset_projectlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_dataset_projectlinks_by_owner AS SELECT projectdatasetlink.child AS dataset_id, projectdatasetlink.owner_id, count(*) AS count FROM projectdatasetlink GROUP BY projectdatasetlink.child, projectdatasetlink.owner_id ORDER BY projectdatasetlink.child; ALTER TABLE public.count_dataset_projectlinks_by_owner OWNER TO db_user; -- -- Name: count_experimenter_annotationlinks_by_owner; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE count_experimenter_annotationlinks_by_owner ( experimenter_id bigint NOT NULL, count bigint NOT NULL, owner_id bigint NOT NULL ); ALTER TABLE public.count_experimenter_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_experimentergroup_annotationlinks_by_owner; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE count_experimentergroup_annotationlinks_by_owner ( experimentergroup_id bigint NOT NULL, count bigint NOT NULL, owner_id bigint NOT NULL ); ALTER TABLE public.count_experimentergroup_annotationlinks_by_owner OWNER TO db_user; -- -- Name: filtersetemissionfilterlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filtersetemissionfilterlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.filtersetemissionfilterlink OWNER TO db_user; -- -- Name: count_filter_emissionfilterlink_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_filter_emissionfilterlink_by_owner AS SELECT filtersetemissionfilterlink.child AS filter_id, filtersetemissionfilterlink.owner_id, count(*) AS count FROM filtersetemissionfilterlink GROUP BY filtersetemissionfilterlink.child, filtersetemissionfilterlink.owner_id ORDER BY filtersetemissionfilterlink.child; ALTER TABLE public.count_filter_emissionfilterlink_by_owner OWNER TO db_user; -- -- Name: filtersetexcitationfilterlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filtersetexcitationfilterlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.filtersetexcitationfilterlink OWNER TO db_user; -- -- Name: count_filter_excitationfilterlink_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_filter_excitationfilterlink_by_owner AS SELECT filtersetexcitationfilterlink.child AS filter_id, filtersetexcitationfilterlink.owner_id, count(*) AS count FROM filtersetexcitationfilterlink GROUP BY filtersetexcitationfilterlink.child, filtersetexcitationfilterlink.owner_id ORDER BY filtersetexcitationfilterlink.child; ALTER TABLE public.count_filter_excitationfilterlink_by_owner OWNER TO db_user; -- -- Name: count_filterset_emissionfilterlink_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_filterset_emissionfilterlink_by_owner AS SELECT filtersetemissionfilterlink.parent AS filterset_id, filtersetemissionfilterlink.owner_id, count(*) AS count FROM filtersetemissionfilterlink GROUP BY filtersetemissionfilterlink.parent, filtersetemissionfilterlink.owner_id ORDER BY filtersetemissionfilterlink.parent; ALTER TABLE public.count_filterset_emissionfilterlink_by_owner OWNER TO db_user; -- -- Name: count_filterset_excitationfilterlink_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_filterset_excitationfilterlink_by_owner AS SELECT filtersetexcitationfilterlink.parent AS filterset_id, filtersetexcitationfilterlink.owner_id, count(*) AS count FROM filtersetexcitationfilterlink GROUP BY filtersetexcitationfilterlink.parent, filtersetexcitationfilterlink.owner_id ORDER BY filtersetexcitationfilterlink.parent; ALTER TABLE public.count_filterset_excitationfilterlink_by_owner OWNER TO db_user; -- -- Name: imageannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE imageannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.imageannotationlink OWNER TO db_user; -- -- Name: count_image_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_image_annotationlinks_by_owner AS SELECT imageannotationlink.parent AS image_id, imageannotationlink.owner_id, count(*) AS count FROM imageannotationlink GROUP BY imageannotationlink.parent, imageannotationlink.owner_id ORDER BY imageannotationlink.parent; ALTER TABLE public.count_image_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_image_datasetlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_image_datasetlinks_by_owner AS SELECT datasetimagelink.child AS image_id, datasetimagelink.owner_id, count(*) AS count FROM datasetimagelink GROUP BY datasetimagelink.child, datasetimagelink.owner_id ORDER BY datasetimagelink.child; ALTER TABLE public.count_image_datasetlinks_by_owner OWNER TO db_user; -- -- Name: joboriginalfilelink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE joboriginalfilelink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.joboriginalfilelink OWNER TO db_user; -- -- Name: count_job_originalfilelinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_job_originalfilelinks_by_owner AS SELECT joboriginalfilelink.parent AS job_id, joboriginalfilelink.owner_id, count(*) AS count FROM joboriginalfilelink GROUP BY joboriginalfilelink.parent, joboriginalfilelink.owner_id ORDER BY joboriginalfilelink.parent; ALTER TABLE public.count_job_originalfilelinks_by_owner OWNER TO db_user; -- -- Name: lightpathemissionfilterlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lightpathemissionfilterlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.lightpathemissionfilterlink OWNER TO db_user; -- -- Name: count_lightpath_emissionfilterlink_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_lightpath_emissionfilterlink_by_owner AS SELECT lightpathemissionfilterlink.parent AS lightpath_id, lightpathemissionfilterlink.owner_id, count(*) AS count FROM lightpathemissionfilterlink GROUP BY lightpathemissionfilterlink.parent, lightpathemissionfilterlink.owner_id ORDER BY lightpathemissionfilterlink.parent; ALTER TABLE public.count_lightpath_emissionfilterlink_by_owner OWNER TO db_user; -- -- Name: lightpathexcitationfilterlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lightpathexcitationfilterlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL, parent_index integer NOT NULL ); ALTER TABLE public.lightpathexcitationfilterlink OWNER TO db_user; -- -- Name: count_lightpath_excitationfilterlink_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_lightpath_excitationfilterlink_by_owner AS SELECT lightpathexcitationfilterlink.parent AS lightpath_id, lightpathexcitationfilterlink.owner_id, count(*) AS count FROM lightpathexcitationfilterlink GROUP BY lightpathexcitationfilterlink.parent, lightpathexcitationfilterlink.owner_id ORDER BY lightpathexcitationfilterlink.parent; ALTER TABLE public.count_lightpath_excitationfilterlink_by_owner OWNER TO db_user; -- -- Name: namespaceannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE namespaceannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.namespaceannotationlink OWNER TO db_user; -- -- Name: count_namespace_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_namespace_annotationlinks_by_owner AS SELECT namespaceannotationlink.parent AS namespace_id, namespaceannotationlink.owner_id, count(*) AS count FROM namespaceannotationlink GROUP BY namespaceannotationlink.parent, namespaceannotationlink.owner_id ORDER BY namespaceannotationlink.parent; ALTER TABLE public.count_namespace_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_node_annotationlinks_by_owner; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE count_node_annotationlinks_by_owner ( node_id bigint NOT NULL, count bigint NOT NULL, owner_id bigint NOT NULL ); ALTER TABLE public.count_node_annotationlinks_by_owner OWNER TO db_user; -- -- Name: originalfileannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE originalfileannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.originalfileannotationlink OWNER TO db_user; -- -- Name: count_originalfile_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_originalfile_annotationlinks_by_owner AS SELECT originalfileannotationlink.parent AS originalfile_id, originalfileannotationlink.owner_id, count(*) AS count FROM originalfileannotationlink GROUP BY originalfileannotationlink.parent, originalfileannotationlink.owner_id ORDER BY originalfileannotationlink.parent; ALTER TABLE public.count_originalfile_annotationlinks_by_owner OWNER TO db_user; -- -- Name: pixelsoriginalfilemap; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE pixelsoriginalfilemap ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.pixelsoriginalfilemap OWNER TO db_user; -- -- Name: count_originalfile_pixelsfilemaps_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_originalfile_pixelsfilemaps_by_owner AS SELECT pixelsoriginalfilemap.parent AS originalfile_id, pixelsoriginalfilemap.owner_id, count(*) AS count FROM pixelsoriginalfilemap GROUP BY pixelsoriginalfilemap.parent, pixelsoriginalfilemap.owner_id ORDER BY pixelsoriginalfilemap.parent; ALTER TABLE public.count_originalfile_pixelsfilemaps_by_owner OWNER TO db_user; -- -- Name: pixelsannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE pixelsannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.pixelsannotationlink OWNER TO db_user; -- -- Name: count_pixels_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_pixels_annotationlinks_by_owner AS SELECT pixelsannotationlink.parent AS pixels_id, pixelsannotationlink.owner_id, count(*) AS count FROM pixelsannotationlink GROUP BY pixelsannotationlink.parent, pixelsannotationlink.owner_id ORDER BY pixelsannotationlink.parent; ALTER TABLE public.count_pixels_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_pixels_pixelsfilemaps_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_pixels_pixelsfilemaps_by_owner AS SELECT pixelsoriginalfilemap.child AS pixels_id, pixelsoriginalfilemap.owner_id, count(*) AS count FROM pixelsoriginalfilemap GROUP BY pixelsoriginalfilemap.child, pixelsoriginalfilemap.owner_id ORDER BY pixelsoriginalfilemap.child; ALTER TABLE public.count_pixels_pixelsfilemaps_by_owner OWNER TO db_user; -- -- Name: planeinfoannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE planeinfoannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.planeinfoannotationlink OWNER TO db_user; -- -- Name: count_planeinfo_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_planeinfo_annotationlinks_by_owner AS SELECT planeinfoannotationlink.parent AS planeinfo_id, planeinfoannotationlink.owner_id, count(*) AS count FROM planeinfoannotationlink GROUP BY planeinfoannotationlink.parent, planeinfoannotationlink.owner_id ORDER BY planeinfoannotationlink.parent; ALTER TABLE public.count_planeinfo_annotationlinks_by_owner OWNER TO db_user; -- -- Name: plateannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE plateannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.plateannotationlink OWNER TO db_user; -- -- Name: count_plate_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_plate_annotationlinks_by_owner AS SELECT plateannotationlink.parent AS plate_id, plateannotationlink.owner_id, count(*) AS count FROM plateannotationlink GROUP BY plateannotationlink.parent, plateannotationlink.owner_id ORDER BY plateannotationlink.parent; ALTER TABLE public.count_plate_annotationlinks_by_owner OWNER TO db_user; -- -- Name: screenplatelink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE screenplatelink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.screenplatelink OWNER TO db_user; -- -- Name: count_plate_screenlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_plate_screenlinks_by_owner AS SELECT screenplatelink.child AS plate_id, screenplatelink.owner_id, count(*) AS count FROM screenplatelink GROUP BY screenplatelink.child, screenplatelink.owner_id ORDER BY screenplatelink.child; ALTER TABLE public.count_plate_screenlinks_by_owner OWNER TO db_user; -- -- Name: plateacquisitionannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE plateacquisitionannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.plateacquisitionannotationlink OWNER TO db_user; -- -- Name: count_plateacquisition_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_plateacquisition_annotationlinks_by_owner AS SELECT plateacquisitionannotationlink.parent AS plateacquisition_id, plateacquisitionannotationlink.owner_id, count(*) AS count FROM plateacquisitionannotationlink GROUP BY plateacquisitionannotationlink.parent, plateacquisitionannotationlink.owner_id ORDER BY plateacquisitionannotationlink.parent; ALTER TABLE public.count_plateacquisition_annotationlinks_by_owner OWNER TO db_user; -- -- Name: projectannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE projectannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.projectannotationlink OWNER TO db_user; -- -- Name: count_project_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_project_annotationlinks_by_owner AS SELECT projectannotationlink.parent AS project_id, projectannotationlink.owner_id, count(*) AS count FROM projectannotationlink GROUP BY projectannotationlink.parent, projectannotationlink.owner_id ORDER BY projectannotationlink.parent; ALTER TABLE public.count_project_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_project_datasetlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_project_datasetlinks_by_owner AS SELECT projectdatasetlink.parent AS project_id, projectdatasetlink.owner_id, count(*) AS count FROM projectdatasetlink GROUP BY projectdatasetlink.parent, projectdatasetlink.owner_id ORDER BY projectdatasetlink.parent; ALTER TABLE public.count_project_datasetlinks_by_owner OWNER TO db_user; -- -- Name: reagentannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE reagentannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.reagentannotationlink OWNER TO db_user; -- -- Name: count_reagent_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_reagent_annotationlinks_by_owner AS SELECT reagentannotationlink.parent AS reagent_id, reagentannotationlink.owner_id, count(*) AS count FROM reagentannotationlink GROUP BY reagentannotationlink.parent, reagentannotationlink.owner_id ORDER BY reagentannotationlink.parent; ALTER TABLE public.count_reagent_annotationlinks_by_owner OWNER TO db_user; -- -- Name: wellreagentlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE wellreagentlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.wellreagentlink OWNER TO db_user; -- -- Name: count_reagent_welllinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_reagent_welllinks_by_owner AS SELECT wellreagentlink.child AS reagent_id, wellreagentlink.owner_id, count(*) AS count FROM wellreagentlink GROUP BY wellreagentlink.child, wellreagentlink.owner_id ORDER BY wellreagentlink.child; ALTER TABLE public.count_reagent_welllinks_by_owner OWNER TO db_user; -- -- Name: roiannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE roiannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.roiannotationlink OWNER TO db_user; -- -- Name: count_roi_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_roi_annotationlinks_by_owner AS SELECT roiannotationlink.parent AS roi_id, roiannotationlink.owner_id, count(*) AS count FROM roiannotationlink GROUP BY roiannotationlink.parent, roiannotationlink.owner_id ORDER BY roiannotationlink.parent; ALTER TABLE public.count_roi_annotationlinks_by_owner OWNER TO db_user; -- -- Name: screenannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE screenannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.screenannotationlink OWNER TO db_user; -- -- Name: count_screen_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_screen_annotationlinks_by_owner AS SELECT screenannotationlink.parent AS screen_id, screenannotationlink.owner_id, count(*) AS count FROM screenannotationlink GROUP BY screenannotationlink.parent, screenannotationlink.owner_id ORDER BY screenannotationlink.parent; ALTER TABLE public.count_screen_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_screen_platelinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_screen_platelinks_by_owner AS SELECT screenplatelink.parent AS screen_id, screenplatelink.owner_id, count(*) AS count FROM screenplatelink GROUP BY screenplatelink.parent, screenplatelink.owner_id ORDER BY screenplatelink.parent; ALTER TABLE public.count_screen_platelinks_by_owner OWNER TO db_user; -- -- Name: count_session_annotationlinks_by_owner; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE count_session_annotationlinks_by_owner ( session_id bigint NOT NULL, count bigint NOT NULL, owner_id bigint NOT NULL ); ALTER TABLE public.count_session_annotationlinks_by_owner OWNER TO db_user; -- -- Name: wellannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE wellannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.wellannotationlink OWNER TO db_user; -- -- Name: count_well_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_well_annotationlinks_by_owner AS SELECT wellannotationlink.parent AS well_id, wellannotationlink.owner_id, count(*) AS count FROM wellannotationlink GROUP BY wellannotationlink.parent, wellannotationlink.owner_id ORDER BY wellannotationlink.parent; ALTER TABLE public.count_well_annotationlinks_by_owner OWNER TO db_user; -- -- Name: count_well_reagentlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_well_reagentlinks_by_owner AS SELECT wellreagentlink.parent AS well_id, wellreagentlink.owner_id, count(*) AS count FROM wellreagentlink GROUP BY wellreagentlink.parent, wellreagentlink.owner_id ORDER BY wellreagentlink.parent; ALTER TABLE public.count_well_reagentlinks_by_owner OWNER TO db_user; -- -- Name: wellsampleannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE wellsampleannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.wellsampleannotationlink OWNER TO db_user; -- -- Name: count_wellsample_annotationlinks_by_owner; Type: VIEW; Schema: public; Owner: db_user -- CREATE VIEW count_wellsample_annotationlinks_by_owner AS SELECT wellsampleannotationlink.parent AS wellsample_id, wellsampleannotationlink.owner_id, count(*) AS count FROM wellsampleannotationlink GROUP BY wellsampleannotationlink.parent, wellsampleannotationlink.owner_id ORDER BY wellsampleannotationlink.parent; ALTER TABLE public.count_wellsample_annotationlinks_by_owner OWNER TO db_user; -- -- Name: dataset; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE dataset ( id bigint NOT NULL, description text, permissions bigint NOT NULL, name character varying(255) NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.dataset OWNER TO db_user; -- -- Name: dbpatch; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE dbpatch ( id bigint DEFAULT ome_nextval('seq_dbpatch'::character varying) NOT NULL, currentpatch integer NOT NULL, currentversion character varying(255) NOT NULL, permissions bigint DEFAULT (-52) NOT NULL, finished timestamp without time zone, message character varying(255) DEFAULT 'Updating'::character varying, previouspatch integer NOT NULL, previousversion character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.dbpatch OWNER TO db_user; -- -- Name: detector; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE detector ( id bigint NOT NULL, amplificationgain double precision, permissions bigint NOT NULL, gain double precision, lotnumber character varying(255), manufacturer character varying(255), model character varying(255), offsetvalue double precision, serialnumber character varying(255), version integer, voltage double precision, zoom double precision, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, instrument bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.detector OWNER TO db_user; -- -- Name: detectorsettings; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE detectorsettings ( id bigint NOT NULL, permissions bigint NOT NULL, gain double precision, offsetvalue double precision, readoutrate double precision, version integer, voltage double precision, binning bigint, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, detector bigint NOT NULL ); ALTER TABLE public.detectorsettings OWNER TO db_user; -- -- Name: detectortype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE detectortype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.detectortype OWNER TO db_user; -- -- Name: dichroic; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE dichroic ( id bigint NOT NULL, permissions bigint NOT NULL, lotnumber character varying(255), manufacturer character varying(255), model character varying(255), serialnumber character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, instrument bigint NOT NULL ); ALTER TABLE public.dichroic OWNER TO db_user; -- -- Name: dimensionorder; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE dimensionorder ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.dimensionorder OWNER TO db_user; -- -- Name: event; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE event ( id bigint NOT NULL, permissions bigint NOT NULL, status character varying(255), "time" timestamp without time zone NOT NULL, containingevent bigint, external_id bigint, experimenter bigint NOT NULL, experimentergroup bigint NOT NULL, session bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.event OWNER TO db_user; -- -- Name: eventlog; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE eventlog ( id bigint NOT NULL, action character varying(255) NOT NULL, permissions bigint NOT NULL, entityid bigint NOT NULL, entitytype character varying(255) NOT NULL, external_id bigint, event bigint NOT NULL ); ALTER TABLE public.eventlog OWNER TO db_user; -- -- Name: eventtype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE eventtype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.eventtype OWNER TO db_user; -- -- Name: experiment; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE experiment ( id bigint NOT NULL, description text, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.experiment OWNER TO db_user; -- -- Name: experimenter; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE experimenter ( id bigint NOT NULL, permissions bigint NOT NULL, email character varying(255), firstname character varying(255) NOT NULL, institution character varying(255), lastname character varying(255) NOT NULL, middlename character varying(255), omename character varying(255) NOT NULL, version integer, external_id bigint ); ALTER TABLE public.experimenter OWNER TO db_user; -- -- Name: experimenterannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE experimenterannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.experimenterannotationlink OWNER TO db_user; -- -- Name: experimentergroup; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE experimentergroup ( id bigint NOT NULL, description text, permissions bigint NOT NULL, name character varying(255) NOT NULL, version integer, external_id bigint ); ALTER TABLE public.experimentergroup OWNER TO db_user; -- -- Name: experimentergroupannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE experimentergroupannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.experimentergroupannotationlink OWNER TO db_user; -- -- Name: experimenttype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE experimenttype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.experimenttype OWNER TO db_user; -- -- Name: externalinfo; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE externalinfo ( id bigint NOT NULL, permissions bigint NOT NULL, entityid bigint NOT NULL, entitytype character varying(255) NOT NULL, lsid character varying(255), uuid character varying(255), creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL ); ALTER TABLE public.externalinfo OWNER TO db_user; -- -- Name: family; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE family ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.family OWNER TO db_user; -- -- Name: filament; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filament ( lightsource_id bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.filament OWNER TO db_user; -- -- Name: filamenttype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filamenttype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.filamenttype OWNER TO db_user; -- -- Name: filter; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filter ( id bigint NOT NULL, permissions bigint NOT NULL, filterwheel character varying(255), lotnumber character varying(255), manufacturer character varying(255), model character varying(255), serialnumber character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, instrument bigint NOT NULL, transmittancerange bigint, type bigint ); ALTER TABLE public.filter OWNER TO db_user; -- -- Name: filterset; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filterset ( id bigint NOT NULL, permissions bigint NOT NULL, lotnumber character varying(255), manufacturer character varying(255), model character varying(255), serialnumber character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, dichroic bigint, instrument bigint NOT NULL ); ALTER TABLE public.filterset OWNER TO db_user; -- -- Name: filtertype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE filtertype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.filtertype OWNER TO db_user; -- -- Name: format; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE format ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.format OWNER TO db_user; -- -- Name: groupexperimentermap; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE groupexperimentermap ( id bigint NOT NULL, permissions bigint NOT NULL, owner boolean NOT NULL, version integer, child bigint NOT NULL, external_id bigint, parent bigint NOT NULL, child_index integer NOT NULL ); ALTER TABLE public.groupexperimentermap OWNER TO db_user; -- -- Name: illumination; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE illumination ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.illumination OWNER TO db_user; -- -- Name: image; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE image ( id bigint NOT NULL, acquisitiondate timestamp without time zone NOT NULL, archived boolean, description text, permissions bigint NOT NULL, name character varying(255) NOT NULL, partial boolean, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, experiment bigint, format bigint, imagingenvironment bigint, instrument bigint, objectivesettings bigint, stagelabel bigint ); ALTER TABLE public.image OWNER TO db_user; -- -- Name: imagingenvironment; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE imagingenvironment ( id bigint NOT NULL, airpressure double precision, co2percent double precision, permissions bigint NOT NULL, humidity double precision, temperature double precision, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, CONSTRAINT imagingenvironment_check CHECK (((((humidity >= (0)::double precision) AND (humidity <= (1)::double precision)) AND (co2percent >= (0)::double precision)) AND (co2percent <= (1)::double precision))) ); ALTER TABLE public.imagingenvironment OWNER TO db_user; -- -- Name: immersion; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE immersion ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.immersion OWNER TO db_user; -- -- Name: importjob; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE importjob ( imagedescription character varying(255) NOT NULL, imagename character varying(255) NOT NULL, job_id bigint NOT NULL ); ALTER TABLE public.importjob OWNER TO db_user; -- -- Name: instrument; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE instrument ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, microscope bigint ); ALTER TABLE public.instrument OWNER TO db_user; -- -- Name: job; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE job ( id bigint NOT NULL, permissions bigint NOT NULL, finished timestamp without time zone, groupname character varying(255) NOT NULL, message character varying(255) NOT NULL, scheduledfor timestamp without time zone NOT NULL, started timestamp without time zone, submitted timestamp without time zone NOT NULL, type character varying(255) NOT NULL, username character varying(255) NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, status bigint NOT NULL ); ALTER TABLE public.job OWNER TO db_user; -- -- Name: jobstatus; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE jobstatus ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.jobstatus OWNER TO db_user; -- -- Name: laser; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE laser ( frequencymultiplication integer, pockelcell boolean, repetitionrate double precision, tuneable boolean, wavelength integer, lightsource_id bigint NOT NULL, lasermedium bigint NOT NULL, pulse bigint, pump bigint, type bigint NOT NULL, CONSTRAINT laser_check CHECK (((frequencymultiplication > 0) AND (wavelength > 0))) ); ALTER TABLE public.laser OWNER TO db_user; -- -- Name: lasermedium; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lasermedium ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.lasermedium OWNER TO db_user; -- -- Name: lasertype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lasertype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.lasertype OWNER TO db_user; -- -- Name: lightemittingdiode; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lightemittingdiode ( lightsource_id bigint NOT NULL ); ALTER TABLE public.lightemittingdiode OWNER TO db_user; -- -- Name: lightpath; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lightpath ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, dichroic bigint ); ALTER TABLE public.lightpath OWNER TO db_user; -- -- Name: lightsettings; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lightsettings ( id bigint NOT NULL, attenuation double precision, permissions bigint NOT NULL, version integer, wavelength integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, lightsource bigint NOT NULL, microbeammanipulation bigint, CONSTRAINT lightsettings_check CHECK ((((attenuation >= (0)::double precision) AND (attenuation <= (1)::double precision)) AND (wavelength > 0))) ); ALTER TABLE public.lightsettings OWNER TO db_user; -- -- Name: lightsource; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE lightsource ( id bigint NOT NULL, permissions bigint NOT NULL, lotnumber character varying(255), manufacturer character varying(255), model character varying(255), power double precision, serialnumber character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, instrument bigint NOT NULL ); ALTER TABLE public.lightsource OWNER TO db_user; -- -- Name: link; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE link ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.link OWNER TO db_user; -- -- Name: logicalchannel; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE logicalchannel ( id bigint NOT NULL, permissions bigint NOT NULL, emissionwave integer, excitationwave integer, fluor character varying(255), name character varying(255), ndfilter double precision, pinholesize double precision, pockelcellsetting integer, samplesperpixel integer, version integer, contrastmethod bigint, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, detectorsettings bigint, filterset bigint, illumination bigint, lightpath bigint, lightsourcesettings bigint, mode bigint, otf bigint, photometricinterpretation bigint, CONSTRAINT logicalchannel_check CHECK ((((excitationwave > 0) AND (emissionwave > 0)) AND (samplesperpixel > 0))) ); ALTER TABLE public.logicalchannel OWNER TO db_user; -- -- Name: medium; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE medium ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.medium OWNER TO db_user; -- -- Name: microbeammanipulation; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE microbeammanipulation ( id bigint NOT NULL, description text, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, experiment bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.microbeammanipulation OWNER TO db_user; -- -- Name: microbeammanipulationtype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE microbeammanipulationtype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.microbeammanipulationtype OWNER TO db_user; -- -- Name: microscope; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE microscope ( id bigint NOT NULL, permissions bigint NOT NULL, lotnumber character varying(255), manufacturer character varying(255), model character varying(255), serialnumber character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, type bigint NOT NULL ); ALTER TABLE public.microscope OWNER TO db_user; -- -- Name: microscopetype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE microscopetype ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.microscopetype OWNER TO db_user; -- -- Name: namespace; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE namespace ( id bigint NOT NULL, description text, permissions bigint NOT NULL, display boolean, keywords text[], multivalued boolean, name character varying(255) NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.namespace OWNER TO db_user; -- -- Name: node; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE node ( id bigint NOT NULL, conn character varying(255) NOT NULL, permissions bigint NOT NULL, down timestamp without time zone, scale integer, up timestamp without time zone NOT NULL, uuid character varying(255) NOT NULL, version integer, external_id bigint ); ALTER TABLE public.node OWNER TO db_user; -- -- Name: nodeannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE nodeannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.nodeannotationlink OWNER TO db_user; -- -- Name: objective; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE objective ( id bigint NOT NULL, calibratedmagnification double precision, permissions bigint NOT NULL, iris boolean, lensna double precision, lotnumber character varying(255), manufacturer character varying(255), model character varying(255), nominalmagnification integer, serialnumber character varying(255), version integer, workingdistance double precision, correction bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, immersion bigint NOT NULL, instrument bigint NOT NULL, CONSTRAINT objective_nominalmagnification_check CHECK ((nominalmagnification > 0)) ); ALTER TABLE public.objective OWNER TO db_user; -- -- Name: objectivesettings; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE objectivesettings ( id bigint NOT NULL, correctioncollar double precision, permissions bigint NOT NULL, refractiveindex double precision, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, medium bigint, objective bigint NOT NULL ); ALTER TABLE public.objectivesettings OWNER TO db_user; -- -- Name: originalfile; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE originalfile ( id bigint NOT NULL, atime timestamp without time zone, ctime timestamp without time zone, permissions bigint NOT NULL, mimetype character varying(255) DEFAULT 'application/octet-stream'::character varying, mtime timestamp without time zone, name character varying(255) NOT NULL, path text NOT NULL, sha1 character varying(255) NOT NULL, size bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, repo character varying(36), params text[] ); ALTER TABLE public.originalfile OWNER TO db_user; -- -- Name: otf; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE otf ( id bigint NOT NULL, permissions bigint NOT NULL, opticalaxisaveraged boolean NOT NULL, path character varying(255) NOT NULL, sizex integer NOT NULL, sizey integer NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, filterset bigint, instrument bigint NOT NULL, objective bigint NOT NULL, pixelstype bigint NOT NULL, CONSTRAINT otf_check CHECK (((sizex > 0) AND (sizey > 0))) ); ALTER TABLE public.otf OWNER TO db_user; -- -- Name: parsejob; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE parsejob ( params bytea, job_id bigint NOT NULL ); ALTER TABLE public.parsejob OWNER TO db_user; -- -- Name: password; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE password ( experimenter_id bigint NOT NULL, hash character(24), dn text ); ALTER TABLE public.password OWNER TO db_user; -- -- Name: photometricinterpretation; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE photometricinterpretation ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.photometricinterpretation OWNER TO db_user; -- -- Name: pixels; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE pixels ( id bigint NOT NULL, permissions bigint NOT NULL, methodology character varying(255), physicalsizex double precision, physicalsizey double precision, physicalsizez double precision, sha1 character varying(255) NOT NULL, sizec integer NOT NULL, sizet integer NOT NULL, sizex integer NOT NULL, sizey integer NOT NULL, sizez integer NOT NULL, timeincrement double precision, version integer, waveincrement integer, wavestart integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, dimensionorder bigint NOT NULL, image bigint NOT NULL, pixelstype bigint NOT NULL, relatedto bigint, image_index integer NOT NULL, path text, name text, repo character varying(36), params text[], CONSTRAINT pixels_check CHECK ((((((sizex > 0) AND (sizey > 0)) AND (sizez > 0)) AND (sizec > 0)) AND (sizet > 0))) ); ALTER TABLE public.pixels OWNER TO db_user; -- -- Name: pixelstype; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE pixelstype ( id bigint NOT NULL, bitsize integer NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.pixelstype OWNER TO db_user; -- -- Name: planeinfo; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE planeinfo ( id bigint NOT NULL, deltat double precision, permissions bigint NOT NULL, exposuretime double precision, positionx double precision, positiony double precision, positionz double precision, thec integer NOT NULL, thet integer NOT NULL, thez integer NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, pixels bigint NOT NULL, CONSTRAINT planeinfo_check CHECK ((((thez >= 0) AND (thec >= 0)) AND (thet >= 0))) ); ALTER TABLE public.planeinfo OWNER TO db_user; -- -- Name: planeslicingcontext; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE planeslicingcontext ( constant boolean NOT NULL, lowerlimit integer NOT NULL, planeprevious integer NOT NULL, planeselected integer NOT NULL, upperlimit integer NOT NULL, codomainmapcontext_id bigint NOT NULL ); ALTER TABLE public.planeslicingcontext OWNER TO db_user; -- -- Name: plate; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE plate ( id bigint NOT NULL, columnnamingconvention character varying(255), columns integer, defaultsample integer, description text, permissions bigint NOT NULL, externalidentifier character varying(255), name character varying(255) NOT NULL, rownamingconvention character varying(255), rows integer, status character varying(255), version integer, welloriginx double precision, welloriginy double precision, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.plate OWNER TO db_user; -- -- Name: plateacquisition; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE plateacquisition ( id bigint NOT NULL, description text, permissions bigint NOT NULL, endtime timestamp without time zone, maximumfieldcount integer, name character varying(255), starttime timestamp without time zone, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, plate bigint NOT NULL ); ALTER TABLE public.plateacquisition OWNER TO db_user; -- -- Name: project; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE project ( id bigint NOT NULL, description text, permissions bigint NOT NULL, name character varying(255) NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.project OWNER TO db_user; -- -- Name: pulse; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE pulse ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.pulse OWNER TO db_user; -- -- Name: quantumdef; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE quantumdef ( id bigint NOT NULL, bitresolution integer NOT NULL, cdend integer NOT NULL, cdstart integer NOT NULL, permissions bigint NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.quantumdef OWNER TO db_user; -- -- Name: reagent; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE reagent ( id bigint NOT NULL, description text, permissions bigint NOT NULL, name character varying(255), reagentidentifier character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, screen bigint NOT NULL ); ALTER TABLE public.reagent OWNER TO db_user; -- -- Name: renderingdef; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE renderingdef ( id bigint NOT NULL, compression double precision, defaultt integer NOT NULL, defaultz integer NOT NULL, permissions bigint NOT NULL, name character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, model bigint NOT NULL, pixels bigint NOT NULL, quantization bigint NOT NULL ); ALTER TABLE public.renderingdef OWNER TO db_user; -- -- Name: renderingmodel; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE renderingmodel ( id bigint NOT NULL, permissions bigint NOT NULL, value character varying(255) NOT NULL, external_id bigint ); ALTER TABLE public.renderingmodel OWNER TO db_user; -- -- Name: reverseintensitycontext; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE reverseintensitycontext ( reverse boolean NOT NULL, codomainmapcontext_id bigint NOT NULL ); ALTER TABLE public.reverseintensitycontext OWNER TO db_user; -- -- Name: roi; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE roi ( id bigint NOT NULL, description text, permissions bigint NOT NULL, keywords text[], namespaces text[], version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, image bigint, source bigint ); ALTER TABLE public.roi OWNER TO db_user; -- -- Name: screen; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE screen ( id bigint NOT NULL, description text, permissions bigint NOT NULL, name character varying(255) NOT NULL, protocoldescription character varying(255), protocolidentifier character varying(255), reagentsetdescription character varying(255), reagentsetidentifier character varying(255), type character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.screen OWNER TO db_user; -- -- Name: scriptjob; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE scriptjob ( description character varying(255), job_id bigint NOT NULL ); ALTER TABLE public.scriptjob OWNER TO db_user; -- -- Name: seq_acquisitionmode; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_acquisitionmode START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_acquisitionmode OWNER TO db_user; -- -- Name: seq_acquisitionmode; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_acquisitionmode', 21, true); -- -- Name: seq_annotation; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_annotation START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_annotation OWNER TO db_user; -- -- Name: seq_annotation; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_annotation', 350, true); -- -- Name: seq_annotationannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_annotationannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_annotationannotationlink OWNER TO db_user; -- -- Name: seq_annotationannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_annotationannotationlink', 1, false); -- -- Name: seq_arctype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_arctype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_arctype OWNER TO db_user; -- -- Name: seq_arctype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_arctype', 5, true); -- -- Name: seq_binning; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_binning START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_binning OWNER TO db_user; -- -- Name: seq_binning; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_binning', 4, true); -- -- Name: seq_channel; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_channel START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_channel OWNER TO db_user; -- -- Name: seq_channel; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_channel', 450, true); -- -- Name: seq_channelannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_channelannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_channelannotationlink OWNER TO db_user; -- -- Name: seq_channelannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_channelannotationlink', 1, false); -- -- Name: seq_channelbinding; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_channelbinding START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_channelbinding OWNER TO db_user; -- -- Name: seq_channelbinding; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_channelbinding', 500, true); -- -- Name: seq_codomainmapcontext; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_codomainmapcontext START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_codomainmapcontext OWNER TO db_user; -- -- Name: seq_codomainmapcontext; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_codomainmapcontext', 1, false); -- -- Name: seq_contrastmethod; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_contrastmethod START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_contrastmethod OWNER TO db_user; -- -- Name: seq_contrastmethod; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_contrastmethod', 10, true); -- -- Name: seq_correction; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_correction START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_correction OWNER TO db_user; -- -- Name: seq_correction; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_correction', 15, true); -- -- Name: seq_dataset; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_dataset START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_dataset OWNER TO db_user; -- -- Name: seq_dataset; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_dataset', 150, true); -- -- Name: seq_datasetannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_datasetannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_datasetannotationlink OWNER TO db_user; -- -- Name: seq_datasetannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_datasetannotationlink', 150, true); -- -- Name: seq_datasetimagelink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_datasetimagelink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_datasetimagelink OWNER TO db_user; -- -- Name: seq_datasetimagelink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_datasetimagelink', 300, true); -- -- Name: seq_dbpatch; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_dbpatch START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_dbpatch OWNER TO db_user; -- -- Name: seq_dbpatch; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_dbpatch', 1, true); -- -- Name: seq_detector; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_detector START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_detector OWNER TO db_user; -- -- Name: seq_detector; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_detector', 350, true); -- -- Name: seq_detectorsettings; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_detectorsettings START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_detectorsettings OWNER TO db_user; -- -- Name: seq_detectorsettings; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_detectorsettings', 350, true); -- -- Name: seq_detectortype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_detectortype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_detectortype OWNER TO db_user; -- -- Name: seq_detectortype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_detectortype', 15, true); -- -- Name: seq_dichroic; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_dichroic START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_dichroic OWNER TO db_user; -- -- Name: seq_dichroic; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_dichroic', 1, false); -- -- Name: seq_dimensionorder; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_dimensionorder START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_dimensionorder OWNER TO db_user; -- -- Name: seq_dimensionorder; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_dimensionorder', 6, true); -- -- Name: seq_event; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_event START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_event OWNER TO db_user; -- -- Name: seq_event; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_event', 6550, true); -- -- Name: seq_eventlog; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_eventlog START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_eventlog OWNER TO db_user; -- -- Name: seq_eventlog; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_eventlog', 17004, true); -- -- Name: seq_eventtype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_eventtype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_eventtype OWNER TO db_user; -- -- Name: seq_eventtype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_eventtype', 9, true); -- -- Name: seq_experiment; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_experiment START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_experiment OWNER TO db_user; -- -- Name: seq_experiment; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_experiment', 1, false); -- -- Name: seq_experimenter; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_experimenter START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_experimenter OWNER TO db_user; -- -- Name: seq_experimenter; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_experimenter', 151, true); -- -- Name: seq_experimenterannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_experimenterannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_experimenterannotationlink OWNER TO db_user; -- -- Name: seq_experimenterannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_experimenterannotationlink', 50, true); -- -- Name: seq_experimentergroup; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_experimentergroup START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_experimentergroup OWNER TO db_user; -- -- Name: seq_experimentergroup; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_experimentergroup', 102, true); -- -- Name: seq_experimentergroupannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_experimentergroupannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_experimentergroupannotationlink OWNER TO db_user; -- -- Name: seq_experimentergroupannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_experimentergroupannotationlink', 1, false); -- -- Name: seq_experimenttype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_experimenttype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_experimenttype OWNER TO db_user; -- -- Name: seq_experimenttype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_experimenttype', 17, true); -- -- Name: seq_externalinfo; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_externalinfo START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_externalinfo OWNER TO db_user; -- -- Name: seq_externalinfo; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_externalinfo', 1, false); -- -- Name: seq_family; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_family START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_family OWNER TO db_user; -- -- Name: seq_family; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_family', 4, true); -- -- Name: seq_filamenttype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_filamenttype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_filamenttype OWNER TO db_user; -- -- Name: seq_filamenttype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_filamenttype', 4, true); -- -- Name: seq_filter; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_filter START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_filter OWNER TO db_user; -- -- Name: seq_filter; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_filter', 700, true); -- -- Name: seq_filterset; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_filterset START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_filterset OWNER TO db_user; -- -- Name: seq_filterset; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_filterset', 1, false); -- -- Name: seq_filtersetemissionfilterlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_filtersetemissionfilterlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_filtersetemissionfilterlink OWNER TO db_user; -- -- Name: seq_filtersetemissionfilterlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_filtersetemissionfilterlink', 1, false); -- -- Name: seq_filtersetexcitationfilterlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_filtersetexcitationfilterlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_filtersetexcitationfilterlink OWNER TO db_user; -- -- Name: seq_filtersetexcitationfilterlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_filtersetexcitationfilterlink', 1, false); -- -- Name: seq_filtertype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_filtertype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_filtertype OWNER TO db_user; -- -- Name: seq_filtertype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_filtertype', 8, true); -- -- Name: seq_format; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_format START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_format OWNER TO db_user; -- -- Name: seq_format; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_format', 200, true); -- -- Name: seq_groupexperimentermap; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_groupexperimentermap START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_groupexperimentermap OWNER TO db_user; -- -- Name: seq_groupexperimentermap; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_groupexperimentermap', 152, true); -- -- Name: seq_illumination; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_illumination START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_illumination OWNER TO db_user; -- -- Name: seq_illumination; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_illumination', 6, true); -- -- Name: seq_image; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_image START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_image OWNER TO db_user; -- -- Name: seq_image; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_image', 300, true); -- -- Name: seq_imageannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_imageannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_imageannotationlink OWNER TO db_user; -- -- Name: seq_imageannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_imageannotationlink', 400, true); -- -- Name: seq_imagingenvironment; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_imagingenvironment START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_imagingenvironment OWNER TO db_user; -- -- Name: seq_imagingenvironment; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_imagingenvironment', 1, false); -- -- Name: seq_immersion; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_immersion START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_immersion OWNER TO db_user; -- -- Name: seq_immersion; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_immersion', 8, true); -- -- Name: seq_instrument; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_instrument START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_instrument OWNER TO db_user; -- -- Name: seq_instrument; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_instrument', 300, true); -- -- Name: seq_job; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_job START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_job OWNER TO db_user; -- -- Name: seq_job; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_job', 100, true); -- -- Name: seq_joboriginalfilelink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_joboriginalfilelink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_joboriginalfilelink OWNER TO db_user; -- -- Name: seq_joboriginalfilelink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_joboriginalfilelink', 100, true); -- -- Name: seq_jobstatus; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_jobstatus START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_jobstatus OWNER TO db_user; -- -- Name: seq_jobstatus; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_jobstatus', 9, true); -- -- Name: seq_lasermedium; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lasermedium START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lasermedium OWNER TO db_user; -- -- Name: seq_lasermedium; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lasermedium', 35, true); -- -- Name: seq_lasertype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lasertype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lasertype OWNER TO db_user; -- -- Name: seq_lasertype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lasertype', 9, true); -- -- Name: seq_lightpath; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lightpath START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lightpath OWNER TO db_user; -- -- Name: seq_lightpath; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lightpath', 300, true); -- -- Name: seq_lightpathemissionfilterlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lightpathemissionfilterlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lightpathemissionfilterlink OWNER TO db_user; -- -- Name: seq_lightpathemissionfilterlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lightpathemissionfilterlink', 300, true); -- -- Name: seq_lightpathexcitationfilterlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lightpathexcitationfilterlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lightpathexcitationfilterlink OWNER TO db_user; -- -- Name: seq_lightpathexcitationfilterlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lightpathexcitationfilterlink', 50, true); -- -- Name: seq_lightsettings; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lightsettings START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lightsettings OWNER TO db_user; -- -- Name: seq_lightsettings; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lightsettings', 300, true); -- -- Name: seq_lightsource; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_lightsource START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_lightsource OWNER TO db_user; -- -- Name: seq_lightsource; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_lightsource', 1200, true); -- -- Name: seq_link; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_link START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_link OWNER TO db_user; -- -- Name: seq_link; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_link', 1, false); -- -- Name: seq_logicalchannel; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_logicalchannel START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_logicalchannel OWNER TO db_user; -- -- Name: seq_logicalchannel; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_logicalchannel', 450, true); -- -- Name: seq_medium; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_medium START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_medium OWNER TO db_user; -- -- Name: seq_medium; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_medium', 6, true); -- -- Name: seq_microbeammanipulation; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_microbeammanipulation START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_microbeammanipulation OWNER TO db_user; -- -- Name: seq_microbeammanipulation; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_microbeammanipulation', 1, false); -- -- Name: seq_microbeammanipulationtype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_microbeammanipulationtype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_microbeammanipulationtype OWNER TO db_user; -- -- Name: seq_microbeammanipulationtype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_microbeammanipulationtype', 9, true); -- -- Name: seq_microscope; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_microscope START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_microscope OWNER TO db_user; -- -- Name: seq_microscope; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_microscope', 250, true); -- -- Name: seq_microscopetype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_microscopetype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_microscopetype OWNER TO db_user; -- -- Name: seq_microscopetype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_microscopetype', 6, true); -- -- Name: seq_namespace; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_namespace START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_namespace OWNER TO db_user; -- -- Name: seq_namespace; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_namespace', 50, true); -- -- Name: seq_namespaceannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_namespaceannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_namespaceannotationlink OWNER TO db_user; -- -- Name: seq_namespaceannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_namespaceannotationlink', 1, false); -- -- Name: seq_node; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_node START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_node OWNER TO db_user; -- -- Name: seq_node; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_node', 250, true); -- -- Name: seq_nodeannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_nodeannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_nodeannotationlink OWNER TO db_user; -- -- Name: seq_nodeannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_nodeannotationlink', 1, false); -- -- Name: seq_objective; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_objective START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_objective OWNER TO db_user; -- -- Name: seq_objective; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_objective', 300, true); -- -- Name: seq_objectivesettings; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_objectivesettings START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_objectivesettings OWNER TO db_user; -- -- Name: seq_objectivesettings; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_objectivesettings', 300, true); -- -- Name: seq_originalfile; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_originalfile START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_originalfile OWNER TO db_user; -- -- Name: seq_originalfile; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_originalfile', 350, true); -- -- Name: seq_originalfileannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_originalfileannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_originalfileannotationlink OWNER TO db_user; -- -- Name: seq_originalfileannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_originalfileannotationlink', 1, false); -- -- Name: seq_otf; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_otf START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_otf OWNER TO db_user; -- -- Name: seq_otf; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_otf', 1, false); -- -- Name: seq_photometricinterpretation; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_photometricinterpretation START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_photometricinterpretation OWNER TO db_user; -- -- Name: seq_photometricinterpretation; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_photometricinterpretation', 6, true); -- -- Name: seq_pixels; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_pixels START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_pixels OWNER TO db_user; -- -- Name: seq_pixels; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_pixels', 300, true); -- -- Name: seq_pixelsannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_pixelsannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_pixelsannotationlink OWNER TO db_user; -- -- Name: seq_pixelsannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_pixelsannotationlink', 1, false); -- -- Name: seq_pixelsoriginalfilemap; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_pixelsoriginalfilemap START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_pixelsoriginalfilemap OWNER TO db_user; -- -- Name: seq_pixelsoriginalfilemap; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_pixelsoriginalfilemap', 1, false); -- -- Name: seq_pixelstype; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_pixelstype START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_pixelstype OWNER TO db_user; -- -- Name: seq_pixelstype; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_pixelstype', 11, true); -- -- Name: seq_planeinfo; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_planeinfo START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_planeinfo OWNER TO db_user; -- -- Name: seq_planeinfo; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_planeinfo', 7100, true); -- -- Name: seq_planeinfoannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_planeinfoannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_planeinfoannotationlink OWNER TO db_user; -- -- Name: seq_planeinfoannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_planeinfoannotationlink', 1, false); -- -- Name: seq_plate; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_plate START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_plate OWNER TO db_user; -- -- Name: seq_plate; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_plate', 1, false); -- -- Name: seq_plateacquisition; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_plateacquisition START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_plateacquisition OWNER TO db_user; -- -- Name: seq_plateacquisition; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_plateacquisition', 1, false); -- -- Name: seq_plateacquisitionannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_plateacquisitionannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_plateacquisitionannotationlink OWNER TO db_user; -- -- Name: seq_plateacquisitionannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_plateacquisitionannotationlink', 1, false); -- -- Name: seq_plateannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_plateannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_plateannotationlink OWNER TO db_user; -- -- Name: seq_plateannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_plateannotationlink', 1, false); -- -- Name: seq_project; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_project START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_project OWNER TO db_user; -- -- Name: seq_project; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_project', 100, true); -- -- Name: seq_projectannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_projectannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_projectannotationlink OWNER TO db_user; -- -- Name: seq_projectannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_projectannotationlink', 100, true); -- -- Name: seq_projectdatasetlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_projectdatasetlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_projectdatasetlink OWNER TO db_user; -- -- Name: seq_projectdatasetlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_projectdatasetlink', 150, true); -- -- Name: seq_pulse; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_pulse START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_pulse OWNER TO db_user; -- -- Name: seq_pulse; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_pulse', 7, true); -- -- Name: seq_quantumdef; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_quantumdef START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_quantumdef OWNER TO db_user; -- -- Name: seq_quantumdef; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_quantumdef', 350, true); -- -- Name: seq_reagent; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_reagent START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_reagent OWNER TO db_user; -- -- Name: seq_reagent; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_reagent', 1, false); -- -- Name: seq_reagentannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_reagentannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_reagentannotationlink OWNER TO db_user; -- -- Name: seq_reagentannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_reagentannotationlink', 1, false); -- -- Name: seq_renderingdef; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_renderingdef START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_renderingdef OWNER TO db_user; -- -- Name: seq_renderingdef; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_renderingdef', 350, true); -- -- Name: seq_renderingmodel; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_renderingmodel START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_renderingmodel OWNER TO db_user; -- -- Name: seq_renderingmodel; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_renderingmodel', 2, true); -- -- Name: seq_roi; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_roi START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_roi OWNER TO db_user; -- -- Name: seq_roi; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_roi', 50, true); -- -- Name: seq_roiannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_roiannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_roiannotationlink OWNER TO db_user; -- -- Name: seq_roiannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_roiannotationlink', 1, false); -- -- Name: seq_screen; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_screen START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_screen OWNER TO db_user; -- -- Name: seq_screen; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_screen', 1, false); -- -- Name: seq_screenannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_screenannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_screenannotationlink OWNER TO db_user; -- -- Name: seq_screenannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_screenannotationlink', 1, false); -- -- Name: seq_screenplatelink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_screenplatelink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_screenplatelink OWNER TO db_user; -- -- Name: seq_screenplatelink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_screenplatelink', 1, false); -- -- Name: seq_session; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_session START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_session OWNER TO db_user; -- -- Name: seq_session; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_session', 866, true); -- -- Name: seq_sessionannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_sessionannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_sessionannotationlink OWNER TO db_user; -- -- Name: seq_sessionannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_sessionannotationlink', 1, false); -- -- Name: seq_shape; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_shape START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_shape OWNER TO db_user; -- -- Name: seq_shape; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_shape', 100, true); -- -- Name: seq_sharemember; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_sharemember START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_sharemember OWNER TO db_user; -- -- Name: seq_sharemember; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_sharemember', 1, false); -- -- Name: seq_stagelabel; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_stagelabel START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_stagelabel OWNER TO db_user; -- -- Name: seq_stagelabel; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_stagelabel', 50, true); -- -- Name: seq_statsinfo; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_statsinfo START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_statsinfo OWNER TO db_user; -- -- Name: seq_statsinfo; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_statsinfo', 450, true); -- -- Name: seq_thumbnail; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_thumbnail START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_thumbnail OWNER TO db_user; -- -- Name: seq_thumbnail; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_thumbnail', 300, true); -- -- Name: seq_transmittancerange; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_transmittancerange START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_transmittancerange OWNER TO db_user; -- -- Name: seq_transmittancerange; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_transmittancerange', 700, true); -- -- Name: seq_well; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_well START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_well OWNER TO db_user; -- -- Name: seq_well; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_well', 1, false); -- -- Name: seq_wellannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_wellannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_wellannotationlink OWNER TO db_user; -- -- Name: seq_wellannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_wellannotationlink', 1, false); -- -- Name: seq_wellreagentlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_wellreagentlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_wellreagentlink OWNER TO db_user; -- -- Name: seq_wellreagentlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_wellreagentlink', 1, false); -- -- Name: seq_wellsample; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_wellsample START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_wellsample OWNER TO db_user; -- -- Name: seq_wellsample; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_wellsample', 1, false); -- -- Name: seq_wellsampleannotationlink; Type: SEQUENCE; Schema: public; Owner: db_user -- CREATE SEQUENCE seq_wellsampleannotationlink START WITH 1 INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; ALTER TABLE public.seq_wellsampleannotationlink OWNER TO db_user; -- -- Name: seq_wellsampleannotationlink; Type: SEQUENCE SET; Schema: public; Owner: db_user -- SELECT pg_catalog.setval('seq_wellsampleannotationlink', 1, false); -- -- Name: session; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE session ( id bigint NOT NULL, closed timestamp without time zone, defaulteventtype character varying(255) NOT NULL, permissions bigint NOT NULL, message text, started timestamp without time zone NOT NULL, timetoidle bigint NOT NULL, timetolive bigint NOT NULL, useragent character varying(255), uuid character varying(255) NOT NULL, version integer, external_id bigint, node bigint NOT NULL, owner bigint NOT NULL ); ALTER TABLE public.session OWNER TO db_user; -- -- Name: sessionannotationlink; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE sessionannotationlink ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, parent bigint NOT NULL ); ALTER TABLE public.sessionannotationlink OWNER TO db_user; -- -- Name: shape; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE shape ( discriminator character varying(31) NOT NULL, id bigint NOT NULL, permissions bigint NOT NULL, fillcolor integer, fillrule character varying(255), fontfamily character varying(255), fontsize integer, fontstretch character varying(255), fontstyle character varying(255), fontvariant character varying(255), fontweight character varying(255), g character varying(255), locked boolean, strokecolor integer, strokedasharray character varying(255), strokedashoffset integer, strokelinecap character varying(255), strokelinejoin character varying(255), strokemiterlimit integer, strokewidth integer, thec integer, thet integer, thez integer, transform character varying(255), vectoreffect character varying(255), version integer, visibility boolean, points text, textvalue text, cx double precision, cy double precision, anchor character varying(255), baselineshift character varying(255), decoration character varying(255), direction character varying(255), glyphorientationvertical integer, writingmode character varying(255), x double precision, y double precision, d text, height double precision, rx double precision, width double precision, bytes bytea, ry double precision, x1 double precision, x2 double precision, y1 double precision, y2 double precision, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, roi bigint NOT NULL, pixels bigint, roi_index integer NOT NULL ); ALTER TABLE public.shape OWNER TO db_user; -- -- Name: share; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE share ( active boolean NOT NULL, data bytea NOT NULL, itemcount bigint NOT NULL, session_id bigint NOT NULL, "group" bigint NOT NULL ); ALTER TABLE public.share OWNER TO db_user; -- -- Name: sharemember; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE sharemember ( id bigint NOT NULL, permissions bigint NOT NULL, version integer, child bigint NOT NULL, external_id bigint, parent bigint NOT NULL ); ALTER TABLE public.sharemember OWNER TO db_user; -- -- Name: stagelabel; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE stagelabel ( id bigint NOT NULL, permissions bigint NOT NULL, name character varying(255) NOT NULL, positionx double precision, positiony double precision, positionz double precision, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.stagelabel OWNER TO db_user; -- -- Name: statsinfo; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE statsinfo ( id bigint NOT NULL, permissions bigint NOT NULL, globalmax double precision NOT NULL, globalmin double precision NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL ); ALTER TABLE public.statsinfo OWNER TO db_user; -- -- Name: thumbnail; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE thumbnail ( id bigint NOT NULL, permissions bigint NOT NULL, mimetype character varying(255) NOT NULL, ref character varying(255), sizex integer NOT NULL, sizey integer NOT NULL, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, pixels bigint NOT NULL ); ALTER TABLE public.thumbnail OWNER TO db_user; -- -- Name: transmittancerange; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE transmittancerange ( id bigint NOT NULL, cutin integer, cutintolerance integer, cutout integer, cutouttolerance integer, permissions bigint NOT NULL, transmittance double precision, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, CONSTRAINT transmittancerange_check CHECK (((((((cutin > 0) AND (cutout > 0)) AND (cutintolerance >= 0)) AND (cutouttolerance >= 0)) AND (transmittance >= (0)::double precision)) AND (transmittance <= (1)::double precision))) ); ALTER TABLE public.transmittancerange OWNER TO db_user; -- -- Name: well; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE well ( id bigint NOT NULL, alpha integer, blue integer, "column" integer, permissions bigint NOT NULL, externaldescription character varying(255), externalidentifier character varying(255), green integer, red integer, "row" integer, status character varying(255), type character varying(255), version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, plate bigint NOT NULL ); ALTER TABLE public.well OWNER TO db_user; -- -- Name: wellsample; Type: TABLE; Schema: public; Owner: db_user; Tablespace: -- CREATE TABLE wellsample ( id bigint NOT NULL, permissions bigint NOT NULL, posx double precision, posy double precision, timepoint timestamp without time zone, version integer, creation_id bigint NOT NULL, external_id bigint, group_id bigint NOT NULL, owner_id bigint NOT NULL, update_id bigint NOT NULL, image bigint NOT NULL, plateacquisition bigint, well bigint NOT NULL, well_index integer NOT NULL ); ALTER TABLE public.wellsample OWNER TO db_user; -- -- Data for Name: _lock_ids; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY _lock_ids (name, id) FROM stdin; seq_wellsampleannotationlink 1 seq_wellannotationlink 2 seq_filtertype 3 seq_dataset 4 seq_plate 5 seq_thumbnail 6 seq_immersion 7 seq_channel 8 seq_imageannotationlink 9 seq_link 10 seq_lightpathemissionfilterlink 11 seq_arctype 12 seq_experimenttype 13 seq_filtersetemissionfilterlink 14 seq_filtersetexcitationfilterlink 15 seq_microscope 16 seq_originalfileannotationlink 17 seq_wellsample 18 seq_planeinfo 19 seq_lightpathexcitationfilterlink 20 seq_groupexperimentermap 21 seq_planeinfoannotationlink 22 seq_transmittancerange 23 seq_wellreagentlink 24 seq_eventlog 25 seq_quantumdef 26 seq_namespace 27 seq_image 28 seq_renderingmodel 29 seq_microbeammanipulation 30 seq_joboriginalfilelink 31 seq_experimentergroup 32 seq_renderingdef 33 seq_datasetimagelink 34 seq_codomainmapcontext 35 seq_eventtype 36 seq_project 37 seq_microscopetype 38 seq_channelannotationlink 39 seq_filamenttype 40 seq_stagelabel 41 seq_photometricinterpretation 42 seq_experimentergroupannotationlink 43 seq_pixels 44 seq_lightpath 45 seq_roi 46 seq_roiannotationlink 47 seq_externalinfo 48 seq_annotationannotationlink 49 seq_objectivesettings 50 seq_lasertype 51 seq_nodeannotationlink 52 seq_dimensionorder 53 seq_binning 54 seq_instrument 55 seq_namespaceannotationlink 56 seq_well 57 seq_family 58 seq_imagingenvironment 59 seq_illumination 60 seq_projectannotationlink 61 seq_detectortype 62 seq_reagent 63 seq_pulse 64 seq_detector 65 seq_otf 66 seq_reagentannotationlink 67 seq_lightsettings 68 seq_originalfile 69 seq_lightsource 70 seq_annotation 71 seq_job 72 seq_sharemember 73 seq_dbpatch 74 seq_filterset 75 seq_projectdatasetlink 76 seq_experimenterannotationlink 77 seq_plateannotationlink 78 seq_channelbinding 79 seq_microbeammanipulationtype 80 seq_medium 81 seq_statsinfo 82 seq_lasermedium 83 seq_pixelstype 84 seq_screen 85 seq_dichroic 86 seq_session 87 seq_plateacquisition 88 seq_screenannotationlink 89 seq_format 90 seq_node 91 seq_pixelsannotationlink 92 seq_objective 93 seq_datasetannotationlink 94 seq_experiment 95 seq_detectorsettings 96 seq_correction 97 seq_filter 98 seq_plateacquisitionannotationlink 99 seq_pixelsoriginalfilemap 100 seq_logicalchannel 101 seq_sessionannotationlink 102 seq_screenplatelink 103 seq_shape 104 seq_experimenter 105 seq_acquisitionmode 106 seq_event 107 seq_jobstatus 108 seq_contrastmethod 109 \. -- -- Data for Name: acquisitionmode; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY acquisitionmode (id, permissions, value, external_id) FROM stdin; 1 -52 WideField \N 2 -52 LaserScanningConfocalMicroscopy \N 3 -52 SpinningDiskConfocal \N 4 -52 SlitScanConfocal \N 5 -52 MultiPhotonMicroscopy \N 6 -52 StructuredIllumination \N 7 -52 SingleMoleculeImaging \N 8 -52 TotalInternalReflection \N 9 -52 FluorescenceLifetime \N 10 -52 SpectralImaging \N 11 -52 FluorescenceCorrelationSpectroscopy \N 12 -52 NearFieldScanningOpticalMicroscopy \N 13 -52 SecondHarmonicGenerationImaging \N 14 -52 PALM \N 15 -52 STORM \N 16 -52 STED \N 17 -52 TIRF \N 18 -52 FSM \N 19 -52 LCM \N 20 -52 Other \N 21 -52 Unknown \N \. -- -- Data for Name: annotation; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY annotation (discriminator, id, description, permissions, ns, version, timevalue, textvalue, boolvalue, termvalue, longvalue, doublevalue, creation_id, external_id, group_id, owner_id, update_id, file) FROM stdin; /basic/text/comment/ 38 \N -40 \N \N \N pessima \N \N \N \N 811 \N 3 3 811 \N /type/OriginalFile/ 39 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1055 \N 3 2 1055 54 /type/OriginalFile/ 40 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1055 \N 3 2 1055 55 /type/OriginalFile/ 41 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1055 \N 3 2 1055 56 /type/OriginalFile/ 42 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1055 \N 3 2 1055 57 /type/OriginalFile/ 43 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1055 \N 3 2 1055 58 /type/OriginalFile/ 44 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1055 \N 3 2 1055 59 /type/OriginalFile/ 45 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1118 \N 3 2 1118 60 /type/OriginalFile/ 46 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1118 \N 3 2 1118 61 /type/OriginalFile/ 47 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1118 \N 3 2 1118 62 /type/OriginalFile/ 48 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1118 \N 3 2 1118 63 /type/OriginalFile/ 49 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1118 \N 3 2 1118 64 /type/OriginalFile/ 50 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1118 \N 3 2 1118 65 /type/OriginalFile/ 51 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 66 /type/OriginalFile/ 52 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 67 /type/OriginalFile/ 53 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 68 /type/OriginalFile/ 54 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 69 /type/OriginalFile/ 55 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 70 /type/OriginalFile/ 56 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 71 /type/OriginalFile/ 57 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 72 /type/OriginalFile/ 58 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 73 /type/OriginalFile/ 59 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 74 /type/OriginalFile/ 60 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 75 /type/OriginalFile/ 61 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1143 \N 3 2 1143 76 /basic/text/tag/ 62 -40 \N \N \N ss \N \N \N \N 1469 \N 3 5 1469 \N /type/OriginalFile/ 63 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1614 \N 3 2 1614 77 /type/OriginalFile/ 64 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1614 \N 3 2 1614 78 /type/OriginalFile/ 65 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1614 \N 3 2 1614 79 /type/OriginalFile/ 66 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 1614 \N 3 2 1614 80 /basic/text/tag/ 71 -40 \N \N \N deconvolved \N \N \N \N 2447 \N 3 2 2447 \N /basic/text/tag/ 72 -40 \N \N \N not-deconvolved \N \N \N \N 2465 \N 3 2 2465 \N /type/OriginalFile/ 101 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 2837 \N 3 2 2837 101 /type/OriginalFile/ 102 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 2853 \N 3 2 2853 102 /type/OriginalFile/ 103 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 2869 \N 3 2 2869 103 /type/OriginalFile/ 104 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 2885 \N 3 2 2885 104 /type/OriginalFile/ 105 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 2901 \N 3 2 2901 105 /type/OriginalFile/ 106 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 2917 \N 3 2 2917 106 /basic/text/tag/ 107 -40 \N \N \N OS \N \N \N \N 3151 \N 3 2 3151 \N /basic/text/tag/ 108 -40 \N \N \N ONS \N \N \N \N 3159 \N 3 2 3159 \N /basic/text/tag/ 109 -40 \N \N \N SNS \N \N \N \N 3174 \N 3 2 3174 \N /type/OriginalFile/ 110 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3284 \N 3 2 3284 107 /type/OriginalFile/ 111 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3303 \N 3 2 3303 108 /type/OriginalFile/ 112 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3327 \N 3 2 3327 109 /type/OriginalFile/ 113 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3347 \N 3 2 3347 110 /type/OriginalFile/ 115 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3461 \N 3 2 3461 112 /type/OriginalFile/ 116 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3488 \N 3 2 3488 113 /type/OriginalFile/ 117 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3670 \N 3 2 3670 114 /type/OriginalFile/ 118 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3686 \N 3 2 3686 115 /type/OriginalFile/ 119 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3702 \N 3 2 3702 116 /type/OriginalFile/ 120 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3718 \N 3 2 3718 117 /type/OriginalFile/ 121 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3734 \N 3 2 3734 118 /type/OriginalFile/ 122 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3750 \N 3 2 3750 119 /type/OriginalFile/ 123 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3766 \N 3 2 3766 120 /type/OriginalFile/ 124 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3782 \N 3 2 3782 121 /type/OriginalFile/ 125 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 3798 \N 3 2 3798 122 /type/OriginalFile/ 126 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 4112 \N 3 2 4112 123 /type/OriginalFile/ 127 \N -40 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 4128 \N 3 2 4128 124 /type/OriginalFile/ 151 \N -40 openmicroscopy.org/omero/experimenter/photo 0 \N \N \N \N \N \N 5020 \N 1 2 5020 152 /type/OriginalFile/ 201 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5151 \N 53 102 5151 201 /type/OriginalFile/ 202 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5151 \N 53 102 5151 202 /type/OriginalFile/ 203 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5151 \N 53 102 5151 203 /type/OriginalFile/ 204 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5151 \N 53 102 5151 204 /type/OriginalFile/ 205 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5173 \N 53 102 5173 205 /type/OriginalFile/ 206 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5173 \N 53 102 5173 206 /type/OriginalFile/ 207 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5173 \N 53 102 5173 207 /type/OriginalFile/ 208 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5173 \N 53 102 5173 208 /type/OriginalFile/ 209 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5195 \N 53 102 5195 209 /type/OriginalFile/ 210 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5195 \N 53 102 5195 210 /type/OriginalFile/ 211 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5195 \N 53 102 5195 211 /type/OriginalFile/ 212 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5195 \N 53 102 5195 212 /type/OriginalFile/ 213 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5218 \N 53 102 5218 213 /type/OriginalFile/ 214 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5218 \N 53 102 5218 214 /type/OriginalFile/ 215 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5218 \N 53 102 5218 215 /type/OriginalFile/ 216 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5218 \N 53 102 5218 216 /type/OriginalFile/ 217 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5241 \N 53 102 5241 217 /type/OriginalFile/ 218 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5241 \N 53 102 5241 218 /type/OriginalFile/ 219 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5241 \N 53 102 5241 219 /type/OriginalFile/ 220 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5241 \N 53 102 5241 220 /type/OriginalFile/ 221 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5263 \N 53 102 5263 221 /type/OriginalFile/ 222 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5263 \N 53 102 5263 222 /type/OriginalFile/ 223 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5263 \N 53 102 5263 223 /type/OriginalFile/ 224 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5263 \N 53 102 5263 224 /type/OriginalFile/ 225 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5285 \N 53 102 5285 225 /type/OriginalFile/ 226 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5285 \N 53 102 5285 226 /type/OriginalFile/ 227 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5285 \N 53 102 5285 227 /type/OriginalFile/ 228 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5285 \N 53 102 5285 228 /type/OriginalFile/ 229 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5307 \N 53 102 5307 229 /type/OriginalFile/ 230 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5307 \N 53 102 5307 230 /type/OriginalFile/ 231 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5307 \N 53 102 5307 231 /type/OriginalFile/ 232 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5307 \N 53 102 5307 232 /type/OriginalFile/ 233 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5329 \N 53 102 5329 233 /type/OriginalFile/ 234 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5329 \N 53 102 5329 234 /type/OriginalFile/ 235 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5329 \N 53 102 5329 235 /type/OriginalFile/ 236 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5329 \N 53 102 5329 236 /type/OriginalFile/ 237 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5397 \N 53 102 5397 237 /type/OriginalFile/ 238 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5397 \N 53 102 5397 238 /type/OriginalFile/ 239 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5397 \N 53 102 5397 239 /type/OriginalFile/ 240 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5397 \N 53 102 5397 240 /type/OriginalFile/ 241 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5421 \N 53 102 5421 241 /type/OriginalFile/ 242 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5421 \N 53 102 5421 242 /type/OriginalFile/ 243 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5421 \N 53 102 5421 243 /type/OriginalFile/ 244 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5421 \N 53 102 5421 244 /type/OriginalFile/ 245 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5446 \N 53 102 5446 245 /type/OriginalFile/ 246 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5446 \N 53 102 5446 246 /type/OriginalFile/ 247 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5446 \N 53 102 5446 247 /type/OriginalFile/ 248 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5446 \N 53 102 5446 248 /type/OriginalFile/ 249 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5471 \N 53 102 5471 249 /type/OriginalFile/ 250 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5471 \N 53 102 5471 250 /type/OriginalFile/ 251 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5471 \N 53 102 5471 251 /type/OriginalFile/ 252 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5471 \N 53 102 5471 252 /type/OriginalFile/ 253 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5493 \N 53 102 5493 253 /type/OriginalFile/ 254 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5493 \N 53 102 5493 254 /type/OriginalFile/ 255 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5493 \N 53 102 5493 255 /type/OriginalFile/ 256 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5493 \N 53 102 5493 256 /type/OriginalFile/ 257 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5515 \N 53 102 5515 257 /type/OriginalFile/ 258 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5515 \N 53 102 5515 258 /type/OriginalFile/ 259 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5515 \N 53 102 5515 259 /type/OriginalFile/ 260 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5515 \N 53 102 5515 260 /type/OriginalFile/ 261 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5539 \N 53 102 5539 261 /type/OriginalFile/ 262 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5539 \N 53 102 5539 262 /type/OriginalFile/ 263 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5539 \N 53 102 5539 263 /type/OriginalFile/ 264 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5539 \N 53 102 5539 264 /type/OriginalFile/ 265 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5561 \N 53 102 5561 265 /type/OriginalFile/ 266 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5561 \N 53 102 5561 266 /type/OriginalFile/ 267 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5561 \N 53 102 5561 267 /type/OriginalFile/ 268 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5561 \N 53 102 5561 268 /type/OriginalFile/ 269 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5583 \N 53 102 5583 269 /type/OriginalFile/ 270 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5583 \N 53 102 5583 270 /type/OriginalFile/ 271 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5583 \N 53 102 5583 271 /type/OriginalFile/ 272 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5583 \N 53 102 5583 272 /type/OriginalFile/ 273 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5605 \N 53 102 5605 273 /type/OriginalFile/ 274 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5605 \N 53 102 5605 274 /type/OriginalFile/ 275 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5605 \N 53 102 5605 275 /type/OriginalFile/ 276 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5605 \N 53 102 5605 276 /type/OriginalFile/ 277 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5628 \N 53 102 5628 277 /type/OriginalFile/ 278 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5628 \N 53 102 5628 278 /type/OriginalFile/ 279 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5628 \N 53 102 5628 279 /type/OriginalFile/ 280 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5628 \N 53 102 5628 280 /type/OriginalFile/ 281 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5651 \N 53 102 5651 281 /type/OriginalFile/ 282 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5651 \N 53 102 5651 282 /type/OriginalFile/ 283 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5651 \N 53 102 5651 283 /type/OriginalFile/ 284 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5651 \N 53 102 5651 284 /type/OriginalFile/ 285 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5676 \N 53 102 5676 285 /type/OriginalFile/ 286 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5676 \N 53 102 5676 286 /type/OriginalFile/ 287 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5676 \N 53 102 5676 287 /type/OriginalFile/ 288 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5676 \N 53 102 5676 288 /type/OriginalFile/ 289 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5701 \N 53 102 5701 289 /type/OriginalFile/ 290 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5701 \N 53 102 5701 290 /type/OriginalFile/ 291 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5701 \N 53 102 5701 291 /type/OriginalFile/ 292 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5701 \N 53 102 5701 292 /type/OriginalFile/ 293 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5723 \N 53 102 5723 293 /type/OriginalFile/ 294 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5723 \N 53 102 5723 294 /type/OriginalFile/ 295 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5723 \N 53 102 5723 295 /type/OriginalFile/ 296 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5723 \N 53 102 5723 296 /type/OriginalFile/ 297 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5748 \N 53 102 5748 297 /type/OriginalFile/ 298 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5748 \N 53 102 5748 298 /type/OriginalFile/ 299 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5748 \N 53 102 5748 299 /type/OriginalFile/ 300 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5748 \N 53 102 5748 300 /type/OriginalFile/ 301 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5770 \N 53 102 5770 301 /type/OriginalFile/ 302 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5770 \N 53 102 5770 302 /type/OriginalFile/ 303 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5770 \N 53 102 5770 303 /type/OriginalFile/ 304 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5770 \N 53 102 5770 304 /type/OriginalFile/ 305 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5792 \N 53 102 5792 305 /type/OriginalFile/ 306 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5792 \N 53 102 5792 306 /type/OriginalFile/ 307 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5792 \N 53 102 5792 307 /type/OriginalFile/ 308 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5792 \N 53 102 5792 308 /type/OriginalFile/ 309 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5814 \N 53 102 5814 309 /type/OriginalFile/ 310 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5814 \N 53 102 5814 310 /type/OriginalFile/ 311 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5814 \N 53 102 5814 311 /type/OriginalFile/ 312 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5814 \N 53 102 5814 312 /type/OriginalFile/ 313 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5837 \N 53 102 5837 313 /type/OriginalFile/ 314 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5837 \N 53 102 5837 314 /type/OriginalFile/ 315 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5837 \N 53 102 5837 315 /type/OriginalFile/ 316 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5837 \N 53 102 5837 316 /type/OriginalFile/ 317 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5864 \N 53 102 5864 317 /type/OriginalFile/ 318 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5864 \N 53 102 5864 318 /type/OriginalFile/ 319 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5864 \N 53 102 5864 319 /type/OriginalFile/ 320 \N -120 openmicroscopy.org/omero/import/companionFile \N \N \N \N \N \N \N 5864 \N 53 102 5864 320 /basic/text/tag/ 326 -120 \N \N \N C14 \N \N \N \N 6030 \N 53 102 6030 \N /basic/text/tag/ 327 -120 \N \N \N FRAP \N \N \N \N 6032 \N 53 102 6032 \N /basic/text/tag/ 328 -120 \N \N \N Del4C14 \N \N \N \N 6156 \N 53 102 6156 \N \. -- -- Data for Name: annotationannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY annotationannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: arc; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY arc (lightsource_id, type) FROM stdin; \. -- -- Data for Name: arctype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY arctype (id, permissions, value, external_id) FROM stdin; 1 -52 Hg \N 2 -52 Xe \N 3 -52 HgXe \N 4 -52 Other \N 5 -52 Unknown \N \. -- -- Data for Name: binning; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY binning (id, permissions, value, external_id) FROM stdin; 1 -52 1x1 \N 2 -52 2x2 \N 3 -52 4x4 \N 4 -52 8x8 \N \. -- -- Data for Name: channel; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY channel (id, alpha, blue, permissions, green, red, version, creation_id, external_id, group_id, owner_id, update_id, logicalchannel, pixels, statsinfo, pixels_index) FROM stdin; 160 255 0 -40 0 255 \N 2097 \N 3 2 2100 160 71 160 0 161 255 0 -40 255 0 \N 2097 \N 3 2 2100 161 71 161 1 116 255 0 -40 255 0 \N 1143 \N 3 2 1148 116 50 116 0 117 255 255 -40 0 0 \N 1143 \N 3 2 1148 117 50 117 1 118 255 255 -40 255 255 \N 1143 \N 3 2 1148 118 50 118 2 119 255 0 -40 255 0 \N 1143 \N 3 2 1148 119 51 119 0 120 255 255 -40 0 0 \N 1143 \N 3 2 1148 120 51 120 1 121 255 255 -40 255 255 \N 1143 \N 3 2 1148 121 51 121 2 122 255 0 -40 255 0 \N 1143 \N 3 2 1148 122 52 122 0 123 255 255 -40 0 0 \N 1143 \N 3 2 1148 123 52 123 1 156 255 0 -40 0 255 \N 2061 \N 3 2 2064 156 69 156 0 157 255 0 -40 255 0 \N 2061 \N 3 2 2064 157 69 157 1 92 255 0 -40 255 0 \N 1055 \N 3 2 1058 92 38 92 0 93 255 255 -40 0 0 \N 1055 \N 3 2 1058 93 38 93 1 94 255 0 -40 255 0 \N 1055 \N 3 2 1058 94 39 94 0 95 255 255 -40 0 0 \N 1055 \N 3 2 1058 95 39 95 1 96 255 0 -40 255 0 \N 1055 \N 3 2 1058 96 40 96 0 97 255 255 -40 0 0 \N 1055 \N 3 2 1058 97 40 97 1 98 255 0 -40 255 0 \N 1055 \N 3 2 1058 98 41 98 0 99 255 255 -40 0 0 \N 1055 \N 3 2 1058 99 41 99 1 100 255 0 -40 255 0 \N 1055 \N 3 2 1058 100 42 100 0 101 255 255 -40 0 0 \N 1055 \N 3 2 1058 101 42 101 1 102 255 0 -40 255 0 \N 1055 \N 3 2 1058 102 43 102 0 104 255 0 -40 255 0 \N 1118 \N 3 2 1122 104 44 104 0 105 255 255 -40 0 0 \N 1118 \N 3 2 1122 105 44 105 1 106 255 0 -40 255 0 \N 1118 \N 3 2 1122 106 45 106 0 107 255 255 -40 0 0 \N 1118 \N 3 2 1122 107 45 107 1 108 255 0 -40 255 0 \N 1118 \N 3 2 1122 108 46 108 0 109 255 255 -40 0 0 \N 1118 \N 3 2 1122 109 46 109 1 110 255 0 -40 255 0 \N 1118 \N 3 2 1122 110 47 110 0 111 255 255 -40 0 0 \N 1118 \N 3 2 1122 111 47 111 1 112 255 0 -40 255 0 \N 1118 \N 3 2 1122 112 48 112 0 113 255 255 -40 0 0 \N 1118 \N 3 2 1122 113 48 113 1 114 255 0 -40 255 0 \N 1118 \N 3 2 1122 114 49 114 0 115 255 255 -40 0 0 \N 1118 \N 3 2 1122 115 49 115 1 158 255 0 -40 0 255 \N 2079 \N 3 2 2082 158 70 158 0 159 255 0 -40 255 0 \N 2079 \N 3 2 2082 159 70 159 1 211 255 255 -40 255 255 \N 2917 \N 3 2 2920 211 106 211 0 212 255 255 -40 255 255 \N 2917 \N 3 2 2920 212 106 212 1 162 255 0 -40 0 255 \N 2249 \N 3 2 2258 162 72 162 0 163 255 0 -40 255 0 \N 2249 \N 3 2 2258 163 72 163 1 215 255 255 -40 255 255 \N 3303 \N 3 2 3313 215 108 215 0 216 255 255 -40 255 255 \N 3303 \N 3 2 3313 216 108 216 1 209 255 255 -40 255 255 \N 2901 \N 3 2 2904 209 105 209 0 210 255 255 -40 255 255 \N 2901 \N 3 2 2904 210 105 210 1 103 255 255 -40 0 0 \N 1055 \N 3 2 1058 103 43 103 1 213 255 255 -40 255 255 \N 3284 \N 3 2 3290 213 107 213 0 214 255 255 -40 255 255 \N 3284 \N 3 2 3290 214 107 214 1 218 255 255 -40 255 255 \N 3327 \N 3 2 3334 218 109 218 1 223 255 255 -40 255 255 \N 3461 \N 3 2 3475 223 112 221 0 219 255 255 -40 255 255 \N 3347 \N 3 2 3351 219 110 219 0 217 255 255 -40 255 255 \N 3327 \N 3 2 3334 217 109 217 0 224 255 255 -40 255 255 \N 3461 \N 3 2 3475 224 112 222 1 220 255 255 -40 255 255 \N 3347 \N 3 2 3351 220 110 220 1 225 255 255 -40 255 255 \N 3488 \N 3 2 3491 225 113 223 0 226 255 255 -40 255 255 \N 3488 \N 3 2 3491 226 113 224 1 227 255 255 -40 255 255 \N 3670 \N 3 2 3673 227 114 225 0 228 255 255 -40 255 255 \N 3670 \N 3 2 3673 228 114 226 1 231 255 255 -40 255 255 \N 3702 \N 3 2 3705 231 116 229 0 232 255 255 -40 255 255 \N 3702 \N 3 2 3705 232 116 230 1 201 255 255 -40 255 255 \N 2837 \N 3 2 2840 201 101 201 0 202 255 255 -40 255 255 \N 2837 \N 3 2 2840 202 101 202 1 233 255 255 -40 255 255 \N 3718 \N 3 2 3721 233 117 231 0 234 255 255 -40 255 255 \N 3718 \N 3 2 3721 234 117 232 1 203 255 255 -40 255 255 \N 2853 \N 3 2 2856 203 102 203 0 204 255 255 -40 255 255 \N 2853 \N 3 2 2856 204 102 204 1 245 255 255 -40 255 255 \N 4112 \N 3 2 4115 245 123 243 0 246 255 255 -40 255 255 \N 4112 \N 3 2 4115 246 123 244 1 235 255 255 -40 255 255 \N 3734 \N 3 2 3737 235 118 233 0 236 255 255 -40 255 255 \N 3734 \N 3 2 3737 236 118 234 1 205 255 255 -40 255 255 \N 2869 \N 3 2 2872 205 103 205 0 206 255 255 -40 255 255 \N 2869 \N 3 2 2872 206 103 206 1 239 255 255 -40 255 255 \N 3766 \N 3 2 3769 239 120 237 0 240 255 255 -40 255 255 \N 3766 \N 3 2 3769 240 120 238 1 140 255 0 -40 255 0 \N 1614 \N 3 2 1617 140 61 140 0 141 255 255 -40 0 0 \N 1614 \N 3 2 1617 141 61 141 1 142 255 0 -40 255 0 \N 1614 \N 3 2 1617 142 62 142 0 143 255 255 -40 0 0 \N 1614 \N 3 2 1617 143 62 143 1 144 255 0 -40 255 0 \N 1614 \N 3 2 1617 144 63 144 0 145 255 255 -40 0 0 \N 1614 \N 3 2 1617 145 63 145 1 146 255 0 -40 255 0 \N 1614 \N 3 2 1617 146 64 146 0 147 255 255 -40 0 0 \N 1614 \N 3 2 1617 147 64 147 1 207 255 255 -40 255 255 \N 2885 \N 3 2 2888 207 104 207 0 208 255 255 -40 255 255 \N 2885 \N 3 2 2888 208 104 208 1 237 255 255 -40 255 255 \N 3750 \N 3 2 3753 237 119 235 0 238 255 255 -40 255 255 \N 3750 \N 3 2 3753 238 119 236 1 229 255 255 -40 255 255 \N 3686 \N 3 2 3689 229 115 227 0 230 255 255 -40 255 255 \N 3686 \N 3 2 3689 230 115 228 1 124 255 0 -40 255 0 \N 1143 \N 3 2 1148 124 53 124 0 125 255 255 -40 0 0 \N 1143 \N 3 2 1148 125 53 125 1 126 255 0 -40 255 0 \N 1143 \N 3 2 1148 126 54 126 0 127 255 255 -40 0 0 \N 1143 \N 3 2 1148 127 54 127 1 128 255 0 -40 255 0 \N 1143 \N 3 2 1148 128 55 128 0 129 255 255 -40 0 0 \N 1143 \N 3 2 1148 129 55 129 1 130 255 0 -40 255 0 \N 1143 \N 3 2 1148 130 56 130 0 131 255 255 -40 0 0 \N 1143 \N 3 2 1148 131 56 131 1 132 255 0 -40 255 0 \N 1143 \N 3 2 1148 132 57 132 0 133 255 255 -40 0 0 \N 1143 \N 3 2 1148 133 57 133 1 134 255 0 -40 255 0 \N 1143 \N 3 2 1148 134 58 134 0 135 255 255 -40 0 0 \N 1143 \N 3 2 1148 135 58 135 1 136 255 0 -40 255 0 \N 1143 \N 3 2 1148 136 59 136 0 137 255 255 -40 0 0 \N 1143 \N 3 2 1148 137 59 137 1 138 255 0 -40 255 0 \N 1143 \N 3 2 1148 138 60 138 0 139 255 255 -40 0 0 \N 1143 \N 3 2 1148 139 60 139 1 243 255 255 -40 255 255 \N 3798 \N 3 2 3848 243 122 241 0 244 255 255 -40 255 255 \N 3798 \N 3 2 3848 244 122 242 1 241 255 255 -40 255 255 \N 3782 \N 3 2 3785 241 121 239 0 242 255 255 -40 255 255 \N 3782 \N 3 2 3785 242 121 240 1 247 255 255 -40 255 255 \N 4128 \N 3 2 4131 247 124 245 0 248 255 255 -40 255 255 \N 4128 \N 3 2 4131 248 124 246 1 351 255 0 -120 255 0 \N 5583 \N 53 102 5586 351 219 351 0 251 255 0 -120 255 0 \N 5151 \N 53 102 5154 251 151 251 0 252 255 255 -120 255 255 \N 5151 \N 53 102 5154 252 151 252 1 253 255 0 -120 255 0 \N 5151 \N 53 102 5154 253 152 257 0 254 255 255 -120 255 255 \N 5151 \N 53 102 5154 254 152 258 1 353 255 0 -120 255 0 \N 5583 \N 53 102 5586 353 221 352 0 354 255 0 -120 255 0 \N 5583 \N 53 102 5586 354 222 353 0 352 255 0 -120 255 0 \N 5583 \N 53 102 5586 352 220 354 0 255 255 0 -120 255 0 \N 5151 \N 53 102 5154 255 153 253 0 256 255 255 -120 255 255 \N 5151 \N 53 102 5154 256 153 254 1 257 255 0 -120 255 0 \N 5151 \N 53 102 5154 257 154 255 0 258 255 255 -120 255 255 \N 5151 \N 53 102 5154 258 154 256 1 355 255 0 -120 255 0 \N 5605 \N 53 102 5608 355 223 355 0 283 255 0 -120 255 0 \N 5307 \N 53 102 5310 283 179 283 0 259 255 0 -120 255 0 \N 5173 \N 53 102 5176 259 155 259 0 261 255 0 -120 255 0 \N 5173 \N 53 102 5176 261 157 260 0 262 255 0 -120 255 0 \N 5173 \N 53 102 5176 262 158 261 0 260 255 0 -120 255 0 \N 5173 \N 53 102 5176 260 156 262 0 275 255 0 -120 255 0 \N 5263 \N 53 102 5266 275 171 275 0 277 255 0 -120 255 0 \N 5263 \N 53 102 5266 277 173 276 0 278 255 0 -120 255 0 \N 5263 \N 53 102 5266 278 174 277 0 276 255 0 -120 255 0 \N 5263 \N 53 102 5266 276 172 278 0 263 255 0 -120 255 0 \N 5195 \N 53 102 5199 263 159 263 0 265 255 0 -120 255 0 \N 5195 \N 53 102 5199 265 161 264 0 266 255 0 -120 255 0 \N 5195 \N 53 102 5199 266 162 265 0 264 255 0 -120 255 0 \N 5195 \N 53 102 5199 264 160 266 0 267 255 0 -120 255 0 \N 5218 \N 53 102 5222 267 163 267 0 269 255 0 -120 255 0 \N 5218 \N 53 102 5222 269 165 268 0 270 255 0 -120 255 0 \N 5218 \N 53 102 5222 270 166 269 0 268 255 0 -120 255 0 \N 5218 \N 53 102 5222 268 164 270 0 284 255 255 -120 255 255 \N 5307 \N 53 102 5310 284 179 284 1 287 255 0 -120 255 0 \N 5307 \N 53 102 5310 287 181 285 0 288 255 255 -120 255 255 \N 5307 \N 53 102 5310 288 181 286 1 289 255 0 -120 255 0 \N 5307 \N 53 102 5310 289 182 287 0 271 255 0 -120 255 0 \N 5241 \N 53 102 5244 271 167 271 0 273 255 0 -120 255 0 \N 5241 \N 53 102 5244 273 169 272 0 274 255 0 -120 255 0 \N 5241 \N 53 102 5244 274 170 273 0 272 255 0 -120 255 0 \N 5241 \N 53 102 5244 272 168 274 0 279 255 0 -120 255 0 \N 5285 \N 53 102 5288 279 175 279 0 281 255 0 -120 255 0 \N 5285 \N 53 102 5288 281 177 280 0 282 255 0 -120 255 0 \N 5285 \N 53 102 5288 282 178 281 0 280 255 0 -120 255 0 \N 5285 \N 53 102 5288 280 176 282 0 290 255 255 -120 255 255 \N 5307 \N 53 102 5310 290 182 288 1 285 255 0 -120 255 0 \N 5307 \N 53 102 5310 285 180 289 0 286 255 255 -120 255 255 \N 5307 \N 53 102 5310 286 180 290 1 291 255 0 -120 255 0 \N 5329 \N 53 102 5378 291 183 291 0 292 255 255 -120 255 255 \N 5329 \N 53 102 5378 292 183 292 1 295 255 0 -120 255 0 \N 5329 \N 53 102 5378 295 185 293 0 296 255 255 -120 255 255 \N 5329 \N 53 102 5378 296 185 294 1 297 255 0 -120 255 0 \N 5329 \N 53 102 5378 297 186 295 0 298 255 255 -120 255 255 \N 5329 \N 53 102 5378 298 186 296 1 293 255 0 -120 255 0 \N 5329 \N 53 102 5378 293 184 297 0 294 255 255 -120 255 255 \N 5329 \N 53 102 5378 294 184 298 1 299 255 0 -120 255 0 \N 5397 \N 53 102 5402 299 187 299 0 300 255 255 -120 255 255 \N 5397 \N 53 102 5402 300 187 300 1 303 255 0 -120 255 0 \N 5397 \N 53 102 5402 303 189 301 0 304 255 255 -120 255 255 \N 5397 \N 53 102 5402 304 189 302 1 305 255 0 -120 255 0 \N 5397 \N 53 102 5402 305 190 303 0 306 255 255 -120 255 255 \N 5397 \N 53 102 5402 306 190 304 1 301 255 0 -120 255 0 \N 5397 \N 53 102 5402 301 188 305 0 302 255 255 -120 255 255 \N 5397 \N 53 102 5402 302 188 306 1 357 255 0 -120 255 0 \N 5605 \N 53 102 5608 357 225 356 0 358 255 0 -120 255 0 \N 5605 \N 53 102 5608 358 226 357 0 356 255 0 -120 255 0 \N 5605 \N 53 102 5608 356 224 358 0 335 255 0 -120 255 0 \N 5493 \N 53 102 5496 335 205 333 0 336 255 255 -120 255 255 \N 5493 \N 53 102 5496 336 205 334 1 337 255 0 -120 255 0 \N 5493 \N 53 102 5496 337 206 335 0 338 255 255 -120 255 255 \N 5493 \N 53 102 5496 338 206 336 1 333 255 0 -120 255 0 \N 5493 \N 53 102 5496 333 204 337 0 323 255 0 -120 255 0 \N 5471 \N 53 102 5474 323 199 323 0 324 255 255 -120 255 255 \N 5471 \N 53 102 5474 324 199 324 1 327 255 0 -120 255 0 \N 5471 \N 53 102 5474 327 201 325 0 307 255 0 -120 255 0 \N 5421 \N 53 102 5426 307 191 307 0 308 255 255 -120 255 255 \N 5421 \N 53 102 5426 308 191 308 1 311 255 0 -120 255 0 \N 5421 \N 53 102 5426 311 193 309 0 312 255 255 -120 255 255 \N 5421 \N 53 102 5426 312 193 310 1 313 255 0 -120 255 0 \N 5421 \N 53 102 5426 313 194 311 0 314 255 255 -120 255 255 \N 5421 \N 53 102 5426 314 194 312 1 309 255 0 -120 255 0 \N 5421 \N 53 102 5426 309 192 313 0 310 255 255 -120 255 255 \N 5421 \N 53 102 5426 310 192 314 1 363 255 0 -120 255 0 \N 5651 \N 53 102 5657 363 231 363 0 364 255 0 -120 255 0 \N 5651 \N 53 102 5657 364 232 366 0 359 255 0 -120 255 0 \N 5628 \N 53 102 5632 359 227 359 0 361 255 0 -120 255 0 \N 5628 \N 53 102 5632 361 229 360 0 328 255 255 -120 255 255 \N 5471 \N 53 102 5474 328 201 326 1 329 255 0 -120 255 0 \N 5471 \N 53 102 5474 329 202 327 0 330 255 255 -120 255 255 \N 5471 \N 53 102 5474 330 202 328 1 325 255 0 -120 255 0 \N 5471 \N 53 102 5474 325 200 329 0 326 255 255 -120 255 255 \N 5471 \N 53 102 5474 326 200 330 1 362 255 0 -120 255 0 \N 5628 \N 53 102 5632 362 230 361 0 360 255 0 -120 255 0 \N 5628 \N 53 102 5632 360 228 362 0 315 255 0 -120 255 0 \N 5446 \N 53 102 5452 315 195 315 0 316 255 255 -120 255 255 \N 5446 \N 53 102 5452 316 195 316 1 319 255 0 -120 255 0 \N 5446 \N 53 102 5452 319 197 317 0 320 255 255 -120 255 255 \N 5446 \N 53 102 5452 320 197 318 1 321 255 0 -120 255 0 \N 5446 \N 53 102 5452 321 198 319 0 322 255 255 -120 255 255 \N 5446 \N 53 102 5452 322 198 320 1 317 255 0 -120 255 0 \N 5446 \N 53 102 5452 317 196 321 0 318 255 255 -120 255 255 \N 5446 \N 53 102 5452 318 196 322 1 334 255 255 -120 255 255 \N 5493 \N 53 102 5496 334 204 338 1 343 255 0 -120 255 0 \N 5539 \N 53 102 5542 343 211 343 0 345 255 0 -120 255 0 \N 5539 \N 53 102 5542 345 213 344 0 346 255 0 -120 255 0 \N 5539 \N 53 102 5542 346 214 345 0 344 255 0 -120 255 0 \N 5539 \N 53 102 5542 344 212 346 0 331 255 0 -120 255 0 \N 5493 \N 53 102 5496 331 203 331 0 332 255 255 -120 255 255 \N 5493 \N 53 102 5496 332 203 332 1 347 255 0 -120 255 0 \N 5561 \N 53 102 5564 347 215 347 0 349 255 0 -120 255 0 \N 5561 \N 53 102 5564 349 217 348 0 350 255 0 -120 255 0 \N 5561 \N 53 102 5564 350 218 349 0 348 255 0 -120 255 0 \N 5561 \N 53 102 5564 348 216 350 0 339 255 0 -120 255 0 \N 5515 \N 53 102 5518 339 207 339 0 341 255 0 -120 255 0 \N 5515 \N 53 102 5518 341 209 340 0 342 255 0 -120 255 0 \N 5515 \N 53 102 5518 342 210 341 0 340 255 0 -120 255 0 \N 5515 \N 53 102 5518 340 208 342 0 365 255 0 -120 255 0 \N 5651 \N 53 102 5657 365 233 364 0 366 255 0 -120 255 0 \N 5651 \N 53 102 5657 366 234 365 0 383 255 0 -120 255 0 \N 5770 \N 53 102 5773 383 251 383 0 385 255 0 -120 255 0 \N 5770 \N 53 102 5773 385 253 384 0 386 255 0 -120 255 0 \N 5770 \N 53 102 5773 386 254 385 0 367 255 0 -120 255 0 \N 5676 \N 53 102 5682 367 235 367 0 369 255 0 -120 255 0 \N 5676 \N 53 102 5682 369 237 368 0 370 255 0 -120 255 0 \N 5676 \N 53 102 5682 370 238 369 0 368 255 0 -120 255 0 \N 5676 \N 53 102 5682 368 236 370 0 384 255 0 -120 255 0 \N 5770 \N 53 102 5773 384 252 386 0 371 255 0 -120 255 0 \N 5701 \N 53 102 5704 371 239 371 0 373 255 0 -120 255 0 \N 5701 \N 53 102 5704 373 241 372 0 374 255 0 -120 255 0 \N 5701 \N 53 102 5704 374 242 373 0 372 255 0 -120 255 0 \N 5701 \N 53 102 5704 372 240 374 0 375 255 0 -120 255 0 \N 5723 \N 53 102 5729 375 243 375 0 377 255 0 -120 255 0 \N 5723 \N 53 102 5729 377 245 376 0 378 255 0 -120 255 0 \N 5723 \N 53 102 5729 378 246 377 0 376 255 0 -120 255 0 \N 5723 \N 53 102 5729 376 244 378 0 395 255 0 -120 255 0 \N 5837 \N 53 102 5841 395 263 395 0 387 255 0 -120 255 0 \N 5792 \N 53 102 5795 387 255 387 0 389 255 0 -120 255 0 \N 5792 \N 53 102 5795 389 257 388 0 390 255 0 -120 255 0 \N 5792 \N 53 102 5795 390 258 389 0 379 255 0 -120 255 0 \N 5748 \N 53 102 5751 379 247 379 0 381 255 0 -120 255 0 \N 5748 \N 53 102 5751 381 249 380 0 382 255 0 -120 255 0 \N 5748 \N 53 102 5751 382 250 381 0 380 255 0 -120 255 0 \N 5748 \N 53 102 5751 380 248 382 0 397 255 0 -120 255 0 \N 5837 \N 53 102 5841 397 265 396 0 398 255 0 -120 255 0 \N 5837 \N 53 102 5841 398 266 397 0 396 255 0 -120 255 0 \N 5837 \N 53 102 5841 396 264 398 0 388 255 0 -120 255 0 \N 5792 \N 53 102 5795 388 256 390 0 391 255 0 -120 255 0 \N 5814 \N 53 102 5817 391 259 391 0 393 255 0 -120 255 0 \N 5814 \N 53 102 5817 393 261 392 0 394 255 0 -120 255 0 \N 5814 \N 53 102 5817 394 262 393 0 392 255 0 -120 255 0 \N 5814 \N 53 102 5817 392 260 394 0 399 255 0 -120 255 0 \N 5864 \N 53 102 5870 399 267 399 0 401 255 0 -120 255 0 \N 5864 \N 53 102 5870 401 269 400 0 402 255 0 -120 255 0 \N 5864 \N 53 102 5870 402 270 401 0 400 255 0 -120 255 0 \N 5864 \N 53 102 5870 400 268 402 0 \. -- -- Data for Name: channelannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY channelannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: channelbinding; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY channelbinding (id, active, alpha, blue, coefficient, permissions, green, inputend, inputstart, noisereduction, red, version, creation_id, external_id, group_id, owner_id, update_id, family, renderingdef, renderingdef_index) FROM stdin; 121 t 255 0 1 -40 255 255 1 f 0 0 1123 \N 3 2 1123 1 51 0 122 t 255 255 1 -40 0 167 1 f 0 0 1123 \N 3 2 1123 1 51 1 123 t 255 0 1 -40 255 255 1 f 0 0 1123 \N 3 2 1123 1 52 0 124 t 255 255 1 -40 0 145 0 f 0 0 1123 \N 3 2 1123 1 52 1 125 t 255 0 1 -40 255 255 1 f 0 0 1123 \N 3 2 1123 1 53 0 126 t 255 255 1 -40 0 255 1 f 0 0 1123 \N 3 2 1123 1 53 1 127 t 255 0 1 -40 255 255 1 f 0 0 1123 \N 3 2 1123 1 54 0 128 t 255 255 1 -40 0 255 1 f 0 0 1123 \N 3 2 1123 1 54 1 129 t 255 0 1 -40 255 255 1 f 0 0 1123 \N 3 2 1123 1 55 0 130 t 255 255 1 -40 0 255 1 f 0 0 1123 \N 3 2 1123 1 55 1 131 t 255 0 1 -40 255 255 1 f 0 0 1123 \N 3 2 1123 1 56 0 132 t 255 255 1 -40 0 251 1 f 0 0 1123 \N 3 2 1123 1 56 1 295 t 255 0 1 -40 255 282 34 f 0 0 4116 \N 3 2 4256 1 173 0 296 t 255 255 1 -40 0 71 21 f 0 0 4116 \N 3 2 4256 1 173 1 297 t 255 0 1 -40 255 275 26 f 0 0 4132 \N 3 2 4282 1 174 0 298 t 255 255 1 -40 0 154 15 f 0 0 4132 \N 3 2 4282 1 174 1 133 t 255 0 1 -40 255 255 1 f 0 0 1145 \N 3 2 1149 1 57 0 134 t 255 255 1 -40 0 239 0 f 0 0 1145 \N 3 2 1149 1 57 1 135 t 255 0 1 -40 255 255 1 f 0 0 1145 \N 3 2 1149 1 58 0 136 t 255 255 1 -40 0 121 0 f 0 0 1145 \N 3 2 1149 1 58 1 137 t 255 255 1 -40 255 62 0 f 255 0 1145 \N 3 2 1149 1 58 2 138 t 255 0 1 -40 255 255 1 f 0 0 1145 \N 3 2 1149 1 59 0 139 t 255 255 1 -40 0 252 0 f 0 0 1145 \N 3 2 1149 1 59 1 140 t 255 255 1 -40 255 57 0 f 255 0 1145 \N 3 2 1149 1 59 2 141 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 60 0 142 t 255 255 1 -40 0 252 2 f 0 0 1149 \N 3 2 1149 1 60 1 143 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 61 0 144 t 255 255 1 -40 0 255 0 f 0 0 1149 \N 3 2 1149 1 61 1 145 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 62 0 146 t 255 255 1 -40 0 255 0 f 0 0 1149 \N 3 2 1149 1 62 1 147 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 63 0 148 t 255 255 1 -40 0 226 0 f 0 0 1149 \N 3 2 1149 1 63 1 149 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 64 0 150 t 255 255 1 -40 0 206 0 f 0 0 1149 \N 3 2 1149 1 64 1 151 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 65 0 152 t 255 255 1 -40 0 235 0 f 0 0 1149 \N 3 2 1149 1 65 1 153 t 255 0 1 -40 255 255 1 f 0 0 1149 \N 3 2 1149 1 66 0 154 t 255 255 1 -40 0 240 0 f 0 0 1149 \N 3 2 1149 1 66 1 155 t 255 0 1 -40 255 254 1 f 0 0 1149 \N 3 2 1149 1 67 0 156 t 255 255 1 -40 0 136 0 f 0 0 1149 \N 3 2 1149 1 67 1 109 t 255 0 1 -40 255 255 1 f 0 0 1059 \N 3 2 1059 1 45 0 110 t 255 255 1 -40 0 160 2 f 0 0 1059 \N 3 2 1059 1 45 1 111 t 255 0 1 -40 255 255 1 f 0 0 1059 \N 3 2 1059 1 46 0 112 t 255 255 1 -40 0 114 2 f 0 0 1059 \N 3 2 1059 1 46 1 113 t 255 0 1 -40 255 255 1 f 0 0 1059 \N 3 2 1059 1 47 0 114 t 255 255 1 -40 0 220 2 f 0 0 1059 \N 3 2 1059 1 47 1 115 t 255 0 1 -40 255 255 1 f 0 0 1059 \N 3 2 1059 1 48 0 116 t 255 255 1 -40 0 174 2 f 0 0 1059 \N 3 2 1059 1 48 1 117 t 255 0 1 -40 255 255 1 f 0 0 1059 \N 3 2 1059 1 49 0 118 t 255 255 1 -40 0 243 2 f 0 0 1059 \N 3 2 1059 1 49 1 119 t 255 0 1 -40 255 255 1 f 0 0 1059 \N 3 2 1059 1 50 0 120 t 255 255 1 -40 0 252 2 f 0 0 1059 \N 3 2 1059 1 50 1 157 t 255 0 1 -40 255 255 1 f 0 0 1282 \N 3 5 1282 1 68 0 158 t 255 255 1 -40 0 160 2 f 0 0 1282 \N 3 5 1282 1 68 1 163 t 255 0 1 -40 255 255 1 f 0 0 1285 \N 3 5 1285 1 71 0 164 t 255 255 1 -40 0 220 2 f 0 0 1285 \N 3 5 1285 1 71 1 167 t 255 0 1 -40 255 255 1 f 0 0 1293 \N 3 5 1293 1 73 0 168 t 255 255 1 -40 0 252 2 f 0 0 1293 \N 3 5 1293 1 73 1 159 t 255 0 1 -40 255 255 1 f 0 0 1283 \N 3 5 1283 1 69 0 160 t 255 255 1 -40 0 243 2 f 0 0 1283 \N 3 5 1283 1 69 1 165 t 255 0 1 -40 255 255 1 f 0 0 1286 \N 3 5 1286 1 72 0 166 t 255 255 1 -40 0 174 2 f 0 0 1286 \N 3 5 1286 1 72 1 173 t 255 0 1 -40 255 255 1 f 0 0 1302 \N 3 5 1302 1 77 0 171 t 255 0 1 -40 255 255 1 f 0 0 1304 \N 3 5 1304 1 75 0 175 t 255 255 1 -40 0 251 1 f 0 0 1302 \N 3 5 1302 1 77 1 174 t 255 255 1 -40 0 255 1 f 0 0 1304 \N 3 5 1304 1 75 1 177 t 255 0 1 -40 255 255 1 f 0 0 1303 \N 3 5 1303 1 78 0 178 t 255 255 1 -40 0 255 1 f 0 0 1303 \N 3 5 1303 1 78 1 181 t 255 0 1 -40 255 255 1 f 0 0 1318 \N 3 5 1318 1 80 0 182 t 255 255 1 -40 0 252 0 f 0 0 1318 \N 3 5 1318 1 80 1 183 t 255 255 1 -40 255 57 0 f 255 0 1318 \N 3 5 1318 1 80 2 186 t 255 0 1 -40 255 255 1 f 0 0 1321 \N 3 5 1321 1 82 0 187 t 255 255 1 -40 0 239 0 f 0 0 1321 \N 3 5 1321 1 82 1 188 t 255 0 1 -40 255 255 1 f 0 0 1322 \N 3 5 1322 1 83 0 189 t 255 255 1 -40 0 121 0 f 0 0 1322 \N 3 5 1322 1 83 1 190 t 255 255 1 -40 255 62 0 f 255 0 1322 \N 3 5 1322 1 83 2 193 t 255 0 1 -40 255 255 1 f 0 0 1329 \N 3 5 1329 1 85 0 194 t 255 255 1 -40 0 240 0 f 0 0 1329 \N 3 5 1329 1 85 1 195 t 255 0 1 -40 255 255 1 f 0 0 1334 \N 3 5 1334 1 86 0 196 t 255 255 1 -40 0 206 0 f 0 0 1334 \N 3 5 1334 1 86 1 197 t 255 0 1 -40 255 255 1 f 0 0 1336 \N 3 5 1336 1 87 0 200 t 255 255 1 -40 0 226 0 f 0 0 1336 \N 3 5 1336 1 87 1 201 t 255 0 1 -40 255 255 1 f 0 0 1338 \N 3 5 1338 1 89 0 202 t 255 255 1 -40 0 252 2 f 0 0 1338 \N 3 5 1338 1 89 1 221 t 255 0 1 -40 255 395 32 f 0 0 2065 \N 3 2 2171 1 99 0 222 t 255 255 1 -40 0 205 24 f 0 0 2065 \N 3 2 2171 1 99 1 225 t 255 0 1 -40 255 346 26 f 0 0 2101 \N 3 2 2142 1 101 0 226 t 255 255 1 -40 0 168 20 f 0 0 2101 \N 3 2 2142 1 101 1 223 t 255 0 1 -40 255 311 25 f 0 0 2083 \N 3 2 2161 1 100 0 224 t 255 255 1 -40 0 222 24 f 0 0 2083 \N 3 2 2161 1 100 1 227 t 255 0 1 -40 255 395 32 f 0 0 2252 \N 3 2 2276 1 102 0 228 t 255 255 1 -40 0 205 24 f 0 0 2252 \N 3 2 2276 1 102 1 273 t 255 0 1 -40 255 519 42 f 0 0 3465 \N 3 2 3510 1 162 0 274 t 255 255 1 -40 0 216 0 f 0 0 3465 \N 3 2 3510 1 162 1 275 t 255 0 1 -40 255 191 26 f 0 0 3492 \N 3 2 3611 1 163 0 276 t 255 255 1 -40 0 158 0 f 0 0 3492 \N 3 2 3611 1 163 1 279 t 255 0 1 -40 255 190 30 f 0 0 3690 \N 3 2 3828 1 165 0 280 t 255 255 1 -40 0 121 0 f 0 0 3690 \N 3 2 3828 1 165 1 281 t 255 0 1 -40 255 357 31 f 0 0 3706 \N 3 2 3838 1 166 0 282 t 255 255 1 -40 0 99 23 f 0 0 3706 \N 3 2 3838 1 166 1 277 t 255 0 1 -40 255 980 49 f 0 0 3674 \N 3 2 3818 1 164 0 278 t 255 255 1 -40 0 300 15 f 0 0 3674 \N 3 2 3818 1 164 1 205 t 255 0 1 -40 255 255 0 f 0 0 1618 \N 3 2 1618 1 91 0 206 t 255 255 1 -40 0 255 0 f 0 0 1618 \N 3 2 1618 1 91 1 207 t 255 0 1 -40 255 255 0 f 0 0 1618 \N 3 2 1618 1 92 0 208 t 255 255 1 -40 0 255 1 f 0 0 1618 \N 3 2 1618 1 92 1 209 t 255 0 1 -40 255 255 0 f 0 0 1618 \N 3 2 1618 1 93 0 210 t 255 255 1 -40 0 255 1 f 0 0 1618 \N 3 2 1618 1 93 1 161 t 255 0 1 -40 255 255 1 f 0 0 1284 \N 3 5 1284 1 70 0 162 t 255 255 1 -40 0 114 2 f 0 0 1284 \N 3 5 1284 1 70 1 169 t 255 0 1 -40 255 255 1 f 0 0 1300 \N 3 5 1300 1 74 0 170 t 255 255 1 -40 0 255 1 f 0 0 1300 \N 3 5 1300 1 74 1 172 t 255 0 1 -40 255 255 1 f 0 0 1301 \N 3 5 1301 1 76 0 176 t 255 255 1 -40 0 167 1 f 0 0 1301 \N 3 5 1301 1 76 1 179 t 255 0 1 -40 255 255 1 f 0 0 1311 \N 3 5 1311 1 79 0 211 t 255 0 1 -40 255 255 0 f 0 0 1618 \N 3 2 1618 1 94 0 212 t 255 255 1 -40 0 255 1 f 0 0 1618 \N 3 2 1618 1 94 1 259 t 255 0 1 -40 255 305 27 f 0 0 2905 \N 3 2 3067 1 155 0 180 t 255 255 1 -40 0 145 0 f 0 0 1311 \N 3 5 1311 1 79 1 184 t 255 0 1 -40 255 255 1 f 0 0 1320 \N 3 5 1320 1 81 0 185 t 255 255 1 -40 0 235 0 f 0 0 1320 \N 3 5 1320 1 81 1 191 t 255 0 1 -40 255 254 1 f 0 0 1319 \N 3 5 1319 1 84 0 192 t 255 255 1 -40 0 136 0 f 0 0 1319 \N 3 5 1319 1 84 1 198 t 255 0 1 -40 255 255 1 f 0 0 1335 \N 3 5 1335 1 88 0 199 t 255 255 1 -40 0 255 0 f 0 0 1335 \N 3 5 1335 1 88 1 203 t 255 0 1 -40 255 255 1 f 0 0 1344 \N 3 5 1344 1 90 0 204 t 255 255 1 -40 0 255 0 f 0 0 1344 \N 3 5 1344 1 90 1 260 t 255 255 1 -40 0 211 0 f 0 0 2905 \N 3 2 3067 1 155 1 252 t 255 255 1 -40 0 178 0 f 0 0 2841 \N 3 2 2993 1 151 1 255 t 255 0 1 -40 255 209 25 f 0 0 2873 \N 3 2 3003 1 153 0 261 t 255 0 1 -40 255 256 25 f 0 0 2921 \N 3 2 3077 1 156 0 262 t 255 255 1 -40 0 55 17 f 0 0 2921 \N 3 2 3077 1 156 1 264 t 255 255 1 -40 0 190 15 f 0 0 3291 \N 3 2 3407 1 157 1 265 t 255 0 1 -40 255 164 19 f 0 0 3314 \N 3 2 3418 1 158 0 253 t 255 0 1 -40 255 255 1 f 0 0 2857 \N 3 2 2954 1 152 0 256 t 255 255 1 -40 0 136 14 f 0 0 2873 \N 3 2 3003 1 153 1 254 t 255 255 1 -40 0 114 2 f 0 0 2857 \N 3 2 2972 1 152 1 251 t 255 0 1 -40 255 94 22 f 0 0 2841 \N 3 2 2993 1 151 0 257 t 255 0 1 -40 255 209 25 f 0 0 2889 \N 3 2 3057 1 154 0 258 t 255 255 1 -40 0 217 0 f 0 0 2889 \N 3 2 3057 1 154 1 267 t 255 0 1 -40 255 288 31 f 0 0 3335 \N 3 2 3428 1 159 0 268 t 255 255 1 -40 0 68 20 f 0 0 3335 \N 3 2 3428 1 159 1 269 t 255 0 1 -40 255 219 30 f 0 0 3352 \N 3 2 3438 1 160 0 270 t 255 255 1 -40 0 82 19 f 0 0 3352 \N 3 2 3438 1 160 1 263 t 255 0 1 -40 255 126 24 f 0 0 3291 \N 3 2 3403 1 157 0 266 t 255 255 1 -40 0 177 21 f 0 0 3314 \N 3 2 3418 1 158 1 287 t 255 0 1 -40 255 417 29 f 0 0 3754 \N 3 2 4006 1 169 0 288 t 255 255 1 -40 0 109 20 f 0 0 3754 \N 3 2 4006 1 169 1 289 t 255 0 1 -40 255 181 29 f 0 0 3770 \N 3 2 4016 1 170 0 290 t 255 255 1 -40 0 125 15 f 0 0 3770 \N 3 2 4016 1 170 1 283 t 255 0 1 -40 255 241 29 f 0 0 3722 \N 3 2 3860 1 167 0 284 t 255 255 1 -40 0 85 20 f 0 0 3722 \N 3 2 3860 1 167 1 285 t 255 0 1 -40 255 282 27 f 0 0 3738 \N 3 2 3870 1 168 0 286 t 255 255 1 -40 0 82 15 f 0 0 3738 \N 3 2 3870 1 168 1 291 t 255 0 1 -40 255 363 29 f 0 0 3786 \N 3 2 4028 1 171 0 292 t 255 255 1 -40 0 150 28 f 0 0 3786 \N 3 2 4028 1 171 1 293 t 255 0 1 -40 255 204 28 f 0 0 3809 \N 3 2 4039 1 172 0 294 t 255 255 1 -40 0 87 20 f 0 0 3809 \N 3 2 4039 1 172 1 301 t 255 0 1 -40 0 311.66540486848209 25.442451714804339 f 255 0 5078 \N 3 3 5078 1 201 0 302 t 255 0 1 -40 255 222.03350422119257 24.025139983650298 f 0 0 5078 \N 3 3 5078 1 201 1 303 t 255 0 1 -40 0 395.73667045112416 32.305268828386033 f 255 0 5077 \N 3 3 5077 1 202 0 304 t 255 0 1 -40 255 205.55735168542014 24.91776928328909 f 0 0 5077 \N 3 3 5077 1 202 1 305 t 255 0 1 -40 0 346.63501228791426 26.164795239968225 f 255 0 5076 \N 3 3 5076 1 203 0 306 t 255 0 1 -40 255 168.34388323258608 20.458777114003897 f 0 0 5076 \N 3 3 5076 1 203 1 307 t 255 0 1 -40 0 395.73667045112416 32.305268828386033 f 255 0 5075 \N 3 3 5075 1 204 0 308 t 255 0 1 -40 255 205.55735168542014 24.91776928328909 f 0 0 5075 \N 3 3 5075 1 204 1 309 t 255 0 1 -120 255 139 1 f 0 0 5155 \N 53 102 5155 1 205 0 310 t 255 255 1 -120 255 8 1 f 255 0 5155 \N 53 102 5155 1 205 1 311 t 255 0 1 -120 255 117 2 f 0 0 5155 \N 53 102 5155 1 206 0 312 t 255 255 1 -120 255 9 1 f 255 0 5155 \N 53 102 5155 1 206 1 313 t 255 0 1 -120 255 255 0 f 0 0 5155 \N 53 102 5155 1 207 0 314 t 255 255 1 -120 255 8 1 f 255 0 5155 \N 53 102 5155 1 207 1 315 t 255 0 1 -120 255 182 3 f 0 0 5155 \N 53 102 5155 1 208 0 316 t 255 255 1 -120 255 9 1 f 255 0 5155 \N 53 102 5155 1 208 1 317 t 255 0 1 -120 255 148 3 f 0 0 5177 \N 53 102 5177 1 209 0 318 t 255 0 1 -120 255 57 3 f 0 0 5177 \N 53 102 5177 1 210 0 319 t 255 0 1 -120 255 255 3 f 0 0 5177 \N 53 102 5177 1 211 0 320 t 255 0 1 -120 255 71 3 f 0 0 5177 \N 53 102 5177 1 212 0 321 t 255 0 1 -120 255 101 3 f 0 0 5200 \N 53 102 5200 1 213 0 322 t 255 0 1 -120 255 65 3 f 0 0 5200 \N 53 102 5200 1 214 0 323 t 255 0 1 -120 255 255 3 f 0 0 5200 \N 53 102 5200 1 215 0 324 t 255 0 1 -120 255 86 3 f 0 0 5200 \N 53 102 5200 1 216 0 325 t 255 0 1 -120 255 240 3 f 0 0 5223 \N 53 102 5223 1 217 0 326 t 255 0 1 -120 255 167 3 f 0 0 5223 \N 53 102 5223 1 218 0 327 t 255 0 1 -120 255 255 3 f 0 0 5223 \N 53 102 5223 1 219 0 328 t 255 0 1 -120 255 255 3 f 0 0 5223 \N 53 102 5223 1 220 0 329 t 255 0 1 -120 255 205 3 f 0 0 5245 \N 53 102 5245 1 221 0 330 t 255 0 1 -120 255 79 3 f 0 0 5245 \N 53 102 5245 1 222 0 331 t 255 0 1 -120 255 255 1 f 0 0 5245 \N 53 102 5245 1 223 0 332 t 255 0 1 -120 255 142 3 f 0 0 5245 \N 53 102 5245 1 224 0 333 t 255 0 1 -120 255 148 3 f 0 0 5267 \N 53 102 5267 1 225 0 334 t 255 0 1 -120 255 180 3 f 0 0 5267 \N 53 102 5267 1 226 0 335 t 255 0 1 -120 255 255 1 f 0 0 5267 \N 53 102 5267 1 227 0 336 t 255 0 1 -120 255 236 3 f 0 0 5267 \N 53 102 5267 1 228 0 337 t 255 0 1 -120 255 231 3 f 0 0 5289 \N 53 102 5289 1 229 0 338 t 255 0 1 -120 255 164 3 f 0 0 5289 \N 53 102 5289 1 230 0 339 t 255 0 1 -120 255 255 3 f 0 0 5289 \N 53 102 5289 1 231 0 340 t 255 0 1 -120 255 200 3 f 0 0 5289 \N 53 102 5289 1 232 0 341 t 255 0 1 -120 255 163 2 f 0 0 5311 \N 53 102 5311 1 233 0 342 t 255 255 1 -120 255 10 1 f 255 0 5311 \N 53 102 5311 1 233 1 343 t 255 0 1 -120 255 101 2 f 0 0 5311 \N 53 102 5311 1 234 0 344 t 255 255 1 -120 255 13 1 f 255 0 5311 \N 53 102 5311 1 234 1 345 t 255 0 1 -120 255 255 1 f 0 0 5311 \N 53 102 5311 1 235 0 346 t 255 255 1 -120 255 6 1 f 255 0 5311 \N 53 102 5311 1 235 1 347 t 255 0 1 -120 255 157 3 f 0 0 5311 \N 53 102 5311 1 236 0 348 t 255 255 1 -120 255 9 1 f 255 0 5311 \N 53 102 5311 1 236 1 357 t 255 0 1 -120 255 159 2 f 0 0 5403 \N 53 102 5403 1 241 0 358 t 255 255 1 -120 255 22 1 f 255 0 5403 \N 53 102 5403 1 241 1 359 t 255 0 1 -120 255 91 3 f 0 0 5403 \N 53 102 5403 1 242 0 360 t 255 255 1 -120 255 36 1 f 255 0 5403 \N 53 102 5403 1 242 1 361 t 255 0 1 -120 255 255 0 f 0 0 5403 \N 53 102 5403 1 243 0 362 t 255 255 1 -120 255 21 1 f 255 0 5403 \N 53 102 5403 1 243 1 355 t 255 0 1 -120 255 255 0 f 0 0 5375 \N 53 102 5375 1 240 0 363 t 255 0 1 -120 255 109 3 f 0 0 5403 \N 53 102 5403 1 244 0 349 t 255 0 1 -120 255 73 3 f 0 0 5362 \N 53 102 5379 1 237 0 350 t 255 255 1 -120 255 25 1 f 255 0 5362 \N 53 102 5379 1 237 1 351 t 255 0 1 -120 255 101 2 f 0 0 5367 \N 53 102 5379 1 238 0 352 t 255 255 1 -120 255 25 1 f 255 0 5367 \N 53 102 5379 1 238 1 353 t 255 0 1 -120 255 58 2 f 0 0 5369 \N 53 102 5379 1 239 0 354 t 255 255 1 -120 255 30 1 f 255 0 5369 \N 53 102 5379 1 239 1 356 t 255 255 1 -120 255 25 1 f 255 0 5375 \N 53 102 5379 1 240 1 364 t 255 255 1 -120 255 25 1 f 255 0 5403 \N 53 102 5403 1 244 1 365 t 255 0 1 -120 255 133 2 f 0 0 5427 \N 53 102 5427 1 245 0 366 t 255 255 1 -120 255 27 1 f 255 0 5427 \N 53 102 5427 1 245 1 367 t 255 0 1 -120 255 93 3 f 0 0 5427 \N 53 102 5427 1 246 0 368 t 255 255 1 -120 255 28 1 f 255 0 5427 \N 53 102 5427 1 246 1 369 t 255 0 1 -120 255 255 3 f 0 0 5427 \N 53 102 5427 1 247 0 370 t 255 255 1 -120 255 22 1 f 255 0 5427 \N 53 102 5427 1 247 1 371 t 255 0 1 -120 255 119 3 f 0 0 5427 \N 53 102 5427 1 248 0 372 t 255 255 1 -120 255 33 1 f 255 0 5427 \N 53 102 5427 1 248 1 373 t 255 0 1 -120 255 241 2 f 0 0 5453 \N 53 102 5453 1 249 0 374 t 255 255 1 -120 255 22 1 f 255 0 5453 \N 53 102 5453 1 249 1 375 t 255 0 1 -120 255 135 3 f 0 0 5453 \N 53 102 5453 1 250 0 376 t 255 255 1 -120 255 42 1 f 255 0 5453 \N 53 102 5453 1 250 1 377 t 255 0 1 -120 255 255 3 f 0 0 5453 \N 53 102 5453 1 251 0 378 t 255 255 1 -120 255 24 1 f 255 0 5453 \N 53 102 5453 1 251 1 379 t 255 0 1 -120 255 170 3 f 0 0 5453 \N 53 102 5453 1 252 0 380 t 255 255 1 -120 255 30 1 f 255 0 5453 \N 53 102 5453 1 252 1 381 t 255 0 1 -120 255 215 3 f 0 0 5475 \N 53 102 5475 1 253 0 382 t 255 255 1 -120 255 22 1 f 255 0 5475 \N 53 102 5475 1 253 1 383 t 255 0 1 -120 255 164 3 f 0 0 5475 \N 53 102 5475 1 254 0 384 t 255 255 1 -120 255 35 1 f 255 0 5475 \N 53 102 5475 1 254 1 385 t 255 0 1 -120 255 255 1 f 0 0 5475 \N 53 102 5475 1 255 0 386 t 255 255 1 -120 255 21 1 f 255 0 5475 \N 53 102 5475 1 255 1 387 t 255 0 1 -120 255 212 3 f 0 0 5475 \N 53 102 5475 1 256 0 388 t 255 255 1 -120 255 31 1 f 255 0 5475 \N 53 102 5475 1 256 1 389 t 255 0 1 -120 255 145 3 f 0 0 5497 \N 53 102 5497 1 257 0 390 t 255 255 1 -120 255 36 1 f 255 0 5497 \N 53 102 5497 1 257 1 391 t 255 0 1 -120 255 98 3 f 0 0 5497 \N 53 102 5497 1 258 0 392 t 255 255 1 -120 255 40 1 f 255 0 5497 \N 53 102 5497 1 258 1 393 t 255 0 1 -120 255 255 3 f 0 0 5497 \N 53 102 5497 1 259 0 394 t 255 255 1 -120 255 22 1 f 255 0 5497 \N 53 102 5497 1 259 1 395 t 255 0 1 -120 255 126 3 f 0 0 5497 \N 53 102 5497 1 260 0 396 t 255 255 1 -120 255 36 1 f 255 0 5497 \N 53 102 5497 1 260 1 397 t 255 0 1 -120 255 255 3 f 0 0 5519 \N 53 102 5519 1 261 0 398 t 255 0 1 -120 255 77 3 f 0 0 5519 \N 53 102 5519 1 262 0 399 t 255 0 1 -120 255 255 1 f 0 0 5519 \N 53 102 5519 1 263 0 400 t 255 0 1 -120 255 81 3 f 0 0 5519 \N 53 102 5519 1 264 0 401 t 255 0 1 -120 255 228 3 f 0 0 5543 \N 53 102 5543 1 265 0 402 t 255 0 1 -120 255 112 3 f 0 0 5543 \N 53 102 5543 1 266 0 403 t 255 0 1 -120 255 255 0 f 0 0 5543 \N 53 102 5543 1 267 0 404 t 255 0 1 -120 255 140 3 f 0 0 5543 \N 53 102 5543 1 268 0 405 t 255 0 1 -120 255 229 3 f 0 0 5565 \N 53 102 5565 1 269 0 406 t 255 0 1 -120 255 175 3 f 0 0 5565 \N 53 102 5565 1 270 0 407 t 255 0 1 -120 255 255 3 f 0 0 5565 \N 53 102 5565 1 271 0 408 t 255 0 1 -120 255 224 3 f 0 0 5565 \N 53 102 5565 1 272 0 409 t 255 0 1 -120 255 255 3 f 0 0 5587 \N 53 102 5587 1 273 0 410 t 255 0 1 -120 255 255 1 f 0 0 5587 \N 53 102 5587 1 274 0 411 t 255 0 1 -120 255 248 3 f 0 0 5587 \N 53 102 5587 1 275 0 412 t 255 0 1 -120 255 207 3 f 0 0 5587 \N 53 102 5587 1 276 0 425 t 255 0 1 -120 255 192 3 f 0 0 5683 \N 53 102 5683 1 289 0 426 t 255 0 1 -120 255 115 3 f 0 0 5683 \N 53 102 5683 1 290 0 427 t 255 0 1 -120 255 255 3 f 0 0 5683 \N 53 102 5683 1 291 0 428 t 255 0 1 -120 255 195 3 f 0 0 5683 \N 53 102 5683 1 292 0 413 t 255 0 1 -120 255 255 3 f 0 0 5609 \N 53 102 5610 1 277 0 414 t 255 0 1 -120 255 140 3 f 0 0 5609 \N 53 102 5610 1 278 0 415 t 255 0 1 -120 255 255 3 f 0 0 5609 \N 53 102 5610 1 279 0 416 t 255 0 1 -120 255 146 3 f 0 0 5609 \N 53 102 5610 1 280 0 417 t 255 0 1 -120 255 192 3 f 0 0 5633 \N 53 102 5633 1 281 0 418 t 255 0 1 -120 255 255 3 f 0 0 5633 \N 53 102 5633 1 282 0 419 t 255 0 1 -120 255 178 3 f 0 0 5633 \N 53 102 5633 1 283 0 420 t 255 0 1 -120 255 156 3 f 0 0 5633 \N 53 102 5633 1 284 0 421 t 255 0 1 -120 255 238 3 f 0 0 5658 \N 53 102 5658 1 285 0 422 t 255 0 1 -120 255 132 3 f 0 0 5658 \N 53 102 5658 1 286 0 423 t 255 0 1 -120 255 255 0 f 0 0 5658 \N 53 102 5658 1 287 0 424 t 255 0 1 -120 255 145 3 f 0 0 5658 \N 53 102 5658 1 288 0 429 t 255 0 1 -120 255 100 3 f 0 0 5705 \N 53 102 5705 1 293 0 430 t 255 0 1 -120 255 124 3 f 0 0 5705 \N 53 102 5705 1 294 0 431 t 255 0 1 -120 255 255 3 f 0 0 5705 \N 53 102 5705 1 295 0 432 t 255 0 1 -120 255 138 3 f 0 0 5705 \N 53 102 5705 1 296 0 433 t 255 0 1 -120 255 249 3 f 0 0 5730 \N 53 102 5730 1 297 0 434 t 255 0 1 -120 255 122 3 f 0 0 5730 \N 53 102 5730 1 298 0 435 t 255 0 1 -120 255 255 0 f 0 0 5730 \N 53 102 5730 1 299 0 436 t 255 0 1 -120 255 171 3 f 0 0 5730 \N 53 102 5730 1 300 0 437 t 255 0 1 -120 255 255 3 f 0 0 5752 \N 53 102 5752 1 301 0 438 t 255 0 1 -120 255 145 3 f 0 0 5752 \N 53 102 5752 1 302 0 439 t 255 0 1 -120 255 255 1 f 0 0 5752 \N 53 102 5752 1 303 0 440 t 255 0 1 -120 255 204 3 f 0 0 5752 \N 53 102 5752 1 304 0 441 t 255 0 1 -120 255 130 3 f 0 0 5774 \N 53 102 5774 1 305 0 442 t 255 0 1 -120 255 86 3 f 0 0 5774 \N 53 102 5774 1 306 0 443 t 255 0 1 -120 255 255 2 f 0 0 5774 \N 53 102 5774 1 307 0 444 t 255 0 1 -120 255 137 3 f 0 0 5774 \N 53 102 5774 1 308 0 445 t 255 0 1 -120 255 126 2 f 0 0 5796 \N 53 102 5796 1 309 0 446 t 255 0 1 -120 255 131 3 f 0 0 5796 \N 53 102 5796 1 310 0 447 t 255 0 1 -120 255 255 3 f 0 0 5796 \N 53 102 5796 1 311 0 448 t 255 0 1 -120 255 145 3 f 0 0 5796 \N 53 102 5796 1 312 0 449 t 255 0 1 -120 255 204 3 f 0 0 5818 \N 53 102 5818 1 313 0 450 t 255 0 1 -120 255 131 3 f 0 0 5818 \N 53 102 5818 1 314 0 451 t 255 0 1 -120 255 255 3 f 0 0 5818 \N 53 102 5818 1 315 0 452 t 255 0 1 -120 255 223 3 f 0 0 5818 \N 53 102 5818 1 316 0 453 t 255 0 1 -120 255 255 3 f 0 0 5844 \N 53 102 5844 1 317 0 454 t 255 0 1 -120 255 255 1 f 0 0 5844 \N 53 102 5844 1 318 0 455 t 255 0 1 -120 255 201 3 f 0 0 5844 \N 53 102 5844 1 319 0 456 t 255 0 1 -120 255 153 3 f 0 0 5844 \N 53 102 5844 1 320 0 457 t 255 0 1 -120 255 255 3 f 0 0 5871 \N 53 102 5871 1 321 0 458 t 255 0 1 -120 255 255 3 f 0 0 5871 \N 53 102 5871 1 322 0 459 t 255 0 1 -120 255 255 3 f 0 0 5871 \N 53 102 5871 1 323 0 460 t 255 0 1 -120 255 255 3 f 0 0 5871 \N 53 102 5871 1 324 0 \. -- -- Data for Name: codomainmapcontext; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY codomainmapcontext (id, permissions, version, creation_id, external_id, group_id, owner_id, update_id, renderingdef, renderingdef_index) FROM stdin; \. -- -- Data for Name: configuration; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY configuration (name, value) FROM stdin; omero.db.uuid 1abff0c4-0d10-4fba-afef-58100c25d999 pixelDataEventLogLoader.v1.current_id -1 PersistentEventLogLoader.v2.current_id 16987 \. -- -- Data for Name: contrastmethod; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY contrastmethod (id, permissions, value, external_id) FROM stdin; 1 -52 Brightfield \N 2 -52 Phase \N 3 -52 DIC \N 4 -52 HoffmanModulation \N 5 -52 ObliqueIllumination \N 6 -52 PolarizedLight \N 7 -52 Darkfield \N 8 -52 Fluorescence \N 9 -52 Other \N 10 -52 Unknown \N \. -- -- Data for Name: contraststretchingcontext; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY contraststretchingcontext (xend, xstart, yend, ystart, codomainmapcontext_id) FROM stdin; \. -- -- Data for Name: correction; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY correction (id, permissions, value, external_id) FROM stdin; 1 -52 UV \N 2 -52 PlanApo \N 3 -52 PlanFluor \N 4 -52 SuperFluor \N 5 -52 VioletCorrected \N 6 -52 Achro \N 7 -52 Achromat \N 8 -52 Fluor \N 9 -52 Fl \N 10 -52 Fluar \N 11 -52 Neofluar \N 12 -52 Fluotar \N 13 -52 Apo \N 14 -52 Other \N 15 -52 Unknown \N \. -- -- Data for Name: count_experimenter_annotationlinks_by_owner; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY count_experimenter_annotationlinks_by_owner (experimenter_id, count, owner_id) FROM stdin; \. -- -- Data for Name: count_experimentergroup_annotationlinks_by_owner; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY count_experimentergroup_annotationlinks_by_owner (experimentergroup_id, count, owner_id) FROM stdin; \. -- -- Data for Name: count_node_annotationlinks_by_owner; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY count_node_annotationlinks_by_owner (node_id, count, owner_id) FROM stdin; \. -- -- Data for Name: count_session_annotationlinks_by_owner; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY count_session_annotationlinks_by_owner (session_id, count, owner_id) FROM stdin; \. -- -- Data for Name: dataset; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY dataset (id, description, permissions, name, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; 7 \N -40 aa \N 1467 \N 3 5 1467 9 Deconvolved images from OS dataset -40 Decon-OS \N 1902 \N 3 2 2282 8 Not-deconvolved stacks. -40 OS \N 1607 \N 3 2 2287 51 Deconvolved OldNewSystem (ONS) stacks for intensity measurement. -40 Decon-ONS \N 2828 \N 3 2 3132 52 Deconvolved OldSystem (OS) stacks for intensity measurement. -40 Decon-OS \N 3133 \N 3 2 3134 4 Not-deconvolved OldNewSystem (ONS) stacks for intensity measurement. -40 ONS \N 1046 \N 3 2 3142 5 Not-deconvolved OldSystem (OS) stacks for intensity measurement. -40 OS \N 1047 \N 3 2 3149 53 Deconvolved SuperfoldedNewSystem (SNS) stacks for intensity measurement. -40 Decon-SNS \N 3285 \N 3 2 3630 6 Not-deconvolved SuperfoldedNewSystem (SNS) stacks for intensity measurement. -40 SNS \N 1048 \N 3 2 3642 101 -120 2012.09.06 GFPc14 \N 5143 \N 53 102 5143 102 -120 2012.09.06 GFPDel4c14 \N 5196 \N 53 102 5196 \. -- -- Data for Name: datasetannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY datasetannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 51 -40 \N 71 2829 \N 3 2 2829 51 52 -40 \N 72 2830 \N 3 2 2830 4 53 -40 \N 71 3135 \N 3 2 3135 52 54 -40 \N 72 3150 \N 3 2 3150 5 55 -40 \N 107 3152 \N 3 2 3152 52 56 -40 \N 108 3160 \N 3 2 3160 51 57 -40 \N 108 3161 \N 3 2 3161 4 58 -40 \N 107 3162 \N 3 2 3162 5 59 -40 \N 109 3175 \N 3 2 3175 6 60 -40 \N 107 3180 \N 3 2 3180 8 61 -40 \N 72 3181 \N 3 2 3181 8 62 -40 \N 71 3193 \N 3 2 3193 9 63 -40 \N 107 3194 \N 3 2 3194 9 64 -40 \N 72 3242 \N 3 2 3242 6 65 -40 \N 71 3286 \N 3 2 3286 53 66 -40 \N 109 3287 \N 3 2 3287 53 101 -120 \N 326 6095 \N 53 102 6095 101 102 -120 \N 328 6157 \N 53 102 6157 102 \. -- -- Data for Name: datasetimagelink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY datasetimagelink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 38 -40 0 38 1055 \N 3 2 1055 4 39 -40 0 39 1055 \N 3 2 1055 4 40 -40 0 40 1055 \N 3 2 1055 4 41 -40 0 41 1055 \N 3 2 1055 4 42 -40 0 42 1055 \N 3 2 1055 4 43 -40 0 43 1055 \N 3 2 1055 4 44 -40 0 44 1118 \N 3 2 1118 5 45 -40 0 45 1118 \N 3 2 1118 5 46 -40 0 46 1118 \N 3 2 1118 5 47 -40 0 47 1118 \N 3 2 1118 5 48 -40 0 48 1118 \N 3 2 1118 5 49 -40 0 49 1118 \N 3 2 1118 5 50 -40 0 50 1143 \N 3 2 1143 6 51 -40 0 51 1143 \N 3 2 1143 6 52 -40 0 52 1143 \N 3 2 1143 6 53 -40 0 53 1143 \N 3 2 1143 6 54 -40 0 54 1143 \N 3 2 1143 6 55 -40 0 55 1143 \N 3 2 1143 6 56 -40 0 56 1143 \N 3 2 1143 6 57 -40 0 57 1143 \N 3 2 1143 6 58 -40 0 58 1143 \N 3 2 1143 6 59 -40 0 59 1143 \N 3 2 1143 6 60 -40 0 60 1143 \N 3 2 1143 6 61 -40 0 61 1614 \N 3 2 1614 8 62 -40 0 62 1614 \N 3 2 1614 8 63 -40 0 63 1614 \N 3 2 1614 8 64 -40 0 64 1614 \N 3 2 1614 8 69 -40 0 69 2061 \N 3 2 2061 9 70 -40 0 70 2079 \N 3 2 2079 9 71 -40 0 71 2097 \N 3 2 2097 9 72 -40 0 72 2249 \N 3 2 2249 9 101 -40 \N 101 3088 \N 3 2 3088 51 102 -40 \N 102 3089 \N 3 2 3089 51 103 -40 \N 103 3090 \N 3 2 3090 51 104 -40 \N 104 3091 \N 3 2 3091 51 105 -40 \N 105 3092 \N 3 2 3092 51 106 -40 \N 106 3093 \N 3 2 3093 51 107 -40 \N 107 3621 \N 3 2 3621 52 108 -40 \N 108 3622 \N 3 2 3622 52 109 -40 \N 109 3623 \N 3 2 3623 52 110 -40 \N 110 3624 \N 3 2 3624 52 111 -40 \N 112 3625 \N 3 2 3625 52 112 -40 \N 113 3626 \N 3 2 3626 52 113 -40 \N 114 4081 \N 3 2 4081 53 114 -40 \N 115 4082 \N 3 2 4082 53 115 -40 \N 116 4083 \N 3 2 4083 53 116 -40 \N 117 4084 \N 3 2 4084 53 117 -40 \N 118 4085 \N 3 2 4085 53 118 -40 \N 119 4086 \N 3 2 4086 53 119 -40 \N 120 4087 \N 3 2 4087 53 120 -40 \N 121 4088 \N 3 2 4088 53 121 -40 \N 122 4089 \N 3 2 4089 53 122 -40 \N 123 4285 \N 3 2 4285 53 123 -40 \N 124 4286 \N 3 2 4286 53 151 -120 0 151 5151 \N 53 102 5151 101 152 -120 0 152 5151 \N 53 102 5151 101 153 -120 0 153 5151 \N 53 102 5151 101 154 -120 0 154 5151 \N 53 102 5151 101 155 -120 0 155 5173 \N 53 102 5173 101 156 -120 0 156 5173 \N 53 102 5173 101 157 -120 0 157 5173 \N 53 102 5173 101 158 -120 0 158 5173 \N 53 102 5173 101 159 -120 0 159 5195 \N 53 102 5195 101 160 -120 0 160 5195 \N 53 102 5195 101 161 -120 0 161 5195 \N 53 102 5195 101 162 -120 0 162 5195 \N 53 102 5195 101 163 -120 0 163 5218 \N 53 102 5218 101 164 -120 0 164 5218 \N 53 102 5218 101 165 -120 0 165 5218 \N 53 102 5218 101 166 -120 0 166 5218 \N 53 102 5218 101 167 -120 0 167 5241 \N 53 102 5241 101 168 -120 0 168 5241 \N 53 102 5241 101 169 -120 0 169 5241 \N 53 102 5241 101 170 -120 0 170 5241 \N 53 102 5241 101 171 -120 0 171 5263 \N 53 102 5263 101 172 -120 0 172 5263 \N 53 102 5263 101 173 -120 0 173 5263 \N 53 102 5263 101 174 -120 0 174 5263 \N 53 102 5263 101 175 -120 0 175 5285 \N 53 102 5285 101 176 -120 0 176 5285 \N 53 102 5285 101 177 -120 0 177 5285 \N 53 102 5285 101 178 -120 0 178 5285 \N 53 102 5285 101 179 -120 0 179 5307 \N 53 102 5307 101 180 -120 0 180 5307 \N 53 102 5307 101 181 -120 0 181 5307 \N 53 102 5307 101 182 -120 0 182 5307 \N 53 102 5307 101 183 -120 0 183 5329 \N 53 102 5329 101 184 -120 0 184 5329 \N 53 102 5329 101 185 -120 0 185 5329 \N 53 102 5329 101 186 -120 0 186 5329 \N 53 102 5329 101 187 -120 0 187 5397 \N 53 102 5397 101 188 -120 0 188 5397 \N 53 102 5397 101 189 -120 0 189 5397 \N 53 102 5397 101 190 -120 0 190 5397 \N 53 102 5397 101 191 -120 0 191 5421 \N 53 102 5421 101 192 -120 0 192 5421 \N 53 102 5421 101 193 -120 0 193 5421 \N 53 102 5421 101 194 -120 0 194 5421 \N 53 102 5421 101 195 -120 0 195 5446 \N 53 102 5446 101 196 -120 0 196 5446 \N 53 102 5446 101 197 -120 0 197 5446 \N 53 102 5446 101 198 -120 0 198 5446 \N 53 102 5446 101 199 -120 0 199 5471 \N 53 102 5471 101 200 -120 0 200 5471 \N 53 102 5471 101 201 -120 0 201 5471 \N 53 102 5471 101 202 -120 0 202 5471 \N 53 102 5471 101 203 -120 0 203 5493 \N 53 102 5493 101 204 -120 0 204 5493 \N 53 102 5493 101 205 -120 0 205 5493 \N 53 102 5493 101 206 -120 0 206 5493 \N 53 102 5493 101 207 -120 0 207 5515 \N 53 102 5515 101 208 -120 0 208 5515 \N 53 102 5515 101 209 -120 0 209 5515 \N 53 102 5515 101 210 -120 0 210 5515 \N 53 102 5515 101 211 -120 0 211 5539 \N 53 102 5539 102 212 -120 0 212 5539 \N 53 102 5539 102 213 -120 0 213 5539 \N 53 102 5539 102 214 -120 0 214 5539 \N 53 102 5539 102 215 -120 0 215 5561 \N 53 102 5561 102 216 -120 0 216 5561 \N 53 102 5561 102 217 -120 0 217 5561 \N 53 102 5561 102 218 -120 0 218 5561 \N 53 102 5561 102 219 -120 0 219 5583 \N 53 102 5583 102 220 -120 0 220 5583 \N 53 102 5583 102 221 -120 0 221 5583 \N 53 102 5583 102 222 -120 0 222 5583 \N 53 102 5583 102 223 -120 0 223 5605 \N 53 102 5605 102 224 -120 0 224 5605 \N 53 102 5605 102 225 -120 0 225 5605 \N 53 102 5605 102 226 -120 0 226 5605 \N 53 102 5605 102 227 -120 0 227 5628 \N 53 102 5628 102 228 -120 0 228 5628 \N 53 102 5628 102 229 -120 0 229 5628 \N 53 102 5628 102 230 -120 0 230 5628 \N 53 102 5628 102 231 -120 0 231 5651 \N 53 102 5651 102 232 -120 0 232 5651 \N 53 102 5651 102 233 -120 0 233 5651 \N 53 102 5651 102 234 -120 0 234 5651 \N 53 102 5651 102 235 -120 0 235 5676 \N 53 102 5676 102 236 -120 0 236 5676 \N 53 102 5676 102 237 -120 0 237 5676 \N 53 102 5676 102 238 -120 0 238 5676 \N 53 102 5676 102 239 -120 0 239 5701 \N 53 102 5701 102 240 -120 0 240 5701 \N 53 102 5701 102 241 -120 0 241 5701 \N 53 102 5701 102 242 -120 0 242 5701 \N 53 102 5701 102 243 -120 0 243 5723 \N 53 102 5723 102 244 -120 0 244 5723 \N 53 102 5723 102 245 -120 0 245 5723 \N 53 102 5723 102 246 -120 0 246 5723 \N 53 102 5723 102 247 -120 0 247 5748 \N 53 102 5748 102 248 -120 0 248 5748 \N 53 102 5748 102 249 -120 0 249 5748 \N 53 102 5748 102 250 -120 0 250 5748 \N 53 102 5748 102 251 -120 0 251 5770 \N 53 102 5770 102 252 -120 0 252 5770 \N 53 102 5770 102 253 -120 0 253 5770 \N 53 102 5770 102 254 -120 0 254 5770 \N 53 102 5770 102 255 -120 0 255 5792 \N 53 102 5792 102 256 -120 0 256 5792 \N 53 102 5792 102 257 -120 0 257 5792 \N 53 102 5792 102 258 -120 0 258 5792 \N 53 102 5792 102 259 -120 0 259 5814 \N 53 102 5814 102 260 -120 0 260 5814 \N 53 102 5814 102 261 -120 0 261 5814 \N 53 102 5814 102 262 -120 0 262 5814 \N 53 102 5814 102 263 -120 0 263 5837 \N 53 102 5837 102 264 -120 0 264 5837 \N 53 102 5837 102 265 -120 0 265 5837 \N 53 102 5837 102 266 -120 0 266 5837 \N 53 102 5837 102 267 -120 0 267 5864 \N 53 102 5864 102 268 -120 0 268 5864 \N 53 102 5864 102 269 -120 0 269 5864 \N 53 102 5864 102 270 -120 0 270 5864 \N 53 102 5864 102 \. -- -- Data for Name: dbpatch; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY dbpatch (id, currentpatch, currentversion, permissions, finished, message, previouspatch, previousversion, external_id) FROM stdin; 1 0 OMERO4.4 -52 2012-08-01 15:36:32.465596 Database ready. 0 OMERO4.4 \N \. -- -- Data for Name: detector; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY detector (id, amplificationgain, permissions, gain, lotnumber, manufacturer, model, offsetvalue, serialnumber, version, voltage, zoom, creation_id, external_id, group_id, owner_id, update_id, instrument, type) FROM stdin; 92 \N -40 \N \N \N PMT 3 0 \N \N \N 5.9066052296564999 1055 \N 3 2 1055 38 4 93 \N -40 \N \N \N PMT 3 0 \N \N \N 5.9066052296564999 1055 \N 3 2 1055 38 4 94 \N -40 \N \N \N PMT 3 0 \N \N \N 6.0055899198167202 1055 \N 3 2 1055 39 4 95 \N -40 \N \N \N PMT 3 0 \N \N \N 6.0055899198167202 1055 \N 3 2 1055 39 4 96 \N -40 \N \N \N PMT 3 0 \N \N \N 6.4371282114245396 1055 \N 3 2 1055 40 4 97 \N -40 \N \N \N PMT 3 0 \N \N \N 6.4371282114245396 1055 \N 3 2 1055 40 4 98 \N -40 \N \N \N PMT 3 0 \N \N \N 6.3988283395374399 1055 \N 3 2 1055 41 4 99 \N -40 \N \N \N PMT 3 0 \N \N \N 6.3988283395374399 1055 \N 3 2 1055 41 4 100 \N -40 \N \N \N PMT 3 0 \N \N \N 7.3630267324855501 1055 \N 3 2 1055 42 4 101 \N -40 \N \N \N PMT 3 0 \N \N \N 7.3630267324855501 1055 \N 3 2 1055 42 4 102 \N -40 \N \N \N PMT 3 0 \N \N \N 7.8467432950191602 1055 \N 3 2 1055 43 4 103 \N -40 \N \N \N PMT 3 0 \N \N \N 7.8467432950191602 1055 \N 3 2 1055 43 4 104 \N -40 \N \N \N PMT 3 0 \N \N \N 6.3410557379824999 1118 \N 3 2 1118 44 4 105 \N -40 \N \N \N PMT 3 0 \N \N \N 6.3410557379824999 1118 \N 3 2 1118 44 4 106 \N -40 \N \N \N PMT 3 0 \N \N \N 5.6553836860613096 1118 \N 3 2 1118 45 4 107 \N -40 \N \N \N PMT 3 0 \N \N \N 5.6553836860613096 1118 \N 3 2 1118 45 4 108 \N -40 \N \N \N PMT 3 0 \N \N \N 5.8107983796334803 1118 \N 3 2 1118 46 4 109 \N -40 \N \N \N PMT 3 0 \N \N \N 5.8107983796334803 1118 \N 3 2 1118 46 4 110 \N -40 \N \N \N PMT 3 0 \N \N \N 5.3904710986819104 1118 \N 3 2 1118 47 4 111 \N -40 \N \N \N PMT 3 0 \N \N \N 5.3904710986819104 1118 \N 3 2 1118 47 4 112 \N -40 \N \N \N PMT 3 0 \N \N \N 5.5537218096882501 1118 \N 3 2 1118 48 4 113 \N -40 \N \N \N PMT 3 0 \N \N \N 5.5537218096882501 1118 \N 3 2 1118 48 4 114 \N -40 \N \N \N PMT 3 0 \N \N \N 4.4421398674868202 1118 \N 3 2 1118 49 4 115 \N -40 \N \N \N PMT 3 0 \N \N \N 4.4421398674868202 1118 \N 3 2 1118 49 4 116 \N -40 \N \N \N PMT 3 0 \N \N \N 5.22012027559839 1143 \N 3 2 1143 50 4 117 \N -40 \N \N \N PMT 3 -3.3799999999999999 \N \N \N 5.22012027559839 1143 \N 3 2 1143 50 4 118 \N -40 \N \N \N PMT Trans -3.3599999999999999 \N \N \N 5.22012027559839 1143 \N 3 2 1143 50 4 119 \N -40 \N \N \N PMT Trans -3.3599999999999999 \N \N \N 5.9518663155026799 1143 \N 3 2 1143 51 4 120 \N -40 \N \N \N PMT 3 -3.3799999999999999 \N \N \N 5.9518663155026799 1143 \N 3 2 1143 51 4 121 \N -40 \N \N \N PMT Trans -3.3799999999999999 \N \N \N 5.9518663155026799 1143 \N 3 2 1143 51 4 122 \N -40 \N \N \N PMT Trans -3.3599999999999999 \N \N \N 5.9722057684421603 1143 \N 3 2 1143 52 4 123 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 5.9722057684421603 1143 \N 3 2 1143 52 4 124 \N -40 \N \N \N PMT Trans -3.3599999999999999 \N \N \N 9.1880410781255506 1143 \N 3 2 1143 53 4 125 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 9.1880410781255506 1143 \N 3 2 1143 53 4 126 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 5.62827621373554 1143 \N 3 2 1143 54 4 127 \N -40 \N \N \N PMT 3 0 \N \N \N 5.62827621373554 1143 \N 3 2 1143 54 4 128 \N -40 \N \N \N PMT 3 0 \N \N \N 5.1093970032890699 1143 \N 3 2 1143 55 4 129 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 5.1093970032890699 1143 \N 3 2 1143 55 4 130 \N -40 \N \N \N PMT 3 0 \N \N \N 5.4096598120040902 1143 \N 3 2 1143 56 4 131 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 5.4096598120040902 1143 \N 3 2 1143 56 4 132 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 8.0826941902860501 1143 \N 3 2 1143 57 4 133 \N -40 \N \N \N PMT 3 0 \N \N \N 8.0826941902860501 1143 \N 3 2 1143 57 4 134 \N -40 \N \N \N PMT 3 0 \N \N \N 5.5699473057963598 1143 \N 3 2 1143 58 4 135 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 5.5699473057963598 1143 \N 3 2 1143 58 4 136 \N -40 \N \N \N PMT 3 -3.3599999999999999 \N \N \N 5.3095412909073403 1143 \N 3 2 1143 59 4 137 \N -40 \N \N \N PMT 3 0 \N \N \N 5.3095412909073403 1143 \N 3 2 1143 59 4 138 \N -40 \N \N \N PMT 3 0 \N \N \N 5.2955709307610697 1143 \N 3 2 1143 60 4 139 \N -40 \N \N \N PMT 3 0 \N \N \N 5.2955709307610697 1143 \N 3 2 1143 60 4 140 \N -40 \N \N \N PMT 3 0 \N \N \N 4.0874578517551203 1614 \N 3 2 1614 61 4 141 \N -40 \N \N \N PMT 3 0 \N \N \N 4.0874578517551203 1614 \N 3 2 1614 61 4 142 \N -40 \N \N \N PMT 3 0 \N \N \N 4.0566065473565303 1614 \N 3 2 1614 62 4 143 \N -40 \N \N \N PMT 3 0 \N \N \N 4.0566065473565303 1614 \N 3 2 1614 62 4 144 \N -40 \N \N \N PMT 3 0 \N \N \N 4.0809514913755498 1614 \N 3 2 1614 63 4 145 \N -40 \N \N \N PMT 3 0 \N \N \N 4.0809514913755498 1614 \N 3 2 1614 63 4 146 \N -40 \N \N \N PMT 3 0 \N \N \N 3.53035684826121 1614 \N 3 2 1614 64 4 147 \N -40 \N \N \N PMT 3 0 \N \N \N 3.53035684826121 1614 \N 3 2 1614 64 4 151 \N -120 \N \N \N PMT 1 \N \N \N \N 5.5037581356288099 5151 \N 53 102 5151 151 4 152 \N -120 \N \N \N PMT Trans \N \N \N \N 5.5037581356288099 5151 \N 53 102 5151 151 4 153 \N -120 \N \N \N PMT 1 \N \N \N \N 5.5037581356288099 5151 \N 53 102 5151 152 4 154 \N -120 \N \N \N PMT Trans \N \N \N \N 5.5037581356288099 5151 \N 53 102 5151 152 4 155 \N -120 \N \N \N PMT 1 \N \N \N \N 36.938598654313601 5151 \N 53 102 5151 153 4 156 \N -120 \N \N \N PMT Trans \N \N \N \N 36.938598654313601 5151 \N 53 102 5151 153 4 157 \N -120 \N \N \N PMT Trans \N \N \N \N 5.5037581356288099 5151 \N 53 102 5151 154 4 158 \N -120 \N \N \N PMT 1 \N \N \N \N 5.5037581356288099 5151 \N 53 102 5151 154 4 159 \N -120 \N \N \N PMT 1 \N \N \N \N 10.141555602839601 5173 \N 53 102 5173 155 4 160 \N -120 \N \N \N PMT 1 \N \N \N \N 10.141555602839601 5173 \N 53 102 5173 156 4 161 \N -120 \N \N \N PMT 1 \N \N \N \N 59.792210754404998 5173 \N 53 102 5173 157 4 162 \N -120 \N \N \N PMT 1 \N \N \N \N 10.141555602839601 5173 \N 53 102 5173 158 4 163 \N -120 \N \N \N PMT 1 \N \N \N \N 11.014916593134201 5195 \N 53 102 5195 159 4 164 \N -120 \N \N \N PMT 1 \N \N \N \N 11.014916593134201 5195 \N 53 102 5195 160 4 165 \N -120 \N \N \N PMT 1 \N \N \N \N 57.9836319398363 5195 \N 53 102 5195 161 4 166 \N -120 \N \N \N PMT 1 \N \N \N \N 11.014916593134201 5195 \N 53 102 5195 162 4 167 \N -120 \N \N \N PMT 1 \N \N \N \N 8.0054358199155597 5218 \N 53 102 5218 163 4 168 \N -120 \N \N \N PMT 1 \N \N \N \N 8.0054358199155597 5218 \N 53 102 5218 164 4 169 \N -120 \N \N \N PMT 1 \N \N \N \N 44.171026580732097 5218 \N 53 102 5218 165 4 170 \N -120 \N \N \N PMT 1 \N \N \N \N 8.0054358199155597 5218 \N 53 102 5218 166 4 171 \N -120 \N \N \N PMT 1 \N \N \N \N 9.9537329726137909 5241 \N 53 102 5241 167 4 172 \N -120 \N \N \N PMT 1 \N \N \N \N 9.9537329726137909 5241 \N 53 102 5241 168 4 173 \N -120 \N \N \N PMT 1 \N \N \N \N 47.025562830747198 5241 \N 53 102 5241 169 4 174 \N -120 \N \N \N PMT 1 \N \N \N \N 9.9537329726137909 5241 \N 53 102 5241 170 4 175 \N -120 \N \N \N PMT 1 \N \N \N \N 11.7287756426031 5263 \N 53 102 5263 171 4 176 \N -120 \N \N \N PMT 1 \N \N \N \N 11.7287756426031 5263 \N 53 102 5263 172 4 177 \N -120 \N \N \N PMT 1 \N \N \N \N 54.3895430260906 5263 \N 53 102 5263 173 4 178 \N -120 \N \N \N PMT 1 \N \N \N \N 11.7287756426031 5263 \N 53 102 5263 174 4 179 \N -120 \N \N \N PMT 1 \N \N \N \N 6.9805012814965197 5285 \N 53 102 5285 175 4 180 \N -120 \N \N \N PMT 1 \N \N \N \N 6.9805012814965197 5285 \N 53 102 5285 176 4 181 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5285 \N 53 102 5285 177 4 182 \N -120 \N \N \N PMT 1 \N \N \N \N 6.9805012814965197 5285 \N 53 102 5285 178 4 183 \N -120 \N \N \N PMT Trans \N \N \N \N 9.50649586132492 5307 \N 53 102 5307 179 4 184 \N -120 \N \N \N PMT 1 \N \N \N \N 9.50649586132492 5307 \N 53 102 5307 179 4 185 \N -120 \N \N \N PMT 1 \N \N \N \N 9.50649586132492 5307 \N 53 102 5307 180 4 186 \N -120 \N \N \N PMT Trans \N \N \N \N 9.50649586132492 5307 \N 53 102 5307 180 4 187 \N -120 \N \N \N PMT Trans \N \N \N \N 61.557825525419801 5307 \N 53 102 5307 181 4 188 \N -120 \N \N \N PMT 1 \N \N \N \N 61.557825525419801 5307 \N 53 102 5307 181 4 189 \N -120 \N \N \N PMT Trans \N \N \N \N 9.50649586132492 5307 \N 53 102 5307 182 4 190 \N -120 \N \N \N PMT 1 \N \N \N \N 9.50649586132492 5307 \N 53 102 5307 182 4 191 \N -120 \N \N \N PMT Trans \N \N \N \N 4.40963531153277 5329 \N 53 102 5329 183 4 192 \N -120 \N \N \N PMT 1 \N \N \N \N 4.40963531153277 5329 \N 53 102 5329 183 4 193 \N -120 \N \N \N PMT Trans \N \N \N \N 4.40963531153277 5329 \N 53 102 5329 184 4 194 \N -120 \N \N \N PMT 1 \N \N \N \N 4.40963531153277 5329 \N 53 102 5329 184 4 195 \N -120 \N \N \N PMT 1 \N \N \N \N 39.609262267215698 5329 \N 53 102 5329 185 4 196 \N -120 \N \N \N PMT Trans \N \N \N \N 39.609262267215698 5329 \N 53 102 5329 185 4 197 \N -120 \N \N \N PMT Trans \N \N \N \N 4.40963531153277 5329 \N 53 102 5329 186 4 198 \N -120 \N \N \N PMT 1 \N \N \N \N 4.40963531153277 5329 \N 53 102 5329 186 4 199 \N -120 \N \N \N PMT 1 \N \N \N \N 6.5946102323826299 5397 \N 53 102 5397 187 4 200 \N -120 \N \N \N PMT Trans \N \N \N \N 6.5946102323826299 5397 \N 53 102 5397 187 4 201 \N -120 \N \N \N PMT 1 \N \N \N \N 6.5946102323826299 5397 \N 53 102 5397 188 4 202 \N -120 \N \N \N PMT Trans \N \N \N \N 6.5946102323826299 5397 \N 53 102 5397 188 4 203 \N -120 \N \N \N PMT 1 \N \N \N \N 51.899425856266099 5397 \N 53 102 5397 189 4 204 \N -120 \N \N \N PMT Trans \N \N \N \N 51.899425856266099 5397 \N 53 102 5397 189 4 205 \N -120 \N \N \N PMT 1 \N \N \N \N 6.5946102323826299 5397 \N 53 102 5397 190 4 206 \N -120 \N \N \N PMT Trans \N \N \N \N 6.5946102323826299 5397 \N 53 102 5397 190 4 207 \N -120 \N \N \N PMT 1 \N \N \N \N 6.09998952867398 5421 \N 53 102 5421 191 4 208 \N -120 \N \N \N PMT Trans \N \N \N \N 6.09998952867398 5421 \N 53 102 5421 191 4 209 \N -120 \N \N \N PMT Trans \N \N \N \N 6.09998952867398 5421 \N 53 102 5421 192 4 210 \N -120 \N \N \N PMT 1 \N \N \N \N 6.09998952867398 5421 \N 53 102 5421 192 4 211 \N -120 \N \N \N PMT 1 \N \N \N \N 36.533203261096801 5421 \N 53 102 5421 193 4 212 \N -120 \N \N \N PMT Trans \N \N \N \N 36.533203261096801 5421 \N 53 102 5421 193 4 213 \N -120 \N \N \N PMT 1 \N \N \N \N 6.09998952867398 5421 \N 53 102 5421 194 4 214 \N -120 \N \N \N PMT Trans \N \N \N \N 6.09998952867398 5421 \N 53 102 5421 194 4 215 \N -120 \N \N \N PMT Trans \N \N \N \N 8.81927062306554 5446 \N 53 102 5446 195 4 216 \N -120 \N \N \N PMT 1 \N \N \N \N 8.81927062306554 5446 \N 53 102 5446 195 4 217 \N -120 \N \N \N PMT 1 \N \N \N \N 8.81927062306554 5446 \N 53 102 5446 196 4 218 \N -120 \N \N \N PMT Trans \N \N \N \N 8.81927062306554 5446 \N 53 102 5446 196 4 219 \N -120 \N \N \N PMT 1 \N \N \N \N 57.025016314988001 5446 \N 53 102 5446 197 4 220 \N -120 \N \N \N PMT Trans \N \N \N \N 57.025016314988001 5446 \N 53 102 5446 197 4 221 \N -120 \N \N \N PMT Trans \N \N \N \N 8.81927062306554 5446 \N 53 102 5446 198 4 222 \N -120 \N \N \N PMT 1 \N \N \N \N 8.81927062306554 5446 \N 53 102 5446 198 4 223 \N -120 \N \N \N PMT 1 \N \N \N \N 10.3763928196806 5471 \N 53 102 5471 199 4 224 \N -120 \N \N \N PMT Trans \N \N \N \N 10.3763928196806 5471 \N 53 102 5471 199 4 225 \N -120 \N \N \N PMT 1 \N \N \N \N 10.3763928196806 5471 \N 53 102 5471 200 4 226 \N -120 \N \N \N PMT Trans \N \N \N \N 10.3763928196806 5471 \N 53 102 5471 200 4 227 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5471 \N 53 102 5471 201 4 228 \N -120 \N \N \N PMT Trans \N \N \N \N 64 5471 \N 53 102 5471 201 4 229 \N -120 \N \N \N PMT Trans \N \N \N \N 10.3763928196806 5471 \N 53 102 5471 202 4 230 \N -120 \N \N \N PMT 1 \N \N \N \N 10.3763928196806 5471 \N 53 102 5471 202 4 231 \N -120 \N \N \N PMT 1 \N \N \N \N 9.6315388218868492 5493 \N 53 102 5493 203 4 232 \N -120 \N \N \N PMT Trans \N \N \N \N 9.6315388218868492 5493 \N 53 102 5493 203 4 233 \N -120 \N \N \N PMT 1 \N \N \N \N 9.6315388218868492 5493 \N 53 102 5493 204 4 234 \N -120 \N \N \N PMT Trans \N \N \N \N 9.6315388218868492 5493 \N 53 102 5493 204 4 235 \N -120 \N \N \N PMT 1 \N \N \N \N 45.402727863173801 5493 \N 53 102 5493 205 4 236 \N -120 \N \N \N PMT Trans \N \N \N \N 45.402727863173801 5493 \N 53 102 5493 205 4 237 \N -120 \N \N \N PMT Trans \N \N \N \N 9.6315388218868492 5493 \N 53 102 5493 206 4 238 \N -120 \N \N \N PMT 1 \N \N \N \N 9.6315388218868492 5493 \N 53 102 5493 206 4 239 \N -120 \N \N \N PMT 1 \N \N \N \N 7.3630267324855501 5515 \N 53 102 5515 207 4 240 \N -120 \N \N \N PMT 1 \N \N \N \N 7.3630267324855501 5515 \N 53 102 5515 208 4 241 \N -120 \N \N \N PMT 1 \N \N \N \N 45.491366594360102 5515 \N 53 102 5515 209 4 242 \N -120 \N \N \N PMT 1 \N \N \N \N 7.3630267324855501 5515 \N 53 102 5515 210 4 243 \N -120 \N \N \N PMT 1 \N \N \N \N 6.8703668516540803 5539 \N 53 102 5539 211 4 244 \N -120 \N \N \N PMT 1 \N \N \N \N 6.8703668516540803 5539 \N 53 102 5539 212 4 245 \N -120 \N \N \N PMT 1 \N \N \N \N 59.775168167825797 5539 \N 53 102 5539 213 4 246 \N -120 \N \N \N PMT 1 \N \N \N \N 6.8703668516540803 5539 \N 53 102 5539 214 4 247 \N -120 \N \N \N PMT 1 \N \N \N \N 7.7898490431475098 5561 \N 53 102 5561 215 4 248 \N -120 \N \N \N PMT 1 \N \N \N \N 7.7898490431475098 5561 \N 53 102 5561 216 4 249 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5561 \N 53 102 5561 217 4 250 \N -120 \N \N \N PMT 1 \N \N \N \N 7.7898490431475098 5561 \N 53 102 5561 218 4 251 \N -120 \N \N \N PMT 1 \N \N \N \N 6.0055899198167202 5583 \N 53 102 5583 219 4 252 \N -120 \N \N \N PMT 1 \N \N \N \N 6.0055899198167202 5583 \N 53 102 5583 220 4 253 \N -120 \N \N \N PMT 1 \N \N \N \N 57.028117691847498 5583 \N 53 102 5583 221 4 254 \N -120 \N \N \N PMT 1 \N \N \N \N 6.0055899198167202 5583 \N 53 102 5583 222 4 255 \N -120 \N \N \N PMT 1 \N \N \N \N 9.1101303214596001 5605 \N 53 102 5605 223 4 256 \N -120 \N \N \N PMT 1 \N \N \N \N 9.1101303214596001 5605 \N 53 102 5605 224 4 257 \N -120 \N \N \N PMT 1 \N \N \N \N 46.7113328581611 5605 \N 53 102 5605 225 4 258 \N -120 \N \N \N PMT 1 \N \N \N \N 9.1101303214596001 5605 \N 53 102 5605 226 4 259 \N -120 \N \N \N PMT 1 \N \N \N \N 8.3984173514665095 5628 \N 53 102 5628 227 4 260 \N -120 \N \N \N PMT 1 \N \N \N \N 8.3984173514665095 5628 \N 53 102 5628 228 4 261 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5628 \N 53 102 5628 229 4 262 \N -120 \N \N \N PMT 1 \N \N \N \N 8.3984173514665095 5628 \N 53 102 5628 230 4 263 \N -120 \N \N \N PMT 1 \N \N \N \N 8.6693564389179194 5651 \N 53 102 5651 231 4 264 \N -120 \N \N \N PMT 1 \N \N \N \N 8.6693564389179194 5651 \N 53 102 5651 232 4 265 \N -120 \N \N \N PMT 1 \N \N \N \N 49.047008746901199 5651 \N 53 102 5651 233 4 266 \N -120 \N \N \N PMT 1 \N \N \N \N 8.6693564389179194 5651 \N 53 102 5651 234 4 267 \N -120 \N \N \N PMT 1 \N \N \N \N 12.873861264579499 5676 \N 53 102 5676 235 4 268 \N -120 \N \N \N PMT 1 \N \N \N \N 12.873861264579499 5676 \N 53 102 5676 236 4 269 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5676 \N 53 102 5676 237 4 270 \N -120 \N \N \N PMT 1 \N \N \N \N 12.873861264579499 5676 \N 53 102 5676 238 4 271 \N -120 \N \N \N PMT 1 \N \N \N \N 9.6280897638373695 5701 \N 53 102 5701 239 4 272 \N -120 \N \N \N PMT 1 \N \N \N \N 9.6280897638373695 5701 \N 53 102 5701 240 4 273 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5701 \N 53 102 5701 241 4 274 \N -120 \N \N \N PMT 1 \N \N \N \N 9.6280897638373695 5701 \N 53 102 5701 242 4 275 \N -120 \N \N \N PMT 1 \N \N \N \N 6.8038101170546899 5723 \N 53 102 5723 243 4 276 \N -120 \N \N \N PMT 1 \N \N \N \N 6.8038101170546899 5723 \N 53 102 5723 244 4 277 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5723 \N 53 102 5723 245 4 278 \N -120 \N \N \N PMT 1 \N \N \N \N 6.8038101170546899 5723 \N 53 102 5723 246 4 279 \N -120 \N \N \N PMT 1 \N \N \N \N 7.3129084226603496 5748 \N 53 102 5748 247 4 280 \N -120 \N \N \N PMT 1 \N \N \N \N 7.3129084226603496 5748 \N 53 102 5748 248 4 281 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5748 \N 53 102 5748 249 4 282 \N -120 \N \N \N PMT 1 \N \N \N \N 7.3129084226603496 5748 \N 53 102 5748 250 4 283 \N -120 \N \N \N PMT 1 \N \N \N \N 8.9583596753524102 5770 \N 53 102 5770 251 4 284 \N -120 \N \N \N PMT 1 \N \N \N \N 8.9583596753524102 5770 \N 53 102 5770 252 4 285 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5770 \N 53 102 5770 253 4 286 \N -120 \N \N \N PMT 1 \N \N \N \N 8.9583596753524102 5770 \N 53 102 5770 254 4 287 \N -120 \N \N \N PMT 1 \N \N \N \N 8.6000311661896092 5792 \N 53 102 5792 255 4 288 \N -120 \N \N \N PMT 1 \N \N \N \N 8.6000311661896092 5792 \N 53 102 5792 256 4 289 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5792 \N 53 102 5792 257 4 290 \N -120 \N \N \N PMT 1 \N \N \N \N 8.6000311661896092 5792 \N 53 102 5792 258 4 291 \N -120 \N \N \N PMT 1 \N \N \N \N 8.0826941902860501 5814 \N 53 102 5814 259 4 292 \N -120 \N \N \N PMT 1 \N \N \N \N 8.0826941902860501 5814 \N 53 102 5814 260 4 293 \N -120 \N \N \N PMT 1 \N \N \N \N 64 5814 \N 53 102 5814 261 4 294 \N -120 \N \N \N PMT 1 \N \N \N \N 8.0826941902860501 5814 \N 53 102 5814 262 4 295 \N -120 \N \N \N PMT 1 \N \N \N \N 6.7609934748407401 5837 \N 53 102 5837 263 4 296 \N -120 \N \N \N PMT 1 \N \N \N \N 6.7609934748407401 5837 \N 53 102 5837 264 4 297 \N -120 \N \N \N PMT 1 \N \N \N \N 62.005558512211003 5837 \N 53 102 5837 265 4 298 \N -120 \N \N \N PMT 1 \N \N \N \N 6.7609934748407401 5837 \N 53 102 5837 266 4 299 \N -120 \N \N \N PMT 1 \N \N \N \N 7.96294102458954 5864 \N 53 102 5864 267 4 300 \N -120 \N \N \N PMT 1 \N \N \N \N 7.96294102458954 5864 \N 53 102 5864 268 4 301 \N -120 \N \N \N PMT 1 \N \N \N \N 50.497279075367203 5864 \N 53 102 5864 269 4 302 \N -120 \N \N \N PMT 1 \N \N \N \N 7.96294102458954 5864 \N 53 102 5864 270 4 \. -- -- Data for Name: detectorsettings; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY detectorsettings (id, permissions, gain, offsetvalue, readoutrate, version, voltage, binning, creation_id, external_id, group_id, owner_id, update_id, detector) FROM stdin; 92 -40 800.16403448538904 0 \N \N \N \N 1055 \N 3 2 1055 92 93 -40 800.39291981383997 0 \N \N \N \N 1055 \N 3 2 1055 93 94 -40 800.16403448538904 0 \N \N \N \N 1055 \N 3 2 1055 94 95 -40 800.39291981383997 0 \N \N \N \N 1055 \N 3 2 1055 95 96 -40 800.16403448538904 0 \N \N \N \N 1055 \N 3 2 1055 97 97 -40 800.39291981383997 0 \N \N \N \N 1055 \N 3 2 1055 96 98 -40 800.16403448538904 0 \N \N \N \N 1055 \N 3 2 1055 99 99 -40 800.39291981383997 0 \N \N \N \N 1055 \N 3 2 1055 98 100 -40 800.16403448538904 0 \N \N \N \N 1055 \N 3 2 1055 101 101 -40 800.39291981383997 0 \N \N \N \N 1055 \N 3 2 1055 100 102 -40 800.16403448538904 0 \N \N \N \N 1055 \N 3 2 1055 102 103 -40 800.39291981383997 0 \N \N \N \N 1055 \N 3 2 1055 103 104 -40 800.16403448538904 0 \N \N \N \N 1118 \N 3 2 1118 104 105 -40 800.39291981383997 0 \N \N \N \N 1118 \N 3 2 1118 105 106 -40 800.16403448538904 0 \N \N \N \N 1118 \N 3 2 1118 106 107 -40 800.39291981383997 0 \N \N \N \N 1118 \N 3 2 1118 107 108 -40 800.16403448538904 0 \N \N \N \N 1118 \N 3 2 1118 108 109 -40 800.39291981383997 0 \N \N \N \N 1118 \N 3 2 1118 109 110 -40 800.16403448538904 0 \N \N \N \N 1118 \N 3 2 1118 111 111 -40 800.39291981383997 0 \N \N \N \N 1118 \N 3 2 1118 110 112 -40 800.16403448538904 0 \N \N \N \N 1118 \N 3 2 1118 112 113 -40 800.39291981383997 0 \N \N \N \N 1118 \N 3 2 1118 113 114 -40 800.16403448538904 0 \N \N \N \N 1118 \N 3 2 1118 114 115 -40 800.39291981383997 0 \N \N \N \N 1118 \N 3 2 1118 115 116 -40 800.39291981383997 0 \N \N \N \N 1143 \N 3 2 1143 116 117 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 118 118 -40 525.61608300907903 -3.3799999999999999 \N \N \N \N 1143 \N 3 2 1143 117 119 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 119 120 -40 525.61608300907903 -3.3799999999999999 \N \N \N \N 1143 \N 3 2 1143 120 121 -40 525.61608300907903 -3.3799999999999999 \N \N \N \N 1143 \N 3 2 1143 121 122 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 122 123 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 123 124 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 124 125 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 125 126 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 127 127 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 126 128 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 128 129 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 129 130 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 130 131 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 131 132 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 133 133 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 132 134 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 134 135 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 135 136 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 137 137 -40 777.84771496147096 -3.3599999999999999 \N \N \N \N 1143 \N 3 2 1143 136 138 -40 800.16403448538904 0 \N \N \N \N 1143 \N 3 2 1143 139 139 -40 800.39291981383997 0 \N \N \N \N 1143 \N 3 2 1143 138 140 -40 800.16403448538904 0 \N \N \N \N 1614 \N 3 2 1614 141 141 -40 800.39291981383997 0 \N \N \N \N 1614 \N 3 2 1614 140 142 -40 800.16403448538904 0 \N \N \N \N 1614 \N 3 2 1614 142 143 -40 800.39291981383997 0 \N \N \N \N 1614 \N 3 2 1614 143 144 -40 800.16403448538904 0 \N \N \N \N 1614 \N 3 2 1614 145 145 -40 800.39291981383997 0 \N \N \N \N 1614 \N 3 2 1614 144 146 -40 800.16403448538904 0 \N \N \N \N 1614 \N 3 2 1614 146 147 -40 800.39291981383997 0 \N \N \N \N 1614 \N 3 2 1614 147 151 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 152 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 153 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 154 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 155 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 155 156 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 156 157 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 158 158 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 157 159 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 159 160 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 160 161 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 161 162 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 162 163 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 163 164 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 164 165 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 165 166 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 166 167 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 167 168 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 168 169 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 169 170 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 170 171 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 171 172 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 172 173 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 173 174 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 174 175 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 175 176 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 176 177 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 177 178 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 178 179 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 179 180 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 180 181 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 181 182 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 182 183 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 184 184 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 183 185 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 185 186 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 186 187 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 188 188 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 187 189 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 190 190 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 189 191 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 192 192 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 191 193 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 194 194 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 193 195 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 195 196 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 196 197 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 198 198 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 197 199 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 199 200 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 200 201 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 201 202 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 202 203 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 203 204 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 204 205 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 205 206 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 206 207 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 207 208 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 208 209 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 210 210 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 209 211 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 211 212 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 212 213 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 213 214 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 214 215 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 216 216 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 215 217 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 217 218 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 218 219 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 219 220 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 220 221 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 222 222 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 221 223 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 223 224 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 224 225 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 225 226 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 226 227 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 227 228 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 228 229 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 230 230 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 229 231 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 231 232 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 232 233 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 233 234 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 234 235 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 235 236 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 236 237 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 238 238 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 237 239 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 239 240 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 240 241 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 241 242 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 242 243 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 243 244 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 244 245 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 245 246 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 246 247 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 247 248 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 248 249 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 249 250 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 250 251 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 251 252 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 252 253 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 253 254 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 254 255 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 255 256 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 256 257 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 257 258 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 258 259 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 259 260 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 260 261 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 261 262 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 262 263 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 263 264 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 264 265 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 265 266 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 266 267 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 267 268 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 268 269 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 269 270 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 270 271 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 271 272 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 272 273 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 273 274 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 274 275 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 275 276 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 276 277 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 277 278 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 278 279 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 279 280 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 280 281 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 281 282 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 282 283 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 283 284 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 284 285 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 285 286 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 286 287 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 287 288 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 288 289 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 289 290 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 290 291 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 291 292 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 292 293 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 293 294 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 294 295 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 295 296 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 296 297 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 297 298 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 298 299 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 299 300 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 300 301 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 301 302 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 302 \. -- -- Data for Name: detectortype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY detectortype (id, permissions, value, external_id) FROM stdin; 1 -52 CCD \N 2 -52 IntensifiedCCD \N 3 -52 AnalogVideo \N 4 -52 PMT \N 5 -52 Photodiode \N 6 -52 Spectroscopy \N 7 -52 LifetimeImaging \N 8 -52 CorrelationSpectroscopy \N 9 -52 FTIR \N 10 -52 EM-CCD \N 11 -52 APD \N 12 -52 CMOS \N 13 -52 EBCCD \N 14 -52 Other \N 15 -52 Unknown \N \. -- -- Data for Name: dichroic; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY dichroic (id, permissions, lotnumber, manufacturer, model, serialnumber, version, creation_id, external_id, group_id, owner_id, update_id, instrument) FROM stdin; \. -- -- Data for Name: dimensionorder; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY dimensionorder (id, permissions, value, external_id) FROM stdin; 1 -52 XYZCT \N 2 -52 XYZTC \N 3 -52 XYCTZ \N 4 -52 XYCZT \N 5 -52 XYTCZ \N 6 -52 XYTZC \N \. -- -- Data for Name: event; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY event (id, permissions, status, "time", containingevent, external_id, experimenter, experimentergroup, session, type) FROM stdin; 0 0 BOOTSTRAP 2012-08-01 15:36:31.768023 \N \N 0 0 0 0 1 -820 \N 2012-08-01 15:37:06.154 \N \N 0 0 2 2 2 -820 \N 2012-08-01 15:37:07.406 \N \N 0 0 2 2 3 -820 \N 2012-08-01 15:37:07.76 \N \N 0 0 2 2 4 -820 \N 2012-08-01 15:37:08.006 \N \N 0 0 2 2 5 -820 \N 2012-08-01 15:37:08.013 \N \N 0 0 2 2 6 -820 \N 2012-08-01 15:37:10.393 \N \N 0 0 2 9 7 -820 \N 2012-08-01 15:37:10.603 \N \N 0 0 3 4 8 -820 \N 2012-08-01 15:37:17.389 \N \N 0 0 2 9 9 -820 \N 2012-08-01 15:38:43.462 \N \N 0 0 2 9 10 -820 \N 2012-08-01 15:38:43.69 \N \N 1 2 5 4 11 -820 \N 2012-08-01 15:38:46.773 \N \N 0 0 2 9 12 -820 \N 2012-08-01 15:38:46.859 \N \N 1 2 6 4 13 -820 \N 2012-08-01 15:38:46.901 \N \N 0 0 2 9 14 -820 \N 2012-08-01 15:38:46.982 \N \N 1 2 7 4 15 -820 \N 2012-08-01 15:39:27.622 \N \N 0 0 2 9 16 -820 \N 2012-08-01 15:39:27.708 \N \N 1 2 8 4 17 -820 \N 2012-08-01 15:39:33.789 \N \N 0 0 2 9 18 -820 \N 2012-08-01 15:39:33.881 \N \N 1 2 9 4 19 -820 \N 2012-08-01 15:39:33.919 \N \N 0 0 2 9 20 -820 \N 2012-08-01 15:39:33.997 \N \N 1 2 10 4 21 -820 \N 2012-08-01 15:39:38.91 \N \N 0 0 2 9 22 -820 \N 2012-08-01 15:39:39.002 \N \N 1 2 11 4 23 -820 \N 2012-08-01 15:39:45.073 \N \N 0 0 2 9 24 -820 \N 2012-08-01 15:39:45.249 \N \N 1 2 12 4 25 -820 \N 2012-08-01 15:39:45.292 \N \N 0 0 2 9 26 -820 \N 2012-08-01 15:39:45.365 \N \N 1 2 13 4 27 -820 \N 2012-08-01 15:39:50.966 \N \N 0 0 2 9 28 -820 \N 2012-08-01 15:39:51.045 \N \N 1 2 14 4 29 -820 \N 2012-08-01 15:39:57.122 \N \N 0 0 2 9 30 -820 \N 2012-08-01 15:39:57.21 \N \N 1 2 15 4 31 -820 \N 2012-08-01 15:39:57.244 \N \N 0 0 2 9 32 -820 \N 2012-08-01 15:39:57.317 \N \N 1 2 16 4 33 -820 \N 2012-08-01 15:44:47.014 \N \N 0 0 2 9 34 -820 \N 2012-08-01 15:44:47.102 \N \N 1 2 17 4 35 -820 \N 2012-08-01 15:44:47.139 \N \N 0 0 2 9 36 -820 \N 2012-08-01 15:44:47.205 \N \N 1 2 18 4 37 -820 \N 2012-08-01 15:44:49.677 \N \N 0 0 2 9 38 -820 \N 2012-08-01 15:44:49.752 \N \N 1 2 19 4 39 -820 \N 2012-08-01 15:44:55.824 \N \N 0 0 2 9 40 -820 \N 2012-08-01 15:44:55.903 \N \N 1 2 20 4 41 -820 \N 2012-08-01 15:44:55.937 \N \N 0 0 2 9 42 -820 \N 2012-08-01 15:44:56 \N \N 1 2 21 4 43 -820 \N 2012-08-01 15:45:00.646 \N \N 0 0 2 9 44 -820 \N 2012-08-01 15:45:00.723 \N \N 1 2 22 4 45 -820 \N 2012-08-01 15:45:06.802 \N \N 0 0 2 9 46 -820 \N 2012-08-01 15:45:06.873 \N \N 1 2 23 4 47 -820 \N 2012-08-01 15:45:06.908 \N \N 0 0 2 9 48 -820 \N 2012-08-01 15:45:06.973 \N \N 1 2 24 4 49 -820 \N 2012-08-01 15:48:49.861 \N \N 0 0 2 9 50 -820 \N 2012-08-01 15:48:49.945 \N \N 1 2 25 4 51 -820 \N 2012-08-01 15:48:56.014 \N \N 0 0 2 9 52 -820 \N 2012-08-01 15:48:56.099 \N \N 1 2 26 4 53 -820 \N 2012-08-01 15:48:56.134 \N \N 0 0 2 9 54 -820 \N 2012-08-01 15:48:56.198 \N \N 1 2 27 4 55 -820 \N 2012-08-01 15:50:02.341 \N \N 0 0 2 9 56 -820 \N 2012-08-01 15:50:02.434 \N \N 1 2 28 4 57 -820 \N 2012-08-01 15:50:08.499 \N \N 0 0 2 9 58 -820 \N 2012-08-01 15:50:08.681 \N \N 1 2 29 4 59 -820 \N 2012-08-01 15:50:08.718 \N \N 0 0 2 9 60 -820 \N 2012-08-01 15:50:08.779 \N \N 1 2 30 4 61 -820 \N 2012-08-01 15:50:21.36 \N \N 0 0 2 9 62 -820 \N 2012-08-01 15:50:21.444 \N \N 1 2 31 4 63 -820 \N 2012-08-01 15:50:27.51 \N \N 0 0 2 9 64 -820 \N 2012-08-01 15:50:27.578 \N \N 1 2 32 4 65 -820 \N 2012-08-01 15:50:27.615 \N \N 0 0 2 9 66 -820 \N 2012-08-01 15:50:27.68 \N \N 1 2 33 4 67 -820 \N 2012-08-01 15:57:02.409 \N \N 0 0 2 9 68 -820 \N 2012-08-01 15:57:02.495 \N \N 1 2 34 4 69 -820 \N 2012-08-01 15:57:08.566 \N \N 0 0 2 9 70 -820 \N 2012-08-01 15:57:08.64 \N \N 1 2 35 4 71 -820 \N 2012-08-01 15:57:08.676 \N \N 0 0 2 9 72 -820 \N 2012-08-01 15:57:08.737 \N \N 1 2 36 4 73 -820 \N 2012-08-01 15:57:14.416 \N \N 0 0 2 9 74 -820 \N 2012-08-01 15:57:14.491 \N \N 1 2 37 4 75 -820 \N 2012-08-01 15:57:20.562 \N \N 0 0 2 9 76 -820 \N 2012-08-01 15:57:20.635 \N \N 1 2 38 4 77 -820 \N 2012-08-01 15:57:20.671 \N \N 0 0 2 9 78 -820 \N 2012-08-01 15:57:20.735 \N \N 1 2 39 4 79 -820 \N 2012-08-01 16:03:42.701 \N \N 0 0 2 9 80 -820 \N 2012-08-01 16:03:42.806 \N \N 1 2 40 4 81 -820 \N 2012-08-01 16:03:42.844 \N \N 0 0 2 9 82 -820 \N 2012-08-01 16:03:42.892 \N \N 0 0 41 4 83 -820 \N 2012-08-01 16:07:07.395 \N \N 0 0 2 9 84 -820 \N 2012-08-01 16:07:07.476 \N \N 1 2 42 4 85 -820 \N 2012-08-01 16:07:07.513 \N \N 0 0 2 9 86 -820 \N 2012-08-01 16:07:07.553 \N \N 0 0 43 4 88 -820 \N 2012-08-01 16:08:26.213 \N \N 0 0 2 9 89 -820 \N 2012-08-01 16:08:26.277 \N \N 1 2 44 4 90 -820 \N 2012-08-01 16:08:26.312 \N \N 0 0 2 9 91 -820 \N 2012-08-01 16:08:26.353 \N \N 0 0 45 4 92 -820 \N 2012-08-01 16:09:41.779 \N \N 0 0 2 9 93 -820 \N 2012-08-01 16:09:41.841 \N \N 1 2 46 4 94 -820 \N 2012-08-01 16:09:41.876 \N \N 0 0 2 9 95 -820 \N 2012-08-01 16:09:41.927 \N \N 0 0 47 4 96 -820 \N 2012-08-01 16:31:52.789 \N \N 0 0 47 4 97 -820 \N 2012-08-01 16:31:52.824 \N \N 0 0 47 4 98 -820 \N 2012-08-01 16:32:27.854 \N \N 0 0 47 4 99 -820 \N 2012-08-01 16:32:56.793 \N \N 0 0 47 4 100 -820 \N 2012-08-01 16:34:01.964 \N \N 0 0 47 4 101 -820 \N 2012-08-01 16:34:17.51 \N \N 0 0 2 9 102 -820 \N 2012-08-01 16:34:17.588 \N \N 1 2 48 4 103 -820 \N 2012-08-01 16:34:17.619 \N \N 0 0 2 9 104 -820 \N 2012-08-01 16:34:17.667 \N \N 4 3 49 4 105 -820 \N 2012-08-01 16:34:21.848 \N \N 0 0 2 9 106 -820 \N 2012-08-01 16:34:21.904 \N \N 1 2 50 4 107 -820 \N 2012-08-01 16:34:21.94 \N \N 0 0 2 9 108 -820 \N 2012-08-01 16:34:21.977 \N \N 2 3 51 4 109 -820 \N 2012-08-02 15:25:08.492 \N \N 0 0 2 9 110 -820 \N 2012-08-02 15:25:08.651 \N \N 0 0 52 4 111 -820 \N 2012-08-02 15:25:08.891 \N \N 0 0 52 4 112 -820 \N 2012-08-02 15:25:48.206 \N \N 0 0 2 9 113 -820 \N 2012-08-02 15:25:48.297 \N \N 2 3 155 4 114 -820 \N 2012-08-02 15:25:48.396 \N \N 2 3 155 4 115 -820 \N 2012-08-02 15:28:27.337 \N \N 0 0 2 9 116 -820 \N 2012-08-02 15:28:27.415 \N \N 2 3 156 4 117 -820 \N 2012-08-02 15:28:27.501 \N \N 2 3 156 4 118 -820 \N 2012-08-02 15:28:28.975 \N \N 2 3 156 4 119 -820 \N 2012-08-02 17:27:06.317 \N \N 0 0 2 9 120 -820 \N 2012-08-02 17:27:06.42 \N \N 1 2 157 4 121 -820 \N 2012-08-02 17:27:06.453 \N \N 0 0 2 9 122 -820 \N 2012-08-02 17:27:06.492 \N \N 2 3 158 4 123 -820 \N 2012-08-02 17:32:42.447 \N \N 0 0 2 9 124 -820 \N 2012-08-02 17:32:42.537 \N \N 1 2 159 4 125 -820 \N 2012-08-02 17:32:42.569 \N \N 0 0 2 9 126 -820 \N 2012-08-02 17:32:42.608 \N \N 2 3 160 4 127 -820 \N 2012-08-02 17:45:56.156 \N \N 0 0 2 9 128 -820 \N 2012-08-02 17:45:56.261 \N \N 2 3 161 4 129 -820 \N 2012-08-02 17:45:56.377 \N \N 2 3 161 4 130 -820 \N 2012-08-02 17:45:57.45 \N \N 2 3 161 4 131 -820 \N 2012-08-02 17:46:38.856 \N \N 2 3 161 4 132 -820 \N 2012-08-02 17:47:02.674 \N \N 2 3 161 4 133 -820 \N 2012-08-02 17:47:49.888 \N \N 2 3 161 4 134 -820 \N 2012-08-02 17:47:53.174 \N \N 2 3 161 4 135 -820 \N 2012-08-02 17:47:53.216 \N \N 2 3 161 4 136 -820 \N 2012-08-02 17:47:53.276 \N \N 2 3 161 4 137 -820 \N 2012-08-02 17:47:53.408 \N \N 2 3 161 4 138 -820 \N 2012-08-02 17:47:53.446 \N \N 2 3 161 4 139 -820 \N 2012-08-02 17:47:57.969 \N \N 2 3 161 4 140 -820 \N 2012-08-02 17:48:19.84 \N \N 2 3 161 4 141 -820 \N 2012-08-02 17:48:20.639 \N \N 2 3 161 4 142 -820 \N 2012-08-02 17:48:20.806 \N \N 2 3 161 4 143 -820 \N 2012-08-02 17:48:21.679 \N \N 2 3 161 4 144 -820 \N 2012-08-02 17:48:21.873 \N \N 2 3 161 4 145 -820 \N 2012-08-02 17:48:22.509 \N \N 2 3 161 4 146 -820 \N 2012-08-02 17:48:22.56 \N \N 2 3 161 4 147 -820 \N 2012-08-02 17:48:22.681 \N \N 2 3 161 4 148 -820 \N 2012-08-02 17:48:22.737 \N \N 2 3 161 4 149 -820 \N 2012-08-02 17:48:22.815 \N \N 2 3 161 4 150 -820 \N 2012-08-02 17:48:23.099 \N \N 2 3 161 4 151 -820 \N 2012-08-02 17:48:23.132 \N \N 2 3 161 4 152 -820 \N 2012-08-02 17:48:23.147 \N \N 2 3 161 4 153 -820 \N 2012-08-02 17:48:23.179 \N \N 2 3 161 4 154 -820 \N 2012-08-02 17:48:23.199 \N \N 2 3 161 4 155 -820 \N 2012-08-02 17:48:23.214 \N \N 2 3 161 4 156 -820 \N 2012-08-02 17:48:23.238 \N \N 2 3 161 4 157 -820 \N 2012-08-02 17:48:23.259 \N \N 2 3 161 4 158 -820 \N 2012-08-02 17:48:23.275 \N \N 2 3 161 4 159 -820 \N 2012-08-02 17:48:23.354 \N \N 2 3 161 4 160 -820 \N 2012-08-02 17:48:23.376 \N \N 2 3 161 4 161 -820 \N 2012-08-02 17:48:24.512 \N \N 2 3 161 4 162 -820 \N 2012-08-02 17:48:53.468 \N \N 2 3 161 4 163 -820 \N 2012-08-02 17:48:54.176 \N \N 2 3 161 4 164 -820 \N 2012-08-02 17:48:54.342 \N \N 2 3 161 4 165 -820 \N 2012-08-02 17:48:55.11 \N \N 2 3 161 4 166 -820 \N 2012-08-02 17:48:55.243 \N \N 2 3 161 4 167 -820 \N 2012-08-02 17:48:55.544 \N \N 2 3 161 4 168 -820 \N 2012-08-02 17:48:55.568 \N \N 2 3 161 4 169 -820 \N 2012-08-02 17:48:55.649 \N \N 2 3 161 4 170 -820 \N 2012-08-02 17:48:55.666 \N \N 2 3 161 4 171 -820 \N 2012-08-02 17:48:55.681 \N \N 2 3 161 4 172 -820 \N 2012-08-02 17:48:55.733 \N \N 2 3 161 4 173 -820 \N 2012-08-02 17:48:55.749 \N \N 2 3 161 4 174 -820 \N 2012-08-02 17:48:55.764 \N \N 2 3 161 4 175 -820 \N 2012-08-02 17:48:55.795 \N \N 2 3 161 4 176 -820 \N 2012-08-02 17:48:55.808 \N \N 2 3 161 4 177 -820 \N 2012-08-02 17:48:55.822 \N \N 2 3 161 4 178 -820 \N 2012-08-02 17:48:55.849 \N \N 2 3 161 4 179 -820 \N 2012-08-02 17:48:55.868 \N \N 2 3 161 4 180 -820 \N 2012-08-02 17:48:55.885 \N \N 2 3 161 4 181 -820 \N 2012-08-02 17:48:55.974 \N \N 2 3 161 4 182 -820 \N 2012-08-02 17:48:55.993 \N \N 2 3 161 4 183 -820 \N 2012-08-02 17:48:57.543 \N \N 2 3 161 4 184 -820 \N 2012-08-02 17:49:08.402 \N \N 0 0 2 9 185 -820 \N 2012-08-02 17:49:08.482 \N \N 1 2 162 4 186 -820 \N 2012-08-02 17:49:08.511 \N \N 0 0 2 9 187 -820 \N 2012-08-02 17:49:08.551 \N \N 2 3 163 4 188 -820 \N 2012-08-02 17:49:20.067 \N \N 2 3 163 4 189 -820 \N 2012-08-02 17:49:20.078 \N \N 2 3 163 4 190 -820 \N 2012-08-02 17:49:20.258 \N \N 2 3 163 4 191 -820 \N 2012-08-02 17:49:21.579 \N \N 2 3 163 4 192 -820 \N 2012-08-02 17:49:21.59 \N \N 2 3 163 4 193 -820 \N 2012-08-02 17:49:21.591 \N \N 2 3 163 4 195 -820 \N 2012-08-02 17:49:21.591 \N \N 2 3 163 4 194 -820 \N 2012-08-02 17:49:21.591 \N \N 2 3 163 4 196 -820 \N 2012-08-02 17:49:21.761 \N \N 2 3 163 4 197 -820 \N 2012-08-02 17:49:21.809 \N \N 2 3 163 4 198 -820 \N 2012-08-02 17:49:21.814 \N \N 2 3 163 4 199 -820 \N 2012-08-02 17:49:21.828 \N \N 2 3 163 4 200 -820 \N 2012-08-02 17:49:21.831 \N \N 2 3 163 4 201 -820 \N 2012-08-02 17:49:21.962 \N \N 2 3 163 4 202 -820 \N 2012-08-02 17:49:22.036 \N \N 2 3 163 4 204 -820 \N 2012-08-02 17:49:22.037 \N \N 2 3 163 4 205 -820 \N 2012-08-02 17:49:22.041 \N \N 2 3 163 4 203 -820 \N 2012-08-02 17:49:22.036 \N \N 2 3 163 4 206 -820 \N 2012-08-02 17:49:22.197 \N \N 2 3 163 4 207 -820 \N 2012-08-02 17:49:22.267 \N \N 2 3 163 4 208 -820 \N 2012-08-02 17:49:22.267 \N \N 2 3 163 4 209 -820 \N 2012-08-02 17:49:22.269 \N \N 2 3 163 4 210 -820 \N 2012-08-02 17:49:22.27 \N \N 2 3 163 4 211 -820 \N 2012-08-02 17:49:22.3 \N \N 2 3 163 4 212 -820 \N 2012-08-02 17:49:22.3 \N \N 2 3 163 4 213 -820 \N 2012-08-02 17:49:22.35 \N \N 2 3 163 4 214 -820 \N 2012-08-02 17:49:22.358 \N \N 2 3 163 4 215 -820 \N 2012-08-02 17:49:22.38 \N \N 2 3 163 4 216 -820 \N 2012-08-02 17:49:22.399 \N \N 2 3 163 4 217 -820 \N 2012-08-02 17:49:22.434 \N \N 2 3 163 4 218 -820 \N 2012-08-02 17:49:22.453 \N \N 2 3 163 4 219 -820 \N 2012-08-02 17:49:22.453 \N \N 2 3 163 4 220 -820 \N 2012-08-02 17:49:22.473 \N \N 2 3 163 4 221 -820 \N 2012-08-02 17:49:22.489 \N \N 2 3 163 4 222 -820 \N 2012-08-02 17:49:22.524 \N \N 2 3 163 4 224 -820 \N 2012-08-02 17:49:22.526 \N \N 2 3 163 4 223 -820 \N 2012-08-02 17:49:22.526 \N \N 2 3 163 4 225 -820 \N 2012-08-02 17:49:22.535 \N \N 2 3 163 4 226 -820 \N 2012-08-02 17:49:22.559 \N \N 2 3 163 4 227 -820 \N 2012-08-02 17:49:22.559 \N \N 2 3 163 4 228 -820 \N 2012-08-02 17:49:22.61 \N \N 2 3 163 4 229 -820 \N 2012-08-02 17:49:22.619 \N \N 2 3 163 4 230 -820 \N 2012-08-02 17:49:22.636 \N \N 2 3 163 4 231 -820 \N 2012-08-02 17:49:22.653 \N \N 2 3 163 4 232 -820 \N 2012-08-02 17:49:22.701 \N \N 2 3 163 4 233 -820 \N 2012-08-02 17:49:22.701 \N \N 2 3 163 4 234 -820 \N 2012-08-02 17:49:22.725 \N \N 2 3 163 4 236 -820 \N 2012-08-02 17:49:22.732 \N \N 2 3 163 4 235 -820 \N 2012-08-02 17:49:22.732 \N \N 2 3 163 4 237 -820 \N 2012-08-02 17:49:22.753 \N \N 2 3 163 4 238 -820 \N 2012-08-02 17:49:22.754 \N \N 2 3 163 4 239 -820 \N 2012-08-02 17:49:24.283 \N \N 2 3 163 4 240 -820 \N 2012-08-02 17:49:25.659 \N \N 2 3 163 4 241 -820 \N 2012-08-02 17:49:26.267 \N \N 2 3 163 4 242 -820 \N 2012-08-02 17:49:27.525 \N \N 2 3 163 4 243 -820 \N 2012-08-02 17:49:28.16 \N \N 2 3 163 4 244 -820 \N 2012-08-02 17:49:28.525 \N \N 2 3 163 4 245 -820 \N 2012-08-02 17:49:29.629 \N \N 2 3 163 4 246 -820 \N 2012-08-02 17:49:29.694 \N \N 2 3 163 4 247 -820 \N 2012-08-02 17:49:29.822 \N \N 2 3 163 4 248 -820 \N 2012-08-02 17:49:45.606 \N \N 2 3 163 4 249 -820 \N 2012-08-02 17:49:47.901 \N \N 2 3 163 4 250 -820 \N 2012-08-02 17:49:48.408 \N \N 2 3 163 4 251 -820 \N 2012-08-02 17:49:48.635 \N \N 2 3 163 4 252 -820 \N 2012-08-02 17:49:48.835 \N \N 2 3 163 4 253 -820 \N 2012-08-02 17:49:49.05 \N \N 2 3 163 4 254 -820 \N 2012-08-02 17:49:49.266 \N \N 2 3 163 4 255 -820 \N 2012-08-02 17:49:49.512 \N \N 2 3 163 4 256 -820 \N 2012-08-02 17:49:49.735 \N \N 2 3 163 4 257 -820 \N 2012-08-02 17:49:49.932 \N \N 2 3 163 4 258 -820 \N 2012-08-02 17:49:50.129 \N \N 2 3 163 4 259 -820 \N 2012-08-02 17:49:50.328 \N \N 2 3 163 4 260 -820 \N 2012-08-02 17:49:50.539 \N \N 2 3 163 4 261 -820 \N 2012-08-02 17:49:50.739 \N \N 2 3 163 4 262 -820 \N 2012-08-02 17:49:50.929 \N \N 2 3 161 4 263 -820 \N 2012-08-02 17:49:50.94 \N \N 2 3 163 4 264 -820 \N 2012-08-02 17:49:51.117 \N \N 2 3 163 4 265 -820 \N 2012-08-02 17:49:51.291 \N \N 2 3 163 4 266 -820 \N 2012-08-02 17:49:51.462 \N \N 2 3 163 4 267 -820 \N 2012-08-02 17:49:51.654 \N \N 2 3 163 4 268 -820 \N 2012-08-02 17:49:51.84 \N \N 2 3 163 4 269 -820 \N 2012-08-02 17:49:52.032 \N \N 2 3 163 4 270 -820 \N 2012-08-02 17:49:52.81 \N \N 2 3 161 4 272 -820 \N 2012-08-02 17:49:52.942 \N \N 2 3 161 4 273 -820 \N 2012-08-02 17:49:53.661 \N \N 2 3 161 4 274 -820 \N 2012-08-02 17:49:53.761 \N \N 2 3 161 4 275 -820 \N 2012-08-02 17:49:54.097 \N \N 2 3 161 4 276 -820 \N 2012-08-02 17:49:54.134 \N \N 2 3 161 4 277 -820 \N 2012-08-02 17:49:54.291 \N \N 2 3 161 4 278 -820 \N 2012-08-02 17:49:54.344 \N \N 2 3 161 4 279 -820 \N 2012-08-02 17:49:54.358 \N \N 2 3 161 4 280 -820 \N 2012-08-02 17:49:54.428 \N \N 2 3 161 4 281 -820 \N 2012-08-02 17:49:54.443 \N \N 2 3 161 4 282 -820 \N 2012-08-02 17:49:54.457 \N \N 2 3 161 4 283 -820 \N 2012-08-02 17:49:54.487 \N \N 2 3 161 4 284 -820 \N 2012-08-02 17:49:54.501 \N \N 2 3 161 4 285 -820 \N 2012-08-02 17:49:54.516 \N \N 2 3 161 4 286 -820 \N 2012-08-02 17:49:54.559 \N \N 2 3 161 4 287 -820 \N 2012-08-02 17:49:54.578 \N \N 2 3 161 4 288 -820 \N 2012-08-02 17:49:54.594 \N \N 2 3 161 4 289 -820 \N 2012-08-02 17:49:54.68 \N \N 2 3 161 4 290 -820 \N 2012-08-02 17:49:54.694 \N \N 2 3 161 4 291 -820 \N 2012-08-02 17:49:55.981 \N \N 2 3 163 4 292 -820 \N 2012-08-02 17:49:56.247 \N \N 2 3 161 4 293 -820 \N 2012-08-02 17:49:57.283 \N \N 2 3 163 4 295 -820 \N 2012-08-02 17:50:08.732 \N \N 2 3 163 4 299 -820 \N 2012-08-02 17:50:08.937 \N \N 2 3 163 4 310 -820 \N 2012-08-02 17:50:08.999 \N \N 2 3 163 4 313 -820 \N 2012-08-02 17:50:09.125 \N \N 2 3 163 4 314 -820 \N 2012-08-02 17:50:09.141 \N \N 2 3 163 4 315 -820 \N 2012-08-02 17:50:09.189 \N \N 2 3 163 4 319 -820 \N 2012-08-02 17:50:09.235 \N \N 2 3 163 4 323 -820 \N 2012-08-02 17:50:09.26 \N \N 2 3 163 4 328 -820 \N 2012-08-02 17:50:09.438 \N \N 2 3 163 4 338 -820 \N 2012-08-02 17:50:09.837 \N \N 2 3 163 4 343 -820 \N 2012-08-02 17:50:09.991 \N \N 2 3 163 4 346 -820 \N 2012-08-02 17:50:10.055 \N \N 2 3 163 4 349 -820 \N 2012-08-02 17:50:14.861 \N \N 2 3 163 4 350 -820 \N 2012-08-02 17:50:15.853 \N \N 2 3 163 4 351 -820 \N 2012-08-02 17:50:16.177 \N \N 2 3 163 4 352 -820 \N 2012-08-02 17:50:16.894 \N \N 2 3 163 4 353 -820 \N 2012-08-02 17:50:16.958 \N \N 2 3 163 4 354 -820 \N 2012-08-02 17:50:17.105 \N \N 2 3 163 4 355 -820 \N 2012-08-02 17:50:19.359 \N \N 2 3 163 4 356 -820 \N 2012-08-02 17:50:19.838 \N \N 2 3 163 4 357 -820 \N 2012-08-02 17:50:20.078 \N \N 2 3 163 4 358 -820 \N 2012-08-02 17:50:20.277 \N \N 2 3 163 4 359 -820 \N 2012-08-02 17:50:20.479 \N \N 2 3 163 4 360 -820 \N 2012-08-02 17:50:20.705 \N \N 2 3 163 4 361 -820 \N 2012-08-02 17:50:20.911 \N \N 2 3 163 4 362 -820 \N 2012-08-02 17:50:21.129 \N \N 2 3 163 4 363 -820 \N 2012-08-02 17:50:21.357 \N \N 2 3 163 4 364 -820 \N 2012-08-02 17:50:21.596 \N \N 2 3 163 4 365 -820 \N 2012-08-02 17:50:21.789 \N \N 2 3 163 4 366 -820 \N 2012-08-02 17:50:22.032 \N \N 2 3 163 4 367 -820 \N 2012-08-02 17:50:22.237 \N \N 2 3 163 4 368 -820 \N 2012-08-02 17:50:22.446 \N \N 2 3 163 4 369 -820 \N 2012-08-02 17:50:22.668 \N \N 2 3 163 4 370 -820 \N 2012-08-02 17:50:22.871 \N \N 2 3 163 4 271 -820 \N 2012-08-02 17:49:52.879 \N \N 2 3 163 4 294 -820 \N 2012-08-02 17:50:08.732 \N \N 2 3 163 4 296 -820 \N 2012-08-02 17:50:08.732 \N \N 2 3 163 4 297 -820 \N 2012-08-02 17:50:08.737 \N \N 2 3 163 4 298 -820 \N 2012-08-02 17:50:08.737 \N \N 2 3 163 4 300 -820 \N 2012-08-02 17:50:08.944 \N \N 2 3 163 4 301 -820 \N 2012-08-02 17:50:08.944 \N \N 2 3 163 4 302 -820 \N 2012-08-02 17:50:08.944 \N \N 2 3 163 4 303 -820 \N 2012-08-02 17:50:08.945 \N \N 2 3 163 4 304 -820 \N 2012-08-02 17:50:08.965 \N \N 2 3 163 4 305 -820 \N 2012-08-02 17:50:08.973 \N \N 2 3 163 4 307 -820 \N 2012-08-02 17:50:08.974 \N \N 2 3 163 4 306 -820 \N 2012-08-02 17:50:08.973 \N \N 2 3 163 4 308 -820 \N 2012-08-02 17:50:08.986 \N \N 2 3 163 4 309 -820 \N 2012-08-02 17:50:08.992 \N \N 2 3 163 4 311 -820 \N 2012-08-02 17:50:09.011 \N \N 2 3 163 4 312 -820 \N 2012-08-02 17:50:09.102 \N \N 2 3 163 4 316 -820 \N 2012-08-02 17:50:09.191 \N \N 2 3 163 4 317 -820 \N 2012-08-02 17:50:09.199 \N \N 2 3 163 4 318 -820 \N 2012-08-02 17:50:09.214 \N \N 2 3 163 4 320 -820 \N 2012-08-02 17:50:09.243 \N \N 2 3 163 4 321 -820 \N 2012-08-02 17:50:09.244 \N \N 2 3 163 4 322 -820 \N 2012-08-02 17:50:09.244 \N \N 2 3 163 4 325 -820 \N 2012-08-02 17:50:09.27 \N \N 2 3 163 4 324 -820 \N 2012-08-02 17:50:09.27 \N \N 2 3 163 4 326 -820 \N 2012-08-02 17:50:09.277 \N \N 2 3 163 4 327 -820 \N 2012-08-02 17:50:09.279 \N \N 2 3 163 4 329 -820 \N 2012-08-02 17:50:09.439 \N \N 2 3 163 4 330 -820 \N 2012-08-02 17:50:09.439 \N \N 2 3 163 4 331 -820 \N 2012-08-02 17:50:09.439 \N \N 2 3 163 4 332 -820 \N 2012-08-02 17:50:09.458 \N \N 2 3 163 4 333 -820 \N 2012-08-02 17:50:09.672 \N \N 2 3 163 4 334 -820 \N 2012-08-02 17:50:09.71 \N \N 2 3 163 4 336 -820 \N 2012-08-02 17:50:09.716 \N \N 2 3 163 4 335 -820 \N 2012-08-02 17:50:09.716 \N \N 2 3 163 4 337 -820 \N 2012-08-02 17:50:09.718 \N \N 2 3 163 4 339 -820 \N 2012-08-02 17:50:09.869 \N \N 2 3 163 4 341 -820 \N 2012-08-02 17:50:09.883 \N \N 2 3 163 4 340 -820 \N 2012-08-02 17:50:09.883 \N \N 2 3 163 4 342 -820 \N 2012-08-02 17:50:09.89 \N \N 2 3 163 4 344 -820 \N 2012-08-02 17:50:10.016 \N \N 2 3 163 4 345 -820 \N 2012-08-02 17:50:10.04 \N \N 2 3 163 4 347 -820 \N 2012-08-02 17:50:10.066 \N \N 2 3 163 4 348 -820 \N 2012-08-02 17:50:10.137 \N \N 2 3 163 4 371 -820 \N 2012-08-02 17:50:26.83 \N \N 2 3 163 4 372 -820 \N 2012-08-02 17:50:27.804 \N \N 2 3 163 4 373 -820 \N 2012-08-02 17:50:29.604 \N \N 2 3 163 4 374 -820 \N 2012-08-02 17:50:30.89 \N \N 2 3 163 4 375 -820 \N 2012-08-02 17:50:33.442 \N \N 2 3 163 4 376 -820 \N 2012-08-02 17:50:33.944 \N \N 2 3 163 4 377 -820 \N 2012-08-02 17:50:34.151 \N \N 2 3 163 4 378 -820 \N 2012-08-02 17:50:34.332 \N \N 2 3 163 4 379 -820 \N 2012-08-02 17:50:34.528 \N \N 2 3 163 4 380 -820 \N 2012-08-02 17:50:34.769 \N \N 2 3 163 4 381 -820 \N 2012-08-02 17:50:34.95 \N \N 2 3 163 4 382 -820 \N 2012-08-02 17:50:35.128 \N \N 2 3 163 4 383 -820 \N 2012-08-02 17:50:35.307 \N \N 2 3 163 4 384 -820 \N 2012-08-02 17:50:35.535 \N \N 2 3 163 4 385 -820 \N 2012-08-02 17:50:35.709 \N \N 2 3 163 4 386 -820 \N 2012-08-02 17:50:35.893 \N \N 2 3 163 4 387 -820 \N 2012-08-02 17:50:36.063 \N \N 2 3 163 4 388 -820 \N 2012-08-02 17:50:36.264 \N \N 2 3 163 4 389 -820 \N 2012-08-02 17:50:36.459 \N \N 2 3 163 4 390 -820 \N 2012-08-02 17:50:36.659 \N \N 2 3 163 4 391 -820 \N 2012-08-02 17:50:36.844 \N \N 2 3 163 4 392 -820 \N 2012-08-02 17:50:37.033 \N \N 2 3 163 4 393 -820 \N 2012-08-02 17:50:37.22 \N \N 2 3 163 4 394 -820 \N 2012-08-02 17:50:37.436 \N \N 2 3 163 4 395 -820 \N 2012-08-02 17:50:37.629 \N \N 2 3 163 4 396 -820 \N 2012-08-02 17:50:37.82 \N \N 2 3 163 4 397 -820 \N 2012-08-02 17:50:38.006 \N \N 2 3 163 4 398 -820 \N 2012-08-02 17:50:38.211 \N \N 2 3 163 4 399 -820 \N 2012-08-02 17:50:38.401 \N \N 2 3 163 4 400 -820 \N 2012-08-02 17:50:38.578 \N \N 2 3 163 4 401 -820 \N 2012-08-02 17:50:38.771 \N \N 2 3 163 4 402 -820 \N 2012-08-02 17:50:38.952 \N \N 2 3 163 4 403 -820 \N 2012-08-02 17:50:39.135 \N \N 2 3 163 4 404 -820 \N 2012-08-02 17:50:39.302 \N \N 2 3 163 4 405 -820 \N 2012-08-02 17:50:39.694 \N \N 2 3 163 4 406 -820 \N 2012-08-02 17:50:45.379 \N \N 2 3 163 4 407 -820 \N 2012-08-02 17:50:50.521 \N \N 2 3 163 4 408 -820 \N 2012-08-02 17:50:55.865 \N \N 2 3 163 4 409 -820 \N 2012-08-02 17:50:56.362 \N \N 2 3 163 4 410 -820 \N 2012-08-02 17:50:57.286 \N \N 2 3 163 4 411 -820 \N 2012-08-02 17:51:00.484 \N \N 2 3 163 4 412 -820 \N 2012-08-02 17:51:00.982 \N \N 2 3 163 4 413 -820 \N 2012-08-02 17:51:01.467 \N \N 2 3 163 4 414 -820 \N 2012-08-02 17:51:01.939 \N \N 2 3 163 4 415 -820 \N 2012-08-02 17:51:02.425 \N \N 2 3 163 4 416 -820 \N 2012-08-02 17:51:03.466 \N \N 2 3 163 4 417 -820 \N 2012-08-02 17:51:03.945 \N \N 2 3 163 4 418 -820 \N 2012-08-02 17:51:04.46 \N \N 2 3 163 4 419 -820 \N 2012-08-02 17:51:04.953 \N \N 2 3 163 4 420 -820 \N 2012-08-02 17:51:05.441 \N \N 2 3 163 4 421 -820 \N 2012-08-02 17:51:05.922 \N \N 2 3 163 4 422 -820 \N 2012-08-02 17:51:06.398 \N \N 2 3 163 4 423 -820 \N 2012-08-02 17:51:06.925 \N \N 2 3 163 4 424 -820 \N 2012-08-02 17:51:07.406 \N \N 2 3 163 4 425 -820 \N 2012-08-02 17:51:07.894 \N \N 2 3 163 4 426 -820 \N 2012-08-02 17:51:08.792 \N \N 2 3 163 4 427 -820 \N 2012-08-02 17:51:09.369 \N \N 2 3 163 4 428 -820 \N 2012-08-02 17:51:09.911 \N \N 2 3 163 4 429 -820 \N 2012-08-02 17:51:10.415 \N \N 2 3 163 4 430 -820 \N 2012-08-02 17:51:10.547 \N \N 2 3 161 4 431 -820 \N 2012-08-02 17:51:10.884 \N \N 2 3 163 4 432 -820 \N 2012-08-02 17:51:11.349 \N \N 2 3 161 4 433 -820 \N 2012-08-02 17:51:11.367 \N \N 2 3 163 4 434 -820 \N 2012-08-02 17:51:11.475 \N \N 2 3 161 4 435 -820 \N 2012-08-02 17:51:11.827 \N \N 2 3 163 4 436 -820 \N 2012-08-02 17:51:12.144 \N \N 2 3 161 4 437 -820 \N 2012-08-02 17:51:12.251 \N \N 2 3 161 4 438 -820 \N 2012-08-02 17:51:12.344 \N \N 2 3 163 4 439 -820 \N 2012-08-02 17:51:12.693 \N \N 2 3 161 4 440 -820 \N 2012-08-02 17:51:12.718 \N \N 2 3 161 4 441 -820 \N 2012-08-02 17:51:12.822 \N \N 2 3 161 4 442 -820 \N 2012-08-02 17:51:12.842 \N \N 2 3 161 4 443 -820 \N 2012-08-02 17:51:12.849 \N \N 2 3 163 4 444 -820 \N 2012-08-02 17:51:12.871 \N \N 2 3 161 4 445 -820 \N 2012-08-02 17:51:12.89 \N \N 2 3 161 4 446 -820 \N 2012-08-02 17:51:12.905 \N \N 2 3 161 4 447 -820 \N 2012-08-02 17:51:12.976 \N \N 2 3 161 4 448 -820 \N 2012-08-02 17:51:12.99 \N \N 2 3 161 4 449 -820 \N 2012-08-02 17:51:13.005 \N \N 2 3 161 4 450 -820 \N 2012-08-02 17:51:13.034 \N \N 2 3 161 4 451 -820 \N 2012-08-02 17:51:13.052 \N \N 2 3 161 4 452 -820 \N 2012-08-02 17:51:13.063 \N \N 2 3 161 4 453 -820 \N 2012-08-02 17:51:13.306 \N \N 2 3 163 4 454 -820 \N 2012-08-02 17:51:13.773 \N \N 2 3 163 4 455 -820 \N 2012-08-02 17:51:14.331 \N \N 2 3 163 4 456 -820 \N 2012-08-02 17:51:14.805 \N \N 2 3 163 4 457 -820 \N 2012-08-02 17:51:15.276 \N \N 2 3 163 4 458 -820 \N 2012-08-02 17:51:15.727 \N \N 2 3 163 4 459 -820 \N 2012-08-02 17:51:16.188 \N \N 2 3 163 4 460 -820 \N 2012-08-02 17:51:18.464 \N \N 2 3 163 4 461 -820 \N 2012-08-02 17:51:20.979 \N \N 2 3 163 4 462 -820 \N 2012-08-02 17:51:23.699 \N \N 2 3 163 4 463 -820 \N 2012-08-02 17:51:25.419 \N \N 2 3 163 4 464 -820 \N 2012-08-02 17:51:27.63 \N \N 2 3 163 4 465 -820 \N 2012-08-02 17:51:31.114 \N \N 2 3 163 4 466 -820 \N 2012-08-02 17:51:34.619 \N \N 2 3 163 4 467 -820 \N 2012-08-02 17:51:39.035 \N \N 2 3 163 4 468 -820 \N 2012-08-02 17:51:39.545 \N \N 2 3 163 4 469 -820 \N 2012-08-02 17:51:39.997 \N \N 2 3 163 4 470 -820 \N 2012-08-02 17:51:40.456 \N \N 2 3 163 4 471 -820 \N 2012-08-02 17:51:40.9 \N \N 2 3 163 4 472 -820 \N 2012-08-02 17:51:41.343 \N \N 2 3 163 4 473 -820 \N 2012-08-02 17:51:41.778 \N \N 2 3 163 4 474 -820 \N 2012-08-02 17:51:42.216 \N \N 2 3 163 4 475 -820 \N 2012-08-02 17:51:42.682 \N \N 2 3 163 4 476 -820 \N 2012-08-02 17:51:43.129 \N \N 2 3 163 4 477 -820 \N 2012-08-02 17:51:43.562 \N \N 2 3 163 4 478 -820 \N 2012-08-02 17:51:44.003 \N \N 2 3 163 4 479 -820 \N 2012-08-02 17:51:44.44 \N \N 2 3 163 4 480 -820 \N 2012-08-02 17:51:44.908 \N \N 2 3 163 4 481 -820 \N 2012-08-02 17:51:45.333 \N \N 2 3 163 4 482 -820 \N 2012-08-02 17:51:45.845 \N \N 2 3 163 4 483 -820 \N 2012-08-02 17:51:46.286 \N \N 2 3 163 4 484 -820 \N 2012-08-02 17:51:46.711 \N \N 2 3 163 4 485 -820 \N 2012-08-02 17:51:47.137 \N \N 2 3 163 4 486 -820 \N 2012-08-02 17:51:47.576 \N \N 2 3 163 4 487 -820 \N 2012-08-02 17:51:48.005 \N \N 2 3 163 4 488 -820 \N 2012-08-02 17:51:48.444 \N \N 2 3 163 4 489 -820 \N 2012-08-02 17:51:48.88 \N \N 2 3 163 4 490 -820 \N 2012-08-02 17:52:07.714 \N \N 2 3 163 4 491 -820 \N 2012-08-02 17:52:07.715 \N \N 2 3 163 4 492 -820 \N 2012-08-02 17:52:07.716 \N \N 2 3 163 4 494 -820 \N 2012-08-02 17:52:07.722 \N \N 2 3 163 4 493 -820 \N 2012-08-02 17:52:07.722 \N \N 2 3 163 4 495 -820 \N 2012-08-02 17:52:07.855 \N \N 2 3 163 4 496 -820 \N 2012-08-02 17:52:07.878 \N \N 2 3 163 4 497 -820 \N 2012-08-02 17:52:07.882 \N \N 2 3 163 4 498 -820 \N 2012-08-02 17:52:07.891 \N \N 2 3 163 4 499 -820 \N 2012-08-02 17:52:07.891 \N \N 2 3 163 4 500 -820 \N 2012-08-02 17:52:07.998 \N \N 2 3 163 4 501 -820 \N 2012-08-02 17:52:08.046 \N \N 2 3 163 4 502 -820 \N 2012-08-02 17:52:08.052 \N \N 2 3 163 4 503 -820 \N 2012-08-02 17:52:08.067 \N \N 2 3 163 4 509 -820 \N 2012-08-02 17:52:08.238 \N \N 2 3 163 4 513 -820 \N 2012-08-02 17:52:08.393 \N \N 2 3 163 4 516 -820 \N 2012-08-02 17:52:08.536 \N \N 2 3 163 4 532 -820 \N 2012-08-02 17:52:47.442 \N \N 2 3 163 4 536 -820 \N 2012-08-02 17:52:47.62 \N \N 2 3 163 4 542 -820 \N 2012-08-02 17:52:47.777 \N \N 2 3 163 4 544 -820 \N 2012-08-02 17:52:47.795 \N \N 2 3 163 4 548 -820 \N 2012-08-02 17:52:47.942 \N \N 2 3 163 4 553 -820 \N 2012-08-02 17:52:48.111 \N \N 2 3 163 4 559 -820 \N 2012-08-02 17:52:48.288 \N \N 2 3 163 4 564 -820 \N 2012-08-02 17:52:48.484 \N \N 2 3 163 4 504 -820 \N 2012-08-02 17:52:08.068 \N \N 2 3 163 4 507 -820 \N 2012-08-02 17:52:08.22 \N \N 2 3 163 4 525 -820 \N 2012-08-02 17:52:08.838 \N \N 2 3 163 4 535 -820 \N 2012-08-02 17:52:47.449 \N \N 2 3 163 4 539 -820 \N 2012-08-02 17:52:47.625 \N \N 2 3 163 4 545 -820 \N 2012-08-02 17:52:47.801 \N \N 2 3 163 4 549 -820 \N 2012-08-02 17:52:47.945 \N \N 2 3 163 4 555 -820 \N 2012-08-02 17:52:48.113 \N \N 2 3 163 4 557 -820 \N 2012-08-02 17:52:48.254 \N \N 2 3 163 4 560 -820 \N 2012-08-02 17:52:48.29 \N \N 2 3 163 4 505 -820 \N 2012-08-02 17:52:08.166 \N \N 2 3 163 4 508 -820 \N 2012-08-02 17:52:08.232 \N \N 2 3 163 4 512 -820 \N 2012-08-02 17:52:08.384 \N \N 2 3 163 4 517 -820 \N 2012-08-02 17:52:08.552 \N \N 2 3 163 4 521 -820 \N 2012-08-02 17:52:08.756 \N \N 2 3 163 4 526 -820 \N 2012-08-02 17:52:08.941 \N \N 2 3 163 4 527 -820 \N 2012-08-02 17:52:11.167 \N \N 2 3 163 4 528 -820 \N 2012-08-02 17:52:14.794 \N \N 2 3 163 4 529 -820 \N 2012-08-02 17:52:15.701 \N \N 2 3 163 4 530 -820 \N 2012-08-02 17:52:23.212 \N \N 2 3 163 4 533 -820 \N 2012-08-02 17:52:47.443 \N \N 2 3 163 4 540 -820 \N 2012-08-02 17:52:47.635 \N \N 2 3 163 4 551 -820 \N 2012-08-02 17:52:48.063 \N \N 2 3 163 4 556 -820 \N 2012-08-02 17:52:48.215 \N \N 2 3 163 4 558 -820 \N 2012-08-02 17:52:48.288 \N \N 2 3 163 4 561 -820 \N 2012-08-02 17:52:48.419 \N \N 2 3 163 4 565 -820 \N 2012-08-02 17:52:48.522 \N \N 2 3 163 4 566 -820 \N 2012-08-02 17:52:48.582 \N \N 2 3 163 4 568 -820 \N 2012-08-02 17:52:48.744 \N \N 2 3 163 4 569 -820 \N 2012-08-02 17:52:50.067 \N \N 2 3 163 4 570 -820 \N 2012-08-02 17:52:50.148 \N \N 2 3 163 4 571 -820 \N 2012-08-02 17:52:50.19 \N \N 2 3 163 4 572 -820 \N 2012-08-02 17:52:50.212 \N \N 2 3 163 4 573 -820 \N 2012-08-02 17:52:50.229 \N \N 2 3 163 4 574 -820 \N 2012-08-02 17:52:50.338 \N \N 2 3 163 4 575 -820 \N 2012-08-02 17:52:50.364 \N \N 2 3 163 4 576 -820 \N 2012-08-02 17:52:50.38 \N \N 2 3 163 4 577 -820 \N 2012-08-02 17:52:50.396 \N \N 2 3 163 4 578 -820 \N 2012-08-02 17:52:50.411 \N \N 2 3 163 4 579 -820 \N 2012-08-02 17:52:50.435 \N \N 2 3 163 4 580 -820 \N 2012-08-02 17:52:50.469 \N \N 2 3 163 4 581 -820 \N 2012-08-02 17:52:50.485 \N \N 2 3 163 4 582 -820 \N 2012-08-02 17:52:50.503 \N \N 2 3 163 4 583 -820 \N 2012-08-02 17:52:50.622 \N \N 2 3 163 4 584 -820 \N 2012-08-02 17:52:50.647 \N \N 2 3 163 4 585 -820 \N 2012-08-02 17:52:50.671 \N \N 2 3 163 4 586 -820 \N 2012-08-02 17:52:50.687 \N \N 2 3 163 4 587 -820 \N 2012-08-02 17:52:50.702 \N \N 2 3 163 4 588 -820 \N 2012-08-02 17:52:50.726 \N \N 2 3 163 4 589 -820 \N 2012-08-02 17:52:50.76 \N \N 2 3 163 4 590 -820 \N 2012-08-02 17:52:50.777 \N \N 2 3 163 4 591 -820 \N 2012-08-02 17:52:50.794 \N \N 2 3 163 4 592 -820 \N 2012-08-02 17:52:50.88 \N \N 2 3 163 4 593 -820 \N 2012-08-02 17:52:50.897 \N \N 2 3 163 4 594 -820 \N 2012-08-02 17:52:50.912 \N \N 2 3 163 4 595 -820 \N 2012-08-02 17:52:50.929 \N \N 2 3 163 4 596 -820 \N 2012-08-02 17:52:50.946 \N \N 2 3 163 4 597 -820 \N 2012-08-02 17:52:50.964 \N \N 2 3 163 4 598 -820 \N 2012-08-02 17:52:50.989 \N \N 2 3 163 4 599 -820 \N 2012-08-02 17:52:51.011 \N \N 2 3 163 4 600 -820 \N 2012-08-02 17:52:51.034 \N \N 2 3 163 4 601 -820 \N 2012-08-02 17:52:51.054 \N \N 2 3 163 4 602 -820 \N 2012-08-02 17:52:51.069 \N \N 2 3 163 4 603 -820 \N 2012-08-02 17:52:51.094 \N \N 2 3 163 4 604 -820 \N 2012-08-02 17:52:51.113 \N \N 2 3 163 4 605 -820 \N 2012-08-02 17:52:51.128 \N \N 2 3 163 4 606 -820 \N 2012-08-02 17:52:51.15 \N \N 2 3 163 4 607 -820 \N 2012-08-02 17:52:51.171 \N \N 2 3 163 4 608 -820 \N 2012-08-02 17:52:51.185 \N \N 2 3 163 4 609 -820 \N 2012-08-02 17:52:51.209 \N \N 2 3 163 4 610 -820 \N 2012-08-02 17:52:51.229 \N \N 2 3 163 4 611 -820 \N 2012-08-02 17:52:51.244 \N \N 2 3 163 4 612 -820 \N 2012-08-02 17:52:51.267 \N \N 2 3 163 4 613 -820 \N 2012-08-02 17:52:51.288 \N \N 2 3 163 4 614 -820 \N 2012-08-02 17:52:51.302 \N \N 2 3 163 4 615 -820 \N 2012-08-02 17:52:51.325 \N \N 2 3 163 4 616 -820 \N 2012-08-02 17:53:17.288 \N \N 2 3 163 4 617 -820 \N 2012-08-02 17:53:17.342 \N \N 2 3 163 4 618 -820 \N 2012-08-02 17:53:17.468 \N \N 2 3 163 4 506 -820 \N 2012-08-02 17:52:08.219 \N \N 2 3 163 4 510 -820 \N 2012-08-02 17:52:08.309 \N \N 2 3 163 4 511 -820 \N 2012-08-02 17:52:08.381 \N \N 2 3 163 4 515 -820 \N 2012-08-02 17:52:08.457 \N \N 2 3 163 4 518 -820 \N 2012-08-02 17:52:08.552 \N \N 2 3 163 4 519 -820 \N 2012-08-02 17:52:08.619 \N \N 2 3 163 4 522 -820 \N 2012-08-02 17:52:08.761 \N \N 2 3 163 4 531 -820 \N 2012-08-02 17:52:47.442 \N \N 2 3 163 4 538 -820 \N 2012-08-02 17:52:47.624 \N \N 2 3 163 4 541 -820 \N 2012-08-02 17:52:47.754 \N \N 2 3 163 4 543 -820 \N 2012-08-02 17:52:47.787 \N \N 2 3 163 4 547 -820 \N 2012-08-02 17:52:47.941 \N \N 2 3 163 4 552 -820 \N 2012-08-02 17:52:48.111 \N \N 2 3 163 4 562 -820 \N 2012-08-02 17:52:48.467 \N \N 2 3 163 4 567 -820 \N 2012-08-02 17:52:48.657 \N \N 2 3 163 4 514 -820 \N 2012-08-02 17:52:08.401 \N \N 2 3 163 4 520 -820 \N 2012-08-02 17:52:08.639 \N \N 2 3 163 4 523 -820 \N 2012-08-02 17:52:08.764 \N \N 2 3 163 4 524 -820 \N 2012-08-02 17:52:08.794 \N \N 2 3 163 4 534 -820 \N 2012-08-02 17:52:47.446 \N \N 2 3 163 4 537 -820 \N 2012-08-02 17:52:47.624 \N \N 2 3 163 4 546 -820 \N 2012-08-02 17:52:47.916 \N \N 2 3 163 4 550 -820 \N 2012-08-02 17:52:47.958 \N \N 2 3 163 4 554 -820 \N 2012-08-02 17:52:48.113 \N \N 2 3 163 4 563 -820 \N 2012-08-02 17:52:48.471 \N \N 2 3 163 4 619 -820 \N 2012-08-02 17:54:28.982 \N \N 2 3 163 4 620 -820 \N 2012-08-02 17:54:28.982 \N \N 2 3 163 4 621 -820 \N 2012-08-02 17:54:28.982 \N \N 2 3 163 4 622 -820 \N 2012-08-02 17:54:29.125 \N \N 2 3 163 4 623 -820 \N 2012-08-02 17:54:29.125 \N \N 2 3 163 4 624 -820 \N 2012-08-02 17:54:29.126 \N \N 2 3 163 4 625 -820 \N 2012-08-02 17:54:29.254 \N \N 2 3 163 4 626 -820 \N 2012-08-02 17:54:29.256 \N \N 2 3 163 4 627 -820 \N 2012-08-02 17:54:29.257 \N \N 2 3 163 4 628 -820 \N 2012-08-02 17:54:29.379 \N \N 2 3 163 4 629 -820 \N 2012-08-02 17:54:29.381 \N \N 2 3 163 4 630 -820 \N 2012-08-02 17:54:29.387 \N \N 2 3 163 4 631 -820 \N 2012-08-02 17:54:29.488 \N \N 2 3 163 4 632 -820 \N 2012-08-02 17:54:29.491 \N \N 2 3 163 4 633 -820 \N 2012-08-02 17:54:29.564 \N \N 2 3 163 4 634 -820 \N 2012-08-02 17:54:29.564 \N \N 2 3 163 4 635 -820 \N 2012-08-02 17:54:29.57 \N \N 2 3 163 4 636 -820 \N 2012-08-02 17:54:29.633 \N \N 2 3 163 4 637 -820 \N 2012-08-02 17:54:29.634 \N \N 2 3 163 4 638 -820 \N 2012-08-02 17:54:29.693 \N \N 2 3 163 4 639 -820 \N 2012-08-02 17:54:29.707 \N \N 2 3 163 4 640 -820 \N 2012-08-02 17:54:29.713 \N \N 2 3 163 4 642 -820 \N 2012-08-02 17:54:29.777 \N \N 2 3 163 4 641 -820 \N 2012-08-02 17:54:29.777 \N \N 2 3 163 4 643 -820 \N 2012-08-02 17:54:29.833 \N \N 2 3 163 4 644 -820 \N 2012-08-02 17:54:29.866 \N \N 2 3 163 4 645 -820 \N 2012-08-02 17:54:29.866 \N \N 2 3 163 4 646 -820 \N 2012-08-02 17:54:29.938 \N \N 2 3 163 4 647 -820 \N 2012-08-02 17:54:29.943 \N \N 2 3 163 4 648 -820 \N 2012-08-02 17:54:29.999 \N \N 2 3 163 4 649 -820 \N 2012-08-02 17:54:30.037 \N \N 2 3 163 4 650 -820 \N 2012-08-02 17:54:30.073 \N \N 2 3 163 4 651 -820 \N 2012-08-02 17:54:30.113 \N \N 2 3 163 4 652 -820 \N 2012-08-02 17:54:30.15 \N \N 2 3 163 4 653 -820 \N 2012-08-02 17:54:30.192 \N \N 2 3 163 4 654 -820 \N 2012-08-02 17:54:30.228 \N \N 2 3 163 4 655 -820 \N 2012-08-02 17:54:30.273 \N \N 2 3 163 4 656 -820 \N 2012-08-02 17:54:31.019 \N \N 2 3 163 4 657 -820 \N 2012-08-02 17:54:31.745 \N \N 2 3 163 4 658 -820 \N 2012-08-02 17:54:32.35 \N \N 2 3 163 4 659 -820 \N 2012-08-02 17:54:33.042 \N \N 2 3 163 4 660 -820 \N 2012-08-02 17:54:49.462 \N \N 2 3 163 4 661 -820 \N 2012-08-02 17:54:50.232 \N \N 2 3 163 4 662 -820 \N 2012-08-02 17:54:51.416 \N \N 2 3 163 4 663 -820 \N 2012-08-02 17:54:51.417 \N \N 2 3 163 4 664 -820 \N 2012-08-02 17:54:51.416 \N \N 2 3 163 4 665 -820 \N 2012-08-02 17:54:51.418 \N \N 2 3 163 4 666 -820 \N 2012-08-02 17:54:51.422 \N \N 2 3 163 4 667 -820 \N 2012-08-02 17:54:51.572 \N \N 2 3 163 4 668 -820 \N 2012-08-02 17:54:51.615 \N \N 2 3 163 4 669 -820 \N 2012-08-02 17:55:03.086 \N \N 2 3 163 4 670 -820 \N 2012-08-02 17:55:03.086 \N \N 2 3 163 4 671 -820 \N 2012-08-02 17:55:03.089 \N \N 2 3 163 4 672 -820 \N 2012-08-02 17:55:03.091 \N \N 2 3 163 4 673 -820 \N 2012-08-02 17:55:03.091 \N \N 2 3 163 4 674 -820 \N 2012-08-02 17:55:03.26 \N \N 2 3 163 4 675 -820 \N 2012-08-02 17:55:03.273 \N \N 2 3 163 4 676 -820 \N 2012-08-02 17:55:03.273 \N \N 2 3 163 4 677 -820 \N 2012-08-02 17:55:03.274 \N \N 2 3 163 4 678 -820 \N 2012-08-02 17:55:03.275 \N \N 2 3 163 4 679 -820 \N 2012-08-02 17:55:03.4 \N \N 2 3 163 4 680 -820 \N 2012-08-02 17:55:03.425 \N \N 2 3 163 4 681 -820 \N 2012-08-02 17:55:03.426 \N \N 2 3 163 4 682 -820 \N 2012-08-02 17:55:03.427 \N \N 2 3 163 4 683 -820 \N 2012-08-02 17:55:03.434 \N \N 2 3 163 4 684 -820 \N 2012-08-02 17:55:03.561 \N \N 2 3 163 4 685 -820 \N 2012-08-02 17:55:03.59 \N \N 2 3 163 4 686 -820 \N 2012-08-02 17:55:03.597 \N \N 2 3 163 4 687 -820 \N 2012-08-02 17:55:03.598 \N \N 2 3 163 4 688 -820 \N 2012-08-02 17:55:03.611 \N \N 2 3 163 4 689 -820 \N 2012-08-02 17:55:03.692 \N \N 2 3 163 4 690 -820 \N 2012-08-02 17:55:03.734 \N \N 2 3 163 4 691 -820 \N 2012-08-02 17:55:03.734 \N \N 2 3 163 4 692 -820 \N 2012-08-02 17:55:03.75 \N \N 2 3 163 4 693 -820 \N 2012-08-02 17:55:03.75 \N \N 2 3 163 4 694 -820 \N 2012-08-02 17:55:03.824 \N \N 2 3 163 4 695 -820 \N 2012-08-02 17:55:03.864 \N \N 2 3 163 4 696 -820 \N 2012-08-02 17:55:03.888 \N \N 2 3 163 4 697 -820 \N 2012-08-02 17:55:03.894 \N \N 2 3 163 4 703 -820 \N 2012-08-02 17:55:04.491 \N \N 2 3 163 4 698 -820 \N 2012-08-02 17:55:03.894 \N \N 2 3 163 4 699 -820 \N 2012-08-02 17:55:03.993 \N \N 2 3 163 4 702 -820 \N 2012-08-02 17:55:04.487 \N \N 2 3 163 4 717 -820 \N 2012-08-02 17:55:14.173 \N \N 2 3 163 4 700 -820 \N 2012-08-02 17:55:04.05 \N \N 2 3 163 4 704 -820 \N 2012-08-02 17:55:04.539 \N \N 2 3 163 4 701 -820 \N 2012-08-02 17:55:04.47 \N \N 2 3 163 4 705 -820 \N 2012-08-02 17:55:04.592 \N \N 2 3 163 4 706 -820 \N 2012-08-02 17:55:04.869 \N \N 2 3 163 4 707 -820 \N 2012-08-02 17:55:12.595 \N \N 2 3 163 4 708 -820 \N 2012-08-02 17:55:12.603 \N \N 2 3 163 4 709 -820 \N 2012-08-02 17:55:12.968 \N \N 2 3 163 4 710 -820 \N 2012-08-02 17:55:13.092 \N \N 2 3 163 4 711 -820 \N 2012-08-02 17:55:13.219 \N \N 2 3 163 4 712 -820 \N 2012-08-02 17:55:13.343 \N \N 2 3 163 4 713 -820 \N 2012-08-02 17:55:13.466 \N \N 2 3 163 4 714 -820 \N 2012-08-02 17:55:13.586 \N \N 2 3 163 4 715 -820 \N 2012-08-02 17:55:13.926 \N \N 2 3 163 4 716 -820 \N 2012-08-02 17:55:14.017 \N \N 2 3 163 4 718 -820 \N 2012-08-02 17:55:14.231 \N \N 2 3 163 4 719 -820 \N 2012-08-02 17:55:14.432 \N \N 2 3 163 4 720 -820 \N 2012-08-02 17:55:14.632 \N \N 2 3 163 4 721 -820 \N 2012-08-02 17:55:18.306 \N \N 2 3 163 4 722 -820 \N 2012-08-02 17:55:18.319 \N \N 2 3 163 4 723 -820 \N 2012-08-02 17:55:18.474 \N \N 2 3 163 4 724 -820 \N 2012-08-02 17:55:18.594 \N \N 2 3 163 4 725 -820 \N 2012-08-02 17:55:18.718 \N \N 2 3 163 4 726 -820 \N 2012-08-02 17:55:18.837 \N \N 2 3 163 4 727 -820 \N 2012-08-02 17:55:18.959 \N \N 2 3 163 4 728 -820 \N 2012-08-02 17:55:19.081 \N \N 2 3 163 4 729 -820 \N 2012-08-02 17:55:19.208 \N \N 2 3 163 4 730 -820 \N 2012-08-02 17:55:19.326 \N \N 2 3 163 4 731 -820 \N 2012-08-02 17:55:19.545 \N \N 2 3 163 4 732 -820 \N 2012-08-02 17:55:19.74 \N \N 2 3 163 4 733 -820 \N 2012-08-02 17:55:19.97 \N \N 2 3 163 4 734 -820 \N 2012-08-02 17:55:20.177 \N \N 2 3 163 4 735 -820 \N 2012-08-02 17:55:20.383 \N \N 2 3 163 4 736 -820 \N 2012-08-02 17:55:20.599 \N \N 2 3 163 4 737 -820 \N 2012-08-02 17:55:20.793 \N \N 2 3 163 4 738 -820 \N 2012-08-02 17:55:29.195 \N \N 2 3 163 4 739 -820 \N 2012-08-02 17:55:33.248 \N \N 2 3 163 4 740 -820 \N 2012-08-02 17:55:33.254 \N \N 2 3 163 4 741 -820 \N 2012-08-02 17:55:33.401 \N \N 2 3 163 4 742 -820 \N 2012-08-02 17:55:33.525 \N \N 2 3 163 4 743 -820 \N 2012-08-02 17:55:33.633 \N \N 2 3 163 4 744 -820 \N 2012-08-02 17:55:33.741 \N \N 2 3 163 4 745 -820 \N 2012-08-02 17:55:33.85 \N \N 2 3 163 4 746 -820 \N 2012-08-02 17:55:33.964 \N \N 2 3 163 4 747 -820 \N 2012-08-02 17:55:34.107 \N \N 2 3 163 4 748 -820 \N 2012-08-02 17:55:34.256 \N \N 2 3 163 4 749 -820 \N 2012-08-02 17:55:34.444 \N \N 2 3 163 4 750 -820 \N 2012-08-02 17:55:34.635 \N \N 2 3 163 4 751 -820 \N 2012-08-02 17:55:34.711 \N \N 2 3 163 4 752 -820 \N 2012-08-02 17:55:34.821 \N \N 2 3 163 4 753 -820 \N 2012-08-02 17:55:40.34 \N \N 2 3 163 4 754 -820 \N 2012-08-02 17:55:40.346 \N \N 2 3 163 4 755 -820 \N 2012-08-02 17:55:40.491 \N \N 2 3 163 4 756 -820 \N 2012-08-02 17:55:40.611 \N \N 2 3 163 4 757 -820 \N 2012-08-02 17:55:40.719 \N \N 2 3 163 4 758 -820 \N 2012-08-02 17:55:40.826 \N \N 2 3 163 4 759 -820 \N 2012-08-02 17:55:40.94 \N \N 2 3 163 4 760 -820 \N 2012-08-02 17:55:41.048 \N \N 2 3 163 4 761 -820 \N 2012-08-02 17:55:41.158 \N \N 2 3 163 4 762 -820 \N 2012-08-02 17:55:41.274 \N \N 2 3 163 4 763 -820 \N 2012-08-02 17:55:41.385 \N \N 2 3 163 4 764 -820 \N 2012-08-02 17:55:41.498 \N \N 2 3 163 4 765 -820 \N 2012-08-02 17:55:41.629 \N \N 2 3 163 4 766 -820 \N 2012-08-02 17:55:41.776 \N \N 2 3 163 4 767 -820 \N 2012-08-02 17:55:41.934 \N \N 2 3 163 4 768 -820 \N 2012-08-02 17:55:42.098 \N \N 2 3 163 4 769 -820 \N 2012-08-02 17:55:42.25 \N \N 2 3 163 4 770 -820 \N 2012-08-02 17:55:42.445 \N \N 2 3 163 4 771 -820 \N 2012-08-02 17:55:42.64 \N \N 2 3 163 4 772 -820 \N 2012-08-02 17:55:42.845 \N \N 2 3 163 4 773 -820 \N 2012-08-02 17:55:42.95 \N \N 2 3 163 4 774 -820 \N 2012-08-02 17:55:49.51 \N \N 0 0 2 2 775 -820 \N 2012-08-02 17:57:09.556 \N \N 0 0 2 9 776 -820 \N 2012-08-02 17:57:09.623 \N \N 1 2 164 4 777 -820 \N 2012-08-02 17:57:12.684 \N \N 0 0 2 9 778 -820 \N 2012-08-02 17:57:12.723 \N \N 1 2 165 4 779 -820 \N 2012-08-02 17:57:12.752 \N \N 0 0 2 9 780 -820 \N 2012-08-02 17:57:12.792 \N \N 1 2 166 4 781 -820 \N 2012-08-02 17:57:17.291 \N \N 0 0 2 9 782 -820 \N 2012-08-02 17:57:17.347 \N \N 1 2 167 4 783 -820 \N 2012-08-02 17:57:17.373 \N \N 0 0 2 9 784 -820 \N 2012-08-02 17:57:17.403 \N \N 3 3 168 4 785 -820 \N 2012-08-02 17:57:32.12 \N \N 3 3 168 4 786 -820 \N 2012-08-02 17:57:32.12 \N \N 3 3 168 4 787 -820 \N 2012-08-02 17:57:32.121 \N \N 3 3 168 4 788 -820 \N 2012-08-02 17:57:32.128 \N \N 3 3 168 4 789 -820 \N 2012-08-02 17:57:32.129 \N \N 3 3 168 4 790 -820 \N 2012-08-02 17:57:32.141 \N \N 3 3 168 4 791 -820 \N 2012-08-02 17:57:32.149 \N \N 3 3 168 4 792 -820 \N 2012-08-02 17:57:32.149 \N \N 3 3 168 4 793 -820 \N 2012-08-02 17:57:32.149 \N \N 3 3 168 4 796 -820 \N 2012-08-02 17:57:32.183 \N \N 3 3 168 4 799 -820 \N 2012-08-02 17:57:32.209 \N \N 3 3 168 4 794 -820 \N 2012-08-02 17:57:32.149 \N \N 3 3 168 4 795 -820 \N 2012-08-02 17:57:32.175 \N \N 3 3 168 4 797 -820 \N 2012-08-02 17:57:32.192 \N \N 3 3 168 4 800 -820 \N 2012-08-02 17:57:32.372 \N \N 3 3 168 4 802 -820 \N 2012-08-02 17:57:32.383 \N \N 3 3 168 4 804 -820 \N 2012-08-02 17:57:32.409 \N \N 3 3 168 4 806 -820 \N 2012-08-02 17:57:36.116 \N \N 3 3 168 4 807 -820 \N 2012-08-02 17:57:36.573 \N \N 3 3 168 4 808 -820 \N 2012-08-02 17:57:37.517 \N \N 3 3 168 4 809 -820 \N 2012-08-02 17:57:37.566 \N \N 3 3 168 4 810 -820 \N 2012-08-02 17:57:37.677 \N \N 3 3 168 4 811 -820 \N 2012-08-02 17:57:51.196 \N \N 3 3 168 4 812 -820 \N 2012-08-02 17:57:51.244 \N \N 3 3 168 4 813 -820 \N 2012-08-02 18:01:16.818 \N \N 0 0 2 9 814 -820 \N 2012-08-02 18:01:16.906 \N \N 2 3 169 4 815 -820 \N 2012-08-02 18:01:17.02 \N \N 2 3 169 4 816 -820 \N 2012-08-02 18:01:21.465 \N \N 2 3 169 4 817 -820 \N 2012-08-02 18:01:23.005 \N \N 2 3 169 4 819 -820 \N 2012-08-02 18:01:23.484 \N \N 2 3 169 4 820 -820 \N 2012-08-02 18:01:23.51 \N \N 2 3 169 4 821 -820 \N 2012-08-02 18:01:23.534 \N \N 2 3 169 4 822 -820 \N 2012-08-02 18:01:23.561 \N \N 2 3 169 4 823 -820 \N 2012-08-02 18:01:23.585 \N \N 2 3 169 4 824 -820 \N 2012-08-02 18:02:07.896 \N \N 2 3 169 4 825 -820 \N 2012-08-02 18:02:08.025 \N \N 2 3 169 4 826 -820 \N 2012-08-02 18:02:44.016 \N \N 2 3 169 4 827 -820 \N 2012-08-02 18:02:44.062 \N \N 2 3 169 4 828 -820 \N 2012-08-02 18:02:44.278 \N \N 2 3 169 4 829 -820 \N 2012-08-02 18:02:47.281 \N \N 2 3 169 4 830 -820 \N 2012-08-02 18:02:48.983 \N \N 2 3 169 4 798 -820 \N 2012-08-02 17:57:32.201 \N \N 3 3 168 4 801 -820 \N 2012-08-02 17:57:32.372 \N \N 3 3 168 4 803 -820 \N 2012-08-02 17:57:32.391 \N \N 3 3 168 4 805 -820 \N 2012-08-02 17:57:32.424 \N \N 3 3 168 4 818 -820 \N 2012-08-02 18:01:23.42 \N \N 2 3 169 4 831 -820 \N 2012-08-06 16:43:51.77 \N \N 0 0 2 9 832 -820 \N 2012-08-06 16:43:51.86 \N \N 1 2 170 4 833 -820 \N 2012-08-06 16:43:51.887 \N \N 0 0 2 9 834 -820 \N 2012-08-06 16:43:51.925 \N \N 2 3 171 4 835 -820 \N 2012-08-06 16:43:57.638 \N \N 2 3 171 4 836 -820 \N 2012-08-06 16:43:57.677 \N \N 2 3 171 4 837 -820 \N 2012-08-06 16:43:57.679 \N \N 2 3 171 4 838 -820 \N 2012-08-06 16:43:57.682 \N \N 2 3 171 4 839 -820 \N 2012-08-06 16:43:57.689 \N \N 2 3 171 4 840 -820 \N 2012-08-06 16:43:58.335 \N \N 2 3 171 4 841 -820 \N 2012-08-06 16:43:58.346 \N \N 2 3 171 4 842 -820 \N 2012-08-06 16:44:00.057 \N \N 2 3 171 4 843 -820 \N 2012-08-06 16:44:01.28 \N \N 2 3 171 4 844 -820 \N 2012-08-06 16:44:06.419 \N \N 2 3 171 4 845 -820 \N 2012-08-06 16:44:08.745 \N \N 2 3 171 4 846 -820 \N 2012-08-06 16:44:11.531 \N \N 2 3 171 4 847 -820 \N 2012-08-06 16:44:16.222 \N \N 2 3 171 4 848 -820 \N 2012-08-06 16:44:17.629 \N \N 2 3 171 4 849 -820 \N 2012-08-06 16:44:18.826 \N \N 2 3 171 4 850 -820 \N 2012-08-06 16:44:40.129 \N \N 2 3 171 4 851 -820 \N 2012-08-06 16:44:44.19 \N \N 2 3 171 4 852 -820 \N 2012-08-06 16:44:44.688 \N \N 2 3 171 4 853 -820 \N 2012-08-06 16:44:47.88 \N \N 2 3 171 4 854 -820 \N 2012-08-06 16:45:01.876 \N \N 2 3 171 4 855 -820 \N 2012-08-06 16:45:03.024 \N \N 2 3 171 4 856 -820 \N 2012-08-06 16:45:11.736 \N \N 2 3 171 4 857 -820 \N 2012-08-06 16:45:20.304 \N \N 2 3 171 4 858 -820 \N 2012-08-06 16:45:23.259 \N \N 2 3 171 4 859 -820 \N 2012-08-06 16:45:23.363 \N \N 2 3 171 4 860 -820 \N 2012-08-06 16:45:23.462 \N \N 2 3 171 4 861 -820 \N 2012-08-06 16:45:23.562 \N \N 2 3 171 4 862 -820 \N 2012-08-06 16:45:23.683 \N \N 2 3 171 4 863 -820 \N 2012-08-06 16:45:43.573 \N \N 2 3 171 4 864 -820 \N 2012-08-06 16:45:51.298 \N \N 2 3 171 4 865 -820 \N 2012-08-06 16:45:53.933 \N \N 2 3 171 4 866 -820 \N 2012-08-06 16:45:55.551 \N \N 2 3 171 4 867 -820 \N 2012-08-06 16:46:04.34 \N \N 2 3 171 4 868 -820 \N 2012-08-06 16:46:07.429 \N \N 2 3 171 4 869 -820 \N 2012-08-06 16:46:08.722 \N \N 2 3 171 4 870 -820 \N 2012-08-06 16:46:19.721 \N \N 2 3 171 4 871 -820 \N 2012-08-06 16:46:21.563 \N \N 2 3 171 4 872 -820 \N 2012-08-06 16:46:28.244 \N \N 2 3 171 4 873 -820 \N 2012-08-06 16:46:29.775 \N \N 2 3 171 4 874 -820 \N 2012-08-06 16:46:35.598 \N \N 2 3 171 4 875 -820 \N 2012-08-06 16:46:37.003 \N \N 2 3 171 4 876 -820 \N 2012-08-06 16:46:37.739 \N \N 2 3 171 4 877 -820 \N 2012-08-06 16:47:02.969 \N \N 2 3 171 4 878 -820 \N 2012-08-06 16:47:07.42 \N \N 2 3 171 4 879 -820 \N 2012-08-06 16:47:13.038 \N \N 2 3 171 4 880 -820 \N 2012-08-06 16:47:14.991 \N \N 2 3 171 4 881 -820 \N 2012-08-06 16:47:17.9 \N \N 2 3 171 4 882 -820 \N 2012-08-06 16:47:27.094 \N \N 2 3 171 4 883 -820 \N 2012-08-06 16:47:29.477 \N \N 2 3 171 4 884 -820 \N 2012-08-06 16:47:32.276 \N \N 2 3 171 4 885 -820 \N 2012-08-06 16:47:35.216 \N \N 2 3 171 4 886 -820 \N 2012-08-06 16:47:37.262 \N \N 2 3 171 4 887 -820 \N 2012-08-06 16:47:37.271 \N \N 2 3 171 4 888 -820 \N 2012-08-06 16:47:37.274 \N \N 2 3 171 4 889 -820 \N 2012-08-06 16:47:37.921 \N \N 2 3 171 4 890 -820 \N 2012-08-06 16:47:39.09 \N \N 2 3 171 4 891 -820 \N 2012-08-06 16:47:39.954 \N \N 2 3 171 4 892 -820 \N 2012-08-06 16:47:41.142 \N \N 2 3 171 4 893 -820 \N 2012-08-10 09:03:38.559 \N \N 0 0 2 9 894 -820 \N 2012-08-10 09:03:38.625 \N \N 1 2 172 4 895 -820 \N 2012-08-10 09:03:38.655 \N \N 0 0 2 9 896 -820 \N 2012-08-10 09:03:38.693 \N \N 2 3 173 4 897 -820 \N 2012-08-10 09:03:49.519 \N \N 0 0 2 9 898 -820 \N 2012-08-10 09:03:49.57 \N \N 1 2 174 4 899 -820 \N 2012-08-10 09:03:49.601 \N \N 0 0 2 9 900 -820 \N 2012-08-10 09:03:49.641 \N \N 2 3 175 4 901 -820 \N 2012-08-10 09:04:11.763 \N \N 0 0 2 9 902 -820 \N 2012-08-10 09:04:11.819 \N \N 1 2 176 4 903 -820 \N 2012-08-10 09:04:11.854 \N \N 0 0 2 9 904 -820 \N 2012-08-10 09:04:44.681 \N \N 0 0 2 9 905 -820 \N 2012-08-10 09:04:44.73 \N \N 1 2 178 4 906 -820 \N 2012-08-10 09:04:44.762 \N \N 0 0 2 9 907 -820 \N 2012-08-10 09:04:44.801 \N \N 3 3 179 4 908 -820 \N 2012-08-10 09:59:02.704 \N \N 0 0 2 9 909 -820 \N 2012-08-10 09:59:02.768 \N \N 1 2 180 4 910 -820 \N 2012-08-10 09:59:02.806 \N \N 0 0 2 9 911 -820 \N 2012-08-10 09:59:02.846 \N \N 2 3 181 4 912 -820 \N 2012-08-10 09:59:24.961 \N \N 2 3 181 4 913 -820 \N 2012-08-10 09:59:24.968 \N \N 2 3 181 4 914 -820 \N 2012-08-10 09:59:24.97 \N \N 2 3 181 4 915 -820 \N 2012-08-10 09:59:24.974 \N \N 2 3 181 4 916 -820 \N 2012-08-10 09:59:24.979 \N \N 2 3 181 4 989 -820 \N 2012-08-10 10:01:55.876 \N \N 2 3 181 4 992 -820 \N 2012-08-10 10:01:55.885 \N \N 2 3 181 4 917 -820 \N 2012-08-10 10:00:22.303 \N \N 2 3 181 4 918 -820 \N 2012-08-10 10:00:22.934 \N \N 2 3 181 4 919 -820 \N 2012-08-10 10:00:23.213 \N \N 2 3 181 4 920 -820 \N 2012-08-10 10:00:23.654 \N \N 2 3 181 4 921 -820 \N 2012-08-10 10:00:23.711 \N \N 2 3 181 4 922 -820 \N 2012-08-10 10:00:23.822 \N \N 2 3 181 4 923 -820 \N 2012-08-10 10:00:28.446 \N \N 2 3 181 4 924 -820 \N 2012-08-10 10:00:29.299 \N \N 2 3 181 4 925 -820 \N 2012-08-10 10:00:30.62 \N \N 2 3 181 4 926 -820 \N 2012-08-10 10:00:38.623 \N \N 2 3 181 4 927 -820 \N 2012-08-10 10:00:42.039 \N \N 2 3 181 4 928 -820 \N 2012-08-10 10:00:42.515 \N \N 2 3 181 4 929 -820 \N 2012-08-10 10:00:42.701 \N \N 2 3 181 4 930 -820 \N 2012-08-10 10:00:42.888 \N \N 2 3 181 4 931 -820 \N 2012-08-10 10:00:43.075 \N \N 2 3 181 4 932 -820 \N 2012-08-10 10:00:43.26 \N \N 2 3 181 4 933 -820 \N 2012-08-10 10:00:43.432 \N \N 2 3 181 4 934 -820 \N 2012-08-10 10:00:43.608 \N \N 2 3 181 4 935 -820 \N 2012-08-10 10:00:43.801 \N \N 2 3 181 4 936 -820 \N 2012-08-10 10:00:43.981 \N \N 2 3 181 4 937 -820 \N 2012-08-10 10:00:44.163 \N \N 2 3 181 4 938 -820 \N 2012-08-10 10:00:44.349 \N \N 2 3 181 4 939 -820 \N 2012-08-10 10:00:44.531 \N \N 2 3 181 4 940 -820 \N 2012-08-10 10:00:44.718 \N \N 2 3 181 4 941 -820 \N 2012-08-10 10:00:44.905 \N \N 2 3 181 4 942 -820 \N 2012-08-10 10:00:45.096 \N \N 2 3 181 4 943 -820 \N 2012-08-10 10:00:45.284 \N \N 2 3 181 4 944 -820 \N 2012-08-10 10:00:45.468 \N \N 2 3 181 4 945 -820 \N 2012-08-10 10:00:47.812 \N \N 2 3 181 4 946 -820 \N 2012-08-10 10:00:48.017 \N \N 2 3 181 4 947 -820 \N 2012-08-10 10:00:48.207 \N \N 2 3 181 4 948 -820 \N 2012-08-10 10:00:48.379 \N \N 2 3 181 4 949 -820 \N 2012-08-10 10:00:48.56 \N \N 2 3 181 4 950 -820 \N 2012-08-10 10:00:48.745 \N \N 2 3 181 4 951 -820 \N 2012-08-10 10:00:48.93 \N \N 2 3 181 4 952 -820 \N 2012-08-10 10:00:49.115 \N \N 2 3 181 4 953 -820 \N 2012-08-10 10:00:49.301 \N \N 2 3 181 4 954 -820 \N 2012-08-10 10:00:49.484 \N \N 2 3 181 4 955 -820 \N 2012-08-10 10:00:49.668 \N \N 2 3 181 4 956 -820 \N 2012-08-10 10:00:49.856 \N \N 2 3 181 4 957 -820 \N 2012-08-10 10:00:50.039 \N \N 2 3 181 4 958 -820 \N 2012-08-10 10:00:50.231 \N \N 2 3 181 4 959 -820 \N 2012-08-10 10:00:50.414 \N \N 2 3 181 4 960 -820 \N 2012-08-10 10:00:50.636 \N \N 2 3 181 4 961 -820 \N 2012-08-10 10:00:50.821 \N \N 2 3 181 4 962 -820 \N 2012-08-10 10:00:51.001 \N \N 2 3 181 4 963 -820 \N 2012-08-10 10:00:51.191 \N \N 2 3 181 4 964 -820 \N 2012-08-10 10:00:51.372 \N \N 2 3 181 4 965 -820 \N 2012-08-10 10:00:51.561 \N \N 2 3 181 4 966 -820 \N 2012-08-10 10:00:51.746 \N \N 2 3 181 4 967 -820 \N 2012-08-10 10:00:51.931 \N \N 2 3 181 4 968 -820 \N 2012-08-10 10:00:52.117 \N \N 2 3 181 4 969 -820 \N 2012-08-10 10:00:52.297 \N \N 2 3 181 4 970 -820 \N 2012-08-10 10:00:52.481 \N \N 2 3 181 4 971 -820 \N 2012-08-10 10:00:52.67 \N \N 2 3 181 4 972 -820 \N 2012-08-10 10:00:52.853 \N \N 2 3 181 4 973 -820 \N 2012-08-10 10:00:53.064 \N \N 2 3 181 4 974 -820 \N 2012-08-10 10:00:53.271 \N \N 2 3 181 4 975 -820 \N 2012-08-10 10:00:53.456 \N \N 2 3 181 4 976 -820 \N 2012-08-10 10:00:53.689 \N \N 2 3 181 4 977 -820 \N 2012-08-10 10:01:20.688 \N \N 0 0 2 2 978 -820 \N 2012-08-10 10:01:27.244 \N \N 2 3 181 4 979 -820 \N 2012-08-10 10:01:27.41 \N \N 0 0 2 9 980 -820 \N 2012-08-10 10:01:27.436 \N \N 0 0 2 9 981 -820 \N 2012-08-10 10:01:27.452 \N \N 0 0 2 9 982 -820 \N 2012-08-10 10:01:27.577 \N \N 0 3 4 4 983 -820 \N 2012-08-10 10:01:28.032 \N \N 2 3 182 4 984 -820 \N 2012-08-10 10:01:28.065 \N \N 2 3 182 4 985 -820 \N 2012-08-10 10:01:28.102 \N \N 2 3 182 4 986 -820 \N 2012-08-10 10:01:28.123 \N \N 2 3 182 4 987 -820 \N 2012-08-10 10:01:28.156 \N \N 2 3 181 4 988 -820 \N 2012-08-10 10:01:28.176 \N \N 2 3 181 4 990 -820 \N 2012-08-10 10:01:55.879 \N \N 2 3 181 4 994 -820 \N 2012-08-10 10:01:57.858 \N \N 2 3 181 4 991 -820 \N 2012-08-10 10:01:55.884 \N \N 2 3 181 4 993 -820 \N 2012-08-10 10:01:55.89 \N \N 2 3 181 4 995 -820 \N 2012-08-10 10:01:57.858 \N \N 2 3 181 4 996 -820 \N 2012-08-16 12:56:35.875 \N \N 0 0 2 9 997 -820 \N 2012-08-16 12:56:35.942 \N \N 1 2 183 4 998 -820 \N 2012-08-16 12:56:35.969 \N \N 0 0 2 9 999 -820 \N 2012-08-16 12:56:36.01 \N \N 4 3 184 4 1000 -820 \N 2012-08-19 04:33:44.742 \N \N 0 0 2 9 1001 -820 \N 2012-08-20 13:21:06.226 \N \N 0 0 2 9 1002 -820 \N 2012-08-20 13:21:06.316 \N \N 1 2 186 4 1003 -820 \N 2012-08-20 13:21:06.352 \N \N 0 0 2 9 1004 -820 \N 2012-08-20 13:21:06.39 \N \N 0 0 187 4 1005 -820 \N 2012-08-20 13:21:46.581 \N \N 2 3 187 4 1006 -820 \N 2012-08-20 13:21:46.581 \N \N 2 3 187 4 1008 -820 \N 2012-08-20 13:21:46.581 \N \N 2 3 187 4 1007 -820 \N 2012-08-20 13:21:46.581 \N \N 2 3 187 4 1009 -820 \N 2012-08-20 13:21:46.602 \N \N 2 3 187 4 1010 -820 \N 2012-08-20 13:21:51.452 \N \N 2 3 187 4 1011 -820 \N 2012-08-20 13:21:56.786 \N \N 2 3 187 4 1012 -820 \N 2012-08-20 13:22:11.282 \N \N 2 3 187 4 1013 -820 \N 2012-08-20 13:22:13.396 \N \N 2 3 187 4 1014 -820 \N 2012-08-20 13:22:13.679 \N \N 2 3 187 4 1015 -820 \N 2012-08-20 13:22:14.875 \N \N 2 3 187 4 1016 -820 \N 2012-08-20 13:22:14.936 \N \N 0 0 187 4 1017 -820 \N 2012-08-20 13:22:15.105 \N \N 2 3 187 4 1018 -820 \N 2012-08-20 13:22:37.613 \N \N 0 0 2 2 1019 -820 \N 2012-08-20 15:12:28.011 \N \N 0 0 187 4 1020 -820 \N 2012-08-20 15:15:12.684 \N \N 2 3 187 4 1021 -820 \N 2012-08-20 15:15:12.684 \N \N 2 3 187 4 1022 -820 \N 2012-08-20 15:15:12.73 \N \N 2 3 187 4 1023 -820 \N 2012-08-20 15:15:12.733 \N \N 2 3 187 4 1024 -820 \N 2012-08-20 15:15:12.739 \N \N 2 3 187 4 1026 -820 \N 2012-08-20 15:15:14.626 \N \N 2 3 187 4 1025 -820 \N 2012-08-20 15:15:14.627 \N \N 2 3 187 4 1027 -820 \N 2012-08-20 15:15:15.831 \N \N 2 3 187 4 1028 -820 \N 2012-08-20 15:15:16.63 \N \N 2 3 187 4 1029 -820 \N 2012-08-20 15:15:17.738 \N \N 2 3 187 4 1030 -820 \N 2012-08-20 15:15:18.877 \N \N 2 3 187 4 1031 -820 \N 2012-08-22 14:28:55.842 \N \N 0 0 2 9 1032 -820 \N 2012-08-22 14:28:55.936 \N \N 1 2 188 4 1033 -820 \N 2012-08-22 14:28:55.974 \N \N 0 0 2 9 1034 -820 \N 2012-08-22 14:28:56.003 \N \N 5 3 189 4 1035 -820 \N 2012-08-22 16:08:49.054 \N \N 0 0 2 9 1036 -820 \N 2012-08-22 16:08:49.131 \N \N 2 3 190 4 1037 -820 \N 2012-08-22 16:08:49.197 \N \N 2 3 190 4 1038 -820 \N 2012-08-22 16:10:26.122 \N \N 0 0 2 9 1039 -820 \N 2012-08-22 16:10:26.173 \N \N 1 2 191 4 1040 -820 \N 2012-08-22 16:10:26.206 \N \N 0 0 2 9 1041 -820 \N 2012-08-22 16:10:26.246 \N \N 2 3 192 4 1042 -820 \N 2012-08-22 16:10:32.994 \N \N 0 0 2 9 1043 -820 \N 2012-08-22 16:10:33.051 \N \N 2 3 193 4 1044 -820 \N 2012-08-22 16:10:33.123 \N \N 2 3 193 4 1045 -820 \N 2012-08-22 16:12:45.904 \N \N 2 3 193 4 1046 -820 \N 2012-08-22 16:13:11.523 \N \N 2 3 193 4 1047 -820 \N 2012-08-22 16:13:16.953 \N \N 2 3 193 4 1048 -820 \N 2012-08-22 16:13:21.102 \N \N 2 3 193 4 1049 -820 \N 2012-08-22 16:13:28.834 \N \N 2 3 193 4 1050 -820 \N 2012-08-22 16:13:41.351 \N \N 2 3 193 4 1051 -820 \N 2012-08-22 16:13:41.384 \N \N 2 3 193 4 1052 -820 \N 2012-08-22 16:13:41.401 \N \N 2 3 193 4 1053 -820 \N 2012-08-22 16:13:41.537 \N \N 2 3 193 4 1054 -820 \N 2012-08-22 16:13:41.555 \N \N 2 3 193 4 1055 -820 \N 2012-08-22 16:13:42.862 \N \N 2 3 193 4 1056 -820 \N 2012-08-22 16:14:02.255 \N \N 2 3 193 4 1057 -820 \N 2012-08-22 16:14:02.829 \N \N 2 3 193 4 1058 -820 \N 2012-08-22 16:14:02.964 \N \N 2 3 193 4 1059 -820 \N 2012-08-22 16:14:03.551 \N \N 2 3 193 4 1060 -820 \N 2012-08-22 16:14:03.64 \N \N 2 3 193 4 1061 -820 \N 2012-08-22 16:14:03.817 \N \N 2 3 193 4 1062 -820 \N 2012-08-22 16:14:03.84 \N \N 2 3 193 4 1063 -820 \N 2012-08-22 16:14:03.909 \N \N 2 3 193 4 1064 -820 \N 2012-08-22 16:14:03.923 \N \N 2 3 193 4 1065 -820 \N 2012-08-22 16:14:03.973 \N \N 2 3 193 4 1066 -820 \N 2012-08-22 16:14:04 \N \N 2 3 193 4 1067 -820 \N 2012-08-22 16:14:04.012 \N \N 2 3 193 4 1068 -820 \N 2012-08-22 16:14:04.129 \N \N 2 3 193 4 1069 -820 \N 2012-08-22 16:14:04.147 \N \N 2 3 193 4 1070 -820 \N 2012-08-22 16:14:04.162 \N \N 2 3 193 4 1071 -820 \N 2012-08-22 16:14:04.193 \N \N 2 3 193 4 1072 -820 \N 2012-08-22 16:14:04.205 \N \N 2 3 193 4 1073 -820 \N 2012-08-22 16:14:04.22 \N \N 2 3 193 4 1074 -820 \N 2012-08-22 16:14:10.676 \N \N 2 3 193 4 1075 -820 \N 2012-08-22 16:14:14.593 \N \N 2 3 192 4 1076 -820 \N 2012-08-22 16:14:14.596 \N \N 2 3 192 4 1077 -820 \N 2012-08-22 16:14:14.598 \N \N 2 3 192 4 1078 -820 \N 2012-08-22 16:14:14.602 \N \N 2 3 192 4 1079 -820 \N 2012-08-22 16:14:14.614 \N \N 2 3 192 4 1080 -820 \N 2012-08-22 16:14:14.741 \N \N 2 3 192 4 1081 -820 \N 2012-08-22 16:14:16.269 \N \N 2 3 192 4 1082 -820 \N 2012-08-22 16:14:16.49 \N \N 2 3 192 4 1083 -820 \N 2012-08-22 16:14:16.94 \N \N 2 3 192 4 1084 -820 \N 2012-08-22 16:14:16.99 \N \N 2 3 192 4 1085 -820 \N 2012-08-22 16:14:17.1 \N \N 2 3 192 4 1086 -820 \N 2012-08-22 16:14:23.477 \N \N 2 3 192 4 1087 -820 \N 2012-08-22 16:14:23.985 \N \N 2 3 192 4 1088 -820 \N 2012-08-22 16:14:24.152 \N \N 2 3 192 4 1089 -820 \N 2012-08-22 16:14:24.318 \N \N 2 3 192 4 1090 -820 \N 2012-08-22 16:14:24.485 \N \N 2 3 192 4 1091 -820 \N 2012-08-22 16:14:24.652 \N \N 2 3 192 4 1092 -820 \N 2012-08-22 16:14:24.82 \N \N 2 3 192 4 1093 -820 \N 2012-08-22 16:14:24.985 \N \N 2 3 192 4 1094 -820 \N 2012-08-22 16:14:25.148 \N \N 2 3 192 4 1095 -820 \N 2012-08-22 16:14:25.298 \N \N 2 3 192 4 1096 -820 \N 2012-08-22 16:14:25.454 \N \N 2 3 192 4 1097 -820 \N 2012-08-22 16:14:25.604 \N \N 2 3 192 4 1098 -820 \N 2012-08-22 16:14:25.768 \N \N 2 3 192 4 1099 -820 \N 2012-08-22 16:14:25.937 \N \N 2 3 192 4 1100 -820 \N 2012-08-22 16:14:26.09 \N \N 2 3 192 4 1101 -820 \N 2012-08-22 16:14:26.254 \N \N 2 3 192 4 1102 -820 \N 2012-08-22 16:14:26.424 \N \N 2 3 192 4 1103 -820 \N 2012-08-22 16:14:26.602 \N \N 2 3 192 4 1104 -820 \N 2012-08-22 16:14:31.159 \N \N 2 3 192 4 1105 -820 \N 2012-08-22 16:14:31.787 \N \N 2 3 192 4 1106 -820 \N 2012-08-22 16:14:33.326 \N \N 2 3 192 4 1107 -820 \N 2012-08-22 16:14:33.696 \N \N 2 3 192 4 1108 -820 \N 2012-08-22 16:14:35.843 \N \N 2 3 192 4 1109 -820 \N 2012-08-22 16:14:36.329 \N \N 2 3 192 4 1110 -820 \N 2012-08-22 16:14:36.641 \N \N 2 3 192 4 1111 -820 \N 2012-08-22 16:14:36.834 \N \N 2 3 192 4 1112 -820 \N 2012-08-22 16:15:38.255 \N \N 2 3 193 4 1113 -820 \N 2012-08-22 16:15:41.974 \N \N 2 3 193 4 1114 -820 \N 2012-08-22 16:15:42.004 \N \N 2 3 193 4 1115 -820 \N 2012-08-22 16:15:42.02 \N \N 2 3 193 4 1116 -820 \N 2012-08-22 16:15:42.134 \N \N 2 3 193 4 1117 -820 \N 2012-08-22 16:15:42.145 \N \N 2 3 193 4 1118 -820 \N 2012-08-22 16:15:42.984 \N \N 2 3 193 4 1119 -820 \N 2012-08-22 16:15:59.801 \N \N 2 3 193 4 1120 -820 \N 2012-08-22 16:16:11.818 \N \N 2 3 193 4 1121 -820 \N 2012-08-22 16:16:12.911 \N \N 2 3 193 4 1122 -820 \N 2012-08-22 16:16:13.021 \N \N 2 3 193 4 1123 -820 \N 2012-08-22 16:16:13.564 \N \N 2 3 193 4 1124 -820 \N 2012-08-22 16:16:13.639 \N \N 2 3 193 4 1125 -820 \N 2012-08-22 16:16:13.807 \N \N 2 3 193 4 1126 -820 \N 2012-08-22 16:16:13.831 \N \N 2 3 193 4 1127 -820 \N 2012-08-22 16:16:13.89 \N \N 2 3 193 4 1128 -820 \N 2012-08-22 16:16:13.906 \N \N 2 3 193 4 1129 -820 \N 2012-08-22 16:16:13.937 \N \N 2 3 193 4 1130 -820 \N 2012-08-22 16:16:13.954 \N \N 2 3 193 4 1131 -820 \N 2012-08-22 16:16:13.97 \N \N 2 3 193 4 1132 -820 \N 2012-08-22 16:16:14.005 \N \N 2 3 193 4 1133 -820 \N 2012-08-22 16:16:14.021 \N \N 2 3 193 4 1134 -820 \N 2012-08-22 16:16:14.036 \N \N 2 3 193 4 1135 -820 \N 2012-08-22 16:16:14.069 \N \N 2 3 193 4 1136 -820 \N 2012-08-22 16:16:14.087 \N \N 2 3 193 4 1137 -820 \N 2012-08-22 16:16:14.102 \N \N 2 3 193 4 1138 -820 \N 2012-08-22 16:16:14.165 \N \N 2 3 193 4 1139 -820 \N 2012-08-22 16:16:14.18 \N \N 2 3 193 4 1140 -820 \N 2012-08-22 16:16:14.197 \N \N 2 3 193 4 1141 -820 \N 2012-08-22 16:16:14.31 \N \N 2 3 193 4 1142 -820 \N 2012-08-22 16:16:14.331 \N \N 2 3 193 4 1143 -820 \N 2012-08-22 16:16:15.843 \N \N 2 3 193 4 1144 -820 \N 2012-08-22 16:16:33.085 \N \N 2 3 193 4 1145 -820 \N 2012-08-22 16:16:34.367 \N \N 2 3 193 4 1146 -820 \N 2012-08-22 16:17:03.395 \N \N 2 3 193 4 1147 -820 \N 2012-08-22 16:17:04.397 \N \N 2 3 193 4 1148 -820 \N 2012-08-22 16:17:04.525 \N \N 2 3 193 4 1149 -820 \N 2012-08-22 16:17:05.283 \N \N 2 3 193 4 1150 -820 \N 2012-08-22 16:17:05.394 \N \N 2 3 193 4 1151 -820 \N 2012-08-22 16:17:05.694 \N \N 2 3 193 4 1152 -820 \N 2012-08-22 16:17:05.718 \N \N 2 3 193 4 1153 -820 \N 2012-08-22 16:17:05.776 \N \N 2 3 193 4 1154 -820 \N 2012-08-22 16:17:05.793 \N \N 2 3 193 4 1155 -820 \N 2012-08-22 16:17:05.824 \N \N 2 3 193 4 1156 -820 \N 2012-08-22 16:17:05.841 \N \N 2 3 193 4 1157 -820 \N 2012-08-22 16:17:05.856 \N \N 2 3 193 4 1158 -820 \N 2012-08-22 16:17:05.888 \N \N 2 3 193 4 1159 -820 \N 2012-08-22 16:17:05.9 \N \N 2 3 193 4 1160 -820 \N 2012-08-22 16:17:05.915 \N \N 2 3 193 4 1161 -820 \N 2012-08-22 16:17:05.946 \N \N 2 3 193 4 1162 -820 \N 2012-08-22 16:17:05.958 \N \N 2 3 193 4 1163 -820 \N 2012-08-22 16:17:05.973 \N \N 2 3 193 4 1164 -820 \N 2012-08-22 16:17:15.37 \N \N 2 3 192 4 1176 -820 \N 2012-08-22 16:17:16.199 \N \N 2 3 192 4 1179 -820 \N 2012-08-22 16:17:16.664 \N \N 2 3 192 4 1180 -820 \N 2012-08-22 16:17:16.718 \N \N 2 3 192 4 1181 -820 \N 2012-08-22 16:17:21.573 \N \N 2 3 192 4 1165 -820 \N 2012-08-22 16:17:15.37 \N \N 2 3 192 4 1166 -820 \N 2012-08-22 16:17:15.373 \N \N 2 3 192 4 1167 -820 \N 2012-08-22 16:17:15.375 \N \N 2 3 192 4 1168 -820 \N 2012-08-22 16:17:15.377 \N \N 2 3 192 4 1169 -820 \N 2012-08-22 16:17:15.492 \N \N 2 3 192 4 1170 -820 \N 2012-08-22 16:17:15.529 \N \N 2 3 192 4 1171 -820 \N 2012-08-22 16:17:15.561 \N \N 2 3 192 4 1172 -820 \N 2012-08-22 16:17:15.567 \N \N 2 3 192 4 1173 -820 \N 2012-08-22 16:17:15.574 \N \N 2 3 192 4 1174 -820 \N 2012-08-22 16:17:15.62 \N \N 2 3 192 4 1175 -820 \N 2012-08-22 16:17:16.198 \N \N 2 3 192 4 1177 -820 \N 2012-08-22 16:17:16.202 \N \N 2 3 192 4 1178 -820 \N 2012-08-22 16:17:16.203 \N \N 2 3 192 4 1182 -820 \N 2012-08-22 16:17:25.334 \N \N 2 3 192 4 1183 -820 \N 2012-08-22 16:17:25.421 \N \N 2 3 192 4 1184 -820 \N 2012-08-22 16:17:25.447 \N \N 2 3 192 4 1185 -820 \N 2012-08-22 16:17:25.464 \N \N 2 3 192 4 1186 -820 \N 2012-08-22 16:17:25.498 \N \N 2 3 192 4 1187 -820 \N 2012-08-22 16:17:25.601 \N \N 2 3 192 4 1188 -820 \N 2012-08-22 16:17:25.625 \N \N 2 3 192 4 1189 -820 \N 2012-08-22 16:17:25.641 \N \N 2 3 192 4 1190 -820 \N 2012-08-22 16:17:25.657 \N \N 2 3 192 4 1191 -820 \N 2012-08-22 16:17:25.672 \N \N 2 3 192 4 1192 -820 \N 2012-08-22 16:17:25.696 \N \N 2 3 192 4 1193 -820 \N 2012-08-22 16:17:25.728 \N \N 2 3 192 4 1194 -820 \N 2012-08-22 16:17:25.747 \N \N 2 3 192 4 1195 -820 \N 2012-08-22 16:17:25.764 \N \N 2 3 192 4 1196 -820 \N 2012-08-22 16:17:25.833 \N \N 2 3 192 4 1197 -820 \N 2012-08-22 16:17:25.85 \N \N 2 3 192 4 1198 -820 \N 2012-08-22 16:17:25.866 \N \N 2 3 192 4 1199 -820 \N 2012-08-22 16:17:25.882 \N \N 2 3 192 4 1200 -820 \N 2012-08-22 16:17:25.897 \N \N 2 3 192 4 1201 -820 \N 2012-08-22 16:17:25.921 \N \N 2 3 192 4 1202 -820 \N 2012-08-22 16:17:25.952 \N \N 2 3 192 4 1203 -820 \N 2012-08-22 16:17:25.972 \N \N 2 3 192 4 1204 -820 \N 2012-08-22 16:17:25.989 \N \N 2 3 192 4 1205 -820 \N 2012-08-22 16:17:26.075 \N \N 2 3 192 4 1206 -820 \N 2012-08-22 16:17:26.1 \N \N 2 3 192 4 1207 -820 \N 2012-08-22 16:17:26.116 \N \N 2 3 192 4 1208 -820 \N 2012-08-22 16:17:26.132 \N \N 2 3 192 4 1209 -820 \N 2012-08-22 16:17:26.149 \N \N 2 3 192 4 1210 -820 \N 2012-08-22 16:17:26.167 \N \N 2 3 192 4 1211 -820 \N 2012-08-22 16:17:26.192 \N \N 2 3 192 4 1212 -820 \N 2012-08-22 16:17:26.206 \N \N 2 3 192 4 1213 -820 \N 2012-08-22 16:17:26.229 \N \N 2 3 192 4 1214 -820 \N 2012-08-22 16:17:26.251 \N \N 2 3 192 4 1215 -820 \N 2012-08-22 16:17:26.273 \N \N 2 3 192 4 1216 -820 \N 2012-08-22 16:17:26.295 \N \N 2 3 192 4 1217 -820 \N 2012-08-22 16:17:26.315 \N \N 2 3 192 4 1218 -820 \N 2012-08-22 16:17:26.331 \N \N 2 3 192 4 1219 -820 \N 2012-08-22 16:17:26.354 \N \N 2 3 192 4 1220 -820 \N 2012-08-22 16:17:26.374 \N \N 2 3 192 4 1221 -820 \N 2012-08-22 16:17:26.389 \N \N 2 3 192 4 1222 -820 \N 2012-08-22 16:17:26.412 \N \N 2 3 192 4 1223 -820 \N 2012-08-22 16:17:26.432 \N \N 2 3 192 4 1224 -820 \N 2012-08-22 16:17:26.447 \N \N 2 3 192 4 1225 -820 \N 2012-08-22 16:17:26.47 \N \N 2 3 192 4 1226 -820 \N 2012-08-22 16:17:26.491 \N \N 2 3 192 4 1227 -820 \N 2012-08-22 16:17:26.506 \N \N 2 3 192 4 1228 -820 \N 2012-08-22 16:17:26.528 \N \N 2 3 192 4 1229 -820 \N 2012-08-22 16:20:11.036 \N \N 2 3 192 4 1230 -820 \N 2012-08-22 16:20:11.103 \N \N 2 3 192 4 1231 -820 \N 2012-08-22 16:20:11.129 \N \N 2 3 192 4 1232 -820 \N 2012-08-22 16:20:11.146 \N \N 2 3 192 4 1233 -820 \N 2012-08-22 16:20:11.163 \N \N 2 3 192 4 1234 -820 \N 2012-08-22 16:20:11.238 \N \N 2 3 192 4 1235 -820 \N 2012-08-22 16:20:11.257 \N \N 2 3 192 4 1236 -820 \N 2012-08-22 16:20:11.273 \N \N 2 3 192 4 1237 -820 \N 2012-08-22 16:20:11.291 \N \N 2 3 192 4 1238 -820 \N 2012-08-22 16:20:11.313 \N \N 2 3 192 4 1239 -820 \N 2012-08-22 16:20:11.336 \N \N 2 3 192 4 1240 -820 \N 2012-08-22 16:20:11.363 \N \N 2 3 192 4 1241 -820 \N 2012-08-22 16:20:11.379 \N \N 2 3 192 4 1242 -820 \N 2012-08-22 16:20:11.396 \N \N 2 3 192 4 1243 -820 \N 2012-08-22 16:20:11.464 \N \N 2 3 192 4 1244 -820 \N 2012-08-22 16:20:11.481 \N \N 2 3 192 4 1245 -820 \N 2012-08-22 16:20:11.497 \N \N 2 3 192 4 1246 -820 \N 2012-08-22 16:20:11.513 \N \N 2 3 192 4 1247 -820 \N 2012-08-22 16:20:11.529 \N \N 2 3 192 4 1248 -820 \N 2012-08-22 16:20:11.551 \N \N 2 3 192 4 1249 -820 \N 2012-08-22 16:20:11.584 \N \N 2 3 192 4 1250 -820 \N 2012-08-22 16:20:11.603 \N \N 2 3 192 4 1251 -820 \N 2012-08-22 16:20:11.621 \N \N 2 3 192 4 1252 -820 \N 2012-08-22 16:20:11.621 \N \N 2 3 192 4 1253 -820 \N 2012-08-22 16:20:11.692 \N \N 2 3 192 4 1254 -820 \N 2012-08-22 16:20:11.715 \N \N 2 3 192 4 1255 -820 \N 2012-08-22 16:20:11.731 \N \N 2 3 192 4 1256 -820 \N 2012-08-22 16:20:11.748 \N \N 2 3 192 4 1257 -820 \N 2012-08-22 16:20:11.764 \N \N 2 3 192 4 1258 -820 \N 2012-08-22 16:20:11.782 \N \N 2 3 192 4 1259 -820 \N 2012-08-22 16:20:11.801 \N \N 2 3 192 4 1260 -820 \N 2012-08-22 16:20:11.821 \N \N 2 3 192 4 1261 -820 \N 2012-08-22 16:20:11.844 \N \N 2 3 192 4 1262 -820 \N 2012-08-22 16:20:11.864 \N \N 2 3 192 4 1263 -820 \N 2012-08-22 16:20:11.879 \N \N 2 3 192 4 1264 -820 \N 2012-08-22 16:20:11.902 \N \N 2 3 192 4 1265 -820 \N 2012-08-22 16:20:11.922 \N \N 2 3 192 4 1266 -820 \N 2012-08-22 16:20:11.937 \N \N 2 3 192 4 1267 -820 \N 2012-08-22 16:20:11.96 \N \N 2 3 192 4 1268 -820 \N 2012-08-22 16:20:11.981 \N \N 2 3 192 4 1269 -820 \N 2012-08-22 16:20:11.996 \N \N 2 3 192 4 1270 -820 \N 2012-08-22 16:20:12.018 \N \N 2 3 192 4 1271 -820 \N 2012-08-22 16:20:12.039 \N \N 2 3 192 4 1272 -820 \N 2012-08-22 16:20:12.054 \N \N 2 3 192 4 1273 -820 \N 2012-08-22 16:20:12.077 \N \N 2 3 192 4 1274 -820 \N 2012-08-22 16:20:12.098 \N \N 2 3 192 4 1275 -820 \N 2012-08-22 16:20:12.112 \N \N 2 3 192 4 1276 -820 \N 2012-08-22 16:20:12.135 \N \N 2 3 192 4 1278 -820 \N 2012-08-22 16:42:17.327 \N \N 5 3 189 4 1282 -820 \N 2012-08-22 16:42:17.35 \N \N 5 3 189 4 1287 -820 \N 2012-08-22 16:42:17.413 \N \N 5 3 189 4 1291 -820 \N 2012-08-22 16:42:17.446 \N \N 5 3 189 4 1292 -820 \N 2012-08-22 16:42:17.562 \N \N 5 3 189 4 1293 -820 \N 2012-08-22 16:42:17.579 \N \N 5 3 189 4 1294 -820 \N 2012-08-22 16:42:17.605 \N \N 5 3 189 4 1297 -820 \N 2012-08-22 16:42:19.593 \N \N 5 3 189 4 1301 -820 \N 2012-08-22 16:42:19.619 \N \N 5 3 189 4 1308 -820 \N 2012-08-22 16:42:19.653 \N \N 5 3 189 4 1310 -820 \N 2012-08-22 16:42:19.768 \N \N 5 3 189 4 1311 -820 \N 2012-08-22 16:42:19.786 \N \N 5 3 189 4 1312 -820 \N 2012-08-22 16:42:19.812 \N \N 5 3 189 4 1313 -820 \N 2012-08-22 16:42:22.139 \N \N 5 3 189 4 1319 -820 \N 2012-08-22 16:42:22.166 \N \N 5 3 189 4 1326 -820 \N 2012-08-22 16:42:22.193 \N \N 5 3 189 4 1331 -820 \N 2012-08-22 16:42:22.362 \N \N 5 3 189 4 1337 -820 \N 2012-08-22 16:42:22.385 \N \N 5 3 189 4 1343 -820 \N 2012-08-22 16:42:22.512 \N \N 5 3 189 4 1344 -820 \N 2012-08-22 16:42:22.526 \N \N 5 3 189 4 1345 -820 \N 2012-08-22 16:42:22.552 \N \N 5 3 189 4 1346 -820 \N 2012-08-22 16:42:23.899 \N \N 5 3 189 4 1347 -820 \N 2012-08-22 16:42:24.451 \N \N 5 3 189 4 1348 -820 \N 2012-08-22 16:42:24.756 \N \N 5 3 189 4 1349 -820 \N 2012-08-22 16:42:25.584 \N \N 5 3 189 4 1350 -820 \N 2012-08-22 16:42:25.631 \N \N 5 3 189 4 1351 -820 \N 2012-08-22 16:42:25.761 \N \N 5 3 189 4 1352 -820 \N 2012-08-22 16:42:40.107 \N \N 5 3 189 4 1353 -820 \N 2012-08-22 16:42:41.845 \N \N 5 3 189 4 1354 -820 \N 2012-08-22 16:42:45.727 \N \N 5 3 189 4 1355 -820 \N 2012-08-22 16:42:45.827 \N \N 5 3 189 4 1356 -820 \N 2012-08-22 16:42:46.331 \N \N 5 3 189 4 1357 -820 \N 2012-08-22 16:42:46.497 \N \N 5 3 189 4 1358 -820 \N 2012-08-22 16:42:46.663 \N \N 5 3 189 4 1359 -820 \N 2012-08-22 16:42:46.829 \N \N 5 3 189 4 1360 -820 \N 2012-08-22 16:42:46.993 \N \N 5 3 189 4 1361 -820 \N 2012-08-22 16:42:47.161 \N \N 5 3 189 4 1362 -820 \N 2012-08-22 16:42:47.327 \N \N 5 3 189 4 1363 -820 \N 2012-08-22 16:42:47.494 \N \N 5 3 189 4 1364 -820 \N 2012-08-22 16:42:47.658 \N \N 5 3 189 4 1365 -820 \N 2012-08-22 16:42:50.704 \N \N 5 3 189 4 1366 -820 \N 2012-08-22 16:42:51.687 \N \N 5 3 189 4 1367 -820 \N 2012-08-22 16:42:56.44 \N \N 5 3 189 4 1368 -820 \N 2012-08-22 16:43:10.22 \N \N 5 3 189 4 1369 -820 \N 2012-08-22 16:43:14.552 \N \N 5 3 189 4 1370 -820 \N 2012-08-22 16:43:21.813 \N \N 5 3 189 4 1371 -820 \N 2012-08-22 16:43:37.439 \N \N 5 3 189 4 1372 -820 \N 2012-08-22 16:43:41.389 \N \N 5 3 189 4 1373 -820 \N 2012-08-22 16:43:44.298 \N \N 5 3 189 4 1374 -820 \N 2012-08-22 16:43:53.68 \N \N 5 3 189 4 1375 -820 \N 2012-08-22 16:44:00.293 \N \N 5 3 189 4 1376 -820 \N 2012-08-22 16:44:06.704 \N \N 5 3 189 4 1377 -820 \N 2012-08-22 16:44:26.43 \N \N 5 3 189 4 1378 -820 \N 2012-08-22 16:44:46.649 \N \N 5 3 189 4 1379 -820 \N 2012-08-22 16:44:47.962 \N \N 5 3 189 4 1380 -820 \N 2012-08-22 16:44:56.339 \N \N 5 3 189 4 1381 -820 \N 2012-08-22 16:45:01.855 \N \N 5 3 189 4 1382 -820 \N 2012-08-22 16:45:03.863 \N \N 5 3 189 4 1383 -820 \N 2012-08-22 16:45:05.944 \N \N 5 3 189 4 1384 -820 \N 2012-08-22 16:45:57.024 \N \N 5 3 189 4 1385 -820 \N 2012-08-22 16:46:08.392 \N \N 5 3 189 4 1386 -820 \N 2012-08-22 16:46:09.08 \N \N 5 3 189 4 1387 -820 \N 2012-08-22 16:46:09.453 \N \N 5 3 189 4 1388 -820 \N 2012-08-22 16:46:10.381 \N \N 5 3 189 4 1389 -820 \N 2012-08-22 16:46:10.422 \N \N 5 3 189 4 1390 -820 \N 2012-08-22 16:46:10.533 \N \N 5 3 189 4 1391 -820 \N 2012-08-22 16:46:39.827 \N \N 5 3 189 4 1392 -820 \N 2012-08-22 16:46:40.706 \N \N 5 3 189 4 1393 -820 \N 2012-08-22 16:46:41.172 \N \N 5 3 189 4 1394 -820 \N 2012-08-22 16:46:41.474 \N \N 5 3 189 4 1395 -820 \N 2012-08-22 16:46:42.358 \N \N 5 3 189 4 1396 -820 \N 2012-08-22 16:46:42.407 \N \N 5 3 189 4 1397 -820 \N 2012-08-22 16:46:42.532 \N \N 5 3 189 4 1398 -820 \N 2012-08-22 16:47:04.981 \N \N 5 3 189 4 1399 -820 \N 2012-08-22 16:47:08.771 \N \N 5 3 189 4 1400 -820 \N 2012-08-22 16:47:12.221 \N \N 5 3 189 4 1401 -820 \N 2012-08-22 16:47:17.598 \N \N 5 3 189 4 1402 -820 \N 2012-08-22 16:47:40.741 \N \N 5 3 189 4 1403 -820 \N 2012-08-22 16:47:48.44 \N \N 5 3 189 4 1404 -820 \N 2012-08-22 16:47:53.057 \N \N 5 3 189 4 1277 -820 \N 2012-08-22 16:42:17.327 \N \N 5 3 189 4 1279 -820 \N 2012-08-22 16:42:17.334 \N \N 5 3 189 4 1280 -820 \N 2012-08-22 16:42:17.334 \N \N 5 3 189 4 1281 -820 \N 2012-08-22 16:42:17.338 \N \N 5 3 189 4 1283 -820 \N 2012-08-22 16:42:17.358 \N \N 5 3 189 4 1284 -820 \N 2012-08-22 16:42:17.377 \N \N 5 3 189 4 1285 -820 \N 2012-08-22 16:42:17.386 \N \N 5 3 189 4 1286 -820 \N 2012-08-22 16:42:17.394 \N \N 5 3 189 4 1288 -820 \N 2012-08-22 16:42:17.422 \N \N 5 3 189 4 1289 -820 \N 2012-08-22 16:42:17.434 \N \N 5 3 189 4 1290 -820 \N 2012-08-22 16:42:17.439 \N \N 5 3 189 4 1295 -820 \N 2012-08-22 16:42:19.589 \N \N 5 3 189 4 1296 -820 \N 2012-08-22 16:42:19.59 \N \N 5 3 189 4 1298 -820 \N 2012-08-22 16:42:19.597 \N \N 5 3 189 4 1299 -820 \N 2012-08-22 16:42:19.599 \N \N 5 3 189 4 1300 -820 \N 2012-08-22 16:42:19.611 \N \N 5 3 189 4 1304 -820 \N 2012-08-22 16:42:19.619 \N \N 5 3 189 4 1303 -820 \N 2012-08-22 16:42:19.619 \N \N 5 3 189 4 1302 -820 \N 2012-08-22 16:42:19.619 \N \N 5 3 189 4 1305 -820 \N 2012-08-22 16:42:19.636 \N \N 5 3 189 4 1306 -820 \N 2012-08-22 16:42:19.649 \N \N 5 3 189 4 1307 -820 \N 2012-08-22 16:42:19.653 \N \N 5 3 189 4 1309 -820 \N 2012-08-22 16:42:19.654 \N \N 5 3 189 4 1314 -820 \N 2012-08-22 16:42:22.139 \N \N 5 3 189 4 1315 -820 \N 2012-08-22 16:42:22.141 \N \N 5 3 189 4 1316 -820 \N 2012-08-22 16:42:22.143 \N \N 5 3 189 4 1317 -820 \N 2012-08-22 16:42:22.145 \N \N 5 3 189 4 1318 -820 \N 2012-08-22 16:42:22.158 \N \N 5 3 189 4 1320 -820 \N 2012-08-22 16:42:22.166 \N \N 5 3 189 4 1321 -820 \N 2012-08-22 16:42:22.166 \N \N 5 3 189 4 1322 -820 \N 2012-08-22 16:42:22.167 \N \N 5 3 189 4 1323 -820 \N 2012-08-22 16:42:22.184 \N \N 5 3 189 4 1324 -820 \N 2012-08-22 16:42:22.193 \N \N 5 3 189 4 1325 -820 \N 2012-08-22 16:42:22.193 \N \N 5 3 189 4 1327 -820 \N 2012-08-22 16:42:22.193 \N \N 5 3 189 4 1328 -820 \N 2012-08-22 16:42:22.328 \N \N 5 3 189 4 1329 -820 \N 2012-08-22 16:42:22.35 \N \N 5 3 189 4 1330 -820 \N 2012-08-22 16:42:22.357 \N \N 5 3 189 4 1332 -820 \N 2012-08-22 16:42:22.363 \N \N 5 3 189 4 1333 -820 \N 2012-08-22 16:42:22.368 \N \N 5 3 189 4 1334 -820 \N 2012-08-22 16:42:22.376 \N \N 5 3 189 4 1335 -820 \N 2012-08-22 16:42:22.384 \N \N 5 3 189 4 1336 -820 \N 2012-08-22 16:42:22.384 \N \N 5 3 189 4 1338 -820 \N 2012-08-22 16:42:22.392 \N \N 5 3 189 4 1339 -820 \N 2012-08-22 16:42:22.402 \N \N 5 3 189 4 1340 -820 \N 2012-08-22 16:42:22.41 \N \N 5 3 189 4 1341 -820 \N 2012-08-22 16:42:22.411 \N \N 5 3 189 4 1342 -820 \N 2012-08-22 16:42:22.419 \N \N 5 3 189 4 1405 -820 \N 2012-08-22 16:47:56.805 \N \N 5 3 189 4 1406 -820 \N 2012-08-22 16:48:07.907 \N \N 5 3 189 4 1407 -820 \N 2012-08-22 16:48:12.517 \N \N 5 3 189 4 1408 -820 \N 2012-08-22 16:48:13.023 \N \N 5 3 189 4 1409 -820 \N 2012-08-22 16:48:14.139 \N \N 5 3 189 4 1410 -820 \N 2012-08-22 16:48:14.683 \N \N 5 3 189 4 1411 -820 \N 2012-08-22 16:48:15.12 \N \N 5 3 189 4 1412 -820 \N 2012-08-22 16:48:16.035 \N \N 5 3 189 4 1413 -820 \N 2012-08-22 16:48:16.537 \N \N 5 3 189 4 1414 -820 \N 2012-08-22 16:48:16.743 \N \N 5 3 189 4 1415 -820 \N 2012-08-22 16:48:16.917 \N \N 5 3 189 4 1416 -820 \N 2012-08-22 16:48:17.108 \N \N 5 3 189 4 1417 -820 \N 2012-08-22 16:48:17.286 \N \N 5 3 189 4 1418 -820 \N 2012-08-22 16:48:17.477 \N \N 5 3 189 4 1419 -820 \N 2012-08-22 16:48:17.663 \N \N 5 3 189 4 1420 -820 \N 2012-08-22 16:48:17.844 \N \N 5 3 189 4 1421 -820 \N 2012-08-22 16:48:18.034 \N \N 5 3 189 4 1422 -820 \N 2012-08-22 16:48:18.222 \N \N 5 3 189 4 1423 -820 \N 2012-08-22 16:48:18.385 \N \N 5 3 189 4 1424 -820 \N 2012-08-22 16:48:18.549 \N \N 5 3 189 4 1425 -820 \N 2012-08-22 16:48:22.756 \N \N 5 3 189 4 1426 -820 \N 2012-08-22 16:48:23.265 \N \N 5 3 189 4 1427 -820 \N 2012-08-22 16:48:23.636 \N \N 5 3 189 4 1428 -820 \N 2012-08-22 16:48:24.139 \N \N 5 3 189 4 1429 -820 \N 2012-08-22 16:48:24.431 \N \N 5 3 189 4 1430 -820 \N 2012-08-22 16:48:24.615 \N \N 5 3 189 4 1431 -820 \N 2012-08-22 16:48:24.8 \N \N 5 3 189 4 1432 -820 \N 2012-08-22 16:48:24.981 \N \N 5 3 189 4 1433 -820 \N 2012-08-22 16:48:25.146 \N \N 5 3 189 4 1434 -820 \N 2012-08-22 16:48:25.31 \N \N 5 3 189 4 1435 -820 \N 2012-08-22 16:48:25.48 \N \N 5 3 189 4 1436 -820 \N 2012-08-22 16:48:25.786 \N \N 5 3 189 4 1437 -820 \N 2012-08-22 16:48:25.953 \N \N 5 3 189 4 1438 -820 \N 2012-08-22 16:48:26.132 \N \N 5 3 189 4 1439 -820 \N 2012-08-22 16:48:26.368 \N \N 5 3 189 4 1440 -820 \N 2012-08-22 16:48:26.542 \N \N 5 3 189 4 1441 -820 \N 2012-08-22 16:48:26.709 \N \N 5 3 189 4 1442 -820 \N 2012-08-22 16:48:26.877 \N \N 5 3 189 4 1443 -820 \N 2012-08-22 16:48:27.044 \N \N 5 3 189 4 1444 -820 \N 2012-08-22 16:48:27.211 \N \N 5 3 189 4 1445 -820 \N 2012-08-22 16:48:27.377 \N \N 5 3 189 4 1446 -820 \N 2012-08-22 16:48:27.54 \N \N 5 3 189 4 1447 -820 \N 2012-08-22 16:48:27.706 \N \N 5 3 189 4 1448 -820 \N 2012-08-22 16:48:27.874 \N \N 5 3 189 4 1449 -820 \N 2012-08-22 16:48:28.041 \N \N 5 3 189 4 1450 -820 \N 2012-08-22 16:48:28.204 \N \N 5 3 189 4 1451 -820 \N 2012-08-22 16:48:28.375 \N \N 5 3 189 4 1452 -820 \N 2012-08-22 16:48:28.543 \N \N 5 3 189 4 1453 -820 \N 2012-08-22 16:48:28.707 \N \N 5 3 189 4 1454 -820 \N 2012-08-22 16:50:04.094 \N \N 5 3 189 4 1455 -820 \N 2012-08-22 16:50:04.097 \N \N 5 3 189 4 1456 -820 \N 2012-08-22 16:50:04.101 \N \N 5 3 189 4 1457 -820 \N 2012-08-22 16:50:04.111 \N \N 5 3 189 4 1458 -820 \N 2012-08-22 16:50:04.147 \N \N 5 3 189 4 1459 -820 \N 2012-08-22 16:50:04.228 \N \N 5 3 189 4 1460 -820 \N 2012-08-22 16:50:09.932 \N \N 5 3 189 4 1461 -820 \N 2012-08-22 16:50:10.864 \N \N 5 3 189 4 1462 -820 \N 2012-08-22 16:50:11.114 \N \N 5 3 189 4 1463 -820 \N 2012-08-22 16:50:14.628 \N \N 5 3 189 4 1464 -820 \N 2012-08-22 16:50:25.034 \N \N 5 3 189 4 1465 -820 \N 2012-08-22 16:50:25.882 \N \N 5 3 189 4 1466 -820 \N 2012-08-22 16:51:19.178 \N \N 5 3 189 4 1467 -820 \N 2012-08-22 16:51:51.105 \N \N 5 3 189 4 1468 -820 \N 2012-08-22 16:52:37.561 \N \N 5 3 189 4 1469 -820 \N 2012-08-22 16:52:55.624 \N \N 5 3 189 4 1470 -820 \N 2012-08-22 16:52:55.682 \N \N 5 3 189 4 1471 -820 \N 2012-08-22 16:53:04.641 \N \N 5 3 189 4 1472 -820 \N 2012-08-22 16:53:17.216 \N \N 5 3 189 4 1473 -820 \N 2012-08-22 16:53:31.646 \N \N 0 0 2 2 1474 -820 \N 2012-08-23 13:55:07.017 \N \N 0 0 2 9 1475 -820 \N 2012-08-23 13:55:07.102 \N \N 1 2 194 4 1476 -820 \N 2012-08-23 13:55:07.129 \N \N 0 0 2 9 1477 -820 \N 2012-08-23 13:55:07.169 \N \N 2 3 195 4 1478 -820 \N 2012-08-23 13:55:18.672 \N \N 2 3 195 4 1479 -820 \N 2012-08-23 13:55:18.672 \N \N 2 3 195 4 1480 -820 \N 2012-08-23 13:55:18.678 \N \N 2 3 195 4 1481 -820 \N 2012-08-23 13:55:18.738 \N \N 2 3 195 4 1482 -820 \N 2012-08-23 13:55:18.763 \N \N 2 3 195 4 1483 -820 \N 2012-08-23 13:55:18.816 \N \N 2 3 195 4 1485 -820 \N 2012-08-23 13:55:21.023 \N \N 2 3 195 4 1484 -820 \N 2012-08-23 13:55:21.023 \N \N 2 3 195 4 1487 -820 \N 2012-08-23 13:55:21.123 \N \N 2 3 195 4 1486 -820 \N 2012-08-23 13:55:21.123 \N \N 2 3 195 4 1488 -820 \N 2012-08-23 13:55:21.124 \N \N 2 3 195 4 1489 -820 \N 2012-08-23 13:55:21.17 \N \N 2 3 195 4 1490 -820 \N 2012-08-23 13:55:23.437 \N \N 2 3 195 4 1491 -820 \N 2012-08-23 13:55:23.437 \N \N 2 3 195 4 1492 -820 \N 2012-08-23 13:55:23.437 \N \N 2 3 195 4 1493 -820 \N 2012-08-23 13:55:23.445 \N \N 2 3 195 4 1494 -820 \N 2012-08-23 13:55:23.503 \N \N 2 3 195 4 1495 -820 \N 2012-08-23 13:55:23.604 \N \N 2 3 195 4 1496 -820 \N 2012-08-23 13:55:23.611 \N \N 2 3 195 4 1497 -820 \N 2012-08-23 13:55:23.613 \N \N 2 3 195 4 1498 -820 \N 2012-08-23 13:55:23.618 \N \N 2 3 195 4 1499 -820 \N 2012-08-23 13:55:23.647 \N \N 2 3 195 4 1500 -820 \N 2012-08-23 13:55:23.729 \N \N 2 3 195 4 1501 -820 \N 2012-08-23 13:55:25.611 \N \N 2 3 195 4 1502 -820 \N 2012-08-23 13:55:26.131 \N \N 2 3 195 4 1503 -820 \N 2012-08-23 13:55:29.585 \N \N 2 3 195 4 1504 -820 \N 2012-08-23 13:55:29.631 \N \N 2 3 195 4 1505 -820 \N 2012-08-23 13:55:29.942 \N \N 2 3 195 4 1506 -820 \N 2012-08-23 13:55:33.326 \N \N 2 3 195 4 1507 -820 \N 2012-08-23 13:55:33.738 \N \N 2 3 195 4 1508 -820 \N 2012-08-23 13:55:33.985 \N \N 2 3 195 4 1509 -820 \N 2012-08-23 13:55:34.214 \N \N 2 3 195 4 1510 -820 \N 2012-08-23 13:55:34.443 \N \N 2 3 195 4 1511 -820 \N 2012-08-23 13:55:34.666 \N \N 2 3 195 4 1512 -820 \N 2012-08-23 13:55:34.847 \N \N 2 3 195 4 1513 -820 \N 2012-08-23 13:55:35.055 \N \N 2 3 195 4 1514 -820 \N 2012-08-23 13:55:35.243 \N \N 2 3 195 4 1515 -820 \N 2012-08-23 13:55:35.528 \N \N 2 3 195 4 1516 -820 \N 2012-08-23 13:55:35.781 \N \N 2 3 195 4 1517 -820 \N 2012-08-23 13:55:36.503 \N \N 2 3 195 4 1518 -820 \N 2012-08-23 13:55:36.689 \N \N 2 3 195 4 1519 -820 \N 2012-08-23 13:55:36.885 \N \N 2 3 195 4 1520 -820 \N 2012-08-23 13:55:37.082 \N \N 2 3 195 4 1521 -820 \N 2012-08-23 13:55:37.275 \N \N 2 3 195 4 1522 -820 \N 2012-08-23 13:55:37.483 \N \N 2 3 195 4 1523 -820 \N 2012-08-23 13:55:38.547 \N \N 2 3 195 4 1524 -820 \N 2012-08-23 13:55:38.75 \N \N 2 3 195 4 1525 -820 \N 2012-08-23 13:55:38.987 \N \N 2 3 195 4 1526 -820 \N 2012-08-23 13:55:39.224 \N \N 2 3 195 4 1527 -820 \N 2012-08-23 13:55:39.436 \N \N 2 3 195 4 1528 -820 \N 2012-08-23 13:55:49.439 \N \N 2 3 195 4 1529 -820 \N 2012-08-23 13:55:49.636 \N \N 2 3 195 4 1530 -820 \N 2012-08-23 13:55:49.877 \N \N 2 3 195 4 1531 -820 \N 2012-08-23 13:55:50.083 \N \N 2 3 195 4 1532 -820 \N 2012-08-23 13:55:50.285 \N \N 2 3 195 4 1533 -820 \N 2012-08-23 13:55:50.474 \N \N 2 3 195 4 1534 -820 \N 2012-08-23 13:55:50.665 \N \N 2 3 195 4 1535 -820 \N 2012-08-23 13:55:50.884 \N \N 2 3 195 4 1536 -820 \N 2012-08-23 13:55:51.065 \N \N 2 3 195 4 1537 -820 \N 2012-08-23 13:55:51.252 \N \N 2 3 195 4 1538 -820 \N 2012-08-23 13:55:51.449 \N \N 2 3 195 4 1539 -820 \N 2012-08-23 13:55:51.634 \N \N 2 3 195 4 1540 -820 \N 2012-08-23 13:55:51.805 \N \N 2 3 195 4 1541 -820 \N 2012-08-23 13:55:52.002 \N \N 2 3 195 4 1542 -820 \N 2012-08-23 13:55:52.193 \N \N 2 3 195 4 1543 -820 \N 2012-08-23 13:55:52.383 \N \N 2 3 195 4 1544 -820 \N 2012-08-23 13:55:52.586 \N \N 2 3 195 4 1545 -820 \N 2012-08-23 13:55:52.786 \N \N 2 3 195 4 1546 -820 \N 2012-08-23 13:55:52.981 \N \N 2 3 195 4 1547 -820 \N 2012-08-23 13:55:53.162 \N \N 2 3 195 4 1548 -820 \N 2012-08-23 13:55:53.362 \N \N 2 3 195 4 1549 -820 \N 2012-08-23 13:55:53.565 \N \N 2 3 195 4 1550 -820 \N 2012-08-23 13:55:53.762 \N \N 2 3 195 4 1551 -820 \N 2012-08-23 13:55:53.975 \N \N 2 3 195 4 1552 -820 \N 2012-08-23 13:55:54.249 \N \N 2 3 195 4 1553 -820 \N 2012-08-23 13:55:54.451 \N \N 2 3 195 4 1554 -820 \N 2012-08-23 13:55:54.744 \N \N 2 3 195 4 1555 -820 \N 2012-08-23 13:55:54.958 \N \N 2 3 195 4 1556 -820 \N 2012-08-23 13:55:55.151 \N \N 2 3 195 4 1557 -820 \N 2012-08-23 13:55:55.338 \N \N 2 3 195 4 1558 -820 \N 2012-08-23 13:55:55.527 \N \N 2 3 195 4 1559 -820 \N 2012-08-23 13:55:55.73 \N \N 2 3 195 4 1560 -820 \N 2012-08-23 13:55:55.929 \N \N 2 3 195 4 1561 -820 \N 2012-08-23 13:55:56.124 \N \N 2 3 195 4 1562 -820 \N 2012-08-23 13:55:56.328 \N \N 2 3 195 4 1563 -820 \N 2012-08-23 13:55:56.52 \N \N 2 3 195 4 1564 -820 \N 2012-08-23 13:55:56.701 \N \N 2 3 195 4 1565 -820 \N 2012-08-23 13:55:56.902 \N \N 2 3 195 4 1566 -820 \N 2012-08-23 13:55:57.094 \N \N 2 3 195 4 1567 -820 \N 2012-08-23 13:55:57.288 \N \N 2 3 195 4 1568 -820 \N 2012-08-23 13:56:04.687 \N \N 2 3 195 4 1569 -820 \N 2012-08-23 13:56:06.013 \N \N 2 3 195 4 1570 -820 \N 2012-08-23 13:56:10.798 \N \N 2 3 195 4 1571 -820 \N 2012-08-23 13:56:14.215 \N \N 2 3 195 4 1572 -820 \N 2012-08-23 13:56:14.78 \N \N 2 3 195 4 1573 -820 \N 2012-08-23 13:56:15.22 \N \N 2 3 195 4 1574 -820 \N 2012-08-23 13:56:15.703 \N \N 2 3 195 4 1575 -820 \N 2012-08-23 13:56:16.107 \N \N 2 3 195 4 1576 -820 \N 2012-08-23 13:56:16.585 \N \N 2 3 195 4 1577 -820 \N 2012-08-23 13:56:17.059 \N \N 2 3 195 4 1578 -820 \N 2012-08-23 13:56:17.508 \N \N 2 3 195 4 1579 -820 \N 2012-08-23 13:56:17.974 \N \N 2 3 195 4 1580 -820 \N 2012-08-23 13:56:18.593 \N \N 2 3 195 4 1581 -820 \N 2012-08-23 13:56:19.033 \N \N 2 3 195 4 1582 -820 \N 2012-08-23 13:56:19.466 \N \N 2 3 195 4 1583 -820 \N 2012-08-23 13:56:19.933 \N \N 2 3 195 4 1584 -820 \N 2012-08-23 13:56:20.385 \N \N 2 3 195 4 1585 -820 \N 2012-08-23 13:56:20.967 \N \N 2 3 195 4 1586 -820 \N 2012-08-23 13:56:21.442 \N \N 2 3 195 4 1587 -820 \N 2012-08-23 13:56:21.914 \N \N 2 3 195 4 1588 -820 \N 2012-08-23 13:56:22.383 \N \N 2 3 195 4 1589 -820 \N 2012-08-23 13:56:22.877 \N \N 2 3 195 4 1590 -820 \N 2012-08-23 13:56:23.368 \N \N 2 3 195 4 1591 -820 \N 2012-08-23 13:56:23.868 \N \N 2 3 195 4 1592 -820 \N 2012-08-23 13:56:24.387 \N \N 2 3 195 4 1593 -820 \N 2012-08-23 13:56:24.895 \N \N 2 3 195 4 1594 -820 \N 2012-08-23 13:56:25.369 \N \N 2 3 195 4 1595 -820 \N 2012-08-23 13:56:25.9 \N \N 2 3 195 4 1596 -820 \N 2012-08-23 13:56:26.404 \N \N 2 3 195 4 1597 -820 \N 2012-08-23 13:56:26.884 \N \N 2 3 195 4 1598 -820 \N 2012-08-23 13:56:27.542 \N \N 2 3 195 4 1599 -820 \N 2012-08-24 14:20:02.479 \N \N 0 0 2 9 1600 -820 \N 2012-08-24 14:20:02.575 \N \N 2 3 196 4 1601 -820 \N 2012-08-24 14:20:02.685 \N \N 2 3 196 4 1602 -820 \N 2012-08-24 14:20:20.085 \N \N 2 3 196 4 1603 -820 \N 2012-08-24 14:20:20.094 \N \N 2 3 196 4 1604 -820 \N 2012-08-24 14:20:20.805 \N \N 2 3 196 4 1605 -820 \N 2012-08-24 14:21:32.581 \N \N 2 3 196 4 1606 -820 \N 2012-08-24 14:21:47.545 \N \N 2 3 196 4 1607 -820 \N 2012-08-24 14:22:09.041 \N \N 2 3 196 4 1608 -820 \N 2012-08-24 14:22:09.066 \N \N 2 3 196 4 1609 -820 \N 2012-08-24 14:22:09.417 \N \N 2 3 196 4 1610 -820 \N 2012-08-24 14:22:09.432 \N \N 2 3 196 4 1611 -820 \N 2012-08-24 14:22:09.448 \N \N 2 3 196 4 1612 -820 \N 2012-08-24 14:22:09.533 \N \N 2 3 196 4 1613 -820 \N 2012-08-24 14:22:09.55 \N \N 2 3 196 4 1614 -820 \N 2012-08-24 14:22:11.828 \N \N 2 3 196 4 1615 -820 \N 2012-08-24 14:22:21.834 \N \N 2 3 196 4 1616 -820 \N 2012-08-24 14:22:22.35 \N \N 2 3 196 4 1617 -820 \N 2012-08-24 14:22:22.465 \N \N 2 3 196 4 1618 -820 \N 2012-08-24 14:22:22.915 \N \N 2 3 196 4 1619 -820 \N 2012-08-24 14:22:22.981 \N \N 2 3 196 4 1620 -820 \N 2012-08-24 14:22:23.1 \N \N 2 3 196 4 1621 -820 \N 2012-08-24 14:22:23.122 \N \N 2 3 196 4 1622 -820 \N 2012-08-24 14:22:23.192 \N \N 2 3 196 4 1623 -820 \N 2012-08-24 14:22:23.206 \N \N 2 3 196 4 1624 -820 \N 2012-08-24 14:22:23.236 \N \N 2 3 196 4 1625 -820 \N 2012-08-24 14:22:23.257 \N \N 2 3 196 4 1626 -820 \N 2012-08-24 14:22:23.27 \N \N 2 3 196 4 1627 -820 \N 2012-08-24 14:22:23.426 \N \N 2 3 196 4 1628 -820 \N 2012-08-24 14:22:23.437 \N \N 2 3 196 4 1629 -820 \N 2012-08-24 14:22:23.453 \N \N 2 3 196 4 1630 -820 \N 2012-08-24 14:22:23.482 \N \N 2 3 196 4 1631 -820 \N 2012-08-24 14:22:23.496 \N \N 2 3 196 4 1632 -820 \N 2012-08-24 14:22:23.511 \N \N 2 3 196 4 1633 -820 \N 2012-08-24 14:22:39.415 \N \N 0 0 2 9 1634 -820 \N 2012-08-24 14:22:39.459 \N \N 1 2 197 4 1635 -820 \N 2012-08-24 14:22:39.484 \N \N 0 0 2 9 1636 -820 \N 2012-08-24 14:22:39.524 \N \N 2 3 198 4 1637 -820 \N 2012-08-24 14:23:02.658 \N \N 2 3 196 4 1638 -820 \N 2012-08-24 14:23:02.944 \N \N 2 3 196 4 1639 -820 \N 2012-08-24 14:23:04.314 \N \N 2 3 196 4 1640 -820 \N 2012-08-24 14:23:05.167 \N \N 2 3 196 4 1641 -820 \N 2012-08-24 14:23:06.728 \N \N 2 3 196 4 1642 -820 \N 2012-08-24 14:23:07.256 \N \N 2 3 196 4 1643 -820 \N 2012-08-24 14:23:20.808 \N \N 2 3 198 4 1644 -820 \N 2012-08-24 14:23:20.809 \N \N 2 3 198 4 1645 -820 \N 2012-08-24 14:23:20.814 \N \N 2 3 198 4 1646 -820 \N 2012-08-24 14:23:20.839 \N \N 2 3 198 4 1647 -820 \N 2012-08-24 14:23:29.767 \N \N 2 3 198 4 1648 -820 \N 2012-08-24 14:23:33.595 \N \N 2 3 198 4 1649 -820 \N 2012-08-24 14:23:33.658 \N \N 2 3 198 4 1650 -820 \N 2012-08-24 14:23:33.683 \N \N 2 3 198 4 1651 -820 \N 2012-08-24 14:23:33.7 \N \N 2 3 198 4 1652 -820 \N 2012-08-24 14:23:33.718 \N \N 2 3 198 4 1653 -820 \N 2012-08-24 14:23:33.796 \N \N 2 3 198 4 1654 -820 \N 2012-08-24 14:23:33.819 \N \N 2 3 198 4 1655 -820 \N 2012-08-24 14:23:33.835 \N \N 2 3 198 4 1656 -820 \N 2012-08-24 14:23:33.851 \N \N 2 3 198 4 1657 -820 \N 2012-08-24 14:23:33.867 \N \N 2 3 198 4 1658 -820 \N 2012-08-24 14:23:33.909 \N \N 2 3 198 4 1659 -820 \N 2012-08-24 14:23:33.952 \N \N 2 3 198 4 1660 -820 \N 2012-08-24 14:23:34.001 \N \N 2 3 198 4 1661 -820 \N 2012-08-24 14:23:34.034 \N \N 2 3 198 4 1662 -820 \N 2012-08-24 14:23:34.102 \N \N 2 3 198 4 1663 -820 \N 2012-08-24 14:23:34.119 \N \N 2 3 198 4 1664 -820 \N 2012-08-24 14:23:34.135 \N \N 2 3 198 4 1665 -820 \N 2012-08-24 14:23:34.15 \N \N 2 3 198 4 1666 -820 \N 2012-08-24 14:23:34.167 \N \N 2 3 198 4 1667 -820 \N 2012-08-24 14:23:34.191 \N \N 2 3 198 4 1668 -820 \N 2012-08-24 14:23:34.221 \N \N 2 3 198 4 1669 -820 \N 2012-08-24 14:23:34.241 \N \N 2 3 198 4 1670 -820 \N 2012-08-24 14:23:34.258 \N \N 2 3 198 4 1671 -820 \N 2012-08-24 14:23:34.323 \N \N 2 3 198 4 1672 -820 \N 2012-08-24 14:23:34.344 \N \N 2 3 198 4 1673 -820 \N 2012-08-24 14:23:34.36 \N \N 2 3 198 4 1674 -820 \N 2012-08-24 14:23:34.376 \N \N 2 3 198 4 1675 -820 \N 2012-08-24 14:23:34.393 \N \N 2 3 198 4 1676 -820 \N 2012-08-24 14:23:34.411 \N \N 2 3 198 4 1677 -820 \N 2012-08-24 14:23:34.428 \N \N 2 3 198 4 1678 -820 \N 2012-08-24 14:23:34.441 \N \N 2 3 198 4 1679 -820 \N 2012-08-24 14:23:34.465 \N \N 2 3 198 4 1680 -820 \N 2012-08-24 14:23:34.484 \N \N 2 3 198 4 1681 -820 \N 2012-08-24 14:23:34.5 \N \N 2 3 198 4 1682 -820 \N 2012-08-24 14:23:34.523 \N \N 2 3 198 4 1683 -820 \N 2012-08-24 14:23:34.543 \N \N 2 3 198 4 1684 -820 \N 2012-08-24 14:23:34.558 \N \N 2 3 198 4 1685 -820 \N 2012-08-24 14:23:34.581 \N \N 2 3 198 4 1686 -820 \N 2012-08-24 14:23:34.601 \N \N 2 3 198 4 1687 -820 \N 2012-08-24 14:23:34.616 \N \N 2 3 198 4 1688 -820 \N 2012-08-24 14:23:34.641 \N \N 2 3 198 4 1689 -820 \N 2012-08-24 14:23:34.659 \N \N 2 3 198 4 1690 -820 \N 2012-08-24 14:23:34.675 \N \N 2 3 198 4 1691 -820 \N 2012-08-24 14:23:34.702 \N \N 2 3 198 4 1692 -820 \N 2012-08-24 14:23:34.718 \N \N 2 3 198 4 1693 -820 \N 2012-08-24 14:23:34.733 \N \N 2 3 198 4 1694 -820 \N 2012-08-24 14:23:34.757 \N \N 2 3 198 4 1695 -820 \N 2012-08-24 14:23:34.857 \N \N 2 3 198 4 1696 -820 \N 2012-08-24 14:23:34.929 \N \N 2 3 198 4 1697 -820 \N 2012-08-24 14:23:35.096 \N \N 2 3 198 4 1698 -820 \N 2012-08-24 14:24:10.758 \N \N 2 3 198 4 1699 -820 \N 2012-08-24 14:24:10.759 \N \N 2 3 198 4 1700 -820 \N 2012-08-24 14:24:10.759 \N \N 2 3 198 4 1701 -820 \N 2012-08-24 14:24:10.762 \N \N 2 3 198 4 1702 -820 \N 2012-08-24 14:24:54.839 \N \N 2 3 198 4 1703 -820 \N 2012-08-24 14:24:54.842 \N \N 2 3 198 4 1704 -820 \N 2012-08-24 14:24:54.842 \N \N 2 3 198 4 1705 -820 \N 2012-08-24 14:24:54.845 \N \N 2 3 198 4 1706 -820 \N 2012-08-24 14:24:54.863 \N \N 2 3 198 4 1707 -820 \N 2012-08-24 14:24:54.987 \N \N 2 3 198 4 1708 -820 \N 2012-08-24 14:25:11.125 \N \N 2 3 198 4 1709 -820 \N 2012-08-24 14:25:11.131 \N \N 2 3 198 4 1710 -820 \N 2012-08-24 14:25:11.133 \N \N 2 3 198 4 1711 -820 \N 2012-08-24 14:25:11.134 \N \N 2 3 198 4 1712 -820 \N 2012-08-24 14:25:11.135 \N \N 2 3 198 4 1713 -820 \N 2012-08-24 14:25:12.468 \N \N 2 3 198 4 1714 -820 \N 2012-08-24 14:25:13.278 \N \N 2 3 198 4 1715 -820 \N 2012-08-24 14:25:13.764 \N \N 2 3 198 4 1716 -820 \N 2012-08-24 14:25:14.731 \N \N 2 3 198 4 1717 -820 \N 2012-08-24 14:25:15.293 \N \N 2 3 198 4 1718 -820 \N 2012-08-24 14:25:15.795 \N \N 2 3 198 4 1719 -820 \N 2012-08-24 14:25:16.253 \N \N 2 3 198 4 1720 -820 \N 2012-08-24 14:25:38.125 \N \N 2 3 196 4 1721 -820 \N 2012-08-24 14:25:39.944 \N \N 2 3 196 4 1722 -820 \N 2012-08-24 14:25:50.313 \N \N 2 3 196 4 1723 -820 \N 2012-08-24 14:32:02.623 \N \N 0 0 2 9 1724 -820 \N 2012-08-24 14:32:02.703 \N \N 1 2 199 4 1725 -820 \N 2012-08-24 14:32:02.734 \N \N 0 0 2 9 1726 -820 \N 2012-08-24 14:32:02.763 \N \N 2 3 200 4 1727 -820 \N 2012-08-24 14:32:08.998 \N \N 2 3 200 4 1728 -820 \N 2012-08-24 14:32:09 \N \N 2 3 200 4 1730 -820 \N 2012-08-24 14:32:09.005 \N \N 2 3 200 4 1729 -820 \N 2012-08-24 14:32:09.004 \N \N 2 3 200 4 1731 -820 \N 2012-08-24 14:32:10.039 \N \N 2 3 200 4 1732 -820 \N 2012-08-24 14:32:13.721 \N \N 2 3 200 4 1733 -820 \N 2012-08-24 14:32:13.972 \N \N 2 3 200 4 1734 -820 \N 2012-08-24 14:32:14.286 \N \N 2 3 200 4 1735 -820 \N 2012-08-24 14:32:14.346 \N \N 2 3 200 4 1736 -820 \N 2012-08-24 14:32:14.461 \N \N 2 3 200 4 1737 -820 \N 2012-08-24 14:32:49.162 \N \N 2 3 200 4 1738 -820 \N 2012-08-24 14:32:49.209 \N \N 2 3 200 4 1739 -820 \N 2012-08-24 14:32:49.323 \N \N 2 3 200 4 1740 -820 \N 2012-08-24 14:44:18.063 \N \N 0 0 2 9 1741 -820 \N 2012-08-24 14:44:18.13 \N \N 2 3 201 4 1742 -820 \N 2012-08-24 14:44:18.241 \N \N 2 3 201 4 1743 -820 \N 2012-08-24 14:44:43.031 \N \N 2 3 201 4 1744 -820 \N 2012-08-24 14:44:43.871 \N \N 2 3 201 4 1745 -820 \N 2012-08-24 14:46:41.36 \N \N 2 3 201 4 1746 -820 \N 2012-08-24 14:46:41.397 \N \N 2 3 201 4 1747 -820 \N 2012-08-24 14:47:57.04 \N \N 2 3 201 4 1748 -820 \N 2012-08-24 14:54:43.822 \N \N 2 3 200 4 1749 -820 \N 2012-08-24 14:54:55.889 \N \N 2 3 200 4 1750 -820 \N 2012-08-24 14:54:55.968 \N \N 2 3 200 4 1751 -820 \N 2012-08-24 14:54:55.996 \N \N 2 3 200 4 1752 -820 \N 2012-08-24 14:54:56.012 \N \N 2 3 200 4 1753 -820 \N 2012-08-24 14:54:56.03 \N \N 2 3 200 4 1754 -820 \N 2012-08-24 14:54:56.116 \N \N 2 3 200 4 1755 -820 \N 2012-08-24 14:54:56.141 \N \N 2 3 200 4 1756 -820 \N 2012-08-24 14:54:56.156 \N \N 2 3 200 4 1757 -820 \N 2012-08-24 14:54:56.172 \N \N 2 3 200 4 1758 -820 \N 2012-08-24 14:54:56.188 \N \N 2 3 200 4 1759 -820 \N 2012-08-24 14:54:56.211 \N \N 2 3 200 4 1760 -820 \N 2012-08-24 14:54:56.236 \N \N 2 3 200 4 1761 -820 \N 2012-08-24 14:54:56.254 \N \N 2 3 200 4 1762 -820 \N 2012-08-24 14:54:56.271 \N \N 2 3 200 4 1763 -820 \N 2012-08-24 14:54:56.339 \N \N 2 3 200 4 1764 -820 \N 2012-08-24 14:54:56.356 \N \N 2 3 200 4 1765 -820 \N 2012-08-24 14:54:56.373 \N \N 2 3 200 4 1766 -820 \N 2012-08-24 14:54:56.388 \N \N 2 3 200 4 1767 -820 \N 2012-08-24 14:54:56.405 \N \N 2 3 200 4 1768 -820 \N 2012-08-24 14:54:56.427 \N \N 2 3 200 4 1769 -820 \N 2012-08-24 14:54:56.458 \N \N 2 3 200 4 1770 -820 \N 2012-08-24 14:54:56.48 \N \N 2 3 200 4 1771 -820 \N 2012-08-24 14:54:56.495 \N \N 2 3 200 4 1772 -820 \N 2012-08-24 14:54:56.635 \N \N 2 3 200 4 1773 -820 \N 2012-08-24 14:54:56.657 \N \N 2 3 200 4 1774 -820 \N 2012-08-24 14:54:56.672 \N \N 2 3 200 4 1775 -820 \N 2012-08-24 14:54:56.689 \N \N 2 3 200 4 1776 -820 \N 2012-08-24 14:54:56.705 \N \N 2 3 200 4 1777 -820 \N 2012-08-24 14:54:56.723 \N \N 2 3 200 4 1778 -820 \N 2012-08-24 14:54:56.741 \N \N 2 3 200 4 1779 -820 \N 2012-08-24 14:54:56.762 \N \N 2 3 200 4 1780 -820 \N 2012-08-24 14:54:56.786 \N \N 2 3 200 4 1781 -820 \N 2012-08-24 14:54:56.805 \N \N 2 3 200 4 1782 -820 \N 2012-08-24 14:54:56.82 \N \N 2 3 200 4 1783 -820 \N 2012-08-24 14:54:56.843 \N \N 2 3 200 4 1784 -820 \N 2012-08-24 14:54:56.864 \N \N 2 3 200 4 1785 -820 \N 2012-08-24 14:54:56.879 \N \N 2 3 200 4 1786 -820 \N 2012-08-24 14:54:56.901 \N \N 2 3 200 4 1787 -820 \N 2012-08-24 14:54:56.922 \N \N 2 3 200 4 1788 -820 \N 2012-08-24 14:54:56.937 \N \N 2 3 200 4 1789 -820 \N 2012-08-24 14:54:56.96 \N \N 2 3 200 4 1790 -820 \N 2012-08-24 14:54:56.982 \N \N 2 3 200 4 1791 -820 \N 2012-08-24 14:54:57.004 \N \N 2 3 200 4 1792 -820 \N 2012-08-24 14:54:57.075 \N \N 2 3 200 4 1793 -820 \N 2012-08-24 14:54:57.098 \N \N 2 3 200 4 1794 -820 \N 2012-08-24 14:54:57.113 \N \N 2 3 200 4 1795 -820 \N 2012-08-24 14:54:57.135 \N \N 2 3 200 4 1796 -820 \N 2012-08-24 15:51:48.827 \N \N 2 3 200 4 1797 -820 \N 2012-08-24 15:51:48.91 \N \N 2 3 200 4 1798 -820 \N 2012-08-24 15:51:48.936 \N \N 2 3 200 4 1799 -820 \N 2012-08-24 15:51:48.954 \N \N 2 3 200 4 1800 -820 \N 2012-08-24 15:51:48.97 \N \N 2 3 200 4 1801 -820 \N 2012-08-24 15:51:49.041 \N \N 2 3 200 4 1802 -820 \N 2012-08-24 15:51:49.065 \N \N 2 3 200 4 1803 -820 \N 2012-08-24 15:51:49.08 \N \N 2 3 200 4 1804 -820 \N 2012-08-24 15:51:49.096 \N \N 2 3 200 4 1805 -820 \N 2012-08-24 15:51:49.112 \N \N 2 3 200 4 1806 -820 \N 2012-08-24 15:51:49.136 \N \N 2 3 200 4 1807 -820 \N 2012-08-24 15:51:49.162 \N \N 2 3 200 4 1808 -820 \N 2012-08-24 15:51:49.178 \N \N 2 3 200 4 1809 -820 \N 2012-08-24 15:51:49.196 \N \N 2 3 200 4 1810 -820 \N 2012-08-24 15:51:49.266 \N \N 2 3 200 4 1811 -820 \N 2012-08-24 15:51:49.306 \N \N 2 3 200 4 1812 -820 \N 2012-08-24 15:51:49.322 \N \N 2 3 200 4 1813 -820 \N 2012-08-24 15:51:49.338 \N \N 2 3 200 4 1814 -820 \N 2012-08-24 15:51:49.353 \N \N 2 3 200 4 1815 -820 \N 2012-08-24 15:51:49.376 \N \N 2 3 200 4 1816 -820 \N 2012-08-24 15:51:49.408 \N \N 2 3 200 4 1817 -820 \N 2012-08-24 15:51:49.427 \N \N 2 3 200 4 1818 -820 \N 2012-08-24 15:51:49.444 \N \N 2 3 200 4 1819 -820 \N 2012-08-24 15:51:49.509 \N \N 2 3 200 4 1820 -820 \N 2012-08-24 15:51:49.531 \N \N 2 3 200 4 1821 -820 \N 2012-08-24 15:51:49.546 \N \N 2 3 200 4 1822 -820 \N 2012-08-24 15:51:49.563 \N \N 2 3 200 4 1823 -820 \N 2012-08-24 15:51:49.579 \N \N 2 3 200 4 1824 -820 \N 2012-08-24 15:51:49.598 \N \N 2 3 200 4 1825 -820 \N 2012-08-24 15:51:49.615 \N \N 2 3 200 4 1826 -820 \N 2012-08-24 15:51:49.628 \N \N 2 3 200 4 1827 -820 \N 2012-08-24 15:51:49.651 \N \N 2 3 200 4 1828 -820 \N 2012-08-24 15:51:49.697 \N \N 2 3 200 4 1829 -820 \N 2012-08-24 15:51:49.746 \N \N 2 3 200 4 1830 -820 \N 2012-08-24 15:51:49.804 \N \N 2 3 200 4 1831 -820 \N 2012-08-24 15:51:49.847 \N \N 2 3 200 4 1832 -820 \N 2012-08-24 15:51:49.896 \N \N 2 3 200 4 1833 -820 \N 2012-08-24 15:51:49.952 \N \N 2 3 200 4 1834 -820 \N 2012-08-24 15:51:49.997 \N \N 2 3 200 4 1835 -820 \N 2012-08-24 15:51:50.045 \N \N 2 3 200 4 1836 -820 \N 2012-08-24 15:51:50.102 \N \N 2 3 200 4 1837 -820 \N 2012-08-24 15:51:50.147 \N \N 2 3 200 4 1838 -820 \N 2012-08-24 15:51:50.195 \N \N 2 3 200 4 1839 -820 \N 2012-08-24 15:51:50.251 \N \N 2 3 200 4 1840 -820 \N 2012-08-24 15:51:50.298 \N \N 2 3 200 4 1841 -820 \N 2012-08-24 15:51:50.345 \N \N 2 3 200 4 1842 -820 \N 2012-08-24 15:51:50.401 \N \N 2 3 200 4 1843 -820 \N 2012-08-24 15:52:40.577 \N \N 0 0 2 9 1844 -820 \N 2012-08-24 15:52:40.658 \N \N 2 3 202 4 1845 -820 \N 2012-08-24 15:52:40.767 \N \N 2 3 202 4 1846 -820 \N 2012-08-24 15:52:44.895 \N \N 2 3 202 4 1847 -820 \N 2012-08-24 15:52:45.887 \N \N 2 3 202 4 1848 -820 \N 2012-08-24 15:54:30.765 \N \N 2 3 200 4 1849 -820 \N 2012-08-24 15:54:32.244 \N \N 2 3 200 4 1850 -820 \N 2012-08-24 15:54:32.29 \N \N 2 3 200 4 1851 -820 \N 2012-08-24 15:54:32.408 \N \N 2 3 200 4 1852 -820 \N 2012-08-24 15:54:33.463 \N \N 2 3 200 4 1853 -820 \N 2012-08-24 15:54:33.524 \N \N 2 3 200 4 1854 -820 \N 2012-08-24 15:54:33.552 \N \N 2 3 200 4 1855 -820 \N 2012-08-24 15:54:33.568 \N \N 2 3 200 4 1856 -820 \N 2012-08-24 15:54:33.586 \N \N 2 3 200 4 1857 -820 \N 2012-08-24 15:54:33.657 \N \N 2 3 200 4 1858 -820 \N 2012-08-24 15:54:33.701 \N \N 2 3 200 4 1859 -820 \N 2012-08-24 15:54:33.75 \N \N 2 3 200 4 1860 -820 \N 2012-08-24 15:54:33.806 \N \N 2 3 200 4 1861 -820 \N 2012-08-24 15:54:33.836 \N \N 2 3 200 4 1862 -820 \N 2012-08-24 15:54:33.859 \N \N 2 3 200 4 1863 -820 \N 2012-08-24 15:54:33.886 \N \N 2 3 200 4 1864 -820 \N 2012-08-24 15:54:33.902 \N \N 2 3 200 4 1865 -820 \N 2012-08-24 15:54:33.92 \N \N 2 3 200 4 1866 -820 \N 2012-08-24 15:54:33.987 \N \N 2 3 200 4 1867 -820 \N 2012-08-24 15:54:34.007 \N \N 2 3 200 4 1868 -820 \N 2012-08-24 15:54:34.029 \N \N 2 3 200 4 1869 -820 \N 2012-08-24 15:54:34.045 \N \N 2 3 200 4 1870 -820 \N 2012-08-24 15:54:34.061 \N \N 2 3 200 4 1871 -820 \N 2012-08-24 15:54:34.085 \N \N 2 3 200 4 1872 -820 \N 2012-08-24 15:54:34.114 \N \N 2 3 200 4 1873 -820 \N 2012-08-24 15:54:34.135 \N \N 2 3 200 4 1874 -820 \N 2012-08-24 15:54:34.153 \N \N 2 3 200 4 1875 -820 \N 2012-08-24 15:54:34.217 \N \N 2 3 200 4 1876 -820 \N 2012-08-24 15:54:34.238 \N \N 2 3 200 4 1877 -820 \N 2012-08-24 15:54:34.254 \N \N 2 3 200 4 1878 -820 \N 2012-08-24 15:54:34.271 \N \N 2 3 200 4 1879 -820 \N 2012-08-24 15:54:34.287 \N \N 2 3 200 4 1880 -820 \N 2012-08-24 15:54:34.306 \N \N 2 3 200 4 1881 -820 \N 2012-08-24 15:54:34.33 \N \N 2 3 200 4 1882 -820 \N 2012-08-24 15:54:34.344 \N \N 2 3 200 4 1883 -820 \N 2012-08-24 15:54:34.367 \N \N 2 3 200 4 1884 -820 \N 2012-08-24 15:54:34.387 \N \N 2 3 200 4 1885 -820 \N 2012-08-24 15:54:34.402 \N \N 2 3 200 4 1886 -820 \N 2012-08-24 15:54:34.425 \N \N 2 3 200 4 1887 -820 \N 2012-08-24 15:54:34.446 \N \N 2 3 200 4 1888 -820 \N 2012-08-24 15:54:34.461 \N \N 2 3 200 4 1889 -820 \N 2012-08-24 15:54:34.486 \N \N 2 3 200 4 1890 -820 \N 2012-08-24 15:54:34.504 \N \N 2 3 200 4 1891 -820 \N 2012-08-24 15:54:34.518 \N \N 2 3 200 4 1892 -820 \N 2012-08-24 15:54:34.542 \N \N 2 3 200 4 1893 -820 \N 2012-08-24 15:54:34.562 \N \N 2 3 200 4 1894 -820 \N 2012-08-24 15:54:34.577 \N \N 2 3 200 4 1895 -820 \N 2012-08-24 15:54:34.6 \N \N 2 3 200 4 1896 -820 \N 2012-08-24 15:54:34.62 \N \N 2 3 200 4 1897 -820 \N 2012-08-24 15:54:34.636 \N \N 2 3 200 4 1898 -820 \N 2012-08-24 15:54:34.658 \N \N 2 3 200 4 1899 -820 \N 2012-08-24 16:13:39.674 \N \N 0 0 2 9 1900 -820 \N 2012-08-24 16:13:39.741 \N \N 2 3 203 4 1901 -820 \N 2012-08-24 16:13:39.844 \N \N 2 3 203 4 1902 -820 \N 2012-08-24 16:14:24.355 \N \N 2 3 203 4 1903 -820 \N 2012-08-24 16:14:29.915 \N \N 2 3 203 4 1904 -820 \N 2012-08-24 16:14:40.252 \N \N 2 3 203 4 1905 -820 \N 2012-08-24 16:14:40.283 \N \N 2 3 203 4 1906 -820 \N 2012-08-24 16:14:40.301 \N \N 2 3 203 4 1907 -820 \N 2012-08-24 16:14:40.326 \N \N 2 3 203 4 1908 -820 \N 2012-08-24 16:14:40.344 \N \N 2 3 203 4 1909 -820 \N 2012-08-24 16:14:41.792 \N \N 2 3 203 4 1910 -820 \N 2012-08-24 16:15:12.58 \N \N 2 3 203 4 1911 -820 \N 2012-08-24 16:15:13.205 \N \N 2 3 203 4 1912 -820 \N 2012-08-24 16:15:13.314 \N \N 2 3 203 4 1913 -820 \N 2012-08-24 16:15:13.442 \N \N 2 3 203 4 1914 -820 \N 2012-08-24 16:15:14.502 \N \N 2 3 203 4 1915 -820 \N 2012-08-24 16:15:14.546 \N \N 2 3 203 4 1916 -820 \N 2012-08-24 16:15:14.561 \N \N 2 3 203 4 1917 -820 \N 2012-08-24 16:15:14.626 \N \N 2 3 203 4 1918 -820 \N 2012-08-24 16:15:14.645 \N \N 2 3 203 4 1919 -820 \N 2012-08-24 16:15:14.657 \N \N 2 3 203 4 1920 -820 \N 2012-08-24 16:15:14.693 \N \N 2 3 203 4 1921 -820 \N 2012-08-24 16:15:14.71 \N \N 2 3 203 4 1922 -820 \N 2012-08-24 16:15:14.727 \N \N 2 3 203 4 1923 -820 \N 2012-08-24 16:15:14.749 \N \N 2 3 203 4 1924 -820 \N 2012-08-24 16:15:14.768 \N \N 2 3 203 4 1925 -820 \N 2012-08-24 16:15:15.671 \N \N 2 3 203 4 1926 -820 \N 2012-08-24 16:15:40.858 \N \N 2 3 203 4 1927 -820 \N 2012-08-24 16:15:41.404 \N \N 2 3 203 4 1928 -820 \N 2012-08-24 16:15:41.505 \N \N 2 3 203 4 1929 -820 \N 2012-08-24 16:15:41.614 \N \N 2 3 203 4 1930 -820 \N 2012-08-24 16:15:42.381 \N \N 2 3 203 4 1931 -820 \N 2012-08-24 16:15:42.431 \N \N 2 3 203 4 1932 -820 \N 2012-08-24 16:15:42.447 \N \N 2 3 203 4 1933 -820 \N 2012-08-24 16:15:42.502 \N \N 2 3 203 4 1934 -820 \N 2012-08-24 16:15:42.52 \N \N 2 3 203 4 1935 -820 \N 2012-08-24 16:15:42.536 \N \N 2 3 203 4 1936 -820 \N 2012-08-24 16:15:42.559 \N \N 2 3 203 4 1937 -820 \N 2012-08-24 16:15:42.571 \N \N 2 3 203 4 1938 -820 \N 2012-08-24 16:15:42.588 \N \N 2 3 203 4 1939 -820 \N 2012-08-24 16:15:42.609 \N \N 2 3 203 4 1940 -820 \N 2012-08-24 16:15:42.622 \N \N 2 3 203 4 1941 -820 \N 2012-08-24 16:15:43.684 \N \N 2 3 203 4 1942 -820 \N 2012-08-24 16:16:13.154 \N \N 2 3 203 4 1943 -820 \N 2012-08-24 16:16:13.767 \N \N 2 3 203 4 1944 -820 \N 2012-08-24 16:16:13.862 \N \N 2 3 203 4 1945 -820 \N 2012-08-24 16:16:14.004 \N \N 2 3 203 4 1946 -820 \N 2012-08-24 16:16:14.887 \N \N 2 3 203 4 1947 -820 \N 2012-08-24 16:16:14.93 \N \N 2 3 203 4 1948 -820 \N 2012-08-24 16:16:14.945 \N \N 2 3 203 4 1949 -820 \N 2012-08-24 16:16:15.003 \N \N 2 3 203 4 1950 -820 \N 2012-08-24 16:16:15.018 \N \N 2 3 203 4 1951 -820 \N 2012-08-24 16:16:15.034 \N \N 2 3 203 4 1952 -820 \N 2012-08-24 16:16:15.057 \N \N 2 3 203 4 1953 -820 \N 2012-08-24 16:16:15.07 \N \N 2 3 203 4 1954 -820 \N 2012-08-24 16:16:15.087 \N \N 2 3 203 4 1955 -820 \N 2012-08-24 16:16:15.109 \N \N 2 3 203 4 1956 -820 \N 2012-08-24 16:16:15.121 \N \N 2 3 203 4 1957 -820 \N 2012-08-24 16:16:16.235 \N \N 2 3 203 4 1958 -820 \N 2012-08-24 16:16:18.783 \N \N 2 3 200 4 1959 -820 \N 2012-08-24 16:16:18.847 \N \N 2 3 200 4 1960 -820 \N 2012-08-24 16:16:18.9 \N \N 2 3 200 4 1961 -820 \N 2012-08-24 16:16:18.918 \N \N 2 3 200 4 1962 -820 \N 2012-08-24 16:16:18.934 \N \N 2 3 200 4 1963 -820 \N 2012-08-24 16:16:19.002 \N \N 2 3 200 4 1964 -820 \N 2012-08-24 16:16:19.02 \N \N 2 3 200 4 1965 -820 \N 2012-08-24 16:16:19.036 \N \N 2 3 200 4 1966 -820 \N 2012-08-24 16:16:19.054 \N \N 2 3 200 4 1967 -820 \N 2012-08-24 16:16:19.076 \N \N 2 3 200 4 1968 -820 \N 2012-08-24 16:16:19.099 \N \N 2 3 200 4 1969 -820 \N 2012-08-24 16:16:19.127 \N \N 2 3 200 4 1970 -820 \N 2012-08-24 16:16:19.142 \N \N 2 3 200 4 1971 -820 \N 2012-08-24 16:16:19.164 \N \N 2 3 200 4 1972 -820 \N 2012-08-24 16:16:19.242 \N \N 2 3 200 4 1973 -820 \N 2012-08-24 16:16:19.262 \N \N 2 3 200 4 1974 -820 \N 2012-08-24 16:16:19.278 \N \N 2 3 200 4 1975 -820 \N 2012-08-24 16:16:19.293 \N \N 2 3 200 4 1976 -820 \N 2012-08-24 16:16:19.31 \N \N 2 3 200 4 1977 -820 \N 2012-08-24 16:16:19.332 \N \N 2 3 200 4 1978 -820 \N 2012-08-24 16:16:19.362 \N \N 2 3 200 4 1979 -820 \N 2012-08-24 16:16:19.384 \N \N 2 3 200 4 1980 -820 \N 2012-08-24 16:16:19.401 \N \N 2 3 200 4 1981 -820 \N 2012-08-24 16:16:19.47 \N \N 2 3 200 4 1982 -820 \N 2012-08-24 16:16:19.486 \N \N 2 3 200 4 1983 -820 \N 2012-08-24 16:16:19.502 \N \N 2 3 200 4 1984 -820 \N 2012-08-24 16:16:19.522 \N \N 2 3 200 4 1985 -820 \N 2012-08-24 16:16:19.547 \N \N 2 3 200 4 1986 -820 \N 2012-08-24 16:16:19.574 \N \N 2 3 200 4 1987 -820 \N 2012-08-24 16:16:19.599 \N \N 2 3 200 4 1988 -820 \N 2012-08-24 16:16:19.62 \N \N 2 3 200 4 1989 -820 \N 2012-08-24 16:16:19.643 \N \N 2 3 200 4 1990 -820 \N 2012-08-24 16:16:19.662 \N \N 2 3 200 4 1991 -820 \N 2012-08-24 16:16:19.684 \N \N 2 3 200 4 1992 -820 \N 2012-08-24 16:16:19.71 \N \N 2 3 200 4 1993 -820 \N 2012-08-24 16:16:19.728 \N \N 2 3 200 4 1994 -820 \N 2012-08-24 16:16:19.742 \N \N 2 3 200 4 1995 -820 \N 2012-08-24 16:16:19.766 \N \N 2 3 200 4 1996 -820 \N 2012-08-24 16:16:19.785 \N \N 2 3 200 4 1997 -820 \N 2012-08-24 16:16:19.8 \N \N 2 3 200 4 1998 -820 \N 2012-08-24 16:16:19.824 \N \N 2 3 200 4 1999 -820 \N 2012-08-24 16:16:19.843 \N \N 2 3 200 4 2000 -820 \N 2012-08-24 16:16:19.859 \N \N 2 3 200 4 2001 -820 \N 2012-08-24 16:16:19.882 \N \N 2 3 200 4 2002 -820 \N 2012-08-24 16:16:19.902 \N \N 2 3 200 4 2003 -820 \N 2012-08-24 16:16:19.916 \N \N 2 3 200 4 2004 -820 \N 2012-08-24 16:16:19.94 \N \N 2 3 200 4 2005 -820 \N 2012-08-24 16:16:49.411 \N \N 2 3 203 4 2006 -820 \N 2012-08-24 16:16:50.118 \N \N 2 3 203 4 2007 -820 \N 2012-08-24 16:16:50.224 \N \N 2 3 203 4 2008 -820 \N 2012-08-24 16:16:50.332 \N \N 2 3 203 4 2009 -820 \N 2012-08-24 16:16:51.348 \N \N 2 3 203 4 2010 -820 \N 2012-08-24 16:16:51.391 \N \N 2 3 203 4 2011 -820 \N 2012-08-24 16:16:51.407 \N \N 2 3 203 4 2012 -820 \N 2012-08-24 16:16:51.456 \N \N 2 3 203 4 2013 -820 \N 2012-08-24 16:16:51.473 \N \N 2 3 203 4 2014 -820 \N 2012-08-24 16:16:51.5 \N \N 2 3 203 4 2015 -820 \N 2012-08-24 16:16:51.513 \N \N 2 3 203 4 2016 -820 \N 2012-08-24 16:16:51.529 \N \N 2 3 203 4 2017 -820 \N 2012-08-24 16:17:01.621 \N \N 2 3 203 4 2018 -820 \N 2012-08-24 16:17:08.134 \N \N 2 3 200 4 2019 -820 \N 2012-08-24 16:17:08.135 \N \N 2 3 200 4 2020 -820 \N 2012-08-24 16:17:08.144 \N \N 2 3 200 4 2021 -820 \N 2012-08-24 16:17:08.204 \N \N 2 3 200 4 2022 -820 \N 2012-08-24 16:17:09.472 \N \N 2 3 200 4 2023 -820 \N 2012-08-24 16:17:13.214 \N \N 2 3 200 4 2024 -820 \N 2012-08-24 16:17:15.36 \N \N 2 3 200 4 2025 -820 \N 2012-08-24 16:17:17.018 \N \N 2 3 200 4 2026 -820 \N 2012-08-24 16:17:18.746 \N \N 2 3 200 4 2027 -820 \N 2012-08-24 16:17:20.672 \N \N 2 3 200 4 2028 -820 \N 2012-08-24 16:17:21.747 \N \N 2 3 200 4 2029 -820 \N 2012-08-24 16:17:22.01 \N \N 2 3 200 4 2030 -820 \N 2012-08-24 16:17:22.457 \N \N 2 3 200 4 2031 -820 \N 2012-08-24 16:17:22.515 \N \N 2 3 200 4 2032 -820 \N 2012-08-24 16:17:22.63 \N \N 2 3 200 4 2033 -820 \N 2012-08-24 16:17:46.787 \N \N 2 3 200 4 2034 -820 \N 2012-08-24 16:17:47.287 \N \N 2 3 200 4 2035 -820 \N 2012-08-24 16:17:47.463 \N \N 2 3 200 4 2036 -820 \N 2012-08-24 16:17:47.622 \N \N 2 3 200 4 2037 -820 \N 2012-08-24 16:17:47.795 \N \N 2 3 200 4 2038 -820 \N 2012-08-24 16:17:47.958 \N \N 2 3 200 4 2039 -820 \N 2012-08-24 16:17:48.124 \N \N 2 3 200 4 2040 -820 \N 2012-08-24 16:17:48.291 \N \N 2 3 200 4 2041 -820 \N 2012-08-24 16:17:48.463 \N \N 2 3 200 4 2042 -820 \N 2012-08-24 16:17:48.629 \N \N 2 3 200 4 2043 -820 \N 2012-08-24 16:17:48.816 \N \N 2 3 200 4 2044 -820 \N 2012-08-24 16:17:55.711 \N \N 2 3 203 4 2045 -820 \N 2012-08-24 16:17:56.584 \N \N 2 3 203 4 2046 -820 \N 2012-08-24 16:18:00.476 \N \N 2 3 203 4 2047 -820 \N 2012-08-24 16:18:00.483 \N \N 2 3 203 4 2048 -820 \N 2012-08-24 16:18:00.743 \N \N 2 3 203 4 2049 -820 \N 2012-08-24 16:18:00.837 \N \N 2 3 203 4 2050 -820 \N 2012-08-24 16:18:00.938 \N \N 2 3 203 4 2051 -820 \N 2012-08-24 16:18:01.036 \N \N 2 3 203 4 2052 -820 \N 2012-08-24 16:18:01.077 \N \N 2 3 203 4 2053 -820 \N 2012-08-24 16:18:01.106 \N \N 2 3 203 4 2054 -820 \N 2012-08-24 16:18:01.134 \N \N 2 3 203 4 2055 -820 \N 2012-08-24 16:20:32.338 \N \N 2 3 203 4 2056 -820 \N 2012-08-24 16:20:50.693 \N \N 2 3 203 4 2057 -820 \N 2012-08-24 16:20:50.714 \N \N 2 3 203 4 2058 -820 \N 2012-08-24 16:20:50.73 \N \N 2 3 203 4 2059 -820 \N 2012-08-24 16:20:50.774 \N \N 2 3 203 4 2060 -820 \N 2012-08-24 16:20:50.79 \N \N 2 3 203 4 2061 -820 \N 2012-08-24 16:20:51.142 \N \N 2 3 203 4 2062 -820 \N 2012-08-24 16:20:57.326 \N \N 2 3 203 4 2063 -820 \N 2012-08-24 16:20:57.904 \N \N 2 3 203 4 2064 -820 \N 2012-08-24 16:20:58.001 \N \N 2 3 203 4 2065 -820 \N 2012-08-24 16:20:58.068 \N \N 2 3 203 4 2066 -820 \N 2012-08-24 16:20:59.036 \N \N 2 3 203 4 2067 -820 \N 2012-08-24 16:20:59.08 \N \N 2 3 203 4 2068 -820 \N 2012-08-24 16:20:59.093 \N \N 2 3 203 4 2069 -820 \N 2012-08-24 16:20:59.139 \N \N 2 3 203 4 2070 -820 \N 2012-08-24 16:20:59.152 \N \N 2 3 203 4 2071 -820 \N 2012-08-24 16:20:59.179 \N \N 2 3 203 4 2072 -820 \N 2012-08-24 16:20:59.193 \N \N 2 3 203 4 2073 -820 \N 2012-08-24 16:20:59.208 \N \N 2 3 203 4 2074 -820 \N 2012-08-24 16:21:54.619 \N \N 2 3 203 4 2075 -820 \N 2012-08-24 16:21:54.649 \N \N 2 3 203 4 2076 -820 \N 2012-08-24 16:21:54.699 \N \N 2 3 203 4 2077 -820 \N 2012-08-24 16:21:54.771 \N \N 2 3 203 4 2078 -820 \N 2012-08-24 16:21:54.808 \N \N 2 3 203 4 2079 -820 \N 2012-08-24 16:21:55.23 \N \N 2 3 203 4 2080 -820 \N 2012-08-24 16:22:01.23 \N \N 2 3 203 4 2081 -820 \N 2012-08-24 16:22:01.779 \N \N 2 3 203 4 2082 -820 \N 2012-08-24 16:22:01.874 \N \N 2 3 203 4 2083 -820 \N 2012-08-24 16:22:01.942 \N \N 2 3 203 4 2084 -820 \N 2012-08-24 16:22:02.851 \N \N 2 3 203 4 2085 -820 \N 2012-08-24 16:22:02.894 \N \N 2 3 203 4 2086 -820 \N 2012-08-24 16:22:02.908 \N \N 2 3 203 4 2087 -820 \N 2012-08-24 16:22:02.951 \N \N 2 3 203 4 2088 -820 \N 2012-08-24 16:22:02.966 \N \N 2 3 203 4 2089 -820 \N 2012-08-24 16:22:02.992 \N \N 2 3 203 4 2090 -820 \N 2012-08-24 16:22:03.008 \N \N 2 3 203 4 2091 -820 \N 2012-08-24 16:22:03.022 \N \N 2 3 203 4 2092 -820 \N 2012-08-24 16:22:39.405 \N \N 2 3 203 4 2093 -820 \N 2012-08-24 16:22:39.436 \N \N 2 3 203 4 2094 -820 \N 2012-08-24 16:22:39.452 \N \N 2 3 203 4 2095 -820 \N 2012-08-24 16:22:39.496 \N \N 2 3 203 4 2096 -820 \N 2012-08-24 16:22:39.511 \N \N 2 3 203 4 2097 -820 \N 2012-08-24 16:22:39.839 \N \N 2 3 203 4 2098 -820 \N 2012-08-24 16:22:45.428 \N \N 2 3 203 4 2099 -820 \N 2012-08-24 16:22:45.889 \N \N 2 3 203 4 2100 -820 \N 2012-08-24 16:22:45.986 \N \N 2 3 203 4 2101 -820 \N 2012-08-24 16:22:46.053 \N \N 2 3 203 4 2102 -820 \N 2012-08-24 16:22:46.869 \N \N 2 3 203 4 2103 -820 \N 2012-08-24 16:22:46.914 \N \N 2 3 203 4 2104 -820 \N 2012-08-24 16:22:46.932 \N \N 2 3 203 4 2105 -820 \N 2012-08-24 16:22:46.969 \N \N 2 3 203 4 2106 -820 \N 2012-08-24 16:22:46.986 \N \N 2 3 203 4 2107 -820 \N 2012-08-24 16:22:47.011 \N \N 2 3 203 4 2108 -820 \N 2012-08-24 16:22:47.026 \N \N 2 3 203 4 2109 -820 \N 2012-08-24 16:22:47.042 \N \N 2 3 203 4 2110 -820 \N 2012-08-24 16:22:49.462 \N \N 2 3 200 4 2111 -820 \N 2012-08-24 16:22:49.463 \N \N 2 3 200 4 2112 -820 \N 2012-08-24 16:22:49.472 \N \N 2 3 200 4 2113 -820 \N 2012-08-24 16:22:50.836 \N \N 2 3 200 4 2114 -820 \N 2012-08-24 16:22:51.279 \N \N 2 3 200 4 2115 -820 \N 2012-08-24 16:22:51.332 \N \N 2 3 200 4 2116 -820 \N 2012-08-24 16:22:51.441 \N \N 2 3 200 4 2117 -820 \N 2012-08-24 16:22:58.029 \N \N 2 3 200 4 2118 -820 \N 2012-08-24 16:22:58.033 \N \N 2 3 200 4 2119 -820 \N 2012-08-24 16:22:58.034 \N \N 2 3 200 4 2120 -820 \N 2012-08-24 16:22:58.037 \N \N 2 3 200 4 2121 -820 \N 2012-08-24 16:22:59.509 \N \N 2 3 200 4 2122 -820 \N 2012-08-24 16:22:59.893 \N \N 2 3 200 4 2123 -820 \N 2012-08-24 16:23:00.35 \N \N 2 3 200 4 2124 -820 \N 2012-08-24 16:23:00.395 \N \N 2 3 200 4 2125 -820 \N 2012-08-24 16:23:00.498 \N \N 2 3 200 4 2126 -820 \N 2012-08-24 16:23:10.059 \N \N 2 3 200 4 2127 -820 \N 2012-08-24 16:23:11.035 \N \N 2 3 200 4 2128 -820 \N 2012-08-24 16:23:17.945 \N \N 2 3 200 4 2129 -820 \N 2012-08-24 16:23:26.053 \N \N 2 3 200 4 2130 -820 \N 2012-08-24 16:23:29.155 \N \N 2 3 200 4 2131 -820 \N 2012-08-24 16:23:31.815 \N \N 2 3 200 4 2132 -820 \N 2012-08-24 16:23:37.748 \N \N 2 3 200 4 2133 -820 \N 2012-08-24 16:23:38.641 \N \N 2 3 200 4 2134 -820 \N 2012-08-24 16:23:39.184 \N \N 2 3 200 4 2135 -820 \N 2012-08-24 16:23:39.948 \N \N 2 3 200 4 2136 -820 \N 2012-08-24 16:23:40.176 \N \N 2 3 200 4 2137 -820 \N 2012-08-24 16:23:40.639 \N \N 2 3 200 4 2138 -820 \N 2012-08-24 16:23:40.687 \N \N 2 3 200 4 2139 -820 \N 2012-08-24 16:23:40.794 \N \N 2 3 200 4 2140 -820 \N 2012-08-24 16:23:48.717 \N \N 2 3 200 4 2141 -820 \N 2012-08-24 16:23:48.74 \N \N 2 3 200 4 2142 -820 \N 2012-08-24 16:23:48.775 \N \N 2 3 200 4 2143 -820 \N 2012-08-24 16:23:48.813 \N \N 2 3 200 4 2144 -820 \N 2012-08-24 16:23:48.83 \N \N 2 3 200 4 2145 -820 \N 2012-08-24 16:23:54.307 \N \N 2 3 200 4 2146 -820 \N 2012-08-24 16:23:55.621 \N \N 2 3 200 4 2147 -820 \N 2012-08-24 16:23:55.863 \N \N 2 3 200 4 2148 -820 \N 2012-08-24 16:23:56.312 \N \N 2 3 200 4 2149 -820 \N 2012-08-24 16:23:56.363 \N \N 2 3 200 4 2150 -820 \N 2012-08-24 16:23:56.471 \N \N 2 3 200 4 2151 -820 \N 2012-08-24 16:24:01.034 \N \N 2 3 200 4 2152 -820 \N 2012-08-24 16:24:01.097 \N \N 2 3 200 4 2153 -820 \N 2012-08-24 16:24:01.218 \N \N 2 3 200 4 2154 -820 \N 2012-08-24 16:24:03.221 \N \N 2 3 200 4 2155 -820 \N 2012-08-24 16:24:03.469 \N \N 2 3 200 4 2156 -820 \N 2012-08-24 16:24:03.892 \N \N 2 3 200 4 2157 -820 \N 2012-08-24 16:24:03.953 \N \N 2 3 200 4 2158 -820 \N 2012-08-24 16:24:04.068 \N \N 2 3 200 4 2160 -820 \N 2012-08-24 16:24:12.206 \N \N 2 3 200 4 2161 -820 \N 2012-08-24 16:24:12.247 \N \N 2 3 200 4 2162 -820 \N 2012-08-24 16:24:12.301 \N \N 2 3 200 4 2163 -820 \N 2012-08-24 16:24:12.316 \N \N 2 3 200 4 2164 -820 \N 2012-08-24 16:24:15.291 \N \N 2 3 200 4 2165 -820 \N 2012-08-24 16:24:15.522 \N \N 2 3 200 4 2166 -820 \N 2012-08-24 16:24:15.982 \N \N 2 3 200 4 2167 -820 \N 2012-08-24 16:24:16.02 \N \N 2 3 200 4 2168 -820 \N 2012-08-24 16:24:16.128 \N \N 2 3 200 4 2169 -820 \N 2012-08-24 16:24:23.741 \N \N 2 3 200 4 2171 -820 \N 2012-08-24 16:24:23.818 \N \N 2 3 200 4 2172 -820 \N 2012-08-24 16:24:23.872 \N \N 2 3 200 4 2173 -820 \N 2012-08-24 16:24:23.921 \N \N 2 3 200 4 2174 -820 \N 2012-08-24 16:24:30.679 \N \N 2 3 200 4 2177 -820 \N 2012-08-24 16:24:32.413 \N \N 2 3 200 4 2178 -820 \N 2012-08-24 16:24:32.65 \N \N 2 3 200 4 2179 -820 \N 2012-08-24 16:24:33.166 \N \N 2 3 200 4 2180 -820 \N 2012-08-24 16:24:33.214 \N \N 2 3 200 4 2181 -820 \N 2012-08-24 16:24:33.353 \N \N 2 3 200 4 2182 -820 \N 2012-08-24 16:24:36.966 \N \N 2 3 200 4 2183 -820 \N 2012-08-24 16:24:38.294 \N \N 2 3 200 4 2184 -820 \N 2012-08-24 16:24:39.176 \N \N 2 3 200 4 2185 -820 \N 2012-08-24 16:24:39.676 \N \N 2 3 200 4 2186 -820 \N 2012-08-24 16:24:39.852 \N \N 2 3 200 4 2187 -820 \N 2012-08-24 16:24:40.01 \N \N 2 3 200 4 2188 -820 \N 2012-08-24 16:24:40.167 \N \N 2 3 200 4 2189 -820 \N 2012-08-24 16:24:40.372 \N \N 2 3 200 4 2190 -820 \N 2012-08-24 16:24:40.542 \N \N 2 3 200 4 2191 -820 \N 2012-08-24 16:24:40.849 \N \N 2 3 200 4 2192 -820 \N 2012-08-24 16:24:41.033 \N \N 2 3 200 4 2193 -820 \N 2012-08-24 16:24:41.303 \N \N 2 3 200 4 2194 -820 \N 2012-08-24 16:24:41.485 \N \N 2 3 200 4 2195 -820 \N 2012-08-24 16:24:42.849 \N \N 2 3 200 4 2196 -820 \N 2012-08-24 16:24:43.438 \N \N 2 3 200 4 2197 -820 \N 2012-08-24 16:24:43.62 \N \N 2 3 200 4 2198 -820 \N 2012-08-24 16:24:43.801 \N \N 2 3 200 4 2199 -820 \N 2012-08-24 16:24:43.97 \N \N 2 3 200 4 2200 -820 \N 2012-08-24 16:24:44.146 \N \N 2 3 200 4 2201 -820 \N 2012-08-24 16:24:44.315 \N \N 2 3 200 4 2202 -820 \N 2012-08-24 16:24:44.476 \N \N 2 3 200 4 2203 -820 \N 2012-08-24 16:24:44.64 \N \N 2 3 200 4 2204 -820 \N 2012-08-24 16:24:44.826 \N \N 2 3 200 4 2205 -820 \N 2012-08-24 16:24:44.997 \N \N 2 3 200 4 2206 -820 \N 2012-08-24 16:24:45.161 \N \N 2 3 200 4 2207 -820 \N 2012-08-24 16:24:45.33 \N \N 2 3 200 4 2208 -820 \N 2012-08-24 16:24:45.491 \N \N 2 3 200 4 2209 -820 \N 2012-08-24 16:24:45.664 \N \N 2 3 200 4 2210 -820 \N 2012-08-24 16:24:45.838 \N \N 2 3 200 4 2211 -820 \N 2012-08-24 16:24:46.021 \N \N 2 3 200 4 2212 -820 \N 2012-08-24 16:24:46.208 \N \N 2 3 200 4 2213 -820 \N 2012-08-24 16:24:46.372 \N \N 2 3 200 4 2214 -820 \N 2012-08-24 16:24:46.539 \N \N 2 3 200 4 2215 -820 \N 2012-08-24 16:24:46.689 \N \N 2 3 200 4 2216 -820 \N 2012-08-24 16:24:46.853 \N \N 2 3 200 4 2217 -820 \N 2012-08-24 16:24:47.004 \N \N 2 3 200 4 2218 -820 \N 2012-08-24 16:24:47.158 \N \N 2 3 200 4 2219 -820 \N 2012-08-24 16:24:47.311 \N \N 2 3 200 4 2220 -820 \N 2012-08-24 16:24:47.473 \N \N 2 3 200 4 2221 -820 \N 2012-08-24 16:24:47.622 \N \N 2 3 200 4 2222 -820 \N 2012-08-24 16:24:52.602 \N \N 2 3 200 4 2223 -820 \N 2012-08-24 16:24:54.629 \N \N 2 3 200 4 2224 -820 \N 2012-08-24 16:25:00.375 \N \N 2 3 200 4 2225 -820 \N 2012-08-24 16:25:00.875 \N \N 2 3 200 4 2226 -820 \N 2012-08-24 16:25:01.201 \N \N 2 3 200 4 2227 -820 \N 2012-08-24 16:25:01.542 \N \N 2 3 200 4 2228 -820 \N 2012-08-24 16:25:01.871 \N \N 2 3 200 4 2229 -820 \N 2012-08-24 16:25:02.212 \N \N 2 3 200 4 2230 -820 \N 2012-08-24 16:25:02.555 \N \N 2 3 200 4 2231 -820 \N 2012-08-24 16:25:02.891 \N \N 2 3 200 4 2232 -820 \N 2012-08-24 16:25:03.246 \N \N 2 3 200 4 2233 -820 \N 2012-08-24 16:25:03.582 \N \N 2 3 200 4 2234 -820 \N 2012-08-24 16:25:03.938 \N \N 2 3 200 4 2235 -820 \N 2012-08-24 16:25:04.269 \N \N 2 3 200 4 2236 -820 \N 2012-08-24 16:25:04.598 \N \N 2 3 200 4 2237 -820 \N 2012-08-24 16:25:04.945 \N \N 2 3 200 4 2238 -820 \N 2012-08-24 16:25:05.278 \N \N 2 3 200 4 2239 -820 \N 2012-08-24 16:25:05.531 \N \N 2 3 200 4 2240 -820 \N 2012-08-24 16:26:05.139 \N \N 0 0 2 9 2241 -820 \N 2012-08-24 16:26:05.213 \N \N 2 3 204 4 2242 -820 \N 2012-08-24 16:26:05.317 \N \N 2 3 204 4 2243 -820 \N 2012-08-24 16:26:10.612 \N \N 2 3 204 4 2244 -820 \N 2012-08-24 16:26:16.009 \N \N 2 3 204 4 2159 -820 \N 2012-08-24 16:24:12.198 \N \N 2 3 200 4 2170 -820 \N 2012-08-24 16:24:23.758 \N \N 2 3 200 4 2175 -820 \N 2012-08-24 16:24:30.68 \N \N 2 3 200 4 2251 -820 \N 2012-08-24 16:26:20.857 \N \N 2 3 200 4 2256 -820 \N 2012-08-24 16:26:24.158 \N \N 2 3 200 4 2263 -820 \N 2012-08-24 16:26:25.532 \N \N 2 3 204 4 2268 -820 \N 2012-08-24 16:26:25.627 \N \N 2 3 200 4 2274 -820 \N 2012-08-24 16:26:34.989 \N \N 2 3 200 4 2283 -820 \N 2012-08-24 16:26:57.153 \N \N 2 3 200 4 2176 -820 \N 2012-08-24 16:24:30.68 \N \N 2 3 200 4 2285 -820 \N 2012-08-24 16:26:57.157 \N \N 2 3 200 4 2245 -820 \N 2012-08-24 16:26:16.032 \N \N 2 3 204 4 2246 -820 \N 2012-08-24 16:26:16.047 \N \N 2 3 204 4 2247 -820 \N 2012-08-24 16:26:16.125 \N \N 2 3 204 4 2248 -820 \N 2012-08-24 16:26:16.142 \N \N 2 3 204 4 2249 -820 \N 2012-08-24 16:26:16.665 \N \N 2 3 204 4 2250 -820 \N 2012-08-24 16:26:20.842 \N \N 2 3 200 4 2252 -820 \N 2012-08-24 16:26:20.875 \N \N 2 3 200 4 2253 -820 \N 2012-08-24 16:26:21.851 \N \N 2 3 200 4 2254 -820 \N 2012-08-24 16:26:22.298 \N \N 2 3 200 4 2255 -820 \N 2012-08-24 16:26:23.645 \N \N 2 3 204 4 2257 -820 \N 2012-08-24 16:26:24.244 \N \N 2 3 204 4 2258 -820 \N 2012-08-24 16:26:24.351 \N \N 2 3 204 4 2259 -820 \N 2012-08-24 16:26:24.419 \N \N 2 3 204 4 2260 -820 \N 2012-08-24 16:26:25.365 \N \N 2 3 204 4 2261 -820 \N 2012-08-24 16:26:25.469 \N \N 2 3 204 4 2262 -820 \N 2012-08-24 16:26:25.482 \N \N 2 3 204 4 2264 -820 \N 2012-08-24 16:26:25.549 \N \N 2 3 204 4 2265 -820 \N 2012-08-24 16:26:25.581 \N \N 2 3 204 4 2266 -820 \N 2012-08-24 16:26:25.6 \N \N 2 3 204 4 2267 -820 \N 2012-08-24 16:26:25.613 \N \N 2 3 204 4 2269 -820 \N 2012-08-24 16:26:26.201 \N \N 2 3 200 4 2270 -820 \N 2012-08-24 16:26:26.468 \N \N 2 3 200 4 2271 -820 \N 2012-08-24 16:26:26.808 \N \N 2 3 200 4 2272 -820 \N 2012-08-24 16:26:26.851 \N \N 2 3 200 4 2273 -820 \N 2012-08-24 16:26:26.951 \N \N 2 3 200 4 2275 -820 \N 2012-08-24 16:26:34.999 \N \N 2 3 200 4 2276 -820 \N 2012-08-24 16:26:35.052 \N \N 2 3 200 4 2277 -820 \N 2012-08-24 16:26:35.098 \N \N 2 3 200 4 2278 -820 \N 2012-08-24 16:26:35.115 \N \N 2 3 200 4 2279 -820 \N 2012-08-24 16:26:38.366 \N \N 2 3 200 4 2280 -820 \N 2012-08-24 16:26:39.072 \N \N 2 3 200 4 2281 -820 \N 2012-08-24 16:26:39.66 \N \N 2 3 200 4 2282 -820 \N 2012-08-24 16:26:55.449 \N \N 2 3 200 4 2284 -820 \N 2012-08-24 16:26:57.156 \N \N 2 3 200 4 2286 -820 \N 2012-08-24 16:26:57.163 \N \N 2 3 200 4 2287 -820 \N 2012-08-24 16:27:10.587 \N \N 2 3 200 4 2288 -820 \N 2012-08-24 16:27:21.306 \N \N 2 3 204 4 2289 -820 \N 2012-08-27 10:48:21.283 \N \N 0 0 2 9 2290 -820 \N 2012-08-27 10:48:21.355 \N \N 1 2 205 4 2291 -820 \N 2012-08-27 10:48:21.384 \N \N 0 0 2 9 2292 -820 \N 2012-08-27 10:48:21.419 \N \N 2 3 206 4 2293 -820 \N 2012-08-27 10:48:32.08 \N \N 2 3 206 4 2294 -820 \N 2012-08-27 10:48:32.08 \N \N 2 3 206 4 2295 -820 \N 2012-08-27 10:48:32.081 \N \N 2 3 206 4 2296 -820 \N 2012-08-27 10:48:32.125 \N \N 2 3 206 4 2297 -820 \N 2012-08-27 10:48:33.163 \N \N 2 3 206 4 2298 -820 \N 2012-08-27 10:48:33.579 \N \N 2 3 206 4 2299 -820 \N 2012-08-27 10:48:38.16 \N \N 2 3 206 4 2300 -820 \N 2012-08-27 10:48:38.208 \N \N 2 3 206 4 2301 -820 \N 2012-08-27 10:48:38.33 \N \N 2 3 206 4 2303 -820 \N 2012-08-27 10:48:41.525 \N \N 2 3 206 4 2302 -820 \N 2012-08-27 10:48:41.525 \N \N 2 3 206 4 2304 -820 \N 2012-08-27 10:48:41.526 \N \N 2 3 206 4 2305 -820 \N 2012-08-27 10:48:41.533 \N \N 2 3 206 4 2306 -820 \N 2012-08-27 10:48:42.538 \N \N 2 3 206 4 2307 -820 \N 2012-08-27 10:48:43.394 \N \N 2 3 206 4 2308 -820 \N 2012-08-27 10:48:45.796 \N \N 2 3 206 4 2309 -820 \N 2012-08-27 10:48:45.844 \N \N 2 3 206 4 2310 -820 \N 2012-08-27 10:48:46.035 \N \N 2 3 206 4 2311 -820 \N 2012-08-27 10:48:54.234 \N \N 2 3 206 4 2312 -820 \N 2012-08-27 10:48:57.188 \N \N 2 3 206 4 2313 -820 \N 2012-08-27 10:49:00.085 \N \N 2 3 206 4 2314 -820 \N 2012-08-27 10:49:02.117 \N \N 2 3 206 4 2315 -820 \N 2012-08-27 10:49:05.184 \N \N 2 3 206 4 2316 -820 \N 2012-08-27 10:49:20.929 \N \N 2 3 206 4 2317 -820 \N 2012-08-27 10:49:25.951 \N \N 2 3 206 4 2318 -820 \N 2012-08-27 10:49:28.763 \N \N 2 3 206 4 2319 -820 \N 2012-08-27 10:49:29.204 \N \N 2 3 206 4 2320 -820 \N 2012-08-27 10:49:29.421 \N \N 2 3 206 4 2321 -820 \N 2012-08-27 10:49:29.615 \N \N 2 3 206 4 2322 -820 \N 2012-08-27 10:49:29.81 \N \N 2 3 206 4 2323 -820 \N 2012-08-27 10:49:30.025 \N \N 2 3 206 4 2324 -820 \N 2012-08-27 10:49:30.254 \N \N 2 3 206 4 2325 -820 \N 2012-08-27 10:49:30.485 \N \N 2 3 206 4 2326 -820 \N 2012-08-27 10:49:30.719 \N \N 2 3 206 4 2327 -820 \N 2012-08-27 10:49:30.923 \N \N 2 3 206 4 2328 -820 \N 2012-08-27 10:49:31.192 \N \N 2 3 206 4 2329 -820 \N 2012-08-27 10:49:31.415 \N \N 2 3 206 4 2330 -820 \N 2012-08-27 10:49:31.671 \N \N 2 3 206 4 2331 -820 \N 2012-08-27 10:49:31.936 \N \N 2 3 206 4 2332 -820 \N 2012-08-27 10:49:32.155 \N \N 2 3 206 4 2333 -820 \N 2012-08-27 10:49:32.328 \N \N 2 3 206 4 2334 -820 \N 2012-08-27 10:49:32.561 \N \N 2 3 206 4 2335 -820 \N 2012-08-27 10:49:32.773 \N \N 2 3 206 4 2336 -820 \N 2012-08-27 10:49:36.295 \N \N 2 3 206 4 2337 -820 \N 2012-08-27 10:49:36.692 \N \N 2 3 206 4 2338 -820 \N 2012-08-27 10:49:38.926 \N \N 2 3 206 4 2339 -820 \N 2012-08-27 10:49:38.968 \N \N 2 3 206 4 2340 -820 \N 2012-08-27 10:49:39.142 \N \N 2 3 206 4 2341 -820 \N 2012-08-27 10:49:43.367 \N \N 2 3 206 4 2342 -820 \N 2012-08-27 10:49:43.971 \N \N 2 3 206 4 2343 -820 \N 2012-08-27 10:49:46.077 \N \N 2 3 206 4 2344 -820 \N 2012-08-27 10:49:46.437 \N \N 2 3 206 4 2345 -820 \N 2012-08-27 10:49:48.688 \N \N 2 3 206 4 2346 -820 \N 2012-08-27 10:49:48.74 \N \N 2 3 206 4 2347 -820 \N 2012-08-27 10:49:48.91 \N \N 2 3 206 4 2348 -820 \N 2012-08-27 10:49:57.458 \N \N 2 3 206 4 2349 -820 \N 2012-08-27 10:49:57.885 \N \N 2 3 206 4 2350 -820 \N 2012-08-27 10:50:00.371 \N \N 2 3 206 4 2351 -820 \N 2012-08-27 10:50:00.418 \N \N 2 3 206 4 2352 -820 \N 2012-08-27 10:50:00.583 \N \N 2 3 206 4 2353 -820 \N 2012-08-27 10:50:05.856 \N \N 2 3 206 4 2354 -820 \N 2012-08-27 10:50:14.109 \N \N 2 3 206 4 2355 -820 \N 2012-08-27 10:50:38.188 \N \N 2 3 206 4 2356 -820 \N 2012-08-27 10:50:39.383 \N \N 2 3 206 4 2357 -820 \N 2012-08-27 10:50:40.278 \N \N 2 3 206 4 2358 -820 \N 2012-08-27 10:50:40.445 \N \N 2 3 206 4 2359 -820 \N 2012-08-27 10:50:40.792 \N \N 2 3 206 4 2360 -820 \N 2012-08-27 10:50:40.828 \N \N 2 3 206 4 2362 -820 \N 2012-08-27 10:50:40.973 \N \N 2 3 206 4 2361 -820 \N 2012-08-27 10:50:40.973 \N \N 2 3 206 4 2363 -820 \N 2012-08-27 10:50:40.975 \N \N 2 3 206 4 2364 -820 \N 2012-08-27 10:50:40.981 \N \N 2 3 206 4 2365 -820 \N 2012-08-27 10:50:41.267 \N \N 2 3 206 4 2366 -820 \N 2012-08-27 10:50:43.495 \N \N 2 3 206 4 2367 -820 \N 2012-08-27 10:50:43.556 \N \N 2 3 206 4 2368 -820 \N 2012-08-27 10:50:43.77 \N \N 2 3 206 4 2369 -820 \N 2012-08-27 10:50:54.323 \N \N 2 3 206 4 2370 -820 \N 2012-08-27 10:50:54.777 \N \N 2 3 206 4 2371 -820 \N 2012-08-27 10:50:58.049 \N \N 2 3 206 4 2372 -820 \N 2012-08-27 10:50:58.098 \N \N 2 3 206 4 2373 -820 \N 2012-08-27 10:50:58.26 \N \N 2 3 206 4 2374 -820 \N 2012-08-27 10:50:59.867 \N \N 2 3 206 4 2375 -820 \N 2012-08-27 10:51:00.279 \N \N 2 3 206 4 2376 -820 \N 2012-08-27 10:51:02.777 \N \N 2 3 206 4 2377 -820 \N 2012-08-27 10:51:02.826 \N \N 2 3 206 4 2378 -820 \N 2012-08-27 10:51:02.997 \N \N 2 3 206 4 2379 -820 \N 2012-08-29 12:11:49.631 \N \N 0 0 2 9 2380 -820 \N 2012-08-29 12:11:49.721 \N \N 1 2 207 4 2381 -820 \N 2012-08-29 12:11:49.748 \N \N 0 0 2 9 2382 -820 \N 2012-08-29 12:11:49.789 \N \N 2 3 208 4 2383 -820 \N 2012-08-29 15:45:09.363 \N \N 0 0 2 9 2384 -820 \N 2012-08-29 15:45:09.582 \N \N 2 3 209 4 2385 -820 \N 2012-08-29 15:45:09.892 \N \N 2 3 209 4 2386 -820 \N 2012-08-29 15:46:06.304 \N \N 0 0 2 9 2387 -820 \N 2012-08-29 15:46:06.419 \N \N 2 3 210 4 2388 -820 \N 2012-08-29 15:46:06.545 \N \N 2 3 210 4 2389 -820 \N 2012-08-29 15:58:03.405 \N \N 0 0 2 9 2390 -820 \N 2012-08-29 15:58:03.588 \N \N 2 3 211 4 2391 -820 \N 2012-08-29 15:58:03.899 \N \N 2 3 211 4 2392 -820 \N 2012-08-29 15:59:15.321 \N \N 0 0 2 9 2393 -820 \N 2012-08-29 15:59:15.399 \N \N 1 2 212 4 2394 -820 \N 2012-08-29 15:59:15.432 \N \N 0 0 2 9 2395 -820 \N 2012-08-29 15:59:15.47 \N \N 2 3 213 4 2396 -820 \N 2012-08-30 08:54:27.127 \N \N 0 0 2 9 2397 -820 \N 2012-08-30 08:54:27.311 \N \N 2 3 214 4 2398 -820 \N 2012-08-30 08:54:27.62 \N \N 2 3 214 4 2399 -820 \N 2012-08-30 08:56:02.786 \N \N 0 0 2 9 2400 -820 \N 2012-08-30 08:56:02.924 \N \N 2 3 215 4 2401 -820 \N 2012-08-30 08:56:03.069 \N \N 2 3 215 4 2402 -820 \N 2012-08-30 08:57:13.971 \N \N 0 0 2 9 2403 -820 \N 2012-08-30 08:57:14.087 \N \N 2 3 216 4 2404 -820 \N 2012-08-30 08:57:14.244 \N \N 2 3 216 4 2405 -820 \N 2012-08-30 08:58:08.231 \N \N 0 0 2 9 2406 -820 \N 2012-08-30 08:58:08.6 \N \N 2 3 217 4 2407 -820 \N 2012-08-30 08:58:08.809 \N \N 2 3 217 4 2408 -820 \N 2012-08-30 09:23:50.53 \N \N 0 0 2 9 2409 -820 \N 2012-08-30 09:23:50.684 \N \N 2 3 218 4 2410 -820 \N 2012-08-30 09:23:50.905 \N \N 2 3 218 4 2411 -820 \N 2012-08-30 13:25:39.179 \N \N 0 0 2 9 2412 -820 \N 2012-08-30 13:25:39.382 \N \N 5 3 219 4 2413 -820 \N 2012-08-30 13:25:39.536 \N \N 5 3 219 4 2414 -820 \N 2012-08-30 13:26:07.6 \N \N 5 3 219 4 2415 -820 \N 2012-08-30 13:33:20.471 \N \N 0 0 2 9 2416 -820 \N 2012-08-30 13:33:20.55 \N \N 1 2 220 4 2417 -820 \N 2012-08-30 13:33:20.595 \N \N 0 0 2 9 2418 -820 \N 2012-08-30 13:33:20.625 \N \N 5 3 221 4 2419 -820 \N 2012-08-31 10:32:49.719 \N \N 0 0 2 9 2420 -820 \N 2012-08-31 10:32:49.829 \N \N 1 2 222 4 2421 -820 \N 2012-08-31 10:32:49.86 \N \N 0 0 2 9 2422 -820 \N 2012-08-31 10:32:49.899 \N \N 2 3 223 4 2423 -820 \N 2012-08-31 10:41:21.754 \N \N 0 0 2 9 2424 -820 \N 2012-08-31 10:41:21.828 \N \N 1 2 224 4 2425 -820 \N 2012-08-31 10:41:21.862 \N \N 0 0 2 9 2426 -820 \N 2012-08-31 10:41:21.9 \N \N 0 0 225 4 2427 -820 \N 2012-08-31 10:41:50.538 \N \N 0 0 225 4 2428 -820 \N 2012-08-31 10:41:57.41 \N \N 0 0 225 4 2429 -820 \N 2012-08-31 10:41:57.437 \N \N 0 0 225 4 2430 -820 \N 2012-08-31 10:41:57.462 \N \N 0 0 225 4 2431 -820 \N 2012-08-31 10:42:08.849 \N \N 0 0 225 4 2432 -820 \N 2012-08-31 10:42:08.883 \N \N 0 0 225 4 2433 -820 \N 2012-08-31 10:42:08.911 \N \N 0 0 225 4 2434 -820 \N 2012-08-31 10:42:17.377 \N \N 0 0 2 9 2435 -820 \N 2012-08-31 10:42:17.429 \N \N 1 2 226 4 2436 -820 \N 2012-08-31 10:42:17.463 \N \N 0 0 2 9 2437 -820 \N 2012-08-31 10:42:17.503 \N \N 2 3 227 4 2438 -820 \N 2012-08-31 13:22:53.788 \N \N 0 0 2 9 2439 -820 \N 2012-08-31 13:22:53.86 \N \N 1 2 228 4 2440 -820 \N 2012-08-31 13:22:53.897 \N \N 0 0 2 9 2441 -820 \N 2012-08-31 13:22:53.935 \N \N 2 3 229 4 2442 -820 \N 2012-08-31 13:37:36.331 \N \N 2 3 229 4 2443 -820 \N 2012-08-31 13:37:36.337 \N \N 2 3 229 4 2444 -820 \N 2012-08-31 13:37:36.337 \N \N 2 3 229 4 2445 -820 \N 2012-08-31 13:37:36.339 \N \N 2 3 229 4 2446 -820 \N 2012-08-31 13:37:38.908 \N \N 2 3 229 4 2447 -820 \N 2012-08-31 13:37:47.711 \N \N 2 3 229 4 2448 -820 \N 2012-08-31 13:37:47.757 \N \N 2 3 229 4 2449 -820 \N 2012-08-31 13:37:49.288 \N \N 2 3 229 4 2450 -820 \N 2012-08-31 13:37:51.231 \N \N 2 3 229 4 2451 -820 \N 2012-08-31 13:37:55.615 \N \N 2 3 229 4 2452 -820 \N 2012-08-31 13:37:57.276 \N \N 2 3 229 4 2453 -820 \N 2012-08-31 13:38:00.56 \N \N 2 3 229 4 2454 -820 \N 2012-08-31 13:38:01.683 \N \N 2 3 229 4 2455 -820 \N 2012-08-31 13:38:08.433 \N \N 2 3 229 4 2456 -820 \N 2012-08-31 13:38:11.858 \N \N 2 3 229 4 2457 -820 \N 2012-08-31 13:38:11.858 \N \N 2 3 229 4 2458 -820 \N 2012-08-31 13:38:11.863 \N \N 2 3 229 4 2459 -820 \N 2012-08-31 13:38:11.863 \N \N 2 3 229 4 2460 -820 \N 2012-08-31 13:38:16.542 \N \N 2 3 229 4 2461 -820 \N 2012-08-31 13:38:16.542 \N \N 2 3 229 4 2462 -820 \N 2012-08-31 13:38:16.546 \N \N 2 3 229 4 2463 -820 \N 2012-08-31 13:38:16.547 \N \N 2 3 229 4 2464 -820 \N 2012-08-31 13:38:17.324 \N \N 2 3 229 4 2465 -820 \N 2012-08-31 13:38:25.368 \N \N 2 3 229 4 2466 -820 \N 2012-08-31 13:38:25.394 \N \N 2 3 229 4 2467 -820 \N 2012-08-31 13:38:26.311 \N \N 2 3 229 4 2468 -820 \N 2012-08-31 13:38:29.635 \N \N 2 3 229 4 2469 -820 \N 2012-08-31 13:38:30.354 \N \N 2 3 229 4 2470 -820 \N 2012-08-31 13:38:33.635 \N \N 2 3 229 4 2471 -820 \N 2012-08-31 13:38:34.642 \N \N 2 3 229 4 2472 -820 \N 2012-08-31 13:38:38.539 \N \N 2 3 229 4 2473 -820 \N 2012-08-31 13:38:41.913 \N \N 2 3 229 4 2474 -820 \N 2012-08-31 13:38:41.915 \N \N 2 3 229 4 2475 -820 \N 2012-08-31 13:38:41.916 \N \N 2 3 229 4 2476 -820 \N 2012-08-31 13:38:41.926 \N \N 2 3 229 4 2477 -820 \N 2012-08-31 13:38:41.938 \N \N 2 3 229 4 2478 -820 \N 2012-08-31 13:38:42.093 \N \N 2 3 229 4 2479 -820 \N 2012-08-31 13:38:45.111 \N \N 2 3 229 4 2480 -820 \N 2012-08-31 13:38:49.752 \N \N 2 3 229 4 2481 -820 \N 2012-08-31 13:38:51.342 \N \N 2 3 229 4 2482 -820 \N 2012-08-31 13:38:52.114 \N \N 2 3 229 4 2483 -820 \N 2012-08-31 13:38:55.258 \N \N 2 3 229 4 2484 -820 \N 2012-08-31 13:38:55.259 \N \N 2 3 229 4 2485 -820 \N 2012-08-31 13:38:55.26 \N \N 2 3 229 4 2486 -820 \N 2012-08-31 13:38:55.268 \N \N 2 3 229 4 2487 -820 \N 2012-08-31 13:38:55.295 \N \N 2 3 229 4 2488 -820 \N 2012-08-31 13:38:55.392 \N \N 2 3 229 4 2489 -820 \N 2012-08-31 13:38:59.242 \N \N 2 3 229 4 2490 -820 \N 2012-08-31 13:39:00.47 \N \N 2 3 229 4 2491 -820 \N 2012-08-31 13:39:07.283 \N \N 2 3 229 4 2492 -820 \N 2012-08-31 13:39:08.221 \N \N 2 3 229 4 2493 -820 \N 2012-08-31 13:39:13.037 \N \N 2 3 229 4 2494 -820 \N 2012-08-31 13:39:16.581 \N \N 2 3 229 4 2495 -820 \N 2012-08-31 13:39:16.594 \N \N 2 3 229 4 2497 -820 \N 2012-08-31 13:39:16.594 \N \N 2 3 229 4 2496 -820 \N 2012-08-31 13:39:16.594 \N \N 2 3 229 4 2498 -820 \N 2012-08-31 13:39:16.606 \N \N 2 3 229 4 2499 -820 \N 2012-08-31 13:39:16.708 \N \N 2 3 229 4 2500 -820 \N 2012-08-31 13:39:16.747 \N \N 2 3 229 4 2501 -820 \N 2012-08-31 13:39:16.753 \N \N 2 3 229 4 2502 -820 \N 2012-08-31 13:39:16.766 \N \N 2 3 229 4 2503 -820 \N 2012-08-31 13:39:16.773 \N \N 2 3 229 4 2504 -820 \N 2012-08-31 13:39:16.835 \N \N 2 3 229 4 2505 -820 \N 2012-08-31 13:39:16.876 \N \N 2 3 229 4 2506 -820 \N 2012-08-31 13:39:21.235 \N \N 2 3 229 4 2508 -820 \N 2012-08-31 13:39:26.727 \N \N 2 3 229 4 2509 -820 \N 2012-08-31 13:39:26.727 \N \N 2 3 229 4 2507 -820 \N 2012-08-31 13:39:26.727 \N \N 2 3 229 4 2510 -820 \N 2012-08-31 13:39:26.728 \N \N 2 3 229 4 2511 -820 \N 2012-08-31 13:39:28.213 \N \N 2 3 229 4 2512 -820 \N 2012-08-31 13:39:28.213 \N \N 2 3 229 4 2514 -820 \N 2012-08-31 13:39:28.213 \N \N 2 3 229 4 2513 -820 \N 2012-08-31 13:39:28.213 \N \N 2 3 229 4 2515 -820 \N 2012-08-31 13:39:28.214 \N \N 2 3 229 4 2516 -820 \N 2012-08-31 13:39:28.352 \N \N 2 3 229 4 2520 -820 \N 2012-08-31 13:39:28.377 \N \N 2 3 229 4 2526 -820 \N 2012-08-31 13:39:28.602 \N \N 2 3 229 4 2530 -820 \N 2012-08-31 13:39:28.691 \N \N 2 3 229 4 2532 -820 \N 2012-08-31 13:39:28.792 \N \N 2 3 229 4 2535 -820 \N 2012-08-31 13:39:28.842 \N \N 2 3 229 4 2538 -820 \N 2012-08-31 13:39:42.164 \N \N 2 3 229 4 2517 -820 \N 2012-08-31 13:39:28.366 \N \N 2 3 229 4 2522 -820 \N 2012-08-31 13:39:28.512 \N \N 2 3 229 4 2529 -820 \N 2012-08-31 13:39:28.678 \N \N 2 3 229 4 2534 -820 \N 2012-08-31 13:39:28.842 \N \N 2 3 229 4 2540 -820 \N 2012-08-31 13:39:42.164 \N \N 2 3 229 4 2518 -820 \N 2012-08-31 13:39:28.367 \N \N 2 3 229 4 2523 -820 \N 2012-08-31 13:39:28.512 \N \N 2 3 229 4 2536 -820 \N 2012-08-31 13:39:28.866 \N \N 2 3 229 4 2541 -820 \N 2012-08-31 13:39:42.165 \N \N 2 3 229 4 2519 -820 \N 2012-08-31 13:39:28.367 \N \N 2 3 229 4 2521 -820 \N 2012-08-31 13:39:28.474 \N \N 2 3 229 4 2525 -820 \N 2012-08-31 13:39:28.521 \N \N 2 3 229 4 2527 -820 \N 2012-08-31 13:39:28.655 \N \N 2 3 229 4 2524 -820 \N 2012-08-31 13:39:28.519 \N \N 2 3 229 4 2528 -820 \N 2012-08-31 13:39:28.655 \N \N 2 3 229 4 2531 -820 \N 2012-08-31 13:39:28.742 \N \N 2 3 229 4 2533 -820 \N 2012-08-31 13:39:28.821 \N \N 2 3 229 4 2537 -820 \N 2012-08-31 13:39:28.909 \N \N 2 3 229 4 2539 -820 \N 2012-08-31 13:39:42.164 \N \N 2 3 229 4 2542 -820 \N 2012-08-31 13:39:43.955 \N \N 2 3 229 4 2543 -820 \N 2012-08-31 13:39:49.554 \N \N 2 3 229 4 2544 -820 \N 2012-08-31 13:39:49.633 \N \N 2 3 229 4 2545 -820 \N 2012-08-31 13:39:49.653 \N \N 2 3 229 4 2546 -820 \N 2012-08-31 13:39:49.67 \N \N 2 3 229 4 2547 -820 \N 2012-08-31 13:39:49.687 \N \N 2 3 229 4 2548 -820 \N 2012-08-31 13:39:49.8 \N \N 2 3 229 4 2549 -820 \N 2012-08-31 13:39:49.823 \N \N 2 3 229 4 2550 -820 \N 2012-08-31 13:39:49.838 \N \N 2 3 229 4 2551 -820 \N 2012-08-31 13:39:49.854 \N \N 2 3 229 4 2552 -820 \N 2012-08-31 13:39:49.871 \N \N 2 3 229 4 2553 -820 \N 2012-08-31 13:39:49.894 \N \N 2 3 229 4 2554 -820 \N 2012-08-31 13:39:49.923 \N \N 2 3 229 4 2555 -820 \N 2012-08-31 13:39:49.936 \N \N 2 3 229 4 2556 -820 \N 2012-08-31 13:39:49.954 \N \N 2 3 229 4 2557 -820 \N 2012-08-31 13:39:50.023 \N \N 2 3 229 4 2558 -820 \N 2012-08-31 13:39:50.04 \N \N 2 3 229 4 2559 -820 \N 2012-08-31 13:39:50.055 \N \N 2 3 229 4 2560 -820 \N 2012-08-31 13:39:50.071 \N \N 2 3 229 4 2561 -820 \N 2012-08-31 13:39:50.087 \N \N 2 3 229 4 2562 -820 \N 2012-08-31 13:39:50.112 \N \N 2 3 229 4 2563 -820 \N 2012-08-31 13:39:50.141 \N \N 2 3 229 4 2564 -820 \N 2012-08-31 13:39:50.153 \N \N 2 3 229 4 2565 -820 \N 2012-08-31 13:39:50.17 \N \N 2 3 229 4 2566 -820 \N 2012-08-31 13:39:50.249 \N \N 2 3 229 4 2567 -820 \N 2012-08-31 13:39:50.273 \N \N 2 3 229 4 2568 -820 \N 2012-08-31 13:39:50.289 \N \N 2 3 229 4 2569 -820 \N 2012-08-31 13:39:50.305 \N \N 2 3 229 4 2570 -820 \N 2012-08-31 13:39:50.321 \N \N 2 3 229 4 2571 -820 \N 2012-08-31 13:39:50.339 \N \N 2 3 229 4 2572 -820 \N 2012-08-31 13:39:50.357 \N \N 2 3 229 4 2573 -820 \N 2012-08-31 13:39:50.371 \N \N 2 3 229 4 2574 -820 \N 2012-08-31 13:39:50.394 \N \N 2 3 229 4 2575 -820 \N 2012-08-31 13:39:50.414 \N \N 2 3 229 4 2576 -820 \N 2012-08-31 13:39:50.428 \N \N 2 3 229 4 2577 -820 \N 2012-08-31 13:39:50.451 \N \N 2 3 229 4 2578 -820 \N 2012-08-31 13:39:50.472 \N \N 2 3 229 4 2579 -820 \N 2012-08-31 13:39:50.496 \N \N 2 3 229 4 2580 -820 \N 2012-08-31 13:39:50.518 \N \N 2 3 229 4 2581 -820 \N 2012-08-31 13:39:50.539 \N \N 2 3 229 4 2582 -820 \N 2012-08-31 13:39:50.553 \N \N 2 3 229 4 2583 -820 \N 2012-08-31 13:39:50.578 \N \N 2 3 229 4 2584 -820 \N 2012-08-31 13:39:50.646 \N \N 2 3 229 4 2585 -820 \N 2012-08-31 13:39:50.662 \N \N 2 3 229 4 2586 -820 \N 2012-08-31 13:39:50.685 \N \N 2 3 229 4 2587 -820 \N 2012-08-31 13:39:50.705 \N \N 2 3 229 4 2588 -820 \N 2012-08-31 13:39:50.72 \N \N 2 3 229 4 2589 -820 \N 2012-08-31 13:39:50.742 \N \N 2 3 229 4 2590 -820 \N 2012-08-31 14:18:48.587 \N \N 0 0 2 9 2591 -820 \N 2012-08-31 14:18:48.672 \N \N 1 2 230 4 2592 -820 \N 2012-08-31 14:18:48.7 \N \N 0 0 2 9 2593 -820 \N 2012-08-31 14:18:48.741 \N \N 5 3 231 4 2594 -820 \N 2012-08-31 20:01:34.776 \N \N 0 0 2 9 2595 -820 \N 2012-08-31 20:01:34.847 \N \N 1 2 232 4 2596 -820 \N 2012-08-31 20:01:34.875 \N \N 0 0 2 9 2597 -820 \N 2012-08-31 20:01:34.905 \N \N 2 3 233 4 2598 -820 \N 2012-08-31 20:01:53.811 \N \N 2 3 233 4 2599 -820 \N 2012-08-31 20:01:53.877 \N \N 2 3 233 4 2600 -820 \N 2012-08-31 20:01:53.887 \N \N 2 3 233 4 2601 -820 \N 2012-08-31 20:01:53.982 \N \N 2 3 233 4 2602 -820 \N 2012-08-31 20:01:55.811 \N \N 2 3 233 4 2603 -820 \N 2012-08-31 20:01:56.622 \N \N 2 3 233 4 2604 -820 \N 2012-08-31 20:01:58.807 \N \N 2 3 233 4 2605 -820 \N 2012-08-31 20:01:58.862 \N \N 2 3 233 4 2606 -820 \N 2012-08-31 20:01:59.091 \N \N 2 3 233 4 2607 -820 \N 2012-08-31 20:02:01.662 \N \N 2 3 233 4 2608 -820 \N 2012-08-31 20:02:02.893 \N \N 2 3 233 4 2609 -820 \N 2012-09-03 09:06:58.321 \N \N 0 0 2 9 2610 -820 \N 2012-09-03 09:06:58.402 \N \N 1 2 234 4 2611 -820 \N 2012-09-03 09:06:58.43 \N \N 0 0 2 9 2612 -820 \N 2012-09-03 09:06:58.469 \N \N 2 3 235 4 2613 -820 \N 2012-09-03 10:15:56.186 \N \N 0 0 2 9 2614 -820 \N 2012-09-03 10:15:56.335 \N \N 5 3 236 4 2615 -820 \N 2012-09-03 10:15:56.493 \N \N 5 3 236 4 2616 -820 \N 2012-09-03 18:06:45.934 \N \N 0 0 2 9 2617 -820 \N 2012-09-03 18:06:46.001 \N \N 1 2 237 4 2618 -820 \N 2012-09-03 18:06:46.031 \N \N 0 0 2 9 2619 -820 \N 2012-09-03 18:06:46.069 \N \N 2 3 238 4 2620 -820 \N 2012-09-03 18:06:54.863 \N \N 2 3 238 4 2621 -820 \N 2012-09-03 18:06:54.864 \N \N 2 3 238 4 2622 -820 \N 2012-09-03 18:06:54.868 \N \N 2 3 238 4 2623 -820 \N 2012-09-03 18:06:54.879 \N \N 2 3 238 4 2624 -820 \N 2012-09-03 18:06:54.884 \N \N 2 3 238 4 2637 -820 \N 2012-09-03 18:07:03.84 \N \N 2 3 238 4 2640 -820 \N 2012-09-03 18:07:04.376 \N \N 2 3 238 4 2642 -820 \N 2012-09-03 18:07:04.406 \N \N 2 3 238 4 2625 -820 \N 2012-09-03 18:06:55.01 \N \N 2 3 238 4 2629 -820 \N 2012-09-03 18:06:59.337 \N \N 2 3 238 4 2631 -820 \N 2012-09-03 18:06:59.466 \N \N 2 3 238 4 2632 -820 \N 2012-09-03 18:07:00.192 \N \N 2 3 238 4 2633 -820 \N 2012-09-03 18:07:03.815 \N \N 2 3 238 4 2641 -820 \N 2012-09-03 18:07:04.38 \N \N 2 3 238 4 2643 -820 \N 2012-09-03 18:07:04.504 \N \N 2 3 238 4 2644 -820 \N 2012-09-03 18:07:08.064 \N \N 2 3 238 4 2645 -820 \N 2012-09-03 18:07:08.44 \N \N 2 3 238 4 2646 -820 \N 2012-09-03 18:07:12.141 \N \N 2 3 238 4 2647 -820 \N 2012-09-03 18:07:12.205 \N \N 2 3 238 4 2648 -820 \N 2012-09-03 18:07:12.386 \N \N 2 3 238 4 2649 -820 \N 2012-09-03 18:07:25.135 \N \N 2 3 238 4 2650 -820 \N 2012-09-03 18:07:32.226 \N \N 2 3 238 4 2651 -820 \N 2012-09-03 18:07:33.399 \N \N 2 3 238 4 2652 -820 \N 2012-09-03 18:07:34.448 \N \N 2 3 238 4 2653 -820 \N 2012-09-03 18:07:37.813 \N \N 2 3 238 4 2654 -820 \N 2012-09-03 18:07:40.523 \N \N 2 3 238 4 2655 -820 \N 2012-09-03 18:07:41.694 \N \N 2 3 238 4 2656 -820 \N 2012-09-03 18:07:42.174 \N \N 2 3 238 4 2657 -820 \N 2012-09-03 18:07:42.72 \N \N 2 3 238 4 2658 -820 \N 2012-09-03 18:07:43.137 \N \N 2 3 238 4 2659 -820 \N 2012-09-03 18:07:43.552 \N \N 2 3 238 4 2660 -820 \N 2012-09-03 18:07:44.075 \N \N 2 3 238 4 2661 -820 \N 2012-09-03 18:07:44.452 \N \N 2 3 238 4 2626 -820 \N 2012-09-03 18:06:59.322 \N \N 2 3 238 4 2635 -820 \N 2012-09-03 18:07:03.832 \N \N 2 3 238 4 2627 -820 \N 2012-09-03 18:06:59.322 \N \N 2 3 238 4 2634 -820 \N 2012-09-03 18:07:03.829 \N \N 2 3 238 4 2638 -820 \N 2012-09-03 18:07:04.365 \N \N 2 3 238 4 2628 -820 \N 2012-09-03 18:06:59.33 \N \N 2 3 238 4 2630 -820 \N 2012-09-03 18:06:59.386 \N \N 2 3 238 4 2636 -820 \N 2012-09-03 18:07:03.838 \N \N 2 3 238 4 2639 -820 \N 2012-09-03 18:07:04.373 \N \N 2 3 238 4 2662 -820 \N 2012-09-03 18:07:44.894 \N \N 2 3 238 4 2663 -820 \N 2012-09-03 18:07:45.28 \N \N 2 3 238 4 2664 -820 \N 2012-09-03 18:07:45.697 \N \N 2 3 238 4 2665 -820 \N 2012-09-03 18:07:46.094 \N \N 2 3 238 4 2666 -820 \N 2012-09-03 18:07:46.495 \N \N 2 3 238 4 2667 -820 \N 2012-09-03 18:07:46.964 \N \N 2 3 238 4 2668 -820 \N 2012-09-03 18:07:47.343 \N \N 2 3 238 4 2669 -820 \N 2012-09-03 18:07:47.728 \N \N 2 3 238 4 2670 -820 \N 2012-09-03 18:07:48.156 \N \N 2 3 238 4 2671 -820 \N 2012-09-04 09:59:22.71 \N \N 0 0 2 2 2701 -820 \N 2012-09-04 10:14:00.004 \N \N 0 0 255 2 2702 -820 \N 2012-09-04 10:14:01.396 \N \N 0 0 255 2 2703 -820 \N 2012-09-04 10:14:01.438 \N \N 0 0 255 2 2704 -820 \N 2012-09-04 10:14:01.464 \N \N 0 0 255 2 2705 -820 \N 2012-09-04 10:14:01.782 \N \N 0 0 255 2 2706 -820 \N 2012-09-04 10:14:01.998 \N \N 0 0 255 2 2707 -820 \N 2012-09-04 10:14:02.049 \N \N 0 0 255 2 2708 -820 \N 2012-09-04 10:14:04.306 \N \N 0 0 255 9 2709 -820 \N 2012-09-04 10:14:04.504 \N \N 0 0 256 4 2710 -820 \N 2012-09-04 10:14:11.301 \N \N 0 0 255 9 2711 -820 \N 2012-09-04 10:14:20.393 \N \N 0 0 255 9 2712 -820 \N 2012-09-04 10:14:20.616 \N \N 1 2 258 4 2713 -820 \N 2012-09-04 10:14:20.66 \N \N 0 0 255 9 2714 -820 \N 2012-09-04 10:14:20.726 \N \N 2 3 259 4 2715 -820 \N 2012-09-04 10:14:47.682 \N \N 0 0 255 9 2716 -820 \N 2012-09-04 10:14:47.784 \N \N 2 3 260 4 2717 -820 \N 2012-09-04 10:14:47.886 \N \N 2 3 260 4 2718 -820 \N 2012-09-04 10:16:43.207 \N \N 0 0 255 9 2719 -820 \N 2012-09-04 10:16:43.289 \N \N 1 2 261 4 2720 -820 \N 2012-09-04 10:16:43.324 \N \N 0 0 255 9 2721 -820 \N 2012-09-04 10:16:43.371 \N \N 2 3 262 4 2722 -820 \N 2012-09-04 10:16:47.819 \N \N 2 3 262 4 2723 -820 \N 2012-09-04 10:16:47.819 \N \N 2 3 262 4 2725 -820 \N 2012-09-04 10:16:47.82 \N \N 2 3 262 4 2724 -820 \N 2012-09-04 10:16:47.82 \N \N 2 3 262 4 2726 -820 \N 2012-09-04 10:35:40.043 \N \N 2 3 262 4 2727 -820 \N 2012-09-04 10:35:40.043 \N \N 2 3 262 4 2728 -820 \N 2012-09-04 10:35:40.055 \N \N 2 3 262 4 2729 -820 \N 2012-09-04 10:35:40.111 \N \N 2 3 262 4 2730 -820 \N 2012-09-04 10:35:40.14 \N \N 2 3 262 4 2731 -820 \N 2012-09-04 10:35:40.295 \N \N 2 3 262 4 2732 -820 \N 2012-09-04 10:35:44.786 \N \N 2 3 262 4 2733 -820 \N 2012-09-04 10:35:46.933 \N \N 2 3 262 4 2734 -820 \N 2012-09-04 10:35:47.038 \N \N 2 3 262 4 2735 -820 \N 2012-09-04 10:35:47.092 \N \N 2 3 262 4 2736 -820 \N 2012-09-04 10:35:47.112 \N \N 2 3 262 4 2737 -820 \N 2012-09-04 10:35:47.138 \N \N 2 3 262 4 2738 -820 \N 2012-09-04 10:35:47.293 \N \N 2 3 262 4 2739 -820 \N 2012-09-04 10:35:47.326 \N \N 2 3 262 4 2740 -820 \N 2012-09-04 10:35:47.356 \N \N 2 3 262 4 2741 -820 \N 2012-09-04 10:35:47.379 \N \N 2 3 262 4 2742 -820 \N 2012-09-04 10:35:47.403 \N \N 2 3 262 4 2743 -820 \N 2012-09-04 10:35:47.437 \N \N 2 3 262 4 2744 -820 \N 2012-09-04 10:35:47.485 \N \N 2 3 262 4 2745 -820 \N 2012-09-04 10:35:47.51 \N \N 2 3 262 4 2746 -820 \N 2012-09-04 10:35:47.537 \N \N 2 3 262 4 2747 -820 \N 2012-09-04 10:35:47.633 \N \N 2 3 262 4 2748 -820 \N 2012-09-04 10:35:47.656 \N \N 2 3 262 4 2749 -820 \N 2012-09-04 10:35:47.68 \N \N 2 3 262 4 2750 -820 \N 2012-09-04 10:35:47.704 \N \N 2 3 262 4 2751 -820 \N 2012-09-04 10:35:47.728 \N \N 2 3 262 4 2752 -820 \N 2012-09-04 10:35:47.762 \N \N 2 3 262 4 2753 -820 \N 2012-09-04 10:35:47.806 \N \N 2 3 262 4 2754 -820 \N 2012-09-04 10:35:47.828 \N \N 2 3 262 4 2755 -820 \N 2012-09-04 10:35:47.854 \N \N 2 3 262 4 2756 -820 \N 2012-09-04 10:35:47.987 \N \N 2 3 262 4 2757 -820 \N 2012-09-04 10:35:48.018 \N \N 2 3 262 4 2758 -820 \N 2012-09-04 10:35:48.049 \N \N 2 3 262 4 2759 -820 \N 2012-09-04 10:35:48.071 \N \N 2 3 262 4 2760 -820 \N 2012-09-04 10:35:48.095 \N \N 2 3 262 4 2761 -820 \N 2012-09-04 10:35:48.123 \N \N 2 3 262 4 2762 -820 \N 2012-09-04 10:35:48.152 \N \N 2 3 262 4 2763 -820 \N 2012-09-04 10:35:48.162 \N \N 2 3 262 4 2764 -820 \N 2012-09-04 10:35:48.17 \N \N 2 3 262 4 2765 -820 \N 2012-09-04 10:35:48.21 \N \N 2 3 262 4 2766 -820 \N 2012-09-04 10:35:48.24 \N \N 2 3 262 4 2767 -820 \N 2012-09-04 10:35:48.26 \N \N 2 3 262 4 2768 -820 \N 2012-09-04 10:35:48.292 \N \N 2 3 262 4 2769 -820 \N 2012-09-04 10:35:48.295 \N \N 2 3 262 4 2770 -820 \N 2012-09-04 10:35:48.321 \N \N 2 3 262 4 2771 -820 \N 2012-09-04 10:35:48.346 \N \N 2 3 262 4 2772 -820 \N 2012-09-04 10:35:48.383 \N \N 2 3 262 4 2773 -820 \N 2012-09-04 10:35:48.405 \N \N 2 3 262 4 2774 -820 \N 2012-09-04 10:35:48.429 \N \N 2 3 262 4 2775 -820 \N 2012-09-04 10:35:48.451 \N \N 2 3 262 4 2777 -820 \N 2012-09-04 10:35:48.488 \N \N 2 3 262 4 2778 -820 \N 2012-09-04 10:35:48.512 \N \N 2 3 262 4 2779 -820 \N 2012-09-04 10:35:48.555 \N \N 2 3 262 4 2780 -820 \N 2012-09-04 10:35:48.579 \N \N 2 3 262 4 2781 -820 \N 2012-09-04 10:35:48.602 \N \N 2 3 262 4 2782 -820 \N 2012-09-04 10:35:48.635 \N \N 2 3 262 4 2783 -820 \N 2012-09-04 10:37:49.789 \N \N 2 3 260 4 2784 -820 \N 2012-09-04 10:37:50.351 \N \N 2 3 260 4 2785 -820 \N 2012-09-04 10:38:07.744 \N \N 0 0 255 9 2786 -820 \N 2012-09-04 10:38:07.843 \N \N 2 3 263 4 2787 -820 \N 2012-09-04 10:38:07.958 \N \N 2 3 263 4 2788 -820 \N 2012-09-04 10:38:13.048 \N \N 2 3 263 4 2789 -820 \N 2012-09-04 10:38:13.664 \N \N 2 3 263 4 2790 -820 \N 2012-09-04 10:38:26.628 \N \N 2 3 263 4 2791 -820 \N 2012-09-04 10:38:30.088 \N \N 2 3 263 4 2792 -820 \N 2012-09-04 10:38:30.171 \N \N 2 3 263 4 2793 -820 \N 2012-09-04 10:38:30.202 \N \N 2 3 263 4 2794 -820 \N 2012-09-04 10:38:30.234 \N \N 2 3 263 4 2795 -820 \N 2012-09-04 10:38:30.264 \N \N 2 3 263 4 2796 -820 \N 2012-09-04 10:38:30.311 \N \N 2 3 263 4 2797 -820 \N 2012-09-04 10:39:24.972 \N \N 2 3 263 4 2798 -820 \N 2012-09-04 10:39:25.035 \N \N 2 3 263 4 2799 -820 \N 2012-09-04 10:39:25.369 \N \N 2 3 263 4 2800 -820 \N 2012-09-04 10:39:26.236 \N \N 2 3 263 4 2801 -820 \N 2012-09-04 10:39:27.617 \N \N 2 3 263 4 2802 -820 \N 2012-09-04 10:39:27.665 \N \N 2 3 263 4 2803 -820 \N 2012-09-04 10:49:21.762 \N \N 2 3 263 4 2808 -820 \N 2012-09-04 11:18:55.521 \N \N 2 3 263 4 2809 -820 \N 2012-09-04 11:18:57.611 \N \N 2 3 263 4 2810 -820 \N 2012-09-04 11:18:58.643 \N \N 2 3 263 4 2812 -820 \N 2012-09-04 11:19:01.177 \N \N 2 3 263 4 2813 -820 \N 2012-09-04 11:19:02.178 \N \N 2 3 263 4 2815 -820 \N 2012-09-04 11:19:32.243 \N \N 2 3 262 4 2819 -820 \N 2012-09-04 11:19:32.397 \N \N 2 3 262 4 2820 -820 \N 2012-09-04 11:19:33.08 \N \N 2 3 262 4 2821 -820 \N 2012-09-04 11:21:38.277 \N \N 2 3 262 4 2822 -820 \N 2012-09-04 11:31:29.958 \N \N 2 3 262 4 2823 -820 \N 2012-09-04 11:31:31.766 \N \N 2 3 262 4 2824 -820 \N 2012-09-04 11:40:10.031 \N \N 2 3 262 4 2825 -820 \N 2012-09-04 11:43:58.12 \N \N 2 3 262 4 2826 -820 \N 2012-09-04 12:05:27.535 \N \N 2 3 262 4 2827 -820 \N 2012-09-04 12:07:47.466 \N \N 2 3 262 4 2828 -820 \N 2012-09-04 12:10:08.137 \N \N 2 3 263 4 2829 -820 \N 2012-09-04 12:10:18.609 \N \N 2 3 263 4 2830 -820 \N 2012-09-04 12:10:25.01 \N \N 2 3 263 4 2831 -820 \N 2012-09-04 12:10:30.496 \N \N 2 3 263 4 2832 -820 \N 2012-09-04 12:11:02.396 \N \N 2 3 263 4 2833 -820 \N 2012-09-04 12:11:02.415 \N \N 2 3 263 4 2834 -820 \N 2012-09-04 12:11:02.431 \N \N 2 3 263 4 2835 -820 \N 2012-09-04 12:11:02.457 \N \N 2 3 263 4 2836 -820 \N 2012-09-04 12:11:02.473 \N \N 2 3 263 4 2837 -820 \N 2012-09-04 12:11:04.006 \N \N 2 3 263 4 2838 -820 \N 2012-09-04 12:11:35.88 \N \N 2 3 263 4 2839 -820 \N 2012-09-04 12:11:36.556 \N \N 2 3 263 4 2840 -820 \N 2012-09-04 12:11:36.67 \N \N 2 3 263 4 2841 -820 \N 2012-09-04 12:11:36.785 \N \N 2 3 263 4 2842 -820 \N 2012-09-04 12:11:37.344 \N \N 2 3 263 4 2843 -820 \N 2012-09-04 12:11:37.405 \N \N 2 3 263 4 2844 -820 \N 2012-09-04 12:11:37.443 \N \N 2 3 263 4 2845 -820 \N 2012-09-04 12:11:37.521 \N \N 2 3 263 4 2846 -820 \N 2012-09-04 12:11:37.567 \N \N 2 3 263 4 2847 -820 \N 2012-09-04 12:11:37.581 \N \N 2 3 263 4 2848 -820 \N 2012-09-04 12:11:37.603 \N \N 2 3 263 4 2849 -820 \N 2012-09-04 12:11:37.617 \N \N 2 3 263 4 2850 -820 \N 2012-09-04 12:11:37.634 \N \N 2 3 263 4 2851 -820 \N 2012-09-04 12:11:37.671 \N \N 2 3 263 4 2852 -820 \N 2012-09-04 12:11:37.701 \N \N 2 3 263 4 2853 -820 \N 2012-09-04 12:11:38.266 \N \N 2 3 263 4 2854 -820 \N 2012-09-04 12:11:43.287 \N \N 2 3 263 4 2855 -820 \N 2012-09-04 12:11:43.544 \N \N 2 3 263 4 2856 -820 \N 2012-09-04 12:11:43.643 \N \N 2 3 263 4 2857 -820 \N 2012-09-04 12:11:43.752 \N \N 2 3 263 4 2858 -820 \N 2012-09-04 12:11:43.795 \N \N 2 3 263 4 2859 -820 \N 2012-09-04 12:11:43.846 \N \N 2 3 263 4 2860 -820 \N 2012-09-04 12:11:43.861 \N \N 2 3 263 4 2861 -820 \N 2012-09-04 12:11:43.923 \N \N 2 3 263 4 2862 -820 \N 2012-09-04 12:11:43.943 \N \N 2 3 263 4 2863 -820 \N 2012-09-04 12:11:43.958 \N \N 2 3 263 4 2864 -820 \N 2012-09-04 12:11:43.981 \N \N 2 3 263 4 2865 -820 \N 2012-09-04 12:11:43.995 \N \N 2 3 263 4 2866 -820 \N 2012-09-04 12:11:44.011 \N \N 2 3 263 4 2867 -820 \N 2012-09-04 12:11:44.053 \N \N 2 3 263 4 2868 -820 \N 2012-09-04 12:11:44.077 \N \N 2 3 263 4 2869 -820 \N 2012-09-04 12:11:45.413 \N \N 2 3 263 4 2870 -820 \N 2012-09-04 12:12:16.891 \N \N 2 3 263 4 2871 -820 \N 2012-09-04 12:12:17.529 \N \N 2 3 263 4 2872 -820 \N 2012-09-04 12:12:17.642 \N \N 2 3 263 4 2776 -820 \N 2012-09-04 10:35:48.464 \N \N 2 3 262 4 2804 -820 \N 2012-09-04 10:49:29.119 \N \N 2 3 263 4 2805 -820 \N 2012-09-04 10:49:34.824 \N \N 2 3 263 4 2806 -820 \N 2012-09-04 10:49:40.42 \N \N 2 3 263 4 2807 -820 \N 2012-09-04 10:49:45.99 \N \N 2 3 263 4 2811 -820 \N 2012-09-04 11:19:00.418 \N \N 2 3 263 4 2814 -820 \N 2012-09-04 11:19:32.24 \N \N 2 3 262 4 2816 -820 \N 2012-09-04 11:19:32.274 \N \N 2 3 262 4 2817 -820 \N 2012-09-04 11:19:32.274 \N \N 2 3 262 4 2818 -820 \N 2012-09-04 11:19:32.275 \N \N 2 3 262 4 2934 -820 \N 2012-09-04 12:46:33.786 \N \N 2 3 262 4 2953 -820 \N 2012-09-04 12:46:59.071 \N \N 2 3 262 4 2958 -820 \N 2012-09-04 12:47:09.7 \N \N 2 3 262 4 2971 -820 \N 2012-09-04 12:47:18.932 \N \N 2 3 262 4 2980 -820 \N 2012-09-04 12:47:31.638 \N \N 2 3 262 4 3001 -820 \N 2012-09-04 12:47:50.397 \N \N 2 3 262 4 3045 -820 \N 2012-09-04 12:48:08.745 \N \N 2 3 262 4 3056 -820 \N 2012-09-04 12:48:19.434 \N \N 2 3 262 4 2873 -820 \N 2012-09-04 12:12:17.751 \N \N 2 3 263 4 2874 -820 \N 2012-09-04 12:12:18.684 \N \N 2 3 263 4 2875 -820 \N 2012-09-04 12:12:18.734 \N \N 2 3 263 4 2876 -820 \N 2012-09-04 12:12:18.75 \N \N 2 3 263 4 2877 -820 \N 2012-09-04 12:12:18.812 \N \N 2 3 263 4 2878 -820 \N 2012-09-04 12:12:18.832 \N \N 2 3 263 4 2879 -820 \N 2012-09-04 12:12:18.847 \N \N 2 3 263 4 2880 -820 \N 2012-09-04 12:12:18.87 \N \N 2 3 263 4 2881 -820 \N 2012-09-04 12:12:18.883 \N \N 2 3 263 4 2882 -820 \N 2012-09-04 12:12:18.9 \N \N 2 3 263 4 2883 -820 \N 2012-09-04 12:12:18.923 \N \N 2 3 263 4 2884 -820 \N 2012-09-04 12:12:18.942 \N \N 2 3 263 4 2885 -820 \N 2012-09-04 12:12:20.175 \N \N 2 3 263 4 2886 -820 \N 2012-09-04 12:12:48.945 \N \N 2 3 263 4 2887 -820 \N 2012-09-04 12:12:49.53 \N \N 2 3 263 4 2888 -820 \N 2012-09-04 12:12:49.627 \N \N 2 3 263 4 2889 -820 \N 2012-09-04 12:12:49.736 \N \N 2 3 263 4 2890 -820 \N 2012-09-04 12:12:50.179 \N \N 2 3 263 4 2891 -820 \N 2012-09-04 12:12:50.229 \N \N 2 3 263 4 2892 -820 \N 2012-09-04 12:12:50.244 \N \N 2 3 263 4 2893 -820 \N 2012-09-04 12:12:50.313 \N \N 2 3 263 4 2894 -820 \N 2012-09-04 12:12:50.326 \N \N 2 3 263 4 2895 -820 \N 2012-09-04 12:12:50.341 \N \N 2 3 263 4 2896 -820 \N 2012-09-04 12:12:50.364 \N \N 2 3 263 4 2897 -820 \N 2012-09-04 12:12:50.378 \N \N 2 3 263 4 2898 -820 \N 2012-09-04 12:12:50.395 \N \N 2 3 263 4 2899 -820 \N 2012-09-04 12:12:50.416 \N \N 2 3 263 4 2900 -820 \N 2012-09-04 12:12:50.436 \N \N 2 3 263 4 2901 -820 \N 2012-09-04 12:12:51.541 \N \N 2 3 263 4 2902 -820 \N 2012-09-04 12:13:17.743 \N \N 2 3 263 4 2903 -820 \N 2012-09-04 12:13:18.324 \N \N 2 3 263 4 2904 -820 \N 2012-09-04 12:13:18.423 \N \N 2 3 263 4 2905 -820 \N 2012-09-04 12:13:18.531 \N \N 2 3 263 4 2906 -820 \N 2012-09-04 12:13:18.94 \N \N 2 3 263 4 2907 -820 \N 2012-09-04 12:13:18.991 \N \N 2 3 263 4 2908 -820 \N 2012-09-04 12:13:19.013 \N \N 2 3 263 4 2909 -820 \N 2012-09-04 12:13:19.08 \N \N 2 3 263 4 2910 -820 \N 2012-09-04 12:13:19.097 \N \N 2 3 263 4 2911 -820 \N 2012-09-04 12:13:19.112 \N \N 2 3 263 4 2912 -820 \N 2012-09-04 12:13:19.159 \N \N 2 3 263 4 2913 -820 \N 2012-09-04 12:13:19.173 \N \N 2 3 263 4 2914 -820 \N 2012-09-04 12:13:19.19 \N \N 2 3 263 4 2915 -820 \N 2012-09-04 12:13:19.231 \N \N 2 3 263 4 2916 -820 \N 2012-09-04 12:13:19.257 \N \N 2 3 263 4 2917 -820 \N 2012-09-04 12:13:20.416 \N \N 2 3 263 4 2918 -820 \N 2012-09-04 12:13:45.41 \N \N 2 3 263 4 2919 -820 \N 2012-09-04 12:13:45.966 \N \N 2 3 263 4 2920 -820 \N 2012-09-04 12:13:46.07 \N \N 2 3 263 4 2921 -820 \N 2012-09-04 12:13:46.178 \N \N 2 3 263 4 2922 -820 \N 2012-09-04 12:13:46.912 \N \N 2 3 263 4 2923 -820 \N 2012-09-04 12:13:46.963 \N \N 2 3 263 4 2924 -820 \N 2012-09-04 12:13:46.978 \N \N 2 3 263 4 2925 -820 \N 2012-09-04 12:13:47.041 \N \N 2 3 263 4 2926 -820 \N 2012-09-04 12:13:47.053 \N \N 2 3 263 4 2927 -820 \N 2012-09-04 12:13:47.082 \N \N 2 3 263 4 2928 -820 \N 2012-09-04 12:13:47.093 \N \N 2 3 263 4 2929 -820 \N 2012-09-04 12:13:47.108 \N \N 2 3 263 4 2930 -820 \N 2012-09-04 12:44:02.808 \N \N 0 0 255 9 2931 -820 \N 2012-09-04 12:44:02.868 \N \N 1 2 264 4 2932 -820 \N 2012-09-04 12:44:02.9 \N \N 0 0 255 9 2933 -820 \N 2012-09-04 12:44:02.937 \N \N 2 3 265 4 2935 -820 \N 2012-09-04 12:46:33.788 \N \N 2 3 262 4 2936 -820 \N 2012-09-04 12:46:33.796 \N \N 2 3 262 4 2937 -820 \N 2012-09-04 12:46:33.796 \N \N 2 3 262 4 2938 -820 \N 2012-09-04 12:46:33.808 \N \N 2 3 262 4 2939 -820 \N 2012-09-04 12:46:33.942 \N \N 2 3 262 4 2940 -820 \N 2012-09-04 12:46:35.003 \N \N 2 3 262 4 2941 -820 \N 2012-09-04 12:46:36.074 \N \N 2 3 262 4 2942 -820 \N 2012-09-04 12:46:36.354 \N \N 2 3 262 4 2943 -820 \N 2012-09-04 12:46:36.794 \N \N 2 3 262 4 2944 -820 \N 2012-09-04 12:46:36.844 \N \N 2 3 262 4 2945 -820 \N 2012-09-04 12:46:36.979 \N \N 2 3 262 4 2946 -820 \N 2012-09-04 12:46:38.126 \N \N 2 3 262 4 2947 -820 \N 2012-09-04 12:46:38.688 \N \N 2 3 262 4 2948 -820 \N 2012-09-04 12:46:39.773 \N \N 2 3 262 4 2949 -820 \N 2012-09-04 12:46:49.195 \N \N 2 3 262 4 2950 -820 \N 2012-09-04 12:46:53.044 \N \N 2 3 262 4 2951 -820 \N 2012-09-04 12:46:54.074 \N \N 2 3 262 4 2952 -820 \N 2012-09-04 12:46:59.071 \N \N 2 3 262 4 2954 -820 \N 2012-09-04 12:46:59.124 \N \N 2 3 262 4 2955 -820 \N 2012-09-04 12:46:59.178 \N \N 2 3 262 4 2956 -820 \N 2012-09-04 12:46:59.203 \N \N 2 3 262 4 2957 -820 \N 2012-09-04 12:47:01.51 \N \N 2 3 262 4 2959 -820 \N 2012-09-04 12:47:09.7 \N \N 2 3 262 4 2960 -820 \N 2012-09-04 12:47:09.704 \N \N 2 3 262 4 2961 -820 \N 2012-09-04 12:47:09.708 \N \N 2 3 262 4 2962 -820 \N 2012-09-04 12:47:09.714 \N \N 2 3 262 4 2963 -820 \N 2012-09-04 12:47:09.853 \N \N 2 3 262 4 2964 -820 \N 2012-09-04 12:47:11.61 \N \N 2 3 262 4 2965 -820 \N 2012-09-04 12:47:11.951 \N \N 2 3 262 4 2966 -820 \N 2012-09-04 12:47:12.302 \N \N 2 3 262 4 2967 -820 \N 2012-09-04 12:47:12.35 \N \N 2 3 262 4 2968 -820 \N 2012-09-04 12:47:12.483 \N \N 2 3 262 4 2969 -820 \N 2012-09-04 12:47:14.17 \N \N 2 3 262 4 2970 -820 \N 2012-09-04 12:47:18.926 \N \N 2 3 262 4 2972 -820 \N 2012-09-04 12:47:18.978 \N \N 2 3 262 4 2973 -820 \N 2012-09-04 12:47:19.033 \N \N 2 3 262 4 2974 -820 \N 2012-09-04 12:47:19.05 \N \N 2 3 262 4 2975 -820 \N 2012-09-04 12:47:25.656 \N \N 2 3 262 4 2976 -820 \N 2012-09-04 12:47:25.951 \N \N 2 3 262 4 2977 -820 \N 2012-09-04 12:47:26.416 \N \N 2 3 262 4 2978 -820 \N 2012-09-04 12:47:26.471 \N \N 2 3 262 4 2979 -820 \N 2012-09-04 12:47:26.596 \N \N 2 3 262 4 2983 -820 \N 2012-09-04 12:47:31.644 \N \N 2 3 262 4 2985 -820 \N 2012-09-04 12:47:31.804 \N \N 2 3 262 4 2986 -820 \N 2012-09-04 12:47:33.429 \N \N 2 3 262 4 2987 -820 \N 2012-09-04 12:47:33.772 \N \N 2 3 262 4 2988 -820 \N 2012-09-04 12:47:34.142 \N \N 2 3 262 4 2989 -820 \N 2012-09-04 12:47:34.187 \N \N 2 3 262 4 2990 -820 \N 2012-09-04 12:47:34.312 \N \N 2 3 262 4 2991 -820 \N 2012-09-04 12:47:40.4 \N \N 2 3 262 4 2992 -820 \N 2012-09-04 12:47:40.418 \N \N 2 3 262 4 2993 -820 \N 2012-09-04 12:47:40.457 \N \N 2 3 262 4 2994 -820 \N 2012-09-04 12:47:40.504 \N \N 2 3 262 4 2995 -820 \N 2012-09-04 12:47:40.52 \N \N 2 3 262 4 2996 -820 \N 2012-09-04 12:47:43.405 \N \N 2 3 262 4 2997 -820 \N 2012-09-04 12:47:43.677 \N \N 2 3 262 4 2998 -820 \N 2012-09-04 12:47:43.979 \N \N 2 3 262 4 2999 -820 \N 2012-09-04 12:47:44.029 \N \N 2 3 262 4 3000 -820 \N 2012-09-04 12:47:44.151 \N \N 2 3 262 4 3002 -820 \N 2012-09-04 12:47:50.406 \N \N 2 3 262 4 3003 -820 \N 2012-09-04 12:47:50.464 \N \N 2 3 262 4 3004 -820 \N 2012-09-04 12:47:50.511 \N \N 2 3 262 4 3005 -820 \N 2012-09-04 12:47:50.527 \N \N 2 3 262 4 3006 -820 \N 2012-09-04 12:47:55.331 \N \N 2 3 262 4 3007 -820 \N 2012-09-04 12:47:56.399 \N \N 2 3 262 4 3008 -820 \N 2012-09-04 12:47:56.902 \N \N 2 3 262 4 3009 -820 \N 2012-09-04 12:47:57.068 \N \N 2 3 262 4 3010 -820 \N 2012-09-04 12:47:57.237 \N \N 2 3 262 4 3011 -820 \N 2012-09-04 12:47:57.4 \N \N 2 3 262 4 3012 -820 \N 2012-09-04 12:47:57.635 \N \N 2 3 262 4 3013 -820 \N 2012-09-04 12:47:57.854 \N \N 2 3 262 4 3014 -820 \N 2012-09-04 12:47:58.061 \N \N 2 3 262 4 3015 -820 \N 2012-09-04 12:47:58.233 \N \N 2 3 262 4 3016 -820 \N 2012-09-04 12:47:58.41 \N \N 2 3 262 4 3017 -820 \N 2012-09-04 12:47:58.572 \N \N 2 3 262 4 3018 -820 \N 2012-09-04 12:48:00.097 \N \N 2 3 262 4 3019 -820 \N 2012-09-04 12:48:00.263 \N \N 2 3 262 4 3020 -820 \N 2012-09-04 12:48:00.432 \N \N 2 3 262 4 3021 -820 \N 2012-09-04 12:48:00.597 \N \N 2 3 262 4 3022 -820 \N 2012-09-04 12:48:00.758 \N \N 2 3 262 4 3023 -820 \N 2012-09-04 12:48:00.926 \N \N 2 3 262 4 3024 -820 \N 2012-09-04 12:48:01.093 \N \N 2 3 262 4 3025 -820 \N 2012-09-04 12:48:01.277 \N \N 2 3 262 4 3026 -820 \N 2012-09-04 12:48:01.465 \N \N 2 3 262 4 3027 -820 \N 2012-09-04 12:48:01.633 \N \N 2 3 262 4 3028 -820 \N 2012-09-04 12:48:01.801 \N \N 2 3 262 4 3029 -820 \N 2012-09-04 12:48:01.959 \N \N 2 3 262 4 3030 -820 \N 2012-09-04 12:48:02.13 \N \N 2 3 262 4 3031 -820 \N 2012-09-04 12:48:02.303 \N \N 2 3 262 4 3032 -820 \N 2012-09-04 12:48:02.501 \N \N 2 3 262 4 3033 -820 \N 2012-09-04 12:48:02.702 \N \N 2 3 262 4 3034 -820 \N 2012-09-04 12:48:02.878 \N \N 2 3 262 4 3035 -820 \N 2012-09-04 12:48:03.057 \N \N 2 3 262 4 3036 -820 \N 2012-09-04 12:48:03.225 \N \N 2 3 262 4 3037 -820 \N 2012-09-04 12:48:03.414 \N \N 2 3 262 4 3038 -820 \N 2012-09-04 12:48:03.573 \N \N 2 3 262 4 3039 -820 \N 2012-09-04 12:48:03.745 \N \N 2 3 262 4 3040 -820 \N 2012-09-04 12:48:03.91 \N \N 2 3 262 4 3041 -820 \N 2012-09-04 12:48:04.077 \N \N 2 3 262 4 3042 -820 \N 2012-09-04 12:48:04.264 \N \N 2 3 262 4 3043 -820 \N 2012-09-04 12:48:04.43 \N \N 2 3 262 4 3044 -820 \N 2012-09-04 12:48:08.743 \N \N 2 3 262 4 3048 -820 \N 2012-09-04 12:48:09.435 \N \N 2 3 262 4 3049 -820 \N 2012-09-04 12:48:09.505 \N \N 2 3 262 4 3050 -820 \N 2012-09-04 12:48:12.056 \N \N 2 3 262 4 3051 -820 \N 2012-09-04 12:48:12.381 \N \N 2 3 262 4 3052 -820 \N 2012-09-04 12:48:12.786 \N \N 2 3 262 4 3053 -820 \N 2012-09-04 12:48:12.837 \N \N 2 3 262 4 3054 -820 \N 2012-09-04 12:48:12.953 \N \N 2 3 262 4 3055 -820 \N 2012-09-04 12:48:19.421 \N \N 2 3 262 4 3057 -820 \N 2012-09-04 12:48:19.476 \N \N 2 3 262 4 3058 -820 \N 2012-09-04 12:48:19.526 \N \N 2 3 262 4 3059 -820 \N 2012-09-04 12:48:19.542 \N \N 2 3 262 4 3060 -820 \N 2012-09-04 12:48:21.565 \N \N 2 3 262 4 3061 -820 \N 2012-09-04 12:48:21.852 \N \N 2 3 262 4 2981 -820 \N 2012-09-04 12:47:31.639 \N \N 2 3 262 4 3046 -820 \N 2012-09-04 12:48:08.747 \N \N 2 3 262 4 2982 -820 \N 2012-09-04 12:47:31.639 \N \N 2 3 262 4 3047 -820 \N 2012-09-04 12:48:08.747 \N \N 2 3 262 4 2984 -820 \N 2012-09-04 12:47:31.648 \N \N 2 3 262 4 3062 -820 \N 2012-09-04 12:48:22.16 \N \N 2 3 262 4 3063 -820 \N 2012-09-04 12:48:22.21 \N \N 2 3 262 4 3064 -820 \N 2012-09-04 12:48:22.329 \N \N 2 3 262 4 3065 -820 \N 2012-09-04 12:48:28.197 \N \N 2 3 262 4 3066 -820 \N 2012-09-04 12:48:28.208 \N \N 2 3 262 4 3067 -820 \N 2012-09-04 12:48:28.257 \N \N 2 3 262 4 3068 -820 \N 2012-09-04 12:48:28.342 \N \N 2 3 262 4 3069 -820 \N 2012-09-04 12:48:28.359 \N \N 2 3 262 4 3070 -820 \N 2012-09-04 12:48:30.073 \N \N 2 3 262 4 3071 -820 \N 2012-09-04 12:48:30.324 \N \N 2 3 262 4 3072 -820 \N 2012-09-04 12:48:30.917 \N \N 2 3 262 4 3073 -820 \N 2012-09-04 12:48:30.976 \N \N 2 3 262 4 3074 -820 \N 2012-09-04 12:48:31.097 \N \N 2 3 262 4 3075 -820 \N 2012-09-04 12:48:37.604 \N \N 2 3 262 4 3076 -820 \N 2012-09-04 12:48:37.614 \N \N 2 3 262 4 3077 -820 \N 2012-09-04 12:48:37.663 \N \N 2 3 262 4 3078 -820 \N 2012-09-04 12:48:37.721 \N \N 2 3 262 4 3079 -820 \N 2012-09-04 12:48:37.742 \N \N 2 3 262 4 3080 -820 \N 2012-09-04 12:48:44.661 \N \N 2 3 262 4 3083 -820 \N 2012-09-04 12:48:44.661 \N \N 2 3 262 4 3082 -820 \N 2012-09-04 12:48:44.661 \N \N 2 3 262 4 3084 -820 \N 2012-09-04 12:48:44.662 \N \N 2 3 262 4 3081 -820 \N 2012-09-04 12:48:44.661 \N \N 2 3 262 4 3085 -820 \N 2012-09-04 12:48:44.824 \N \N 2 3 262 4 3086 -820 \N 2012-09-04 12:48:48.392 \N \N 2 3 262 4 3087 -820 \N 2012-09-04 12:48:53.675 \N \N 2 3 262 4 3088 -820 \N 2012-09-04 12:48:57.224 \N \N 2 3 262 4 3089 -820 \N 2012-09-04 12:48:57.318 \N \N 2 3 262 4 3090 -820 \N 2012-09-04 12:48:57.403 \N \N 2 3 262 4 3091 -820 \N 2012-09-04 12:48:57.492 \N \N 2 3 262 4 3092 -820 \N 2012-09-04 12:48:57.583 \N \N 2 3 262 4 3093 -820 \N 2012-09-04 12:48:57.667 \N \N 2 3 262 4 3094 -820 \N 2012-09-04 12:49:33.123 \N \N 2 3 263 4 3095 -820 \N 2012-09-04 12:49:34.638 \N \N 2 3 263 4 3096 -820 \N 2012-09-04 12:49:35.398 \N \N 2 3 263 4 3097 -820 \N 2012-09-04 12:49:35.959 \N \N 2 3 263 4 3098 -820 \N 2012-09-04 12:49:37.053 \N \N 2 3 263 4 3099 -820 \N 2012-09-04 12:49:37.518 \N \N 2 3 263 4 3100 -820 \N 2012-09-04 12:49:38.118 \N \N 2 3 263 4 3101 -820 \N 2012-09-04 12:49:38.67 \N \N 2 3 263 4 3102 -820 \N 2012-09-04 12:49:39.222 \N \N 2 3 263 4 3103 -820 \N 2012-09-04 12:49:39.846 \N \N 2 3 263 4 3104 -820 \N 2012-09-04 12:49:40.789 \N \N 2 3 263 4 3105 -820 \N 2012-09-04 12:49:43.9 \N \N 2 3 263 4 3106 -820 \N 2012-09-04 12:49:53.403 \N \N 2 3 263 4 3107 -820 \N 2012-09-04 12:49:53.952 \N \N 2 3 263 4 3108 -820 \N 2012-09-04 12:50:06.132 \N \N 2 3 263 4 3109 -820 \N 2012-09-04 12:50:10.723 \N \N 2 3 263 4 3110 -820 \N 2012-09-04 12:50:42.009 \N \N 2 3 263 4 3111 -820 \N 2012-09-04 12:50:43.197 \N \N 2 3 263 4 3112 -820 \N 2012-09-04 12:50:49.68 \N \N 2 3 263 4 3113 -820 \N 2012-09-04 12:50:55.135 \N \N 2 3 263 4 3114 -820 \N 2012-09-04 12:51:02.328 \N \N 2 3 263 4 3115 -820 \N 2012-09-04 12:51:08.128 \N \N 2 3 263 4 3116 -820 \N 2012-09-04 12:51:14.881 \N \N 2 3 263 4 3117 -820 \N 2012-09-04 12:51:36.78 \N \N 2 3 263 4 3118 -820 \N 2012-09-04 12:51:54.907 \N \N 2 3 262 4 3119 -820 \N 2012-09-04 12:51:54.907 \N \N 2 3 262 4 3120 -820 \N 2012-09-04 12:51:54.912 \N \N 2 3 262 4 3121 -820 \N 2012-09-04 12:51:54.916 \N \N 2 3 262 4 3122 -820 \N 2012-09-04 12:51:56.904 \N \N 2 3 262 4 3123 -820 \N 2012-09-04 12:51:56.904 \N \N 2 3 262 4 3124 -820 \N 2012-09-04 12:51:56.907 \N \N 2 3 262 4 3125 -820 \N 2012-09-04 12:51:56.912 \N \N 2 3 262 4 3126 -820 \N 2012-09-04 12:52:01.297 \N \N 2 3 262 4 3127 -820 \N 2012-09-04 12:52:01.299 \N \N 2 3 262 4 3128 -820 \N 2012-09-04 12:52:01.299 \N \N 2 3 262 4 3129 -820 \N 2012-09-04 12:52:01.302 \N \N 2 3 262 4 3130 -820 \N 2012-09-04 12:52:01.306 \N \N 2 3 262 4 3131 -820 \N 2012-09-04 12:52:01.453 \N \N 2 3 262 4 3132 -820 \N 2012-09-04 12:52:27.565 \N \N 2 3 262 4 3133 -820 \N 2012-09-04 12:52:35.472 \N \N 2 3 262 4 3134 -820 \N 2012-09-04 12:52:45.999 \N \N 2 3 262 4 3135 -820 \N 2012-09-04 12:52:48.827 \N \N 2 3 262 4 3136 -820 \N 2012-09-04 12:53:08.155 \N \N 2 3 262 4 3137 -820 \N 2012-09-04 12:53:08.155 \N \N 2 3 262 4 3138 -820 \N 2012-09-04 12:53:08.159 \N \N 2 3 262 4 3139 -820 \N 2012-09-04 12:53:08.161 \N \N 2 3 262 4 3140 -820 \N 2012-09-04 12:53:08.173 \N \N 2 3 262 4 3141 -820 \N 2012-09-04 12:53:08.315 \N \N 2 3 262 4 3142 -820 \N 2012-09-04 12:53:16.876 \N \N 2 3 262 4 3143 -820 \N 2012-09-04 12:53:18.476 \N \N 2 3 262 4 3144 -820 \N 2012-09-04 12:53:18.479 \N \N 2 3 262 4 3145 -820 \N 2012-09-04 12:53:18.48 \N \N 2 3 262 4 3146 -820 \N 2012-09-04 12:53:18.484 \N \N 2 3 262 4 3147 -820 \N 2012-09-04 12:53:18.486 \N \N 2 3 262 4 3148 -820 \N 2012-09-04 12:53:18.629 \N \N 2 3 262 4 3149 -820 \N 2012-09-04 12:53:26.89 \N \N 2 3 262 4 3150 -820 \N 2012-09-04 12:53:30.34 \N \N 2 3 262 4 3151 -820 \N 2012-09-04 12:53:41.703 \N \N 2 3 262 4 3152 -820 \N 2012-09-04 12:53:41.743 \N \N 2 3 262 4 3157 -820 \N 2012-09-04 12:53:44.227 \N \N 2 3 262 4 3158 -820 \N 2012-09-04 12:53:44.441 \N \N 2 3 262 4 3159 -820 \N 2012-09-04 12:53:50.207 \N \N 2 3 262 4 3160 -820 \N 2012-09-04 12:53:50.25 \N \N 2 3 262 4 3161 -820 \N 2012-09-04 12:53:54.699 \N \N 2 3 262 4 3162 -820 \N 2012-09-04 12:53:58.4 \N \N 2 3 262 4 3163 -820 \N 2012-09-04 12:53:59.585 \N \N 2 3 262 4 3167 -820 \N 2012-09-04 12:53:59.676 \N \N 2 3 262 4 3169 -820 \N 2012-09-04 12:53:59.861 \N \N 2 3 262 4 3174 -820 \N 2012-09-04 12:54:04.826 \N \N 2 3 262 4 3175 -820 \N 2012-09-04 12:54:04.87 \N \N 2 3 262 4 3176 -820 \N 2012-09-04 12:54:10.25 \N \N 2 3 262 4 3180 -820 \N 2012-09-04 12:54:13.6 \N \N 2 3 262 4 3181 -820 \N 2012-09-04 12:54:17.094 \N \N 2 3 262 4 3182 -820 \N 2012-09-04 12:54:18.075 \N \N 2 3 262 4 3183 -820 \N 2012-09-04 12:54:22.632 \N \N 2 3 262 4 3184 -820 \N 2012-09-04 12:54:26.81 \N \N 2 3 262 4 3185 -820 \N 2012-09-04 12:54:28.01 \N \N 2 3 262 4 3186 -820 \N 2012-09-04 12:54:30.851 \N \N 2 3 262 4 3189 -820 \N 2012-09-04 12:54:30.879 \N \N 2 3 262 4 3191 -820 \N 2012-09-04 12:54:34.636 \N \N 2 3 262 4 3192 -820 \N 2012-09-04 12:54:37.538 \N \N 2 3 262 4 3193 -820 \N 2012-09-04 12:54:41.917 \N \N 2 3 262 4 3194 -820 \N 2012-09-04 12:54:45.839 \N \N 2 3 262 4 3195 -820 \N 2012-09-04 12:54:50.851 \N \N 2 3 262 4 3196 -820 \N 2012-09-04 12:54:51.62 \N \N 2 3 262 4 3197 -820 \N 2012-09-04 12:54:52.673 \N \N 2 3 262 4 3198 -820 \N 2012-09-04 12:54:57.44 \N \N 2 3 262 4 3203 -820 \N 2012-09-04 12:54:57.6 \N \N 2 3 262 4 3204 -820 \N 2012-09-04 12:54:58.581 \N \N 2 3 262 4 3205 -820 \N 2012-09-04 12:54:59.324 \N \N 2 3 262 4 3206 -820 \N 2012-09-04 12:55:00.779 \N \N 2 3 262 4 3207 -820 \N 2012-09-04 12:55:05.711 \N \N 2 3 262 4 3208 -820 \N 2012-09-04 12:55:07.109 \N \N 2 3 262 4 3209 -820 \N 2012-09-04 12:55:08.414 \N \N 2 3 262 4 3210 -820 \N 2012-09-04 12:55:08.955 \N \N 2 3 262 4 3215 -820 \N 2012-09-04 12:55:11.385 \N \N 2 3 262 4 3216 -820 \N 2012-09-04 12:55:11.538 \N \N 2 3 262 4 3217 -820 \N 2012-09-04 12:55:12.324 \N \N 2 3 262 4 3218 -820 \N 2012-09-04 12:55:18.301 \N \N 2 3 262 4 3219 -820 \N 2012-09-04 12:55:19.193 \N \N 2 3 262 4 3220 -820 \N 2012-09-04 12:55:20.196 \N \N 2 3 262 4 3221 -820 \N 2012-09-04 12:55:23 \N \N 2 3 262 4 3226 -820 \N 2012-09-04 12:55:23.148 \N \N 2 3 262 4 3227 -820 \N 2012-09-04 12:55:23.626 \N \N 2 3 262 4 3228 -820 \N 2012-09-04 12:55:27.639 \N \N 2 3 262 4 3229 -820 \N 2012-09-04 12:55:30.383 \N \N 2 3 262 4 3230 -820 \N 2012-09-04 12:55:31.152 \N \N 2 3 262 4 3231 -820 \N 2012-09-04 12:55:36.082 \N \N 2 3 262 4 3236 -820 \N 2012-09-04 12:55:36.313 \N \N 2 3 262 4 3241 -820 \N 2012-09-04 12:55:36.456 \N \N 2 3 262 4 3242 -820 \N 2012-09-04 12:55:39.828 \N \N 2 3 262 4 3243 -820 \N 2012-09-04 12:55:40.598 \N \N 2 3 262 4 3244 -820 \N 2012-09-04 12:55:42.273 \N \N 2 3 262 4 3245 -820 \N 2012-09-04 12:55:46.865 \N \N 2 3 262 4 3246 -820 \N 2012-09-04 12:55:48.679 \N \N 2 3 262 4 3247 -820 \N 2012-09-04 12:55:49.43 \N \N 2 3 262 4 3248 -820 \N 2012-09-04 12:55:50.506 \N \N 2 3 262 4 3249 -820 \N 2012-09-04 12:56:09.101 \N \N 2 3 262 4 3253 -820 \N 2012-09-04 12:56:09.687 \N \N 2 3 262 4 3254 -820 \N 2012-09-04 12:56:14.897 \N \N 2 3 262 4 3255 -820 \N 2012-09-04 12:56:19.05 \N \N 2 3 262 4 3256 -820 \N 2012-09-04 12:56:19.454 \N \N 2 3 262 4 3257 -820 \N 2012-09-04 12:56:20.078 \N \N 2 3 262 4 3258 -820 \N 2012-09-04 12:56:20.972 \N \N 2 3 262 4 3262 -820 \N 2012-09-04 12:56:30.65 \N \N 2 3 262 4 3264 -820 \N 2012-09-04 12:56:30.799 \N \N 2 3 262 4 3266 -820 \N 2012-09-04 12:57:08.47 \N \N 2 3 262 4 3270 -820 \N 2012-09-04 12:57:08.628 \N \N 2 3 262 4 3271 -820 \N 2012-09-04 12:57:09.311 \N \N 2 3 262 4 3272 -820 \N 2012-09-04 14:01:32.543 \N \N 2 3 262 4 3273 -820 \N 2012-09-04 14:05:43.617 \N \N 2 3 262 4 3274 -820 \N 2012-09-04 14:08:37.466 \N \N 2 3 262 4 3275 -820 \N 2012-09-04 14:12:07.196 \N \N 2 3 262 4 3276 -820 \N 2012-09-04 14:19:57.157 \N \N 2 3 263 4 3277 -820 \N 2012-09-04 14:20:30.475 \N \N 2 3 262 4 3278 -820 \N 2012-09-04 14:23:22.881 \N \N 2 3 263 4 3279 -820 \N 2012-09-04 14:23:34.237 \N \N 2 3 263 4 3280 -820 \N 2012-09-04 14:23:34.269 \N \N 2 3 263 4 3281 -820 \N 2012-09-04 14:23:34.286 \N \N 2 3 263 4 3282 -820 \N 2012-09-04 14:23:34.309 \N \N 2 3 263 4 3283 -820 \N 2012-09-04 14:23:34.328 \N \N 2 3 263 4 3284 -820 \N 2012-09-04 14:23:35.595 \N \N 2 3 263 4 3285 -820 \N 2012-09-04 14:23:51.726 \N \N 2 3 262 4 3286 -820 \N 2012-09-04 14:23:54.984 \N \N 2 3 262 4 3153 -820 \N 2012-09-04 12:53:44.213 \N \N 2 3 262 4 3164 -820 \N 2012-09-04 12:53:59.669 \N \N 2 3 262 4 3170 -820 \N 2012-09-04 12:53:59.861 \N \N 2 3 262 4 3177 -820 \N 2012-09-04 12:54:10.253 \N \N 2 3 262 4 3187 -820 \N 2012-09-04 12:54:30.876 \N \N 2 3 262 4 3199 -820 \N 2012-09-04 12:54:57.442 \N \N 2 3 262 4 3211 -820 \N 2012-09-04 12:55:11.371 \N \N 2 3 262 4 3222 -820 \N 2012-09-04 12:55:23.001 \N \N 2 3 262 4 3234 -820 \N 2012-09-04 12:55:36.092 \N \N 2 3 262 4 3237 -820 \N 2012-09-04 12:55:36.313 \N \N 2 3 262 4 3250 -820 \N 2012-09-04 12:56:09.102 \N \N 2 3 262 4 3261 -820 \N 2012-09-04 12:56:30.65 \N \N 2 3 262 4 3265 -820 \N 2012-09-04 12:57:08.47 \N \N 2 3 262 4 3305 -820 \N 2012-09-04 14:24:12.619 \N \N 2 3 263 4 3306 -820 \N 2012-09-04 14:24:24.366 \N \N 2 3 263 4 3309 -820 \N 2012-09-04 14:24:36.379 \N \N 2 3 263 4 3310 -820 \N 2012-09-04 14:24:39.949 \N \N 2 3 263 4 3328 -820 \N 2012-09-04 14:24:47.209 \N \N 2 3 263 4 3329 -820 \N 2012-09-04 14:24:50.896 \N \N 2 3 263 4 3330 -820 \N 2012-09-04 14:24:54.504 \N \N 2 3 263 4 3348 -820 \N 2012-09-04 14:25:30.377 \N \N 2 3 263 4 3367 -820 \N 2012-09-04 14:27:17.345 \N \N 2 3 262 4 3373 -820 \N 2012-09-04 14:28:10.972 \N \N 2 3 262 4 3378 -820 \N 2012-09-04 14:28:11.22 \N \N 2 3 262 4 3390 -820 \N 2012-09-04 14:30:31.542 \N \N 2 3 262 4 3392 -820 \N 2012-09-04 14:30:31.595 \N \N 2 3 262 4 3395 -820 \N 2012-09-04 14:30:32.009 \N \N 2 3 262 4 3407 -820 \N 2012-09-04 14:30:45.323 \N \N 2 3 262 4 3427 -820 \N 2012-09-04 14:31:06.336 \N \N 2 3 262 4 3436 -820 \N 2012-09-04 14:31:16.664 \N \N 2 3 262 4 3154 -820 \N 2012-09-04 12:53:44.215 \N \N 2 3 262 4 3166 -820 \N 2012-09-04 12:53:59.672 \N \N 2 3 262 4 3171 -820 \N 2012-09-04 12:53:59.891 \N \N 2 3 262 4 3178 -820 \N 2012-09-04 12:54:10.253 \N \N 2 3 262 4 3188 -820 \N 2012-09-04 12:54:30.877 \N \N 2 3 262 4 3200 -820 \N 2012-09-04 12:54:57.443 \N \N 2 3 262 4 3212 -820 \N 2012-09-04 12:55:11.371 \N \N 2 3 262 4 3223 -820 \N 2012-09-04 12:55:23.003 \N \N 2 3 262 4 3232 -820 \N 2012-09-04 12:55:36.086 \N \N 2 3 262 4 3238 -820 \N 2012-09-04 12:55:36.314 \N \N 2 3 262 4 3252 -820 \N 2012-09-04 12:56:09.105 \N \N 2 3 262 4 3259 -820 \N 2012-09-04 12:56:30.65 \N \N 2 3 262 4 3267 -820 \N 2012-09-04 12:57:08.473 \N \N 2 3 262 4 3155 -820 \N 2012-09-04 12:53:44.217 \N \N 2 3 262 4 3165 -820 \N 2012-09-04 12:53:59.672 \N \N 2 3 262 4 3168 -820 \N 2012-09-04 12:53:59.76 \N \N 2 3 262 4 3172 -820 \N 2012-09-04 12:53:59.896 \N \N 2 3 262 4 3179 -820 \N 2012-09-04 12:54:10.255 \N \N 2 3 262 4 3190 -820 \N 2012-09-04 12:54:30.879 \N \N 2 3 262 4 3201 -820 \N 2012-09-04 12:54:57.444 \N \N 2 3 262 4 3213 -820 \N 2012-09-04 12:55:11.372 \N \N 2 3 262 4 3224 -820 \N 2012-09-04 12:55:23.004 \N \N 2 3 262 4 3233 -820 \N 2012-09-04 12:55:36.089 \N \N 2 3 262 4 3240 -820 \N 2012-09-04 12:55:36.317 \N \N 2 3 262 4 3251 -820 \N 2012-09-04 12:56:09.105 \N \N 2 3 262 4 3260 -820 \N 2012-09-04 12:56:30.65 \N \N 2 3 262 4 3268 -820 \N 2012-09-04 12:57:08.473 \N \N 2 3 262 4 3156 -820 \N 2012-09-04 12:53:44.218 \N \N 2 3 262 4 3173 -820 \N 2012-09-04 12:53:59.913 \N \N 2 3 262 4 3202 -820 \N 2012-09-04 12:54:57.445 \N \N 2 3 262 4 3214 -820 \N 2012-09-04 12:55:11.372 \N \N 2 3 262 4 3225 -820 \N 2012-09-04 12:55:23.007 \N \N 2 3 262 4 3235 -820 \N 2012-09-04 12:55:36.093 \N \N 2 3 262 4 3239 -820 \N 2012-09-04 12:55:36.317 \N \N 2 3 262 4 3263 -820 \N 2012-09-04 12:56:30.651 \N \N 2 3 262 4 3269 -820 \N 2012-09-04 12:57:08.473 \N \N 2 3 262 4 3287 -820 \N 2012-09-04 14:23:57.511 \N \N 2 3 262 4 3288 -820 \N 2012-09-04 14:24:04.088 \N \N 2 3 263 4 3289 -820 \N 2012-09-04 14:24:04.679 \N \N 2 3 263 4 3290 -820 \N 2012-09-04 14:24:04.778 \N \N 2 3 263 4 3291 -820 \N 2012-09-04 14:24:04.887 \N \N 2 3 263 4 3292 -820 \N 2012-09-04 14:24:05.749 \N \N 2 3 263 4 3293 -820 \N 2012-09-04 14:24:05.8 \N \N 2 3 263 4 3294 -820 \N 2012-09-04 14:24:05.815 \N \N 2 3 263 4 3295 -820 \N 2012-09-04 14:24:05.871 \N \N 2 3 263 4 3296 -820 \N 2012-09-04 14:24:05.888 \N \N 2 3 263 4 3297 -820 \N 2012-09-04 14:24:05.903 \N \N 2 3 263 4 3298 -820 \N 2012-09-04 14:24:05.951 \N \N 2 3 263 4 3299 -820 \N 2012-09-04 14:24:05.98 \N \N 2 3 263 4 3300 -820 \N 2012-09-04 14:24:06.034 \N \N 2 3 263 4 3301 -820 \N 2012-09-04 14:24:06.085 \N \N 2 3 263 4 3302 -820 \N 2012-09-04 14:24:06.115 \N \N 2 3 263 4 3303 -820 \N 2012-09-04 14:24:07.763 \N \N 2 3 263 4 3304 -820 \N 2012-09-04 14:24:12.062 \N \N 2 3 263 4 3307 -820 \N 2012-09-04 14:24:28.51 \N \N 2 3 263 4 3308 -820 \N 2012-09-04 14:24:32.638 \N \N 2 3 263 4 3311 -820 \N 2012-09-04 14:24:41.049 \N \N 2 3 263 4 3312 -820 \N 2012-09-04 14:24:41.817 \N \N 2 3 263 4 3313 -820 \N 2012-09-04 14:24:41.933 \N \N 2 3 263 4 3314 -820 \N 2012-09-04 14:24:42.049 \N \N 2 3 263 4 3315 -820 \N 2012-09-04 14:24:43.316 \N \N 2 3 263 4 3316 -820 \N 2012-09-04 14:24:43.375 \N \N 2 3 263 4 3317 -820 \N 2012-09-04 14:24:43.391 \N \N 2 3 263 4 3318 -820 \N 2012-09-04 14:24:43.446 \N \N 2 3 263 4 3319 -820 \N 2012-09-04 14:24:43.473 \N \N 2 3 263 4 3320 -820 \N 2012-09-04 14:24:43.488 \N \N 2 3 263 4 3321 -820 \N 2012-09-04 14:24:43.511 \N \N 2 3 263 4 3322 -820 \N 2012-09-04 14:24:43.524 \N \N 2 3 263 4 3323 -820 \N 2012-09-04 14:24:43.54 \N \N 2 3 263 4 3324 -820 \N 2012-09-04 14:24:43.574 \N \N 2 3 263 4 3325 -820 \N 2012-09-04 14:24:43.585 \N \N 2 3 263 4 3326 -820 \N 2012-09-04 14:24:43.59 \N \N 2 3 263 4 3327 -820 \N 2012-09-04 14:24:45.201 \N \N 2 3 263 4 3331 -820 \N 2012-09-04 14:24:58.577 \N \N 2 3 263 4 3332 -820 \N 2012-09-04 14:25:23.645 \N \N 2 3 263 4 3333 -820 \N 2012-09-04 14:25:24.408 \N \N 2 3 263 4 3334 -820 \N 2012-09-04 14:25:24.5 \N \N 2 3 263 4 3335 -820 \N 2012-09-04 14:25:24.601 \N \N 2 3 263 4 3336 -820 \N 2012-09-04 14:25:25.684 \N \N 2 3 263 4 3337 -820 \N 2012-09-04 14:25:25.735 \N \N 2 3 263 4 3338 -820 \N 2012-09-04 14:25:25.751 \N \N 2 3 263 4 3339 -820 \N 2012-09-04 14:25:25.808 \N \N 2 3 263 4 3340 -820 \N 2012-09-04 14:25:25.824 \N \N 2 3 263 4 3341 -820 \N 2012-09-04 14:25:25.839 \N \N 2 3 263 4 3342 -820 \N 2012-09-04 14:25:25.862 \N \N 2 3 263 4 3343 -820 \N 2012-09-04 14:25:25.875 \N \N 2 3 263 4 3344 -820 \N 2012-09-04 14:25:25.891 \N \N 2 3 263 4 3345 -820 \N 2012-09-04 14:25:25.913 \N \N 2 3 263 4 3346 -820 \N 2012-09-04 14:25:25.925 \N \N 2 3 263 4 3347 -820 \N 2012-09-04 14:25:27.406 \N \N 2 3 263 4 3349 -820 \N 2012-09-04 14:26:04.243 \N \N 2 3 263 4 3350 -820 \N 2012-09-04 14:26:04.993 \N \N 2 3 263 4 3351 -820 \N 2012-09-04 14:26:05.087 \N \N 2 3 263 4 3352 -820 \N 2012-09-04 14:26:05.187 \N \N 2 3 263 4 3353 -820 \N 2012-09-04 14:26:06.27 \N \N 2 3 263 4 3354 -820 \N 2012-09-04 14:26:06.321 \N \N 2 3 263 4 3355 -820 \N 2012-09-04 14:26:06.337 \N \N 2 3 263 4 3356 -820 \N 2012-09-04 14:26:06.392 \N \N 2 3 263 4 3357 -820 \N 2012-09-04 14:26:06.403 \N \N 2 3 263 4 3358 -820 \N 2012-09-04 14:26:06.417 \N \N 2 3 263 4 3359 -820 \N 2012-09-04 14:26:06.439 \N \N 2 3 263 4 3360 -820 \N 2012-09-04 14:26:06.453 \N \N 2 3 263 4 3361 -820 \N 2012-09-04 14:26:06.47 \N \N 2 3 263 4 3362 -820 \N 2012-09-04 14:26:06.491 \N \N 2 3 263 4 3363 -820 \N 2012-09-04 14:26:06.504 \N \N 2 3 263 4 3364 -820 \N 2012-09-04 14:26:11.745 \N \N 2 3 263 4 3365 -820 \N 2012-09-04 14:27:17.337 \N \N 2 3 262 4 3366 -820 \N 2012-09-04 14:27:17.343 \N \N 2 3 262 4 3368 -820 \N 2012-09-04 14:27:17.354 \N \N 2 3 262 4 3369 -820 \N 2012-09-04 14:27:17.376 \N \N 2 3 262 4 3370 -820 \N 2012-09-04 14:27:17.386 \N \N 2 3 262 4 3371 -820 \N 2012-09-04 14:27:21.79 \N \N 2 3 262 4 3372 -820 \N 2012-09-04 14:28:10.972 \N \N 2 3 262 4 3374 -820 \N 2012-09-04 14:28:10.978 \N \N 2 3 262 4 3375 -820 \N 2012-09-04 14:28:10.983 \N \N 2 3 262 4 3376 -820 \N 2012-09-04 14:28:11.01 \N \N 2 3 262 4 3377 -820 \N 2012-09-04 14:28:11.22 \N \N 2 3 262 4 3379 -820 \N 2012-09-04 14:28:11.22 \N \N 2 3 262 4 3380 -820 \N 2012-09-04 14:28:11.22 \N \N 2 3 262 4 3381 -820 \N 2012-09-04 14:28:11.223 \N \N 2 3 262 4 3382 -820 \N 2012-09-04 14:28:11.367 \N \N 2 3 262 4 3383 -820 \N 2012-09-04 14:28:12.351 \N \N 2 3 262 4 3384 -820 \N 2012-09-04 14:28:12.647 \N \N 2 3 262 4 3385 -820 \N 2012-09-04 14:28:13.183 \N \N 2 3 262 4 3386 -820 \N 2012-09-04 14:28:13.243 \N \N 2 3 262 4 3387 -820 \N 2012-09-04 14:28:13.361 \N \N 2 3 262 4 3388 -820 \N 2012-09-04 14:29:18.608 \N \N 2 3 262 4 3389 -820 \N 2012-09-04 14:29:19.122 \N \N 2 3 262 4 3391 -820 \N 2012-09-04 14:30:31.592 \N \N 2 3 262 4 3393 -820 \N 2012-09-04 14:30:31.6 \N \N 2 3 262 4 3394 -820 \N 2012-09-04 14:30:31.602 \N \N 2 3 262 4 3396 -820 \N 2012-09-04 14:30:33.169 \N \N 2 3 262 4 3397 -820 \N 2012-09-04 14:30:33.685 \N \N 2 3 262 4 3398 -820 \N 2012-09-04 14:30:34.125 \N \N 2 3 262 4 3399 -820 \N 2012-09-04 14:30:34.172 \N \N 2 3 262 4 3400 -820 \N 2012-09-04 14:30:34.346 \N \N 2 3 262 4 3401 -820 \N 2012-09-04 14:30:41.207 \N \N 2 3 262 4 3402 -820 \N 2012-09-04 14:30:41.279 \N \N 2 3 262 4 3403 -820 \N 2012-09-04 14:30:41.344 \N \N 2 3 262 4 3404 -820 \N 2012-09-04 14:30:41.422 \N \N 2 3 262 4 3405 -820 \N 2012-09-04 14:30:41.453 \N \N 2 3 262 4 3406 -820 \N 2012-09-04 14:30:45.257 \N \N 2 3 262 4 3408 -820 \N 2012-09-04 14:30:45.348 \N \N 2 3 262 4 3409 -820 \N 2012-09-04 14:30:45.383 \N \N 2 3 262 4 3410 -820 \N 2012-09-04 14:30:45.407 \N \N 2 3 262 4 3411 -820 \N 2012-09-04 14:30:48.64 \N \N 2 3 262 4 3412 -820 \N 2012-09-04 14:30:49.205 \N \N 2 3 262 4 3413 -820 \N 2012-09-04 14:30:49.894 \N \N 2 3 262 4 3414 -820 \N 2012-09-04 14:30:49.948 \N \N 2 3 262 4 3415 -820 \N 2012-09-04 14:30:50.099 \N \N 2 3 262 4 3416 -820 \N 2012-09-04 14:30:56.794 \N \N 2 3 262 4 3417 -820 \N 2012-09-04 14:30:56.849 \N \N 2 3 262 4 3418 -820 \N 2012-09-04 14:30:56.913 \N \N 2 3 262 4 3419 -820 \N 2012-09-04 14:30:56.97 \N \N 2 3 262 4 3420 -820 \N 2012-09-04 14:30:56.989 \N \N 2 3 262 4 3421 -820 \N 2012-09-04 14:30:59.126 \N \N 2 3 262 4 3422 -820 \N 2012-09-04 14:30:59.666 \N \N 2 3 262 4 3423 -820 \N 2012-09-04 14:31:00.466 \N \N 2 3 262 4 3424 -820 \N 2012-09-04 14:31:00.557 \N \N 2 3 262 4 3425 -820 \N 2012-09-04 14:31:00.74 \N \N 2 3 262 4 3426 -820 \N 2012-09-04 14:31:06.32 \N \N 2 3 262 4 3428 -820 \N 2012-09-04 14:31:06.389 \N \N 2 3 262 4 3429 -820 \N 2012-09-04 14:31:06.436 \N \N 2 3 262 4 3430 -820 \N 2012-09-04 14:31:06.453 \N \N 2 3 262 4 3431 -820 \N 2012-09-04 14:31:08.476 \N \N 2 3 262 4 3432 -820 \N 2012-09-04 14:31:08.962 \N \N 2 3 262 4 3433 -820 \N 2012-09-04 14:31:09.733 \N \N 2 3 262 4 3434 -820 \N 2012-09-04 14:31:09.794 \N \N 2 3 262 4 3435 -820 \N 2012-09-04 14:31:09.947 \N \N 2 3 262 4 3437 -820 \N 2012-09-04 14:31:16.691 \N \N 2 3 262 4 3438 -820 \N 2012-09-04 14:31:16.729 \N \N 2 3 262 4 3439 -820 \N 2012-09-04 14:31:16.794 \N \N 2 3 262 4 3440 -820 \N 2012-09-04 14:31:16.809 \N \N 2 3 262 4 3441 -820 \N 2012-09-04 14:31:18.973 \N \N 2 3 262 4 3442 -820 \N 2012-09-04 14:31:19.645 \N \N 2 3 262 4 3443 -820 \N 2012-09-04 14:31:20.327 \N \N 2 3 262 4 3444 -820 \N 2012-09-04 14:31:20.374 \N \N 2 3 262 4 3445 -820 \N 2012-09-04 14:31:20.535 \N \N 2 3 262 4 3446 -820 \N 2012-09-04 14:31:28.635 \N \N 2 3 262 4 3447 -820 \N 2012-09-04 14:31:28.64 \N \N 2 3 262 4 3449 -820 \N 2012-09-04 14:31:28.68 \N \N 2 3 262 4 3448 -820 \N 2012-09-04 14:31:28.678 \N \N 2 3 262 4 3450 -820 \N 2012-09-04 14:31:28.715 \N \N 2 3 262 4 3451 -820 \N 2012-09-04 14:35:28.091 \N \N 2 3 262 4 3452 -820 \N 2012-09-04 14:35:34.868 \N \N 0 0 255 9 3453 -820 \N 2012-09-04 14:35:34.934 \N \N 2 3 266 4 3454 -820 \N 2012-09-04 14:35:35.021 \N \N 2 3 266 4 3455 -820 \N 2012-09-04 14:35:50.996 \N \N 2 3 266 4 3456 -820 \N 2012-09-04 14:36:04.984 \N \N 2 3 266 4 3457 -820 \N 2012-09-04 14:36:05.014 \N \N 2 3 266 4 3458 -820 \N 2012-09-04 14:36:05.03 \N \N 2 3 266 4 3459 -820 \N 2012-09-04 14:36:05.103 \N \N 2 3 266 4 3460 -820 \N 2012-09-04 14:36:05.142 \N \N 2 3 266 4 3461 -820 \N 2012-09-04 14:36:10.721 \N \N 2 3 266 4 3462 -820 \N 2012-09-04 14:36:13.133 \N \N 2 3 262 4 3463 -820 \N 2012-09-04 14:36:13.141 \N \N 2 3 262 4 3464 -820 \N 2012-09-04 14:36:13.389 \N \N 2 3 262 4 3465 -820 \N 2012-09-04 14:36:13.408 \N \N 2 3 262 4 3466 -820 \N 2012-09-04 14:36:13.551 \N \N 2 3 262 4 3467 -820 \N 2012-09-04 14:36:17.922 \N \N 2 3 262 4 3468 -820 \N 2012-09-04 14:44:34.032 \N \N 2 3 265 4 3469 -820 \N 2012-09-04 14:44:34.032 \N \N 2 3 265 4 3470 -820 \N 2012-09-04 14:44:34.482 \N \N 2 3 265 4 3471 -820 \N 2012-09-04 14:44:34.529 \N \N 2 3 265 4 3472 -820 \N 2012-09-04 14:44:34.529 \N \N 2 3 265 4 3473 -820 \N 2012-09-04 14:44:39.593 \N \N 2 3 266 4 3474 -820 \N 2012-09-04 14:44:42.359 \N \N 2 3 266 4 3475 -820 \N 2012-09-04 14:44:42.469 \N \N 2 3 266 4 3476 -820 \N 2012-09-04 14:44:42.583 \N \N 2 3 266 4 3477 -820 \N 2012-09-04 14:44:44.899 \N \N 2 3 266 4 3478 -820 \N 2012-09-04 14:44:45.006 \N \N 2 3 266 4 3479 -820 \N 2012-09-04 14:44:45.03 \N \N 2 3 266 4 3480 -820 \N 2012-09-04 14:44:45.096 \N \N 2 3 266 4 3481 -820 \N 2012-09-04 14:44:45.122 \N \N 2 3 266 4 3482 -820 \N 2012-09-04 14:44:45.143 \N \N 2 3 266 4 3483 -820 \N 2012-09-04 14:44:45.212 \N \N 2 3 266 4 3484 -820 \N 2012-09-04 14:44:45.229 \N \N 2 3 266 4 3485 -820 \N 2012-09-04 14:44:45.246 \N \N 2 3 266 4 3486 -820 \N 2012-09-04 14:44:45.267 \N \N 2 3 266 4 3487 -820 \N 2012-09-04 14:44:45.278 \N \N 2 3 266 4 3488 -820 \N 2012-09-04 14:44:45.956 \N \N 2 3 266 4 3489 -820 \N 2012-09-04 14:45:01.97 \N \N 2 3 266 4 3490 -820 \N 2012-09-04 14:45:02.38 \N \N 2 3 266 4 3491 -820 \N 2012-09-04 14:45:02.502 \N \N 2 3 266 4 3492 -820 \N 2012-09-04 14:45:02.607 \N \N 2 3 266 4 3493 -820 \N 2012-09-04 14:45:02.884 \N \N 2 3 266 4 3494 -820 \N 2012-09-04 14:45:02.934 \N \N 2 3 266 4 3495 -820 \N 2012-09-04 14:45:02.95 \N \N 2 3 266 4 3496 -820 \N 2012-09-04 14:45:03.003 \N \N 2 3 266 4 3497 -820 \N 2012-09-04 14:45:03.016 \N \N 2 3 266 4 3498 -820 \N 2012-09-04 14:45:03.043 \N \N 2 3 266 4 3499 -820 \N 2012-09-04 14:45:03.057 \N \N 2 3 266 4 3500 -820 \N 2012-09-04 14:45:03.072 \N \N 2 3 266 4 3501 -820 \N 2012-09-04 14:48:47.798 \N \N 2 3 265 4 3502 -820 \N 2012-09-04 14:48:50.351 \N \N 2 3 265 4 3503 -820 \N 2012-09-04 14:48:51.21 \N \N 2 3 265 4 3504 -820 \N 2012-09-04 14:48:51.607 \N \N 2 3 265 4 3505 -820 \N 2012-09-04 14:48:55.889 \N \N 2 3 265 4 3506 -820 \N 2012-09-04 14:48:55.937 \N \N 2 3 265 4 3507 -820 \N 2012-09-04 14:48:56.091 \N \N 2 3 265 4 3508 -820 \N 2012-09-04 14:49:05.394 \N \N 2 3 265 4 3509 -820 \N 2012-09-04 14:49:05.492 \N \N 2 3 265 4 3510 -820 \N 2012-09-04 14:49:05.53 \N \N 2 3 265 4 3511 -820 \N 2012-09-04 14:49:05.573 \N \N 2 3 265 4 3512 -820 \N 2012-09-04 14:49:05.588 \N \N 2 3 265 4 3513 -820 \N 2012-09-04 14:49:08.921 \N \N 2 3 265 4 3514 -820 \N 2012-09-04 14:49:10.232 \N \N 2 3 265 4 3515 -820 \N 2012-09-04 14:49:10.855 \N \N 2 3 265 4 3516 -820 \N 2012-09-04 14:49:11.119 \N \N 2 3 265 4 3517 -820 \N 2012-09-04 14:49:11.377 \N \N 2 3 265 4 3518 -820 \N 2012-09-04 14:49:11.641 \N \N 2 3 265 4 3519 -820 \N 2012-09-04 14:49:11.92 \N \N 2 3 265 4 3520 -820 \N 2012-09-04 14:49:12.642 \N \N 2 3 265 4 3521 -820 \N 2012-09-04 14:49:12.9 \N \N 2 3 265 4 3522 -820 \N 2012-09-04 14:49:13.144 \N \N 2 3 265 4 3523 -820 \N 2012-09-04 14:49:13.604 \N \N 2 3 265 4 3524 -820 \N 2012-09-04 14:49:13.857 \N \N 2 3 265 4 3525 -820 \N 2012-09-04 14:49:14.122 \N \N 2 3 265 4 3526 -820 \N 2012-09-04 14:49:14.366 \N \N 2 3 265 4 3527 -820 \N 2012-09-04 14:49:14.949 \N \N 2 3 265 4 3528 -820 \N 2012-09-04 14:49:15.194 \N \N 2 3 265 4 3529 -820 \N 2012-09-04 14:49:15.693 \N \N 2 3 265 4 3530 -820 \N 2012-09-04 14:49:15.96 \N \N 2 3 265 4 3531 -820 \N 2012-09-04 14:49:16.208 \N \N 2 3 265 4 3532 -820 \N 2012-09-04 14:49:16.441 \N \N 2 3 265 4 3533 -820 \N 2012-09-04 14:49:16.695 \N \N 2 3 265 4 3534 -820 \N 2012-09-04 14:49:16.935 \N \N 2 3 265 4 3535 -820 \N 2012-09-04 14:49:18.696 \N \N 2 3 265 4 3536 -820 \N 2012-09-04 14:49:18.962 \N \N 2 3 265 4 3537 -820 \N 2012-09-04 14:49:19.195 \N \N 2 3 265 4 3538 -820 \N 2012-09-04 14:49:19.444 \N \N 2 3 265 4 3539 -820 \N 2012-09-04 14:49:19.683 \N \N 2 3 265 4 3540 -820 \N 2012-09-04 14:49:19.923 \N \N 2 3 265 4 3541 -820 \N 2012-09-04 14:49:20.172 \N \N 2 3 265 4 3542 -820 \N 2012-09-04 14:49:20.415 \N \N 2 3 265 4 3543 -820 \N 2012-09-04 14:49:20.656 \N \N 2 3 265 4 3544 -820 \N 2012-09-04 14:49:20.89 \N \N 2 3 265 4 3545 -820 \N 2012-09-04 14:49:21.134 \N \N 2 3 265 4 3546 -820 \N 2012-09-04 14:49:21.521 \N \N 2 3 265 4 3547 -820 \N 2012-09-04 14:49:22.535 \N \N 2 3 265 4 3548 -820 \N 2012-09-04 14:49:22.978 \N \N 2 3 265 4 3549 -820 \N 2012-09-04 14:49:23.237 \N \N 2 3 265 4 3550 -820 \N 2012-09-04 14:49:23.48 \N \N 2 3 265 4 3551 -820 \N 2012-09-04 14:49:23.722 \N \N 2 3 265 4 3552 -820 \N 2012-09-04 14:49:23.964 \N \N 2 3 265 4 3553 -820 \N 2012-09-04 14:49:24.222 \N \N 2 3 265 4 3554 -820 \N 2012-09-04 14:49:24.492 \N \N 2 3 265 4 3555 -820 \N 2012-09-04 14:49:24.738 \N \N 2 3 265 4 3556 -820 \N 2012-09-04 14:49:24.976 \N \N 2 3 265 4 3557 -820 \N 2012-09-04 14:49:25.232 \N \N 2 3 265 4 3558 -820 \N 2012-09-04 14:49:25.491 \N \N 2 3 265 4 3559 -820 \N 2012-09-04 14:49:25.736 \N \N 2 3 265 4 3560 -820 \N 2012-09-04 14:49:25.99 \N \N 2 3 265 4 3561 -820 \N 2012-09-04 14:49:26.244 \N \N 2 3 265 4 3562 -820 \N 2012-09-04 14:49:26.504 \N \N 2 3 265 4 3563 -820 \N 2012-09-04 14:49:26.758 \N \N 2 3 265 4 3564 -820 \N 2012-09-04 14:49:27 \N \N 2 3 265 4 3565 -820 \N 2012-09-04 14:49:27.258 \N \N 2 3 265 4 3566 -820 \N 2012-09-04 14:49:27.813 \N \N 2 3 265 4 3567 -820 \N 2012-09-04 14:49:28.237 \N \N 2 3 265 4 3568 -820 \N 2012-09-04 14:49:28.734 \N \N 2 3 265 4 3569 -820 \N 2012-09-04 14:49:29.175 \N \N 2 3 265 4 3570 -820 \N 2012-09-04 14:49:29.44 \N \N 2 3 265 4 3571 -820 \N 2012-09-04 14:49:29.684 \N \N 2 3 265 4 3572 -820 \N 2012-09-04 14:49:29.95 \N \N 2 3 265 4 3573 -820 \N 2012-09-04 14:49:30.192 \N \N 2 3 265 4 3574 -820 \N 2012-09-04 14:49:30.446 \N \N 2 3 265 4 3575 -820 \N 2012-09-04 14:49:30.722 \N \N 2 3 265 4 3576 -820 \N 2012-09-04 14:49:31.034 \N \N 2 3 265 4 3577 -820 \N 2012-09-04 14:49:31.392 \N \N 2 3 265 4 3578 -820 \N 2012-09-04 14:51:31.587 \N \N 2 3 265 4 3579 -820 \N 2012-09-04 14:51:32.702 \N \N 2 3 265 4 3580 -820 \N 2012-09-04 14:51:33.104 \N \N 2 3 265 4 3581 -820 \N 2012-09-04 14:51:35.169 \N \N 2 3 265 4 3582 -820 \N 2012-09-04 14:51:35.432 \N \N 2 3 265 4 3583 -820 \N 2012-09-04 14:51:35.558 \N \N 2 3 265 4 3584 -820 \N 2012-09-04 14:51:38.342 \N \N 2 3 265 4 3585 -820 \N 2012-09-04 14:51:39.216 \N \N 2 3 265 4 3586 -820 \N 2012-09-04 14:51:39.397 \N \N 2 3 265 4 3587 -820 \N 2012-09-04 14:51:39.563 \N \N 2 3 265 4 3588 -820 \N 2012-09-04 14:51:39.76 \N \N 2 3 265 4 3589 -820 \N 2012-09-04 14:51:39.946 \N \N 2 3 265 4 3590 -820 \N 2012-09-04 14:51:40.126 \N \N 2 3 265 4 3591 -820 \N 2012-09-04 14:51:40.333 \N \N 2 3 265 4 3592 -820 \N 2012-09-04 14:51:40.502 \N \N 2 3 265 4 3593 -820 \N 2012-09-04 14:51:40.687 \N \N 2 3 265 4 3594 -820 \N 2012-09-04 14:51:42.595 \N \N 2 3 265 4 3595 -820 \N 2012-09-04 14:51:42.78 \N \N 2 3 265 4 3596 -820 \N 2012-09-04 14:51:42.955 \N \N 2 3 265 4 3597 -820 \N 2012-09-04 14:51:43.117 \N \N 2 3 265 4 3598 -820 \N 2012-09-04 14:51:43.289 \N \N 2 3 265 4 3599 -820 \N 2012-09-04 14:51:43.493 \N \N 2 3 265 4 3600 -820 \N 2012-09-04 14:51:43.695 \N \N 2 3 265 4 3601 -820 \N 2012-09-04 14:51:43.878 \N \N 2 3 265 4 3602 -820 \N 2012-09-04 14:51:44.049 \N \N 2 3 265 4 3603 -820 \N 2012-09-04 14:51:44.214 \N \N 2 3 265 4 3604 -820 \N 2012-09-04 14:51:44.42 \N \N 2 3 265 4 3605 -820 \N 2012-09-04 14:51:44.587 \N \N 2 3 265 4 3606 -820 \N 2012-09-04 14:51:44.759 \N \N 2 3 265 4 3607 -820 \N 2012-09-04 14:51:44.949 \N \N 2 3 265 4 3608 -820 \N 2012-09-04 14:51:45.132 \N \N 2 3 265 4 3609 -820 \N 2012-09-04 14:51:51.603 \N \N 2 3 265 4 3610 -820 \N 2012-09-04 14:51:51.653 \N \N 2 3 265 4 3611 -820 \N 2012-09-04 14:51:51.684 \N \N 2 3 265 4 3612 -820 \N 2012-09-04 14:51:51.727 \N \N 2 3 265 4 3613 -820 \N 2012-09-04 14:51:51.744 \N \N 2 3 265 4 3615 -820 \N 2012-09-04 14:52:03.767 \N \N 2 3 265 4 3616 -820 \N 2012-09-04 14:52:03.871 \N \N 2 3 265 4 3617 -820 \N 2012-09-04 14:52:03.886 \N \N 2 3 265 4 3620 -820 \N 2012-09-04 14:52:05.549 \N \N 2 3 265 4 3621 -820 \N 2012-09-04 14:52:11.973 \N \N 2 3 265 4 3622 -820 \N 2012-09-04 14:52:12.081 \N \N 2 3 265 4 3623 -820 \N 2012-09-04 14:52:12.174 \N \N 2 3 265 4 3624 -820 \N 2012-09-04 14:52:12.264 \N \N 2 3 265 4 3625 -820 \N 2012-09-04 14:52:12.358 \N \N 2 3 265 4 3626 -820 \N 2012-09-04 14:52:12.447 \N \N 2 3 265 4 3627 -820 \N 2012-09-04 14:52:15.003 \N \N 2 3 265 4 3628 -820 \N 2012-09-04 14:52:19.659 \N \N 2 3 265 4 3629 -820 \N 2012-09-04 14:52:22.645 \N \N 2 3 265 4 3630 -820 \N 2012-09-04 14:56:18.167 \N \N 2 3 265 4 3633 -820 \N 2012-09-04 14:56:20.164 \N \N 2 3 265 4 3635 -820 \N 2012-09-04 14:56:20.298 \N \N 2 3 265 4 3641 -820 \N 2012-09-04 14:56:20.509 \N \N 2 3 265 4 3642 -820 \N 2012-09-04 14:56:26.071 \N \N 2 3 265 4 3643 -820 \N 2012-09-04 15:29:28.873 \N \N 2 3 262 4 3648 -820 \N 2012-09-04 15:29:29.094 \N \N 2 3 262 4 3653 -820 \N 2012-09-04 15:29:29.225 \N \N 2 3 262 4 3654 -820 \N 2012-09-04 15:29:31.041 \N \N 2 3 262 4 3655 -820 \N 2012-09-04 15:29:31.878 \N \N 2 3 262 4 3656 -820 \N 2012-09-04 15:29:32.733 \N \N 2 3 262 4 3657 -820 \N 2012-09-04 15:33:32.794 \N \N 2 3 262 4 3658 -820 \N 2012-09-04 15:36:55.482 \N \N 2 3 262 4 3659 -820 \N 2012-09-04 15:40:35.289 \N \N 2 3 262 4 3660 -820 \N 2012-09-04 15:44:10.965 \N \N 2 3 262 4 3661 -820 \N 2012-09-04 15:48:38.216 \N \N 2 3 262 4 3662 -820 \N 2012-09-04 15:51:34.811 \N \N 2 3 262 4 3663 -820 \N 2012-09-04 15:54:41.013 \N \N 2 3 262 4 3664 -820 \N 2012-09-04 15:57:17.306 \N \N 2 3 266 4 3665 -820 \N 2012-09-04 15:57:29.731 \N \N 2 3 266 4 3666 -820 \N 2012-09-04 15:57:29.761 \N \N 2 3 266 4 3667 -820 \N 2012-09-04 15:57:29.778 \N \N 2 3 266 4 3668 -820 \N 2012-09-04 15:57:29.8 \N \N 2 3 266 4 3669 -820 \N 2012-09-04 15:57:29.82 \N \N 2 3 266 4 3670 -820 \N 2012-09-04 15:57:32.384 \N \N 2 3 266 4 3671 -820 \N 2012-09-04 16:01:48.333 \N \N 2 3 266 4 3672 -820 \N 2012-09-04 16:01:50.45 \N \N 2 3 266 4 3673 -820 \N 2012-09-04 16:01:50.543 \N \N 2 3 266 4 3674 -820 \N 2012-09-04 16:01:50.652 \N \N 2 3 266 4 3614 -820 \N 2012-09-04 14:52:03.767 \N \N 2 3 265 4 3618 -820 \N 2012-09-04 14:52:03.887 \N \N 2 3 265 4 3619 -820 \N 2012-09-04 14:52:03.924 \N \N 2 3 265 4 3631 -820 \N 2012-09-04 14:56:20.153 \N \N 2 3 265 4 3632 -820 \N 2012-09-04 14:56:20.159 \N \N 2 3 265 4 3634 -820 \N 2012-09-04 14:56:20.196 \N \N 2 3 265 4 3636 -820 \N 2012-09-04 14:56:20.368 \N \N 2 3 265 4 3637 -820 \N 2012-09-04 14:56:20.368 \N \N 2 3 265 4 3638 -820 \N 2012-09-04 14:56:20.4 \N \N 2 3 265 4 3639 -820 \N 2012-09-04 14:56:20.4 \N \N 2 3 265 4 3640 -820 \N 2012-09-04 14:56:20.421 \N \N 2 3 265 4 3644 -820 \N 2012-09-04 15:29:28.875 \N \N 2 3 262 4 3645 -820 \N 2012-09-04 15:29:28.876 \N \N 2 3 262 4 3646 -820 \N 2012-09-04 15:29:28.876 \N \N 2 3 262 4 3647 -820 \N 2012-09-04 15:29:28.88 \N \N 2 3 262 4 3649 -820 \N 2012-09-04 15:29:29.098 \N \N 2 3 262 4 3650 -820 \N 2012-09-04 15:29:29.1 \N \N 2 3 262 4 3651 -820 \N 2012-09-04 15:29:29.103 \N \N 2 3 262 4 3652 -820 \N 2012-09-04 15:29:29.105 \N \N 2 3 262 4 3801 -820 \N 2012-09-04 16:05:13.587 \N \N 2 3 262 4 3806 -820 \N 2012-09-04 16:05:13.817 \N \N 2 3 262 4 3817 -820 \N 2012-09-04 16:05:22.437 \N \N 2 3 262 4 3827 -820 \N 2012-09-04 16:05:34.266 \N \N 2 3 262 4 3837 -820 \N 2012-09-04 16:05:43.224 \N \N 2 3 262 4 3858 -820 \N 2012-09-04 16:05:51.71 \N \N 2 3 262 4 3869 -820 \N 2012-09-04 16:06:02.259 \N \N 2 3 262 4 3940 -820 \N 2012-09-04 16:06:25.995 \N \N 2 3 262 4 3947 -820 \N 2012-09-04 16:06:26.2 \N \N 2 3 262 4 3675 -820 \N 2012-09-04 16:01:53.867 \N \N 2 3 266 4 3676 -820 \N 2012-09-04 16:01:53.936 \N \N 2 3 266 4 3677 -820 \N 2012-09-04 16:01:53.95 \N \N 2 3 266 4 3678 -820 \N 2012-09-04 16:01:54.007 \N \N 2 3 266 4 3679 -820 \N 2012-09-04 16:01:54.024 \N \N 2 3 266 4 3680 -820 \N 2012-09-04 16:01:54.039 \N \N 2 3 266 4 3681 -820 \N 2012-09-04 16:01:54.062 \N \N 2 3 266 4 3682 -820 \N 2012-09-04 16:01:54.075 \N \N 2 3 266 4 3683 -820 \N 2012-09-04 16:01:54.091 \N \N 2 3 266 4 3684 -820 \N 2012-09-04 16:01:54.114 \N \N 2 3 266 4 3685 -820 \N 2012-09-04 16:01:54.126 \N \N 2 3 266 4 3686 -820 \N 2012-09-04 16:01:55.027 \N \N 2 3 266 4 3687 -820 \N 2012-09-04 16:02:21.979 \N \N 2 3 266 4 3688 -820 \N 2012-09-04 16:02:22.62 \N \N 2 3 266 4 3689 -820 \N 2012-09-04 16:02:22.717 \N \N 2 3 266 4 3690 -820 \N 2012-09-04 16:02:22.818 \N \N 2 3 266 4 3691 -820 \N 2012-09-04 16:02:23.289 \N \N 2 3 266 4 3692 -820 \N 2012-09-04 16:02:23.387 \N \N 2 3 266 4 3693 -820 \N 2012-09-04 16:02:23.402 \N \N 2 3 266 4 3694 -820 \N 2012-09-04 16:02:23.458 \N \N 2 3 266 4 3695 -820 \N 2012-09-04 16:02:23.475 \N \N 2 3 266 4 3696 -820 \N 2012-09-04 16:02:23.49 \N \N 2 3 266 4 3697 -820 \N 2012-09-04 16:02:23.513 \N \N 2 3 266 4 3698 -820 \N 2012-09-04 16:02:23.526 \N \N 2 3 266 4 3699 -820 \N 2012-09-04 16:02:23.542 \N \N 2 3 266 4 3700 -820 \N 2012-09-04 16:02:23.564 \N \N 2 3 266 4 3701 -820 \N 2012-09-04 16:02:23.576 \N \N 2 3 266 4 3702 -820 \N 2012-09-04 16:02:24.406 \N \N 2 3 266 4 3703 -820 \N 2012-09-04 16:02:48.933 \N \N 2 3 266 4 3704 -820 \N 2012-09-04 16:02:49.515 \N \N 2 3 266 4 3705 -820 \N 2012-09-04 16:02:49.608 \N \N 2 3 266 4 3706 -820 \N 2012-09-04 16:02:49.709 \N \N 2 3 266 4 3707 -820 \N 2012-09-04 16:02:50.509 \N \N 2 3 266 4 3708 -820 \N 2012-09-04 16:02:50.56 \N \N 2 3 266 4 3709 -820 \N 2012-09-04 16:02:50.575 \N \N 2 3 266 4 3710 -820 \N 2012-09-04 16:02:50.635 \N \N 2 3 266 4 3711 -820 \N 2012-09-04 16:02:50.648 \N \N 2 3 266 4 3712 -820 \N 2012-09-04 16:02:50.664 \N \N 2 3 266 4 3713 -820 \N 2012-09-04 16:02:50.686 \N \N 2 3 266 4 3714 -820 \N 2012-09-04 16:02:50.7 \N \N 2 3 266 4 3715 -820 \N 2012-09-04 16:02:50.716 \N \N 2 3 266 4 3716 -820 \N 2012-09-04 16:02:50.738 \N \N 2 3 266 4 3717 -820 \N 2012-09-04 16:02:50.75 \N \N 2 3 266 4 3718 -820 \N 2012-09-04 16:02:51.541 \N \N 2 3 266 4 3719 -820 \N 2012-09-04 16:03:15.4 \N \N 2 3 266 4 3720 -820 \N 2012-09-04 16:03:15.944 \N \N 2 3 266 4 3721 -820 \N 2012-09-04 16:03:16.041 \N \N 2 3 266 4 3722 -820 \N 2012-09-04 16:03:16.142 \N \N 2 3 266 4 3723 -820 \N 2012-09-04 16:03:16.909 \N \N 2 3 266 4 3724 -820 \N 2012-09-04 16:03:16.959 \N \N 2 3 266 4 3725 -820 \N 2012-09-04 16:03:16.975 \N \N 2 3 266 4 3726 -820 \N 2012-09-04 16:03:17.035 \N \N 2 3 266 4 3727 -820 \N 2012-09-04 16:03:17.049 \N \N 2 3 266 4 3728 -820 \N 2012-09-04 16:03:17.064 \N \N 2 3 266 4 3729 -820 \N 2012-09-04 16:03:17.109 \N \N 2 3 266 4 3730 -820 \N 2012-09-04 16:03:17.125 \N \N 2 3 266 4 3731 -820 \N 2012-09-04 16:03:17.142 \N \N 2 3 266 4 3732 -820 \N 2012-09-04 16:03:17.164 \N \N 2 3 266 4 3733 -820 \N 2012-09-04 16:03:17.183 \N \N 2 3 266 4 3734 -820 \N 2012-09-04 16:03:18.031 \N \N 2 3 266 4 3735 -820 \N 2012-09-04 16:03:44.132 \N \N 2 3 266 4 3736 -820 \N 2012-09-04 16:03:44.725 \N \N 2 3 266 4 3737 -820 \N 2012-09-04 16:03:44.822 \N \N 2 3 266 4 3738 -820 \N 2012-09-04 16:03:44.923 \N \N 2 3 266 4 3739 -820 \N 2012-09-04 16:03:45.748 \N \N 2 3 266 4 3740 -820 \N 2012-09-04 16:03:45.798 \N \N 2 3 266 4 3741 -820 \N 2012-09-04 16:03:45.813 \N \N 2 3 266 4 3742 -820 \N 2012-09-04 16:03:45.871 \N \N 2 3 266 4 3743 -820 \N 2012-09-04 16:03:45.888 \N \N 2 3 266 4 3744 -820 \N 2012-09-04 16:03:45.903 \N \N 2 3 266 4 3745 -820 \N 2012-09-04 16:03:45.926 \N \N 2 3 266 4 3746 -820 \N 2012-09-04 16:03:45.947 \N \N 2 3 266 4 3747 -820 \N 2012-09-04 16:03:45.963 \N \N 2 3 266 4 3748 -820 \N 2012-09-04 16:03:45.985 \N \N 2 3 266 4 3749 -820 \N 2012-09-04 16:03:45.996 \N \N 2 3 266 4 3750 -820 \N 2012-09-04 16:03:46.722 \N \N 2 3 266 4 3751 -820 \N 2012-09-04 16:04:09.271 \N \N 2 3 266 4 3752 -820 \N 2012-09-04 16:04:09.815 \N \N 2 3 266 4 3753 -820 \N 2012-09-04 16:04:09.907 \N \N 2 3 266 4 3754 -820 \N 2012-09-04 16:04:10.009 \N \N 2 3 266 4 3755 -820 \N 2012-09-04 16:04:10.743 \N \N 2 3 266 4 3756 -820 \N 2012-09-04 16:04:10.794 \N \N 2 3 266 4 3757 -820 \N 2012-09-04 16:04:10.809 \N \N 2 3 266 4 3758 -820 \N 2012-09-04 16:04:10.868 \N \N 2 3 266 4 3759 -820 \N 2012-09-04 16:04:10.883 \N \N 2 3 266 4 3760 -820 \N 2012-09-04 16:04:10.898 \N \N 2 3 266 4 3761 -820 \N 2012-09-04 16:04:10.921 \N \N 2 3 266 4 3762 -820 \N 2012-09-04 16:04:10.934 \N \N 2 3 266 4 3763 -820 \N 2012-09-04 16:04:10.95 \N \N 2 3 266 4 3764 -820 \N 2012-09-04 16:04:10.972 \N \N 2 3 266 4 3765 -820 \N 2012-09-04 16:04:10.985 \N \N 2 3 266 4 3766 -820 \N 2012-09-04 16:04:11.812 \N \N 2 3 266 4 3767 -820 \N 2012-09-04 16:04:38.596 \N \N 2 3 266 4 3768 -820 \N 2012-09-04 16:04:39.228 \N \N 2 3 266 4 3769 -820 \N 2012-09-04 16:04:39.319 \N \N 2 3 266 4 3770 -820 \N 2012-09-04 16:04:39.427 \N \N 2 3 266 4 3771 -820 \N 2012-09-04 16:04:40.319 \N \N 2 3 266 4 3772 -820 \N 2012-09-04 16:04:40.361 \N \N 2 3 266 4 3773 -820 \N 2012-09-04 16:04:40.378 \N \N 2 3 266 4 3774 -820 \N 2012-09-04 16:04:40.438 \N \N 2 3 266 4 3775 -820 \N 2012-09-04 16:04:40.451 \N \N 2 3 266 4 3776 -820 \N 2012-09-04 16:04:40.466 \N \N 2 3 266 4 3777 -820 \N 2012-09-04 16:04:40.488 \N \N 2 3 266 4 3778 -820 \N 2012-09-04 16:04:40.502 \N \N 2 3 266 4 3779 -820 \N 2012-09-04 16:04:40.519 \N \N 2 3 266 4 3780 -820 \N 2012-09-04 16:04:40.54 \N \N 2 3 266 4 3781 -820 \N 2012-09-04 16:04:40.561 \N \N 2 3 266 4 3782 -820 \N 2012-09-04 16:04:41.404 \N \N 2 3 266 4 3783 -820 \N 2012-09-04 16:05:07.355 \N \N 2 3 266 4 3784 -820 \N 2012-09-04 16:05:07.931 \N \N 2 3 266 4 3785 -820 \N 2012-09-04 16:05:08.024 \N \N 2 3 266 4 3786 -820 \N 2012-09-04 16:05:08.125 \N \N 2 3 266 4 3787 -820 \N 2012-09-04 16:05:08.95 \N \N 2 3 266 4 3788 -820 \N 2012-09-04 16:05:09.001 \N \N 2 3 266 4 3789 -820 \N 2012-09-04 16:05:09.015 \N \N 2 3 266 4 3790 -820 \N 2012-09-04 16:05:09.067 \N \N 2 3 266 4 3791 -820 \N 2012-09-04 16:05:09.081 \N \N 2 3 266 4 3792 -820 \N 2012-09-04 16:05:09.096 \N \N 2 3 266 4 3793 -820 \N 2012-09-04 16:05:09.119 \N \N 2 3 266 4 3794 -820 \N 2012-09-04 16:05:09.133 \N \N 2 3 266 4 3795 -820 \N 2012-09-04 16:05:09.15 \N \N 2 3 266 4 3796 -820 \N 2012-09-04 16:05:09.171 \N \N 2 3 266 4 3797 -820 \N 2012-09-04 16:05:09.183 \N \N 2 3 266 4 3798 -820 \N 2012-09-04 16:05:10.348 \N \N 2 3 266 4 3799 -820 \N 2012-09-04 16:05:10.496 \N \N 2 3 262 4 3800 -820 \N 2012-09-04 16:05:13.583 \N \N 2 3 262 4 3802 -820 \N 2012-09-04 16:05:13.59 \N \N 2 3 262 4 3803 -820 \N 2012-09-04 16:05:13.593 \N \N 2 3 262 4 3804 -820 \N 2012-09-04 16:05:13.593 \N \N 2 3 262 4 3805 -820 \N 2012-09-04 16:05:13.801 \N \N 2 3 262 4 3807 -820 \N 2012-09-04 16:05:13.831 \N \N 2 3 262 4 3808 -820 \N 2012-09-04 16:05:13.843 \N \N 2 3 262 4 3809 -820 \N 2012-09-04 16:05:13.86 \N \N 2 3 262 4 3810 -820 \N 2012-09-04 16:05:14.838 \N \N 2 3 262 4 3811 -820 \N 2012-09-04 16:05:15.199 \N \N 2 3 262 4 3812 -820 \N 2012-09-04 16:05:15.36 \N \N 2 3 262 4 3813 -820 \N 2012-09-04 16:05:15.574 \N \N 2 3 262 4 3814 -820 \N 2012-09-04 16:05:15.613 \N \N 2 3 262 4 3815 -820 \N 2012-09-04 16:05:15.727 \N \N 2 3 262 4 3816 -820 \N 2012-09-04 16:05:22.437 \N \N 2 3 262 4 3818 -820 \N 2012-09-04 16:05:22.485 \N \N 2 3 262 4 3819 -820 \N 2012-09-04 16:05:22.531 \N \N 2 3 262 4 3820 -820 \N 2012-09-04 16:05:22.549 \N \N 2 3 262 4 3821 -820 \N 2012-09-04 16:05:24.842 \N \N 2 3 262 4 3822 -820 \N 2012-09-04 16:05:25.186 \N \N 2 3 262 4 3823 -820 \N 2012-09-04 16:05:25.579 \N \N 2 3 262 4 3824 -820 \N 2012-09-04 16:05:25.65 \N \N 2 3 262 4 3825 -820 \N 2012-09-04 16:05:25.796 \N \N 2 3 262 4 3826 -820 \N 2012-09-04 16:05:34.266 \N \N 2 3 262 4 3828 -820 \N 2012-09-04 16:05:34.3 \N \N 2 3 262 4 3829 -820 \N 2012-09-04 16:05:34.347 \N \N 2 3 262 4 3830 -820 \N 2012-09-04 16:05:34.364 \N \N 2 3 262 4 3831 -820 \N 2012-09-04 16:05:36.232 \N \N 2 3 262 4 3832 -820 \N 2012-09-04 16:05:36.494 \N \N 2 3 262 4 3833 -820 \N 2012-09-04 16:05:36.987 \N \N 2 3 262 4 3834 -820 \N 2012-09-04 16:05:37.031 \N \N 2 3 262 4 3835 -820 \N 2012-09-04 16:05:37.164 \N \N 2 3 262 4 3836 -820 \N 2012-09-04 16:05:43.223 \N \N 2 3 262 4 3838 -820 \N 2012-09-04 16:05:43.276 \N \N 2 3 262 4 3839 -820 \N 2012-09-04 16:05:43.322 \N \N 2 3 262 4 3840 -820 \N 2012-09-04 16:05:43.339 \N \N 2 3 262 4 3841 -820 \N 2012-09-04 16:05:45.433 \N \N 2 3 262 4 3842 -820 \N 2012-09-04 16:05:45.775 \N \N 2 3 262 4 3843 -820 \N 2012-09-04 16:05:46.148 \N \N 2 3 262 4 3844 -820 \N 2012-09-04 16:05:46.195 \N \N 2 3 262 4 3845 -820 \N 2012-09-04 16:05:46.301 \N \N 2 3 262 4 3846 -820 \N 2012-09-04 16:05:46.542 \N \N 2 3 266 4 3847 -820 \N 2012-09-04 16:05:47.249 \N \N 2 3 266 4 3848 -820 \N 2012-09-04 16:05:47.34 \N \N 2 3 266 4 3849 -820 \N 2012-09-04 16:05:47.442 \N \N 2 3 266 4 3850 -820 \N 2012-09-04 16:05:48.479 \N \N 2 3 266 4 3851 -820 \N 2012-09-04 16:05:48.567 \N \N 2 3 266 4 3852 -820 \N 2012-09-04 16:05:48.582 \N \N 2 3 266 4 3853 -820 \N 2012-09-04 16:05:48.633 \N \N 2 3 266 4 3854 -820 \N 2012-09-04 16:05:48.648 \N \N 2 3 266 4 3855 -820 \N 2012-09-04 16:05:48.676 \N \N 2 3 266 4 3856 -820 \N 2012-09-04 16:05:48.69 \N \N 2 3 266 4 3857 -820 \N 2012-09-04 16:05:48.704 \N \N 2 3 266 4 3859 -820 \N 2012-09-04 16:05:51.719 \N \N 2 3 262 4 3860 -820 \N 2012-09-04 16:05:51.756 \N \N 2 3 262 4 3861 -820 \N 2012-09-04 16:05:51.789 \N \N 2 3 262 4 3862 -820 \N 2012-09-04 16:05:51.806 \N \N 2 3 262 4 3863 -820 \N 2012-09-04 16:05:53.936 \N \N 2 3 262 4 3864 -820 \N 2012-09-04 16:05:54.219 \N \N 2 3 262 4 3865 -820 \N 2012-09-04 16:05:54.516 \N \N 2 3 262 4 3866 -820 \N 2012-09-04 16:05:54.565 \N \N 2 3 262 4 3867 -820 \N 2012-09-04 16:05:54.682 \N \N 2 3 262 4 3868 -820 \N 2012-09-04 16:06:02.257 \N \N 2 3 262 4 3870 -820 \N 2012-09-04 16:06:02.303 \N \N 2 3 262 4 3871 -820 \N 2012-09-04 16:06:02.344 \N \N 2 3 262 4 3872 -820 \N 2012-09-04 16:06:02.372 \N \N 2 3 262 4 3873 -820 \N 2012-09-04 16:06:04.897 \N \N 2 3 262 4 3874 -820 \N 2012-09-04 16:06:05.27 \N \N 2 3 262 4 3875 -820 \N 2012-09-04 16:06:05.423 \N \N 2 3 262 4 3876 -820 \N 2012-09-04 16:06:05.481 \N \N 2 3 262 4 3877 -820 \N 2012-09-04 16:06:05.605 \N \N 2 3 262 4 3878 -820 \N 2012-09-04 16:06:08.551 \N \N 2 3 262 4 3879 -820 \N 2012-09-04 16:06:11.036 \N \N 2 3 262 4 3880 -820 \N 2012-09-04 16:06:11.54 \N \N 2 3 262 4 3881 -820 \N 2012-09-04 16:06:11.745 \N \N 2 3 262 4 3882 -820 \N 2012-09-04 16:06:11.917 \N \N 2 3 262 4 3883 -820 \N 2012-09-04 16:06:12.083 \N \N 2 3 262 4 3884 -820 \N 2012-09-04 16:06:12.233 \N \N 2 3 262 4 3885 -820 \N 2012-09-04 16:06:12.394 \N \N 2 3 262 4 3886 -820 \N 2012-09-04 16:06:12.569 \N \N 2 3 262 4 3887 -820 \N 2012-09-04 16:06:12.735 \N \N 2 3 262 4 3888 -820 \N 2012-09-04 16:06:12.898 \N \N 2 3 262 4 3889 -820 \N 2012-09-04 16:06:13.067 \N \N 2 3 262 4 3890 -820 \N 2012-09-04 16:06:13.27 \N \N 2 3 262 4 3891 -820 \N 2012-09-04 16:06:13.453 \N \N 2 3 262 4 3892 -820 \N 2012-09-04 16:06:13.615 \N \N 2 3 262 4 3893 -820 \N 2012-09-04 16:06:13.775 \N \N 2 3 262 4 3894 -820 \N 2012-09-04 16:06:13.943 \N \N 2 3 262 4 3895 -820 \N 2012-09-04 16:06:14.13 \N \N 2 3 262 4 3896 -820 \N 2012-09-04 16:06:14.306 \N \N 2 3 262 4 3897 -820 \N 2012-09-04 16:06:14.471 \N \N 2 3 262 4 3898 -820 \N 2012-09-04 16:06:14.637 \N \N 2 3 262 4 3899 -820 \N 2012-09-04 16:06:14.809 \N \N 2 3 262 4 3900 -820 \N 2012-09-04 16:06:14.975 \N \N 2 3 262 4 3901 -820 \N 2012-09-04 16:06:15.138 \N \N 2 3 262 4 3902 -820 \N 2012-09-04 16:06:15.303 \N \N 2 3 262 4 3903 -820 \N 2012-09-04 16:06:15.46 \N \N 2 3 262 4 3904 -820 \N 2012-09-04 16:06:15.626 \N \N 2 3 262 4 3905 -820 \N 2012-09-04 16:06:15.788 \N \N 2 3 262 4 3906 -820 \N 2012-09-04 16:06:15.954 \N \N 2 3 262 4 3907 -820 \N 2012-09-04 16:06:16.126 \N \N 2 3 262 4 3908 -820 \N 2012-09-04 16:06:16.31 \N \N 2 3 262 4 3909 -820 \N 2012-09-04 16:06:16.499 \N \N 2 3 262 4 3910 -820 \N 2012-09-04 16:06:16.676 \N \N 2 3 262 4 3911 -820 \N 2012-09-04 16:06:16.835 \N \N 2 3 262 4 3912 -820 \N 2012-09-04 16:06:16.986 \N \N 2 3 262 4 3913 -820 \N 2012-09-04 16:06:19.077 \N \N 2 3 262 4 3914 -820 \N 2012-09-04 16:06:19.248 \N \N 2 3 262 4 3915 -820 \N 2012-09-04 16:06:19.408 \N \N 2 3 262 4 3916 -820 \N 2012-09-04 16:06:19.578 \N \N 2 3 262 4 3917 -820 \N 2012-09-04 16:06:19.752 \N \N 2 3 262 4 3918 -820 \N 2012-09-04 16:06:19.916 \N \N 2 3 262 4 3919 -820 \N 2012-09-04 16:06:20.083 \N \N 2 3 262 4 3920 -820 \N 2012-09-04 16:06:20.252 \N \N 2 3 262 4 3921 -820 \N 2012-09-04 16:06:20.415 \N \N 2 3 262 4 3922 -820 \N 2012-09-04 16:06:20.581 \N \N 2 3 262 4 3923 -820 \N 2012-09-04 16:06:20.751 \N \N 2 3 262 4 3924 -820 \N 2012-09-04 16:06:20.922 \N \N 2 3 262 4 3925 -820 \N 2012-09-04 16:06:21.083 \N \N 2 3 262 4 3926 -820 \N 2012-09-04 16:06:21.25 \N \N 2 3 262 4 3927 -820 \N 2012-09-04 16:06:21.422 \N \N 2 3 262 4 3928 -820 \N 2012-09-04 16:06:21.586 \N \N 2 3 262 4 3929 -820 \N 2012-09-04 16:06:21.757 \N \N 2 3 262 4 3930 -820 \N 2012-09-04 16:06:21.931 \N \N 2 3 262 4 3931 -820 \N 2012-09-04 16:06:22.096 \N \N 2 3 262 4 3932 -820 \N 2012-09-04 16:06:22.266 \N \N 2 3 262 4 3933 -820 \N 2012-09-04 16:06:22.426 \N \N 2 3 262 4 3934 -820 \N 2012-09-04 16:06:22.593 \N \N 2 3 262 4 3935 -820 \N 2012-09-04 16:06:22.764 \N \N 2 3 262 4 3936 -820 \N 2012-09-04 16:06:22.947 \N \N 2 3 262 4 3937 -820 \N 2012-09-04 16:06:23.117 \N \N 2 3 262 4 3938 -820 \N 2012-09-04 16:06:23.325 \N \N 2 3 262 4 3939 -820 \N 2012-09-04 16:06:25.991 \N \N 2 3 262 4 3946 -820 \N 2012-09-04 16:06:26.2 \N \N 2 3 262 4 3949 -820 \N 2012-09-04 16:06:26.314 \N \N 2 3 262 4 3950 -820 \N 2012-09-04 16:06:27.233 \N \N 2 3 262 4 3951 -820 \N 2012-09-04 16:06:27.497 \N \N 2 3 262 4 3952 -820 \N 2012-09-04 16:06:28.073 \N \N 2 3 262 4 3953 -820 \N 2012-09-04 16:06:28.135 \N \N 2 3 262 4 3941 -820 \N 2012-09-04 16:06:25.996 \N \N 2 3 262 4 3944 -820 \N 2012-09-04 16:06:26.186 \N \N 2 3 262 4 3942 -820 \N 2012-09-04 16:06:25.997 \N \N 2 3 262 4 3945 -820 \N 2012-09-04 16:06:26.189 \N \N 2 3 262 4 3943 -820 \N 2012-09-04 16:06:25.999 \N \N 2 3 262 4 3948 -820 \N 2012-09-04 16:06:26.204 \N \N 2 3 262 4 3954 -820 \N 2012-09-04 16:06:28.256 \N \N 2 3 262 4 3955 -820 \N 2012-09-04 16:06:30.57 \N \N 2 3 262 4 3956 -820 \N 2012-09-04 16:06:31.674 \N \N 2 3 262 4 3957 -820 \N 2012-09-04 16:06:32.169 \N \N 2 3 262 4 3958 -820 \N 2012-09-04 16:06:32.354 \N \N 2 3 262 4 3959 -820 \N 2012-09-04 16:06:32.516 \N \N 2 3 262 4 3960 -820 \N 2012-09-04 16:06:32.698 \N \N 2 3 262 4 3961 -820 \N 2012-09-04 16:06:32.885 \N \N 2 3 262 4 3962 -820 \N 2012-09-04 16:06:33.058 \N \N 2 3 262 4 3963 -820 \N 2012-09-04 16:06:33.224 \N \N 2 3 262 4 3964 -820 \N 2012-09-04 16:06:33.394 \N \N 2 3 262 4 3965 -820 \N 2012-09-04 16:06:33.561 \N \N 2 3 262 4 3966 -820 \N 2012-09-04 16:06:33.749 \N \N 2 3 262 4 3967 -820 \N 2012-09-04 16:06:33.949 \N \N 2 3 262 4 3968 -820 \N 2012-09-04 16:06:34.127 \N \N 2 3 262 4 3969 -820 \N 2012-09-04 16:06:34.302 \N \N 2 3 262 4 3970 -820 \N 2012-09-04 16:06:34.473 \N \N 2 3 262 4 3971 -820 \N 2012-09-04 16:06:34.656 \N \N 2 3 262 4 3972 -820 \N 2012-09-04 16:06:34.831 \N \N 2 3 262 4 3973 -820 \N 2012-09-04 16:06:35.002 \N \N 2 3 262 4 3974 -820 \N 2012-09-04 16:06:35.17 \N \N 2 3 262 4 3975 -820 \N 2012-09-04 16:06:35.332 \N \N 2 3 262 4 3976 -820 \N 2012-09-04 16:06:35.503 \N \N 2 3 262 4 3977 -820 \N 2012-09-04 16:06:35.696 \N \N 2 3 262 4 3978 -820 \N 2012-09-04 16:06:35.879 \N \N 2 3 262 4 3979 -820 \N 2012-09-04 16:06:36.051 \N \N 2 3 262 4 3980 -820 \N 2012-09-04 16:06:36.216 \N \N 2 3 262 4 3981 -820 \N 2012-09-04 16:06:36.376 \N \N 2 3 262 4 3982 -820 \N 2012-09-04 16:06:36.542 \N \N 2 3 262 4 3983 -820 \N 2012-09-04 16:06:36.712 \N \N 2 3 262 4 3984 -820 \N 2012-09-04 16:06:36.923 \N \N 2 3 262 4 3985 -820 \N 2012-09-04 16:06:37.089 \N \N 2 3 262 4 3986 -820 \N 2012-09-04 16:06:37.266 \N \N 2 3 262 4 3987 -820 \N 2012-09-04 16:06:37.425 \N \N 2 3 262 4 3988 -820 \N 2012-09-04 16:06:37.584 \N \N 2 3 262 4 3989 -820 \N 2012-09-04 16:06:37.748 \N \N 2 3 262 4 3990 -820 \N 2012-09-04 16:06:45.324 \N \N 2 3 262 4 3991 -820 \N 2012-09-04 16:06:45.324 \N \N 2 3 262 4 3992 -820 \N 2012-09-04 16:06:45.33 \N \N 2 3 262 4 3993 -820 \N 2012-09-04 16:06:45.33 \N \N 2 3 262 4 3994 -820 \N 2012-09-04 16:06:45.33 \N \N 2 3 262 4 3995 -820 \N 2012-09-04 16:06:45.506 \N \N 2 3 262 4 3996 -820 \N 2012-09-04 16:06:45.507 \N \N 2 3 262 4 3998 -820 \N 2012-09-04 16:06:45.511 \N \N 2 3 262 4 3997 -820 \N 2012-09-04 16:06:45.512 \N \N 2 3 262 4 3999 -820 \N 2012-09-04 16:06:46.424 \N \N 2 3 262 4 4000 -820 \N 2012-09-04 16:06:46.787 \N \N 2 3 262 4 4001 -820 \N 2012-09-04 16:06:47.089 \N \N 2 3 262 4 4002 -820 \N 2012-09-04 16:06:47.131 \N \N 2 3 262 4 4003 -820 \N 2012-09-04 16:06:47.249 \N \N 2 3 262 4 4004 -820 \N 2012-09-04 16:06:53.096 \N \N 2 3 262 4 4005 -820 \N 2012-09-04 16:06:53.109 \N \N 2 3 262 4 4006 -820 \N 2012-09-04 16:06:53.15 \N \N 2 3 262 4 4007 -820 \N 2012-09-04 16:06:53.193 \N \N 2 3 262 4 4008 -820 \N 2012-09-04 16:06:53.208 \N \N 2 3 262 4 4009 -820 \N 2012-09-04 16:06:54.988 \N \N 2 3 262 4 4010 -820 \N 2012-09-04 16:06:55.267 \N \N 2 3 262 4 4011 -820 \N 2012-09-04 16:06:55.8 \N \N 2 3 262 4 4012 -820 \N 2012-09-04 16:06:55.838 \N \N 2 3 262 4 4013 -820 \N 2012-09-04 16:06:55.948 \N \N 2 3 262 4 4014 -820 \N 2012-09-04 16:07:03.48 \N \N 2 3 262 4 4015 -820 \N 2012-09-04 16:07:03.491 \N \N 2 3 262 4 4016 -820 \N 2012-09-04 16:07:03.547 \N \N 2 3 262 4 4017 -820 \N 2012-09-04 16:07:03.579 \N \N 2 3 262 4 4018 -820 \N 2012-09-04 16:07:03.598 \N \N 2 3 262 4 4019 -820 \N 2012-09-04 16:07:05.392 \N \N 2 3 262 4 4020 -820 \N 2012-09-04 16:07:05.678 \N \N 2 3 262 4 4021 -820 \N 2012-09-04 16:07:06.154 \N \N 2 3 262 4 4022 -820 \N 2012-09-04 16:07:06.198 \N \N 2 3 262 4 4023 -820 \N 2012-09-04 16:07:06.31 \N \N 2 3 262 4 4024 -820 \N 2012-09-04 16:07:08.706 \N \N 2 3 262 4 4025 -820 \N 2012-09-04 16:07:10.235 \N \N 2 3 262 4 4026 -820 \N 2012-09-04 16:07:17.537 \N \N 2 3 262 4 4027 -820 \N 2012-09-04 16:07:17.549 \N \N 2 3 262 4 4028 -820 \N 2012-09-04 16:07:17.587 \N \N 2 3 262 4 4029 -820 \N 2012-09-04 16:07:17.626 \N \N 2 3 262 4 4030 -820 \N 2012-09-04 16:07:17.642 \N \N 2 3 262 4 4031 -820 \N 2012-09-04 16:07:23.933 \N \N 2 3 262 4 4032 -820 \N 2012-09-04 16:07:24.2 \N \N 2 3 262 4 4033 -820 \N 2012-09-04 16:07:24.664 \N \N 2 3 262 4 4034 -820 \N 2012-09-04 16:07:24.705 \N \N 2 3 262 4 4035 -820 \N 2012-09-04 16:07:24.816 \N \N 2 3 262 4 4036 -820 \N 2012-09-04 16:07:26.565 \N \N 2 3 262 4 4037 -820 \N 2012-09-04 16:07:33.886 \N \N 2 3 262 4 4038 -820 \N 2012-09-04 16:07:33.893 \N \N 2 3 262 4 4039 -820 \N 2012-09-04 16:07:33.953 \N \N 2 3 262 4 4040 -820 \N 2012-09-04 16:07:34.035 \N \N 2 3 262 4 4041 -820 \N 2012-09-04 16:07:34.052 \N \N 2 3 262 4 4042 -820 \N 2012-09-04 16:07:38.227 \N \N 2 3 262 4 4043 -820 \N 2012-09-04 16:07:39.424 \N \N 2 3 262 4 4044 -820 \N 2012-09-04 16:07:39.928 \N \N 2 3 262 4 4045 -820 \N 2012-09-04 16:07:40.099 \N \N 2 3 262 4 4046 -820 \N 2012-09-04 16:07:40.265 \N \N 2 3 262 4 4047 -820 \N 2012-09-04 16:07:40.422 \N \N 2 3 262 4 4048 -820 \N 2012-09-04 16:07:40.577 \N \N 2 3 262 4 4049 -820 \N 2012-09-04 16:07:40.732 \N \N 2 3 262 4 4050 -820 \N 2012-09-04 16:07:40.889 \N \N 2 3 262 4 4051 -820 \N 2012-09-04 16:07:41.042 \N \N 2 3 262 4 4052 -820 \N 2012-09-04 16:07:41.211 \N \N 2 3 262 4 4053 -820 \N 2012-09-04 16:07:41.39 \N \N 2 3 262 4 4054 -820 \N 2012-09-04 16:07:41.553 \N \N 2 3 262 4 4055 -820 \N 2012-09-04 16:07:41.711 \N \N 2 3 262 4 4056 -820 \N 2012-09-04 16:07:41.875 \N \N 2 3 262 4 4057 -820 \N 2012-09-04 16:07:42.046 \N \N 2 3 262 4 4058 -820 \N 2012-09-04 16:07:42.213 \N \N 2 3 262 4 4059 -820 \N 2012-09-04 16:07:42.368 \N \N 2 3 262 4 4060 -820 \N 2012-09-04 16:07:42.538 \N \N 2 3 262 4 4061 -820 \N 2012-09-04 16:07:42.695 \N \N 2 3 262 4 4062 -820 \N 2012-09-04 16:07:42.862 \N \N 2 3 262 4 4063 -820 \N 2012-09-04 16:07:43.029 \N \N 2 3 262 4 4064 -820 \N 2012-09-04 16:07:43.185 \N \N 2 3 262 4 4065 -820 \N 2012-09-04 16:07:43.342 \N \N 2 3 262 4 4066 -820 \N 2012-09-04 16:07:43.513 \N \N 2 3 262 4 4067 -820 \N 2012-09-04 16:07:43.683 \N \N 2 3 262 4 4068 -820 \N 2012-09-04 16:07:43.842 \N \N 2 3 262 4 4069 -820 \N 2012-09-04 16:07:44.101 \N \N 2 3 262 4 4070 -820 \N 2012-09-04 16:07:44.278 \N \N 2 3 262 4 4073 -820 \N 2012-09-04 16:07:54.389 \N \N 2 3 262 4 4080 -820 \N 2012-09-04 16:08:00.117 \N \N 2 3 262 4 4081 -820 \N 2012-09-04 16:08:02.798 \N \N 2 3 262 4 4082 -820 \N 2012-09-04 16:08:02.883 \N \N 2 3 262 4 4083 -820 \N 2012-09-04 16:08:03 \N \N 2 3 262 4 4084 -820 \N 2012-09-04 16:08:03.092 \N \N 2 3 262 4 4085 -820 \N 2012-09-04 16:08:03.176 \N \N 2 3 262 4 4086 -820 \N 2012-09-04 16:08:03.258 \N \N 2 3 262 4 4087 -820 \N 2012-09-04 16:08:03.347 \N \N 2 3 262 4 4088 -820 \N 2012-09-04 16:08:03.429 \N \N 2 3 262 4 4089 -820 \N 2012-09-04 16:08:03.51 \N \N 2 3 262 4 4090 -820 \N 2012-09-04 16:08:08.191 \N \N 2 3 262 4 4091 -820 \N 2012-09-04 16:08:13.198 \N \N 2 3 262 4 4092 -820 \N 2012-09-04 16:08:16.181 \N \N 2 3 262 4 4096 -820 \N 2012-09-04 16:08:21.013 \N \N 2 3 262 4 4100 -820 \N 2012-09-04 16:08:21.208 \N \N 2 3 262 4 4103 -820 \N 2012-09-04 16:08:21.351 \N \N 2 3 262 4 4104 -820 \N 2012-09-04 16:08:21.975 \N \N 2 3 262 4 4105 -820 \N 2012-09-04 16:11:57.557 \N \N 2 3 262 4 4106 -820 \N 2012-09-04 16:14:07.463 \N \N 2 3 266 4 4107 -820 \N 2012-09-04 16:14:18.03 \N \N 2 3 266 4 4108 -820 \N 2012-09-04 16:14:18.056 \N \N 2 3 266 4 4109 -820 \N 2012-09-04 16:14:18.072 \N \N 2 3 266 4 4110 -820 \N 2012-09-04 16:14:18.095 \N \N 2 3 266 4 4111 -820 \N 2012-09-04 16:14:18.106 \N \N 2 3 266 4 4112 -820 \N 2012-09-04 16:14:18.741 \N \N 2 3 266 4 4113 -820 \N 2012-09-04 16:14:39.393 \N \N 2 3 266 4 4114 -820 \N 2012-09-04 16:14:40.021 \N \N 2 3 266 4 4115 -820 \N 2012-09-04 16:14:40.113 \N \N 2 3 266 4 4116 -820 \N 2012-09-04 16:14:40.222 \N \N 2 3 266 4 4117 -820 \N 2012-09-04 16:14:41.098 \N \N 2 3 266 4 4118 -820 \N 2012-09-04 16:14:41.15 \N \N 2 3 266 4 4119 -820 \N 2012-09-04 16:14:41.164 \N \N 2 3 266 4 4120 -820 \N 2012-09-04 16:14:41.221 \N \N 2 3 266 4 4121 -820 \N 2012-09-04 16:14:41.238 \N \N 2 3 266 4 4122 -820 \N 2012-09-04 16:14:41.261 \N \N 2 3 266 4 4123 -820 \N 2012-09-04 16:14:41.284 \N \N 2 3 266 4 4124 -820 \N 2012-09-04 16:14:41.298 \N \N 2 3 266 4 4125 -820 \N 2012-09-04 16:14:41.314 \N \N 2 3 266 4 4126 -820 \N 2012-09-04 16:14:41.336 \N \N 2 3 266 4 4127 -820 \N 2012-09-04 16:14:41.356 \N \N 2 3 266 4 4128 -820 \N 2012-09-04 16:14:41.958 \N \N 2 3 266 4 4129 -820 \N 2012-09-04 16:15:02.14 \N \N 2 3 266 4 4130 -820 \N 2012-09-04 16:15:02.737 \N \N 2 3 266 4 4131 -820 \N 2012-09-04 16:15:02.833 \N \N 2 3 266 4 4132 -820 \N 2012-09-04 16:15:02.934 \N \N 2 3 266 4 4133 -820 \N 2012-09-04 16:15:03.817 \N \N 2 3 266 4 4134 -820 \N 2012-09-04 16:15:03.86 \N \N 2 3 266 4 4135 -820 \N 2012-09-04 16:15:03.876 \N \N 2 3 266 4 4136 -820 \N 2012-09-04 16:15:03.945 \N \N 2 3 266 4 4137 -820 \N 2012-09-04 16:15:03.979 \N \N 2 3 266 4 4138 -820 \N 2012-09-04 16:15:04.037 \N \N 2 3 266 4 4139 -820 \N 2012-09-04 16:15:04.078 \N \N 2 3 266 4 4140 -820 \N 2012-09-04 16:15:04.126 \N \N 2 3 266 4 4141 -820 \N 2012-09-04 16:16:12.227 \N \N 2 3 262 4 4142 -820 \N 2012-09-04 16:16:12.306 \N \N 2 3 262 4 4143 -820 \N 2012-09-04 16:16:12.335 \N \N 2 3 262 4 4144 -820 \N 2012-09-04 16:16:12.349 \N \N 2 3 262 4 4145 -820 \N 2012-09-04 16:16:12.368 \N \N 2 3 262 4 4072 -820 \N 2012-09-04 16:07:54.385 \N \N 2 3 262 4 4078 -820 \N 2012-09-04 16:07:54.593 \N \N 2 3 262 4 4095 -820 \N 2012-09-04 16:08:21.013 \N \N 2 3 262 4 4098 -820 \N 2012-09-04 16:08:21.2 \N \N 2 3 262 4 4101 -820 \N 2012-09-04 16:08:21.223 \N \N 2 3 262 4 4248 -820 \N 2012-09-04 16:19:58.902 \N \N 2 3 262 4 4255 -820 \N 2012-09-04 16:20:07.524 \N \N 2 3 262 4 4281 -820 \N 2012-09-04 16:20:20.707 \N \N 2 3 262 4 4287 -820 \N 2012-09-04 16:20:29.453 \N \N 2 3 262 4 4293 -820 \N 2012-09-04 16:20:29.624 \N \N 2 3 262 4 4295 -820 \N 2012-09-04 16:20:29.661 \N \N 2 3 262 4 4300 -820 \N 2012-09-04 16:20:43.055 \N \N 2 3 262 4 4304 -820 \N 2012-09-04 16:20:43.232 \N \N 2 3 262 4 4315 -820 \N 2012-09-04 16:27:34.832 \N \N 2 3 268 4 4319 -820 \N 2012-09-04 16:27:34.986 \N \N 2 3 268 4 4322 -820 \N 2012-09-04 16:27:35.046 \N \N 2 3 268 4 4324 -820 \N 2012-09-04 16:27:35.122 \N \N 2 3 268 4 4331 -820 \N 2012-09-04 16:44:18.307 \N \N 2 3 265 4 4337 -820 \N 2012-09-04 16:44:18.468 \N \N 2 3 265 4 4424 -820 \N 2012-09-04 16:45:22.135 \N \N 2 3 265 4 4071 -820 \N 2012-09-04 16:07:54.385 \N \N 2 3 262 4 4076 -820 \N 2012-09-04 16:07:54.555 \N \N 2 3 262 4 4077 -820 \N 2012-09-04 16:07:54.577 \N \N 2 3 262 4 4079 -820 \N 2012-09-04 16:07:54.613 \N \N 2 3 262 4 4093 -820 \N 2012-09-04 16:08:21.013 \N \N 2 3 262 4 4074 -820 \N 2012-09-04 16:07:54.392 \N \N 2 3 262 4 4094 -820 \N 2012-09-04 16:08:21.013 \N \N 2 3 262 4 4099 -820 \N 2012-09-04 16:08:21.2 \N \N 2 3 262 4 4075 -820 \N 2012-09-04 16:07:54.394 \N \N 2 3 262 4 4097 -820 \N 2012-09-04 16:08:21.019 \N \N 2 3 262 4 4102 -820 \N 2012-09-04 16:08:21.229 \N \N 2 3 262 4 4146 -820 \N 2012-09-04 16:16:12.496 \N \N 2 3 262 4 4147 -820 \N 2012-09-04 16:16:12.519 \N \N 2 3 262 4 4148 -820 \N 2012-09-04 16:16:12.535 \N \N 2 3 262 4 4149 -820 \N 2012-09-04 16:16:12.566 \N \N 2 3 262 4 4150 -820 \N 2012-09-04 16:16:12.592 \N \N 2 3 262 4 4151 -820 \N 2012-09-04 16:16:12.623 \N \N 2 3 262 4 4152 -820 \N 2012-09-04 16:16:12.655 \N \N 2 3 262 4 4153 -820 \N 2012-09-04 16:16:12.674 \N \N 2 3 262 4 4154 -820 \N 2012-09-04 16:16:12.692 \N \N 2 3 262 4 4155 -820 \N 2012-09-04 16:16:12.809 \N \N 2 3 262 4 4156 -820 \N 2012-09-04 16:16:12.827 \N \N 2 3 262 4 4157 -820 \N 2012-09-04 16:16:12.843 \N \N 2 3 262 4 4158 -820 \N 2012-09-04 16:16:12.858 \N \N 2 3 262 4 4159 -820 \N 2012-09-04 16:16:12.875 \N \N 2 3 262 4 4160 -820 \N 2012-09-04 16:16:12.897 \N \N 2 3 262 4 4161 -820 \N 2012-09-04 16:16:12.926 \N \N 2 3 262 4 4162 -820 \N 2012-09-04 16:16:12.95 \N \N 2 3 262 4 4163 -820 \N 2012-09-04 16:16:12.976 \N \N 2 3 262 4 4164 -820 \N 2012-09-04 16:16:13.049 \N \N 2 3 262 4 4165 -820 \N 2012-09-04 16:16:13.078 \N \N 2 3 262 4 4166 -820 \N 2012-09-04 16:16:13.102 \N \N 2 3 262 4 4167 -820 \N 2012-09-04 16:16:13.126 \N \N 2 3 262 4 4168 -820 \N 2012-09-04 16:16:13.157 \N \N 2 3 262 4 4169 -820 \N 2012-09-04 16:16:13.188 \N \N 2 3 262 4 4170 -820 \N 2012-09-04 16:16:13.2 \N \N 2 3 262 4 4171 -820 \N 2012-09-04 16:16:13.217 \N \N 2 3 262 4 4172 -820 \N 2012-09-04 16:16:13.304 \N \N 2 3 262 4 4173 -820 \N 2012-09-04 16:16:13.328 \N \N 2 3 262 4 4174 -820 \N 2012-09-04 16:16:13.344 \N \N 2 3 262 4 4175 -820 \N 2012-09-04 16:16:13.361 \N \N 2 3 262 4 4176 -820 \N 2012-09-04 16:16:13.377 \N \N 2 3 262 4 4177 -820 \N 2012-09-04 16:16:13.398 \N \N 2 3 262 4 4178 -820 \N 2012-09-04 16:16:13.42 \N \N 2 3 262 4 4179 -820 \N 2012-09-04 16:16:13.437 \N \N 2 3 262 4 4180 -820 \N 2012-09-04 16:16:13.451 \N \N 2 3 262 4 4181 -820 \N 2012-09-04 16:16:13.474 \N \N 2 3 262 4 4182 -820 \N 2012-09-04 16:16:13.494 \N \N 2 3 262 4 4183 -820 \N 2012-09-04 16:16:13.509 \N \N 2 3 262 4 4184 -820 \N 2012-09-04 16:16:13.532 \N \N 2 3 262 4 4185 -820 \N 2012-09-04 16:16:13.552 \N \N 2 3 262 4 4186 -820 \N 2012-09-04 16:16:13.568 \N \N 2 3 262 4 4187 -820 \N 2012-09-04 16:16:13.59 \N \N 2 3 262 4 4188 -820 \N 2012-09-04 16:16:13.611 \N \N 2 3 262 4 4189 -820 \N 2012-09-04 16:16:13.626 \N \N 2 3 262 4 4190 -820 \N 2012-09-04 16:16:13.648 \N \N 2 3 262 4 4191 -820 \N 2012-09-04 16:16:13.669 \N \N 2 3 262 4 4192 -820 \N 2012-09-04 16:16:13.684 \N \N 2 3 262 4 4193 -820 \N 2012-09-04 16:16:13.707 \N \N 2 3 262 4 4194 -820 \N 2012-09-04 16:16:13.727 \N \N 2 3 262 4 4195 -820 \N 2012-09-04 16:16:13.743 \N \N 2 3 262 4 4196 -820 \N 2012-09-04 16:16:13.767 \N \N 2 3 262 4 4197 -820 \N 2012-09-04 16:16:14.071 \N \N 2 3 262 4 4198 -820 \N 2012-09-04 16:16:14.154 \N \N 2 3 262 4 4199 -820 \N 2012-09-04 16:16:14.186 \N \N 2 3 262 4 4200 -820 \N 2012-09-04 16:16:14.2 \N \N 2 3 262 4 4201 -820 \N 2012-09-04 16:16:14.217 \N \N 2 3 262 4 4202 -820 \N 2012-09-04 16:16:14.287 \N \N 2 3 262 4 4203 -820 \N 2012-09-04 16:16:14.305 \N \N 2 3 262 4 4204 -820 \N 2012-09-04 16:16:14.327 \N \N 2 3 262 4 4205 -820 \N 2012-09-04 16:16:14.343 \N \N 2 3 262 4 4206 -820 \N 2012-09-04 16:16:14.359 \N \N 2 3 262 4 4207 -820 \N 2012-09-04 16:16:14.382 \N \N 2 3 262 4 4208 -820 \N 2012-09-04 16:16:14.417 \N \N 2 3 262 4 4209 -820 \N 2012-09-04 16:16:14.433 \N \N 2 3 262 4 4210 -820 \N 2012-09-04 16:16:14.451 \N \N 2 3 262 4 4211 -820 \N 2012-09-04 16:16:14.547 \N \N 2 3 262 4 4212 -820 \N 2012-09-04 16:16:14.569 \N \N 2 3 262 4 4213 -820 \N 2012-09-04 16:16:14.585 \N \N 2 3 262 4 4214 -820 \N 2012-09-04 16:16:14.607 \N \N 2 3 262 4 4215 -820 \N 2012-09-04 16:16:14.624 \N \N 2 3 262 4 4216 -820 \N 2012-09-04 16:16:14.642 \N \N 2 3 262 4 4217 -820 \N 2012-09-04 16:16:14.708 \N \N 2 3 262 4 4218 -820 \N 2012-09-04 16:16:14.726 \N \N 2 3 262 4 4219 -820 \N 2012-09-04 16:16:14.754 \N \N 2 3 262 4 4220 -820 \N 2012-09-04 16:16:14.775 \N \N 2 3 262 4 4221 -820 \N 2012-09-04 16:16:14.792 \N \N 2 3 262 4 4222 -820 \N 2012-09-04 16:16:14.872 \N \N 2 3 262 4 4223 -820 \N 2012-09-04 16:16:14.894 \N \N 2 3 262 4 4224 -820 \N 2012-09-04 16:16:14.91 \N \N 2 3 262 4 4225 -820 \N 2012-09-04 16:16:14.926 \N \N 2 3 262 4 4226 -820 \N 2012-09-04 16:16:14.946 \N \N 2 3 262 4 4227 -820 \N 2012-09-04 16:16:14.97 \N \N 2 3 262 4 4228 -820 \N 2012-09-04 16:16:15.043 \N \N 2 3 262 4 4229 -820 \N 2012-09-04 16:16:15.062 \N \N 2 3 262 4 4230 -820 \N 2012-09-04 16:16:15.083 \N \N 2 3 262 4 4231 -820 \N 2012-09-04 16:16:15.107 \N \N 2 3 262 4 4232 -820 \N 2012-09-04 16:16:15.127 \N \N 2 3 262 4 4233 -820 \N 2012-09-04 16:16:15.141 \N \N 2 3 262 4 4234 -820 \N 2012-09-04 16:16:15.165 \N \N 2 3 262 4 4235 -820 \N 2012-09-04 16:16:15.185 \N \N 2 3 262 4 4236 -820 \N 2012-09-04 16:16:15.2 \N \N 2 3 262 4 4237 -820 \N 2012-09-04 16:16:15.223 \N \N 2 3 262 4 4238 -820 \N 2012-09-04 16:16:15.246 \N \N 2 3 262 4 4239 -820 \N 2012-09-04 16:16:15.268 \N \N 2 3 262 4 4240 -820 \N 2012-09-04 16:16:15.295 \N \N 2 3 262 4 4241 -820 \N 2012-09-04 16:16:15.318 \N \N 2 3 262 4 4242 -820 \N 2012-09-04 16:16:15.334 \N \N 2 3 262 4 4243 -820 \N 2012-09-04 16:16:15.356 \N \N 2 3 262 4 4244 -820 \N 2012-09-04 16:16:15.376 \N \N 2 3 262 4 4245 -820 \N 2012-09-04 16:16:15.391 \N \N 2 3 262 4 4246 -820 \N 2012-09-04 16:16:15.414 \N \N 2 3 262 4 4247 -820 \N 2012-09-04 16:16:15.612 \N \N 2 3 262 4 4249 -820 \N 2012-09-04 16:19:58.902 \N \N 2 3 262 4 4250 -820 \N 2012-09-04 16:20:00.732 \N \N 2 3 262 4 4251 -820 \N 2012-09-04 16:20:01.158 \N \N 2 3 262 4 4252 -820 \N 2012-09-04 16:20:01.197 \N \N 2 3 262 4 4253 -820 \N 2012-09-04 16:20:01.308 \N \N 2 3 262 4 4254 -820 \N 2012-09-04 16:20:07.513 \N \N 2 3 262 4 4256 -820 \N 2012-09-04 16:20:07.548 \N \N 2 3 262 4 4257 -820 \N 2012-09-04 16:20:07.595 \N \N 2 3 262 4 4258 -820 \N 2012-09-04 16:20:07.616 \N \N 2 3 262 4 4259 -820 \N 2012-09-04 16:20:09.856 \N \N 2 3 262 4 4260 -820 \N 2012-09-04 16:20:10.362 \N \N 2 3 262 4 4261 -820 \N 2012-09-04 16:20:10.518 \N \N 2 3 262 4 4262 -820 \N 2012-09-04 16:20:10.681 \N \N 2 3 262 4 4263 -820 \N 2012-09-04 16:20:10.833 \N \N 2 3 262 4 4264 -820 \N 2012-09-04 16:20:10.993 \N \N 2 3 262 4 4265 -820 \N 2012-09-04 16:20:11.151 \N \N 2 3 262 4 4266 -820 \N 2012-09-04 16:20:11.319 \N \N 2 3 262 4 4267 -820 \N 2012-09-04 16:20:11.477 \N \N 2 3 262 4 4268 -820 \N 2012-09-04 16:20:11.641 \N \N 2 3 262 4 4269 -820 \N 2012-09-04 16:20:11.802 \N \N 2 3 262 4 4270 -820 \N 2012-09-04 16:20:11.971 \N \N 2 3 262 4 4271 -820 \N 2012-09-04 16:20:12.123 \N \N 2 3 262 4 4272 -820 \N 2012-09-04 16:20:12.285 \N \N 2 3 262 4 4273 -820 \N 2012-09-04 16:20:12.438 \N \N 2 3 262 4 4274 -820 \N 2012-09-04 16:20:12.624 \N \N 2 3 262 4 4275 -820 \N 2012-09-04 16:20:13.584 \N \N 2 3 262 4 4276 -820 \N 2012-09-04 16:20:14.006 \N \N 2 3 262 4 4277 -820 \N 2012-09-04 16:20:14.332 \N \N 2 3 262 4 4278 -820 \N 2012-09-04 16:20:14.393 \N \N 2 3 262 4 4279 -820 \N 2012-09-04 16:20:14.506 \N \N 2 3 262 4 4280 -820 \N 2012-09-04 16:20:20.696 \N \N 2 3 262 4 4282 -820 \N 2012-09-04 16:20:20.743 \N \N 2 3 262 4 4283 -820 \N 2012-09-04 16:20:20.777 \N \N 2 3 262 4 4284 -820 \N 2012-09-04 16:20:20.794 \N \N 2 3 262 4 4285 -820 \N 2012-09-04 16:20:28.813 \N \N 2 3 262 4 4286 -820 \N 2012-09-04 16:20:28.904 \N \N 2 3 262 4 4288 -820 \N 2012-09-04 16:20:29.454 \N \N 2 3 262 4 4289 -820 \N 2012-09-04 16:20:29.46 \N \N 2 3 262 4 4290 -820 \N 2012-09-04 16:20:29.463 \N \N 2 3 262 4 4291 -820 \N 2012-09-04 16:20:29.464 \N \N 2 3 262 4 4292 -820 \N 2012-09-04 16:20:29.614 \N \N 2 3 262 4 4294 -820 \N 2012-09-04 16:20:29.636 \N \N 2 3 262 4 4296 -820 \N 2012-09-04 16:20:31.981 \N \N 2 3 262 4 4297 -820 \N 2012-09-04 16:20:35.616 \N \N 2 3 262 4 4298 -820 \N 2012-09-04 16:20:38.422 \N \N 2 3 262 4 4299 -820 \N 2012-09-04 16:20:43.052 \N \N 2 3 262 4 4301 -820 \N 2012-09-04 16:20:43.057 \N \N 2 3 262 4 4302 -820 \N 2012-09-04 16:20:43.058 \N \N 2 3 262 4 4303 -820 \N 2012-09-04 16:20:43.062 \N \N 2 3 262 4 4305 -820 \N 2012-09-04 16:20:43.235 \N \N 2 3 262 4 4306 -820 \N 2012-09-04 16:20:43.266 \N \N 2 3 262 4 4307 -820 \N 2012-09-04 16:20:43.271 \N \N 2 3 262 4 4308 -820 \N 2012-09-04 16:20:43.28 \N \N 2 3 262 4 4309 -820 \N 2012-09-04 16:20:43.366 \N \N 2 3 262 4 4310 -820 \N 2012-09-04 16:27:29.154 \N \N 0 0 255 9 4311 -820 \N 2012-09-04 16:27:29.252 \N \N 1 2 267 4 4312 -820 \N 2012-09-04 16:27:29.295 \N \N 0 0 255 9 4313 -820 \N 2012-09-04 16:27:29.352 \N \N 2 3 268 4 4314 -820 \N 2012-09-04 16:27:34.83 \N \N 2 3 268 4 4318 -820 \N 2012-09-04 16:27:34.839 \N \N 2 3 268 4 4317 -820 \N 2012-09-04 16:27:34.839 \N \N 2 3 268 4 4316 -820 \N 2012-09-04 16:27:34.839 \N \N 2 3 268 4 4320 -820 \N 2012-09-04 16:27:35.014 \N \N 2 3 268 4 4321 -820 \N 2012-09-04 16:27:35.042 \N \N 2 3 268 4 4323 -820 \N 2012-09-04 16:27:35.054 \N \N 2 3 268 4 4325 -820 \N 2012-09-04 16:27:38.696 \N \N 2 3 268 4 4326 -820 \N 2012-09-04 16:27:39.807 \N \N 2 3 268 4 4327 -820 \N 2012-09-04 16:27:40.622 \N \N 2 3 268 4 4328 -820 \N 2012-09-04 16:27:41.114 \N \N 2 3 268 4 4329 -820 \N 2012-09-04 16:27:41.643 \N \N 2 3 268 4 4330 -820 \N 2012-09-04 16:27:44.921 \N \N 2 3 268 4 4332 -820 \N 2012-09-04 16:44:18.318 \N \N 2 3 265 4 4333 -820 \N 2012-09-04 16:44:18.325 \N \N 2 3 265 4 4334 -820 \N 2012-09-04 16:44:18.334 \N \N 2 3 265 4 4335 -820 \N 2012-09-04 16:44:18.345 \N \N 2 3 265 4 4339 -820 \N 2012-09-04 16:44:18.517 \N \N 2 3 265 4 4423 -820 \N 2012-09-04 16:45:22.136 \N \N 2 3 265 4 4336 -820 \N 2012-09-04 16:44:18.448 \N \N 2 3 265 4 4338 -820 \N 2012-09-04 16:44:18.517 \N \N 2 3 265 4 4341 -820 \N 2012-09-04 16:44:18.567 \N \N 2 3 265 4 4342 -820 \N 2012-09-04 16:44:19.878 \N \N 2 3 265 4 4343 -820 \N 2012-09-04 16:44:21.178 \N \N 2 3 265 4 4344 -820 \N 2012-09-04 16:44:21.609 \N \N 2 3 265 4 4345 -820 \N 2012-09-04 16:44:24.405 \N \N 2 3 265 4 4346 -820 \N 2012-09-04 16:44:24.455 \N \N 2 3 265 4 4347 -820 \N 2012-09-04 16:44:24.616 \N \N 2 3 265 4 4348 -820 \N 2012-09-04 16:44:32.099 \N \N 2 3 265 4 4349 -820 \N 2012-09-04 16:44:32.555 \N \N 2 3 265 4 4350 -820 \N 2012-09-04 16:44:34.524 \N \N 2 3 265 4 4351 -820 \N 2012-09-04 16:44:34.578 \N \N 2 3 265 4 4352 -820 \N 2012-09-04 16:44:34.75 \N \N 2 3 265 4 4353 -820 \N 2012-09-04 16:44:37.32 \N \N 2 3 265 4 4354 -820 \N 2012-09-04 16:44:38.483 \N \N 2 3 265 4 4355 -820 \N 2012-09-04 16:44:38.983 \N \N 2 3 265 4 4356 -820 \N 2012-09-04 16:44:39.164 \N \N 2 3 265 4 4357 -820 \N 2012-09-04 16:44:39.47 \N \N 2 3 265 4 4358 -820 \N 2012-09-04 16:44:39.68 \N \N 2 3 265 4 4359 -820 \N 2012-09-04 16:44:39.875 \N \N 2 3 265 4 4360 -820 \N 2012-09-04 16:44:40.085 \N \N 2 3 265 4 4361 -820 \N 2012-09-04 16:44:40.293 \N \N 2 3 265 4 4362 -820 \N 2012-09-04 16:44:40.476 \N \N 2 3 265 4 4363 -820 \N 2012-09-04 16:44:40.714 \N \N 2 3 265 4 4364 -820 \N 2012-09-04 16:44:40.952 \N \N 2 3 265 4 4365 -820 \N 2012-09-04 16:44:41.201 \N \N 2 3 265 4 4366 -820 \N 2012-09-04 16:44:41.42 \N \N 2 3 265 4 4367 -820 \N 2012-09-04 16:44:41.649 \N \N 2 3 265 4 4368 -820 \N 2012-09-04 16:44:41.876 \N \N 2 3 265 4 4369 -820 \N 2012-09-04 16:44:42.194 \N \N 2 3 265 4 4370 -820 \N 2012-09-04 16:44:42.374 \N \N 2 3 265 4 4371 -820 \N 2012-09-04 16:44:42.586 \N \N 2 3 265 4 4372 -820 \N 2012-09-04 16:44:42.762 \N \N 2 3 265 4 4373 -820 \N 2012-09-04 16:44:42.941 \N \N 2 3 265 4 4374 -820 \N 2012-09-04 16:44:43.191 \N \N 2 3 265 4 4375 -820 \N 2012-09-04 16:44:43.453 \N \N 2 3 265 4 4376 -820 \N 2012-09-04 16:44:43.639 \N \N 2 3 265 4 4377 -820 \N 2012-09-04 16:44:43.833 \N \N 2 3 265 4 4378 -820 \N 2012-09-04 16:44:43.999 \N \N 2 3 265 4 4379 -820 \N 2012-09-04 16:44:44.169 \N \N 2 3 265 4 4380 -820 \N 2012-09-04 16:44:44.651 \N \N 2 3 265 4 4381 -820 \N 2012-09-04 16:44:44.865 \N \N 2 3 265 4 4382 -820 \N 2012-09-04 16:44:45.056 \N \N 2 3 265 4 4383 -820 \N 2012-09-04 16:44:45.292 \N \N 2 3 265 4 4384 -820 \N 2012-09-04 16:44:45.482 \N \N 2 3 265 4 4385 -820 \N 2012-09-04 16:44:45.658 \N \N 2 3 265 4 4386 -820 \N 2012-09-04 16:44:45.842 \N \N 2 3 265 4 4387 -820 \N 2012-09-04 16:44:46.016 \N \N 2 3 265 4 4388 -820 \N 2012-09-04 16:44:57.158 \N \N 2 3 265 4 4389 -820 \N 2012-09-04 16:44:57.772 \N \N 2 3 265 4 4390 -820 \N 2012-09-04 16:44:59.814 \N \N 2 3 265 4 4391 -820 \N 2012-09-04 16:44:59.875 \N \N 2 3 265 4 4392 -820 \N 2012-09-04 16:45:00.05 \N \N 2 3 265 4 4393 -820 \N 2012-09-04 16:45:02.815 \N \N 2 3 265 4 4394 -820 \N 2012-09-04 16:45:03.877 \N \N 2 3 265 4 4395 -820 \N 2012-09-04 16:45:06.061 \N \N 2 3 265 4 4396 -820 \N 2012-09-04 16:45:07.793 \N \N 2 3 265 4 4397 -820 \N 2012-09-04 16:45:08.185 \N \N 2 3 265 4 4398 -820 \N 2012-09-04 16:45:08.483 \N \N 2 3 265 4 4399 -820 \N 2012-09-04 16:45:08.715 \N \N 2 3 265 4 4400 -820 \N 2012-09-04 16:45:09.007 \N \N 2 3 265 4 4401 -820 \N 2012-09-04 16:45:09.329 \N \N 2 3 265 4 4402 -820 \N 2012-09-04 16:45:09.942 \N \N 2 3 265 4 4403 -820 \N 2012-09-04 16:45:10.199 \N \N 2 3 265 4 4404 -820 \N 2012-09-04 16:45:10.432 \N \N 2 3 265 4 4405 -820 \N 2012-09-04 16:45:10.678 \N \N 2 3 265 4 4406 -820 \N 2012-09-04 16:45:10.953 \N \N 2 3 265 4 4407 -820 \N 2012-09-04 16:45:11.189 \N \N 2 3 265 4 4408 -820 \N 2012-09-04 16:45:11.423 \N \N 2 3 265 4 4409 -820 \N 2012-09-04 16:45:11.657 \N \N 2 3 265 4 4410 -820 \N 2012-09-04 16:45:11.91 \N \N 2 3 265 4 4411 -820 \N 2012-09-04 16:45:12.165 \N \N 2 3 265 4 4412 -820 \N 2012-09-04 16:45:12.425 \N \N 2 3 265 4 4413 -820 \N 2012-09-04 16:45:12.694 \N \N 2 3 265 4 4414 -820 \N 2012-09-04 16:45:12.911 \N \N 2 3 265 4 4415 -820 \N 2012-09-04 16:45:13.15 \N \N 2 3 265 4 4416 -820 \N 2012-09-04 16:45:13.39 \N \N 2 3 265 4 4417 -820 \N 2012-09-04 16:45:13.639 \N \N 2 3 265 4 4418 -820 \N 2012-09-04 16:45:13.923 \N \N 2 3 265 4 4419 -820 \N 2012-09-04 16:45:14.166 \N \N 2 3 265 4 4420 -820 \N 2012-09-04 16:45:14.4 \N \N 2 3 265 4 4421 -820 \N 2012-09-04 16:45:14.972 \N \N 2 3 265 4 4422 -820 \N 2012-09-04 16:45:22.133 \N \N 2 3 265 4 4426 -820 \N 2012-09-04 16:45:22.227 \N \N 2 3 265 4 4427 -820 \N 2012-09-04 16:45:22.299 \N \N 2 3 265 4 4428 -820 \N 2012-09-04 16:45:25.757 \N \N 2 3 265 4 4429 -820 \N 2012-09-04 16:45:26.27 \N \N 2 3 265 4 4340 -820 \N 2012-09-04 16:44:18.518 \N \N 2 3 265 4 4425 -820 \N 2012-09-04 16:45:22.14 \N \N 2 3 265 4 4430 -820 \N 2012-09-04 16:45:28.526 \N \N 2 3 265 4 4431 -820 \N 2012-09-04 16:45:28.569 \N \N 2 3 265 4 4432 -820 \N 2012-09-04 16:45:28.729 \N \N 2 3 265 4 4433 -820 \N 2012-09-04 16:45:30.312 \N \N 2 3 265 4 4434 -820 \N 2012-09-04 16:45:31.592 \N \N 2 3 265 4 4435 -820 \N 2012-09-04 16:45:32.905 \N \N 2 3 265 4 4436 -820 \N 2012-09-04 16:45:36.367 \N \N 2 3 265 4 4437 -820 \N 2012-09-04 16:45:37.592 \N \N 2 3 265 4 4438 -820 \N 2012-09-04 16:45:38.794 \N \N 2 3 265 4 4439 -820 \N 2012-09-04 16:45:43.564 \N \N 2 3 265 4 4440 -820 \N 2012-09-04 16:45:44.053 \N \N 2 3 265 4 4441 -820 \N 2012-09-04 16:45:44.371 \N \N 2 3 265 4 4442 -820 \N 2012-09-04 16:45:44.627 \N \N 2 3 265 4 4443 -820 \N 2012-09-04 16:45:44.913 \N \N 2 3 265 4 4444 -820 \N 2012-09-04 16:45:45.174 \N \N 2 3 265 4 4445 -820 \N 2012-09-04 16:45:45.476 \N \N 2 3 265 4 4446 -820 \N 2012-09-04 16:45:45.758 \N \N 2 3 265 4 4447 -820 \N 2012-09-04 16:45:46.069 \N \N 2 3 265 4 4448 -820 \N 2012-09-04 16:45:46.377 \N \N 2 3 265 4 4449 -820 \N 2012-09-04 16:45:46.645 \N \N 2 3 265 4 4450 -820 \N 2012-09-04 16:45:46.912 \N \N 2 3 265 4 4451 -820 \N 2012-09-04 16:45:47.216 \N \N 2 3 265 4 4452 -820 \N 2012-09-04 16:45:47.544 \N \N 2 3 265 4 4453 -820 \N 2012-09-04 16:45:47.799 \N \N 2 3 265 4 4454 -820 \N 2012-09-04 16:45:48.072 \N \N 2 3 265 4 4455 -820 \N 2012-09-04 16:45:48.341 \N \N 2 3 265 4 4456 -820 \N 2012-09-04 16:45:48.588 \N \N 2 3 265 4 4457 -820 \N 2012-09-04 16:45:48.875 \N \N 2 3 265 4 4458 -820 \N 2012-09-04 16:45:49.174 \N \N 2 3 265 4 4459 -820 \N 2012-09-04 16:45:49.462 \N \N 2 3 265 4 4460 -820 \N 2012-09-04 16:45:49.765 \N \N 2 3 265 4 4461 -820 \N 2012-09-04 16:45:50.043 \N \N 2 3 265 4 4462 -820 \N 2012-09-04 16:45:50.391 \N \N 2 3 265 4 4463 -820 \N 2012-09-04 16:45:50.672 \N \N 2 3 265 4 4464 -820 \N 2012-09-04 16:45:52.55 \N \N 2 3 265 4 4465 -820 \N 2012-09-04 16:45:52.98 \N \N 2 3 265 4 4466 -820 \N 2012-09-04 16:45:55.693 \N \N 2 3 265 4 4467 -820 \N 2012-09-04 16:45:55.756 \N \N 2 3 265 4 4468 -820 \N 2012-09-04 16:45:55.921 \N \N 2 3 265 4 4469 -820 \N 2012-09-04 16:45:58.098 \N \N 2 3 265 4 4470 -820 \N 2012-09-04 16:45:58.975 \N \N 2 3 265 4 4471 -820 \N 2012-09-04 16:46:01.454 \N \N 2 3 265 4 4472 -820 \N 2012-09-04 16:46:01.456 \N \N 2 3 265 4 4473 -820 \N 2012-09-04 16:46:01.457 \N \N 2 3 265 4 4475 -820 \N 2012-09-04 16:46:01.461 \N \N 2 3 265 4 4474 -820 \N 2012-09-04 16:46:01.461 \N \N 2 3 265 4 4476 -820 \N 2012-09-04 16:46:01.582 \N \N 2 3 265 4 4477 -820 \N 2012-09-04 16:46:06.649 \N \N 2 3 265 4 4478 -820 \N 2012-09-04 16:46:07.186 \N \N 2 3 265 4 4479 -820 \N 2012-09-04 16:46:09.551 \N \N 2 3 265 4 4480 -820 \N 2012-09-04 16:46:09.616 \N \N 2 3 265 4 4481 -820 \N 2012-09-04 16:46:09.771 \N \N 2 3 265 4 4482 -820 \N 2012-09-04 16:46:13.118 \N \N 2 3 265 4 4483 -820 \N 2012-09-04 16:46:14.417 \N \N 2 3 265 4 4484 -820 \N 2012-09-04 16:46:26.032 \N \N 2 3 265 4 4485 -820 \N 2012-09-04 16:46:26.159 \N \N 2 3 265 4 4486 -820 \N 2012-09-04 16:46:26.159 \N \N 2 3 265 4 4487 -820 \N 2012-09-04 16:46:26.366 \N \N 2 3 265 4 4488 -820 \N 2012-09-04 16:46:26.48 \N \N 2 3 265 4 4489 -820 \N 2012-09-04 16:46:26.481 \N \N 2 3 265 4 4490 -820 \N 2012-09-04 16:46:26.484 \N \N 2 3 265 4 4491 -820 \N 2012-09-04 16:46:26.491 \N \N 2 3 265 4 4492 -820 \N 2012-09-04 16:46:26.507 \N \N 2 3 265 4 4493 -820 \N 2012-09-04 16:46:26.622 \N \N 2 3 265 4 4494 -820 \N 2012-09-04 16:46:26.633 \N \N 2 3 265 4 4495 -820 \N 2012-09-04 16:46:26.635 \N \N 2 3 265 4 4496 -820 \N 2012-09-04 16:46:27.593 \N \N 2 3 265 4 4497 -820 \N 2012-09-04 16:46:27.892 \N \N 2 3 265 4 4498 -820 \N 2012-09-04 16:46:30.165 \N \N 2 3 265 4 4499 -820 \N 2012-09-04 16:46:30.213 \N \N 2 3 265 4 4500 -820 \N 2012-09-04 16:46:30.391 \N \N 2 3 265 4 4501 -820 \N 2012-09-04 16:46:42.359 \N \N 2 3 265 4 4502 -820 \N 2012-09-04 16:46:43.411 \N \N 2 3 265 4 4503 -820 \N 2012-09-04 16:46:43.914 \N \N 2 3 265 4 4504 -820 \N 2012-09-04 16:46:44.108 \N \N 2 3 265 4 4505 -820 \N 2012-09-04 16:46:44.324 \N \N 2 3 265 4 4506 -820 \N 2012-09-04 16:46:44.546 \N \N 2 3 265 4 4507 -820 \N 2012-09-04 16:46:44.752 \N \N 2 3 265 4 4508 -820 \N 2012-09-04 16:46:44.962 \N \N 2 3 265 4 4509 -820 \N 2012-09-04 16:46:45.134 \N \N 2 3 265 4 4510 -820 \N 2012-09-04 16:46:45.326 \N \N 2 3 265 4 4511 -820 \N 2012-09-04 16:46:45.51 \N \N 2 3 265 4 4512 -820 \N 2012-09-04 16:46:45.716 \N \N 2 3 265 4 4513 -820 \N 2012-09-04 16:46:45.926 \N \N 2 3 265 4 4514 -820 \N 2012-09-04 16:46:46.11 \N \N 2 3 265 4 4515 -820 \N 2012-09-04 16:46:46.288 \N \N 2 3 265 4 4516 -820 \N 2012-09-04 16:46:46.468 \N \N 2 3 265 4 4517 -820 \N 2012-09-04 16:46:46.655 \N \N 2 3 265 4 4518 -820 \N 2012-09-04 16:46:46.824 \N \N 2 3 265 4 4519 -820 \N 2012-09-04 16:46:47.004 \N \N 2 3 265 4 4520 -820 \N 2012-09-04 16:46:47.198 \N \N 2 3 265 4 4521 -820 \N 2012-09-04 16:46:47.828 \N \N 2 3 265 4 4522 -820 \N 2012-09-04 16:46:48.057 \N \N 2 3 265 4 4523 -820 \N 2012-09-04 16:46:48.241 \N \N 2 3 265 4 4524 -820 \N 2012-09-04 16:46:48.415 \N \N 2 3 265 4 4525 -820 \N 2012-09-04 16:46:48.631 \N \N 2 3 265 4 4526 -820 \N 2012-09-04 16:46:48.793 \N \N 2 3 265 4 4527 -820 \N 2012-09-04 16:46:48.957 \N \N 2 3 265 4 4528 -820 \N 2012-09-04 16:46:49.138 \N \N 2 3 265 4 4529 -820 \N 2012-09-04 16:46:49.297 \N \N 2 3 265 4 4530 -820 \N 2012-09-04 16:46:49.487 \N \N 2 3 265 4 4531 -820 \N 2012-09-04 16:46:49.68 \N \N 2 3 265 4 4532 -820 \N 2012-09-04 16:46:49.884 \N \N 2 3 265 4 4533 -820 \N 2012-09-04 16:46:50.085 \N \N 2 3 265 4 4534 -820 \N 2012-09-04 16:46:50.262 \N \N 2 3 265 4 4535 -820 \N 2012-09-04 16:46:50.435 \N \N 2 3 265 4 4536 -820 \N 2012-09-04 16:46:50.618 \N \N 2 3 265 4 4537 -820 \N 2012-09-04 16:46:50.788 \N \N 2 3 265 4 4538 -820 \N 2012-09-04 16:46:50.964 \N \N 2 3 265 4 4539 -820 \N 2012-09-04 16:46:51.125 \N \N 2 3 265 4 4540 -820 \N 2012-09-04 16:46:51.292 \N \N 2 3 265 4 4541 -820 \N 2012-09-04 16:46:51.479 \N \N 2 3 265 4 4542 -820 \N 2012-09-04 16:46:51.743 \N \N 2 3 265 4 4543 -820 \N 2012-09-04 16:46:51.94 \N \N 2 3 265 4 4544 -820 \N 2012-09-04 16:46:52.135 \N \N 2 3 265 4 4545 -820 \N 2012-09-04 16:46:52.316 \N \N 2 3 265 4 4546 -820 \N 2012-09-04 16:47:19.259 \N \N 2 3 265 4 4547 -820 \N 2012-09-04 16:47:19.467 \N \N 2 3 265 4 4548 -820 \N 2012-09-04 16:47:19.677 \N \N 2 3 265 4 4549 -820 \N 2012-09-04 16:47:19.887 \N \N 2 3 265 4 4550 -820 \N 2012-09-04 16:47:20.071 \N \N 2 3 265 4 4551 -820 \N 2012-09-04 16:47:20.266 \N \N 2 3 265 4 4552 -820 \N 2012-09-04 16:47:20.454 \N \N 2 3 265 4 4553 -820 \N 2012-09-04 16:47:20.615 \N \N 2 3 265 4 4554 -820 \N 2012-09-04 16:47:20.791 \N \N 2 3 265 4 4555 -820 \N 2012-09-04 16:47:20.991 \N \N 2 3 265 4 4556 -820 \N 2012-09-04 16:47:21.201 \N \N 2 3 265 4 4557 -820 \N 2012-09-04 16:47:21.394 \N \N 2 3 265 4 4558 -820 \N 2012-09-04 16:47:21.572 \N \N 2 3 265 4 4559 -820 \N 2012-09-04 16:47:21.738 \N \N 2 3 265 4 4560 -820 \N 2012-09-04 16:47:21.955 \N \N 2 3 265 4 4561 -820 \N 2012-09-04 16:47:22.166 \N \N 2 3 265 4 4562 -820 \N 2012-09-04 16:47:22.333 \N \N 2 3 265 4 4563 -820 \N 2012-09-04 16:47:22.532 \N \N 2 3 265 4 4564 -820 \N 2012-09-04 16:47:22.709 \N \N 2 3 265 4 4565 -820 \N 2012-09-04 16:47:22.87 \N \N 2 3 265 4 4566 -820 \N 2012-09-04 16:47:23.045 \N \N 2 3 265 4 4567 -820 \N 2012-09-04 16:47:23.206 \N \N 2 3 265 4 4568 -820 \N 2012-09-04 16:47:23.367 \N \N 2 3 265 4 4569 -820 \N 2012-09-04 16:47:23.536 \N \N 2 3 265 4 4570 -820 \N 2012-09-04 16:47:23.923 \N \N 2 3 265 4 4571 -820 \N 2012-09-04 16:47:24.1 \N \N 2 3 265 4 4572 -820 \N 2012-09-04 16:47:24.282 \N \N 2 3 265 4 4573 -820 \N 2012-09-04 16:47:24.447 \N \N 2 3 265 4 4574 -820 \N 2012-09-04 16:47:24.633 \N \N 2 3 265 4 4575 -820 \N 2012-09-04 16:47:24.804 \N \N 2 3 265 4 4576 -820 \N 2012-09-04 16:47:24.976 \N \N 2 3 265 4 4577 -820 \N 2012-09-04 16:47:25.141 \N \N 2 3 265 4 4578 -820 \N 2012-09-04 16:47:25.334 \N \N 2 3 265 4 4579 -820 \N 2012-09-04 16:47:25.505 \N \N 2 3 265 4 4580 -820 \N 2012-09-04 16:47:25.706 \N \N 2 3 265 4 4581 -820 \N 2012-09-04 16:47:25.892 \N \N 2 3 265 4 4582 -820 \N 2012-09-04 16:47:26.103 \N \N 2 3 265 4 4583 -820 \N 2012-09-04 16:47:26.57 \N \N 2 3 265 4 4584 -820 \N 2012-09-04 16:47:26.958 \N \N 2 3 265 4 4585 -820 \N 2012-09-04 16:47:27.152 \N \N 2 3 265 4 4586 -820 \N 2012-09-04 16:47:37.101 \N \N 2 3 265 4 4587 -820 \N 2012-09-04 16:47:37.916 \N \N 2 3 265 4 4588 -820 \N 2012-09-04 16:47:38.315 \N \N 2 3 265 4 4589 -820 \N 2012-09-04 16:47:40.756 \N \N 2 3 265 4 4590 -820 \N 2012-09-04 16:47:40.802 \N \N 2 3 265 4 4591 -820 \N 2012-09-04 16:47:40.984 \N \N 2 3 265 4 4592 -820 \N 2012-09-04 16:47:43.124 \N \N 2 3 265 4 4593 -820 \N 2012-09-04 16:47:44.972 \N \N 2 3 265 4 4594 -820 \N 2012-09-04 16:47:45.479 \N \N 2 3 265 4 4595 -820 \N 2012-09-04 16:47:45.675 \N \N 2 3 265 4 4596 -820 \N 2012-09-04 16:47:45.87 \N \N 2 3 265 4 4597 -820 \N 2012-09-04 16:47:46.066 \N \N 2 3 265 4 4598 -820 \N 2012-09-04 16:47:46.278 \N \N 2 3 265 4 4599 -820 \N 2012-09-04 16:47:46.462 \N \N 2 3 265 4 4600 -820 \N 2012-09-04 16:47:46.657 \N \N 2 3 265 4 4601 -820 \N 2012-09-04 16:47:46.857 \N \N 2 3 265 4 4602 -820 \N 2012-09-04 16:47:47.046 \N \N 2 3 265 4 4603 -820 \N 2012-09-04 16:47:47.233 \N \N 2 3 265 4 4604 -820 \N 2012-09-04 16:47:47.41 \N \N 2 3 265 4 4605 -820 \N 2012-09-04 16:47:47.615 \N \N 2 3 265 4 4606 -820 \N 2012-09-04 16:47:47.82 \N \N 2 3 265 4 4607 -820 \N 2012-09-04 16:47:47.998 \N \N 2 3 265 4 4608 -820 \N 2012-09-04 16:47:48.228 \N \N 2 3 265 4 4609 -820 \N 2012-09-04 16:47:48.436 \N \N 2 3 265 4 4610 -820 \N 2012-09-04 16:47:48.613 \N \N 2 3 265 4 4611 -820 \N 2012-09-04 16:47:48.774 \N \N 2 3 265 4 4612 -820 \N 2012-09-04 16:47:49.55 \N \N 2 3 265 4 4613 -820 \N 2012-09-04 16:47:49.749 \N \N 2 3 265 4 4614 -820 \N 2012-09-04 16:47:49.949 \N \N 2 3 265 4 4615 -820 \N 2012-09-04 16:47:50.121 \N \N 2 3 265 4 4616 -820 \N 2012-09-04 16:47:50.321 \N \N 2 3 265 4 4617 -820 \N 2012-09-04 16:47:50.507 \N \N 2 3 265 4 4618 -820 \N 2012-09-04 16:47:50.717 \N \N 2 3 265 4 4619 -820 \N 2012-09-04 16:47:50.894 \N \N 2 3 265 4 4620 -820 \N 2012-09-04 16:47:51.078 \N \N 2 3 265 4 4621 -820 \N 2012-09-04 16:47:51.475 \N \N 2 3 265 4 4622 -820 \N 2012-09-04 16:47:51.639 \N \N 2 3 265 4 4623 -820 \N 2012-09-04 16:47:51.816 \N \N 2 3 265 4 4624 -820 \N 2012-09-04 16:47:52.023 \N \N 2 3 265 4 4625 -820 \N 2012-09-04 16:47:52.204 \N \N 2 3 265 4 4626 -820 \N 2012-09-04 16:47:52.444 \N \N 2 3 265 4 4629 -820 \N 2012-09-04 16:47:58.797 \N \N 2 3 265 4 4632 -820 \N 2012-09-04 16:47:58.965 \N \N 2 3 265 4 4637 -820 \N 2012-09-04 16:47:59.119 \N \N 2 3 265 4 4638 -820 \N 2012-09-04 16:48:01.032 \N \N 2 3 265 4 4639 -820 \N 2012-09-04 16:48:01.481 \N \N 2 3 265 4 4640 -820 \N 2012-09-04 16:48:03.923 \N \N 2 3 265 4 4641 -820 \N 2012-09-04 16:48:03.995 \N \N 2 3 265 4 4642 -820 \N 2012-09-04 16:48:04.137 \N \N 2 3 265 4 4643 -820 \N 2012-09-04 16:48:06.604 \N \N 2 3 265 4 4644 -820 \N 2012-09-04 16:48:08.634 \N \N 2 3 265 4 4645 -820 \N 2012-09-04 16:48:11.378 \N \N 2 3 265 4 4646 -820 \N 2012-09-04 16:48:11.879 \N \N 2 3 265 4 4647 -820 \N 2012-09-04 16:48:12.107 \N \N 2 3 265 4 4648 -820 \N 2012-09-04 16:48:12.312 \N \N 2 3 265 4 4649 -820 \N 2012-09-04 16:48:12.495 \N \N 2 3 265 4 4650 -820 \N 2012-09-04 16:48:12.754 \N \N 2 3 265 4 4651 -820 \N 2012-09-04 16:48:12.92 \N \N 2 3 265 4 4652 -820 \N 2012-09-04 16:48:13.43 \N \N 2 3 265 4 4653 -820 \N 2012-09-04 16:48:13.635 \N \N 2 3 265 4 4654 -820 \N 2012-09-04 16:48:13.814 \N \N 2 3 265 4 4655 -820 \N 2012-09-04 16:48:14.035 \N \N 2 3 265 4 4656 -820 \N 2012-09-04 16:48:14.205 \N \N 2 3 265 4 4657 -820 \N 2012-09-04 16:48:14.392 \N \N 2 3 265 4 4658 -820 \N 2012-09-04 16:48:14.603 \N \N 2 3 265 4 4659 -820 \N 2012-09-04 16:48:14.83 \N \N 2 3 265 4 4660 -820 \N 2012-09-04 16:48:15.076 \N \N 2 3 265 4 4661 -820 \N 2012-09-04 16:48:15.255 \N \N 2 3 265 4 4662 -820 \N 2012-09-04 16:48:15.422 \N \N 2 3 265 4 4663 -820 \N 2012-09-04 16:48:15.626 \N \N 2 3 265 4 4664 -820 \N 2012-09-04 16:48:15.797 \N \N 2 3 265 4 4665 -820 \N 2012-09-04 16:48:15.999 \N \N 2 3 265 4 4666 -820 \N 2012-09-04 16:48:16.199 \N \N 2 3 265 4 4667 -820 \N 2012-09-04 16:48:16.403 \N \N 2 3 265 4 4668 -820 \N 2012-09-04 16:48:16.622 \N \N 2 3 265 4 4669 -820 \N 2012-09-04 16:48:16.826 \N \N 2 3 265 4 4670 -820 \N 2012-09-04 16:48:17.02 \N \N 2 3 265 4 4671 -820 \N 2012-09-04 16:48:17.219 \N \N 2 3 265 4 4672 -820 \N 2012-09-04 16:48:17.417 \N \N 2 3 265 4 4673 -820 \N 2012-09-04 16:48:17.599 \N \N 2 3 265 4 4674 -820 \N 2012-09-04 16:48:17.782 \N \N 2 3 265 4 4675 -820 \N 2012-09-04 16:48:17.959 \N \N 2 3 265 4 4676 -820 \N 2012-09-04 16:48:18.152 \N \N 2 3 265 4 4677 -820 \N 2012-09-04 16:48:18.38 \N \N 2 3 265 4 4678 -820 \N 2012-09-04 16:48:18.574 \N \N 2 3 265 4 4679 -820 \N 2012-09-04 16:48:20.836 \N \N 2 3 265 4 4680 -820 \N 2012-09-04 16:48:26.686 \N \N 2 3 265 4 4681 -820 \N 2012-09-04 16:48:28.887 \N \N 2 3 265 4 4682 -820 \N 2012-09-04 16:49:30.658 \N \N 2 3 265 4 4683 -820 \N 2012-09-04 16:49:31.032 \N \N 2 3 265 4 4684 -820 \N 2012-09-04 16:49:32.977 \N \N 2 3 265 4 4685 -820 \N 2012-09-04 16:49:33.024 \N \N 2 3 265 4 4686 -820 \N 2012-09-04 16:49:33.192 \N \N 2 3 265 4 4687 -820 \N 2012-09-04 16:49:36.741 \N \N 2 3 265 4 4688 -820 \N 2012-09-04 16:49:37.028 \N \N 2 3 265 4 4689 -820 \N 2012-09-04 16:51:26.761 \N \N 0 0 255 9 4690 -820 \N 2012-09-04 16:51:26.823 \N \N 1 2 269 4 4691 -820 \N 2012-09-04 16:51:26.849 \N \N 0 0 255 9 4692 -820 \N 2012-09-04 16:51:26.888 \N \N 5 3 270 4 4694 -820 \N 2012-09-04 16:51:48.893 \N \N 2 3 270 4 4698 -820 \N 2012-09-04 16:51:49.076 \N \N 2 3 270 4 4703 -820 \N 2012-09-04 16:51:49.204 \N \N 2 3 270 4 4704 -820 \N 2012-09-04 16:51:52.692 \N \N 2 3 270 4 4705 -820 \N 2012-09-04 16:51:56.484 \N \N 2 3 270 4 4706 -820 \N 2012-09-04 16:51:56.829 \N \N 2 3 270 4 4707 -820 \N 2012-09-04 16:51:58.099 \N \N 2 3 270 4 4708 -820 \N 2012-09-04 16:51:58.142 \N \N 5 3 270 4 4709 -820 \N 2012-09-04 16:51:58.271 \N \N 2 3 270 4 4627 -820 \N 2012-09-04 16:47:58.793 \N \N 2 3 265 4 4635 -820 \N 2012-09-04 16:47:58.994 \N \N 2 3 265 4 4693 -820 \N 2012-09-04 16:51:48.893 \N \N 2 3 270 4 4628 -820 \N 2012-09-04 16:47:58.796 \N \N 2 3 265 4 4630 -820 \N 2012-09-04 16:47:58.806 \N \N 2 3 265 4 4633 -820 \N 2012-09-04 16:47:58.97 \N \N 2 3 265 4 4631 -820 \N 2012-09-04 16:47:58.839 \N \N 2 3 265 4 4634 -820 \N 2012-09-04 16:47:58.985 \N \N 2 3 265 4 4636 -820 \N 2012-09-04 16:47:59.009 \N \N 2 3 265 4 4695 -820 \N 2012-09-04 16:51:48.896 \N \N 2 3 270 4 4696 -820 \N 2012-09-04 16:51:48.896 \N \N 2 3 270 4 4697 -820 \N 2012-09-04 16:51:48.899 \N \N 2 3 270 4 4700 -820 \N 2012-09-04 16:51:49.092 \N \N 2 3 270 4 4699 -820 \N 2012-09-04 16:51:49.092 \N \N 2 3 270 4 4701 -820 \N 2012-09-04 16:51:49.092 \N \N 2 3 270 4 4702 -820 \N 2012-09-04 16:51:49.117 \N \N 2 3 270 4 4710 -820 \N 2012-09-04 16:52:12.379 \N \N 2 3 270 4 4711 -820 \N 2012-09-04 16:52:14.963 \N \N 2 3 270 4 4712 -820 \N 2012-09-04 16:52:15.448 \N \N 2 3 270 4 4713 -820 \N 2012-09-04 16:52:15.608 \N \N 2 3 270 4 4714 -820 \N 2012-09-04 16:52:15.779 \N \N 2 3 270 4 4715 -820 \N 2012-09-04 16:52:15.941 \N \N 2 3 270 4 4716 -820 \N 2012-09-04 16:52:16.103 \N \N 2 3 270 4 4717 -820 \N 2012-09-04 16:52:16.274 \N \N 2 3 270 4 4718 -820 \N 2012-09-04 16:52:16.435 \N \N 2 3 270 4 4719 -820 \N 2012-09-04 16:52:16.598 \N \N 2 3 270 4 4720 -820 \N 2012-09-04 16:52:16.761 \N \N 2 3 270 4 4721 -820 \N 2012-09-04 16:52:16.917 \N \N 2 3 270 4 4722 -820 \N 2012-09-04 16:52:17.083 \N \N 2 3 270 4 4723 -820 \N 2012-09-04 16:52:17.25 \N \N 2 3 270 4 4724 -820 \N 2012-09-04 16:52:17.411 \N \N 2 3 270 4 4725 -820 \N 2012-09-04 16:52:17.579 \N \N 2 3 270 4 4726 -820 \N 2012-09-04 16:52:17.741 \N \N 2 3 270 4 4727 -820 \N 2012-09-04 16:52:17.977 \N \N 2 3 270 4 4728 -820 \N 2012-09-04 16:52:18.161 \N \N 2 3 270 4 4729 -820 \N 2012-09-04 16:52:18.358 \N \N 2 3 270 4 4730 -820 \N 2012-09-04 16:52:18.532 \N \N 2 3 270 4 4731 -820 \N 2012-09-04 16:52:18.716 \N \N 2 3 270 4 4732 -820 \N 2012-09-04 16:52:18.882 \N \N 2 3 270 4 4733 -820 \N 2012-09-04 16:52:19.067 \N \N 2 3 270 4 4734 -820 \N 2012-09-04 16:52:19.256 \N \N 2 3 270 4 4735 -820 \N 2012-09-04 16:52:19.517 \N \N 2 3 270 4 4736 -820 \N 2012-09-04 16:52:19.729 \N \N 2 3 270 4 4737 -820 \N 2012-09-04 16:52:19.901 \N \N 2 3 270 4 4738 -820 \N 2012-09-04 16:52:20.078 \N \N 2 3 270 4 4739 -820 \N 2012-09-04 16:52:20.251 \N \N 2 3 270 4 4740 -820 \N 2012-09-04 16:52:20.415 \N \N 2 3 270 4 4741 -820 \N 2012-09-04 16:52:20.579 \N \N 2 3 270 4 4742 -820 \N 2012-09-04 16:52:20.752 \N \N 2 3 270 4 4743 -820 \N 2012-09-04 16:52:20.941 \N \N 2 3 270 4 4744 -820 \N 2012-09-04 16:52:21.11 \N \N 2 3 270 4 4745 -820 \N 2012-09-04 16:52:21.278 \N \N 2 3 270 4 4746 -820 \N 2012-09-04 16:52:21.451 \N \N 2 3 270 4 4747 -820 \N 2012-09-04 16:52:21.61 \N \N 2 3 270 4 4748 -820 \N 2012-09-04 16:52:21.774 \N \N 2 3 270 4 4749 -820 \N 2012-09-04 16:52:21.935 \N \N 2 3 270 4 4750 -820 \N 2012-09-04 16:52:24.337 \N \N 2 3 270 4 4751 -820 \N 2012-09-04 16:52:28.362 \N \N 2 3 270 4 4752 -820 \N 2012-09-04 16:52:33.007 \N \N 2 3 270 4 4753 -820 \N 2012-09-04 17:23:48.335 \N \N 0 0 255 9 4754 -820 \N 2012-09-04 17:23:48.381 \N \N 1 2 271 4 4755 -820 \N 2012-09-04 17:23:48.411 \N \N 0 0 255 9 4756 -820 \N 2012-09-04 17:23:48.448 \N \N 2 3 272 4 4757 -820 \N 2012-09-04 17:51:12.185 \N \N 0 0 255 9 4758 -820 \N 2012-09-04 17:51:12.231 \N \N 1 2 273 4 4759 -820 \N 2012-09-04 17:51:12.261 \N \N 0 0 255 9 4760 -820 \N 2012-09-04 17:51:12.297 \N \N 2 3 274 4 4761 -820 \N 2012-09-05 08:58:40.245 \N \N 2 3 268 4 4762 -820 \N 2012-09-05 08:58:42.961 \N \N 2 3 268 4 4763 -820 \N 2012-09-05 08:58:42.962 \N \N 2 3 268 4 4764 -820 \N 2012-09-05 08:58:42.968 \N \N 2 3 268 4 4765 -820 \N 2012-09-05 08:58:42.97 \N \N 2 3 268 4 4766 -820 \N 2012-09-05 08:58:42.971 \N \N 2 3 268 4 4767 -820 \N 2012-09-05 08:58:43.12 \N \N 2 3 268 4 4768 -820 \N 2012-09-05 08:58:43.151 \N \N 2 3 268 4 4769 -820 \N 2012-09-05 08:58:43.184 \N \N 2 3 268 4 4770 -820 \N 2012-09-05 08:58:43.226 \N \N 2 3 268 4 4771 -820 \N 2012-09-05 08:58:43.229 \N \N 2 3 268 4 4772 -820 \N 2012-09-05 08:58:43.259 \N \N 2 3 268 4 4773 -820 \N 2012-09-05 08:58:44.091 \N \N 2 3 268 4 4774 -820 \N 2012-09-05 08:58:45.862 \N \N 2 3 268 4 4775 -820 \N 2012-09-05 08:58:45.93 \N \N 2 3 268 4 4776 -820 \N 2012-09-05 08:58:45.958 \N \N 2 3 268 4 4777 -820 \N 2012-09-05 08:58:45.978 \N \N 2 3 268 4 4778 -820 \N 2012-09-05 08:58:45.996 \N \N 2 3 268 4 4779 -820 \N 2012-09-05 08:58:46.082 \N \N 2 3 268 4 4780 -820 \N 2012-09-05 08:58:46.106 \N \N 2 3 268 4 4781 -820 \N 2012-09-05 08:58:46.121 \N \N 2 3 268 4 4782 -820 \N 2012-09-05 08:58:46.138 \N \N 2 3 268 4 4783 -820 \N 2012-09-05 08:58:46.154 \N \N 2 3 268 4 4784 -820 \N 2012-09-05 08:58:46.177 \N \N 2 3 268 4 4785 -820 \N 2012-09-05 08:58:46.203 \N \N 2 3 268 4 4786 -820 \N 2012-09-05 08:58:46.22 \N \N 2 3 268 4 4787 -820 \N 2012-09-05 08:58:46.237 \N \N 2 3 268 4 4788 -820 \N 2012-09-05 08:58:46.3 \N \N 2 3 268 4 4789 -820 \N 2012-09-05 08:58:46.323 \N \N 2 3 268 4 4790 -820 \N 2012-09-05 08:58:46.346 \N \N 2 3 268 4 4791 -820 \N 2012-09-05 08:58:46.368 \N \N 2 3 268 4 4792 -820 \N 2012-09-05 08:58:46.386 \N \N 2 3 268 4 4793 -820 \N 2012-09-05 08:58:46.404 \N \N 2 3 268 4 4794 -820 \N 2012-09-05 08:58:46.466 \N \N 2 3 268 4 4795 -820 \N 2012-09-05 08:58:46.488 \N \N 2 3 268 4 4796 -820 \N 2012-09-05 08:58:46.514 \N \N 2 3 268 4 4797 -820 \N 2012-09-05 08:58:46.527 \N \N 2 3 268 4 4798 -820 \N 2012-09-05 08:58:46.545 \N \N 2 3 268 4 4799 -820 \N 2012-09-05 08:58:46.616 \N \N 2 3 268 4 4800 -820 \N 2012-09-05 08:58:46.639 \N \N 2 3 268 4 4801 -820 \N 2012-09-05 08:58:46.654 \N \N 2 3 268 4 4802 -820 \N 2012-09-05 08:58:46.672 \N \N 2 3 268 4 4803 -820 \N 2012-09-05 08:58:46.688 \N \N 2 3 268 4 4804 -820 \N 2012-09-05 08:58:46.706 \N \N 2 3 268 4 4805 -820 \N 2012-09-05 08:58:46.723 \N \N 2 3 268 4 4806 -820 \N 2012-09-05 08:58:46.748 \N \N 2 3 268 4 4807 -820 \N 2012-09-05 08:58:46.761 \N \N 2 3 268 4 4808 -820 \N 2012-09-05 08:58:46.785 \N \N 2 3 268 4 4809 -820 \N 2012-09-05 08:58:46.805 \N \N 2 3 268 4 4810 -820 \N 2012-09-05 08:58:46.819 \N \N 2 3 268 4 4811 -820 \N 2012-09-05 08:58:46.843 \N \N 2 3 268 4 4812 -820 \N 2012-09-05 08:58:46.863 \N \N 2 3 268 4 4813 -820 \N 2012-09-05 08:58:46.878 \N \N 2 3 268 4 4814 -820 \N 2012-09-05 08:58:46.901 \N \N 2 3 268 4 4815 -820 \N 2012-09-05 08:58:46.945 \N \N 2 3 268 4 4816 -820 \N 2012-09-05 08:58:47.001 \N \N 2 3 268 4 4817 -820 \N 2012-09-05 08:58:47.058 \N \N 2 3 268 4 4818 -820 \N 2012-09-05 08:58:47.103 \N \N 2 3 268 4 4819 -820 \N 2012-09-05 08:58:47.153 \N \N 2 3 268 4 4820 -820 \N 2012-09-05 08:58:47.207 \N \N 2 3 268 4 4821 -820 \N 2012-09-05 08:58:47.252 \N \N 2 3 268 4 4822 -820 \N 2012-09-05 08:58:47.3 \N \N 2 3 268 4 4823 -820 \N 2012-09-05 08:58:47.357 \N \N 2 3 268 4 4824 -820 \N 2012-09-05 09:05:24.489 \N \N 2 3 268 4 4825 -820 \N 2012-09-05 09:18:21.328 \N \N 2 3 268 4 4826 -820 \N 2012-09-05 09:18:21.704 \N \N 2 3 268 4 4827 -820 \N 2012-09-05 09:18:21.866 \N \N 2 3 268 4 4828 -820 \N 2012-09-05 09:18:21.918 \N \N 2 3 268 4 4829 -820 \N 2012-09-05 09:18:22.044 \N \N 2 3 268 4 4830 -820 \N 2012-09-05 09:18:29.741 \N \N 2 3 268 4 4831 -820 \N 2012-09-05 09:18:31.962 \N \N 2 3 268 4 4832 -820 \N 2012-09-05 09:18:36.505 \N \N 2 3 268 4 4833 -820 \N 2012-09-05 09:18:38.284 \N \N 2 3 268 4 4834 -820 \N 2012-09-05 09:18:38.788 \N \N 2 3 268 4 4835 -820 \N 2012-09-05 09:18:39.261 \N \N 2 3 268 4 4836 -820 \N 2012-09-05 09:18:39.779 \N \N 2 3 268 4 4837 -820 \N 2012-09-05 09:18:40.238 \N \N 2 3 268 4 4838 -820 \N 2012-09-05 09:18:40.698 \N \N 2 3 268 4 4839 -820 \N 2012-09-05 09:18:41.158 \N \N 2 3 268 4 4840 -820 \N 2012-09-05 09:18:41.627 \N \N 2 3 268 4 4841 -820 \N 2012-09-05 09:18:42.088 \N \N 2 3 268 4 4842 -820 \N 2012-09-05 09:18:42.564 \N \N 2 3 268 4 4843 -820 \N 2012-09-05 09:18:43.024 \N \N 2 3 268 4 4844 -820 \N 2012-09-05 09:18:43.482 \N \N 2 3 268 4 4845 -820 \N 2012-09-05 09:18:43.935 \N \N 2 3 268 4 4846 -820 \N 2012-09-05 09:18:44.39 \N \N 2 3 268 4 4847 -820 \N 2012-09-05 09:18:44.874 \N \N 2 3 268 4 4848 -820 \N 2012-09-05 09:18:45.386 \N \N 2 3 268 4 4849 -820 \N 2012-09-05 09:18:45.845 \N \N 2 3 268 4 4850 -820 \N 2012-09-05 09:18:46.297 \N \N 2 3 268 4 4851 -820 \N 2012-09-05 09:18:46.752 \N \N 2 3 268 4 4852 -820 \N 2012-09-05 09:18:47.212 \N \N 2 3 268 4 4853 -820 \N 2012-09-05 09:18:47.682 \N \N 2 3 268 4 4854 -820 \N 2012-09-05 09:18:48.128 \N \N 2 3 268 4 4855 -820 \N 2012-09-05 09:18:48.573 \N \N 2 3 268 4 4856 -820 \N 2012-09-05 09:18:49.023 \N \N 2 3 268 4 4857 -820 \N 2012-09-05 09:18:49.481 \N \N 2 3 268 4 4858 -820 \N 2012-09-05 09:18:49.951 \N \N 2 3 268 4 4859 -820 \N 2012-09-05 09:18:50.431 \N \N 2 3 268 4 4860 -820 \N 2012-09-05 09:18:50.883 \N \N 2 3 268 4 4861 -820 \N 2012-09-05 09:18:51.375 \N \N 2 3 268 4 4862 -820 \N 2012-09-05 09:18:51.822 \N \N 2 3 268 4 4863 -820 \N 2012-09-05 09:18:52.283 \N \N 2 3 268 4 4864 -820 \N 2012-09-05 09:18:52.749 \N \N 2 3 268 4 4865 -820 \N 2012-09-05 09:18:53.206 \N \N 2 3 268 4 4866 -820 \N 2012-09-05 09:18:53.643 \N \N 2 3 268 4 4867 -820 \N 2012-09-05 09:18:54.249 \N \N 2 3 268 4 4868 -820 \N 2012-09-05 09:18:54.695 \N \N 2 3 268 4 4869 -820 \N 2012-09-05 09:18:55.167 \N \N 2 3 268 4 4870 -820 \N 2012-09-05 09:18:58.55 \N \N 2 3 268 4 4871 -820 \N 2012-09-05 09:18:58.97 \N \N 2 3 268 4 4872 -820 \N 2012-09-05 09:18:59.407 \N \N 2 3 268 4 4873 -820 \N 2012-09-05 09:18:59.852 \N \N 2 3 268 4 4874 -820 \N 2012-09-05 09:19:00.32 \N \N 2 3 268 4 4875 -820 \N 2012-09-05 09:19:00.765 \N \N 2 3 268 4 4876 -820 \N 2012-09-05 09:19:01.206 \N \N 2 3 268 4 4877 -820 \N 2012-09-05 09:19:01.664 \N \N 2 3 268 4 4878 -820 \N 2012-09-05 09:19:02.123 \N \N 2 3 268 4 4879 -820 \N 2012-09-05 09:19:02.581 \N \N 2 3 268 4 4880 -820 \N 2012-09-05 09:19:03.036 \N \N 2 3 268 4 4881 -820 \N 2012-09-05 09:19:03.474 \N \N 2 3 268 4 4882 -820 \N 2012-09-05 09:19:03.926 \N \N 2 3 268 4 4883 -820 \N 2012-09-05 09:19:05.374 \N \N 2 3 268 4 4884 -820 \N 2012-09-05 09:19:06.365 \N \N 2 3 268 4 4885 -820 \N 2012-09-05 09:19:07.366 \N \N 2 3 268 4 4886 -820 \N 2012-09-05 09:19:08.367 \N \N 2 3 268 4 4887 -820 \N 2012-09-05 09:19:09.374 \N \N 2 3 268 4 4888 -820 \N 2012-09-05 09:19:10.452 \N \N 2 3 268 4 4889 -820 \N 2012-09-05 09:19:11.384 \N \N 2 3 268 4 4890 -820 \N 2012-09-05 09:19:12.438 \N \N 2 3 268 4 4891 -820 \N 2012-09-05 09:19:13.386 \N \N 2 3 268 4 4892 -820 \N 2012-09-05 09:19:14.392 \N \N 2 3 268 4 4893 -820 \N 2012-09-05 09:19:15.447 \N \N 2 3 268 4 4894 -820 \N 2012-09-05 09:19:16.398 \N \N 2 3 268 4 4895 -820 \N 2012-09-05 09:19:17.404 \N \N 2 3 268 4 4896 -820 \N 2012-09-05 09:19:18.403 \N \N 2 3 268 4 4897 -820 \N 2012-09-05 09:19:19.408 \N \N 2 3 268 4 4898 -820 \N 2012-09-05 09:19:20.442 \N \N 2 3 268 4 4899 -820 \N 2012-09-05 09:19:21.419 \N \N 2 3 268 4 4900 -820 \N 2012-09-05 09:19:22.417 \N \N 2 3 268 4 4901 -820 \N 2012-09-05 09:19:23.422 \N \N 2 3 268 4 4902 -820 \N 2012-09-05 09:19:24.424 \N \N 2 3 268 4 4903 -820 \N 2012-09-05 09:19:25.459 \N \N 2 3 268 4 4904 -820 \N 2012-09-05 09:19:26.426 \N \N 2 3 268 4 4905 -820 \N 2012-09-05 09:19:27.427 \N \N 2 3 268 4 4906 -820 \N 2012-09-05 09:25:52.358 \N \N 0 0 255 9 4907 -820 \N 2012-09-05 09:25:52.42 \N \N 1 2 275 4 4908 -820 \N 2012-09-05 09:25:52.454 \N \N 0 0 255 9 4909 -820 \N 2012-09-05 09:25:52.509 \N \N 2 3 276 4 4910 -820 \N 2012-09-05 09:26:04.738 \N \N 2 3 276 4 4914 -820 \N 2012-09-05 09:26:05.934 \N \N 2 3 276 4 4915 -820 \N 2012-09-05 09:26:07.52 \N \N 2 3 276 4 4916 -820 \N 2012-09-05 09:26:08.245 \N \N 2 3 276 4 4917 -820 \N 2012-09-05 09:26:11.289 \N \N 2 3 276 4 4918 -820 \N 2012-09-05 09:26:11.346 \N \N 2 3 276 4 4919 -820 \N 2012-09-05 09:26:11.574 \N \N 2 3 276 4 4920 -820 \N 2012-09-05 09:38:47.365 \N \N 0 0 255 2 4911 -820 \N 2012-09-05 09:26:04.746 \N \N 2 3 276 4 4912 -820 \N 2012-09-05 09:26:04.747 \N \N 2 3 276 4 4913 -820 \N 2012-09-05 09:26:04.775 \N \N 2 3 276 4 4951 -820 \N 2012-09-05 09:56:31.468 \N \N 0 0 408 2 4952 -820 \N 2012-09-05 09:56:32.934 \N \N 0 0 408 2 4953 -820 \N 2012-09-05 09:56:32.96 \N \N 0 0 408 2 4954 -820 \N 2012-09-05 09:56:32.979 \N \N 0 0 408 2 4955 -820 \N 2012-09-05 09:56:33.221 \N \N 0 0 408 2 4956 -820 \N 2012-09-05 09:56:33.374 \N \N 0 0 408 2 4957 -820 \N 2012-09-05 09:56:33.401 \N \N 0 0 408 2 4958 -820 \N 2012-09-05 09:56:35.871 \N \N 0 0 408 9 4959 -820 \N 2012-09-05 09:56:35.988 \N \N 0 0 409 4 4960 -820 \N 2012-09-05 09:56:42.87 \N \N 0 0 408 9 4961 -820 \N 2012-09-05 09:56:48.36 \N \N 0 0 408 9 4962 -820 \N 2012-09-05 09:56:48.796 \N \N 1 2 411 4 4963 -820 \N 2012-09-05 09:56:48.867 \N \N 0 0 408 9 4964 -820 \N 2012-09-05 09:56:48.987 \N \N 2 3 412 4 4965 -820 \N 2012-09-05 10:08:55.754 \N \N 0 0 408 9 4966 -820 \N 2012-09-05 10:08:55.918 \N \N 1 2 413 4 4967 -820 \N 2012-09-05 10:08:59.046 \N \N 0 0 408 9 4968 -820 \N 2012-09-05 10:08:59.167 \N \N 1 2 414 4 4969 -820 \N 2012-09-05 10:08:59.222 \N \N 0 0 408 9 4970 -820 \N 2012-09-05 10:08:59.361 \N \N 1 2 415 4 4971 -820 \N 2012-09-05 10:09:03.778 \N \N 0 0 408 9 4972 -820 \N 2012-09-05 10:09:03.897 \N \N 1 2 416 4 4973 -820 \N 2012-09-05 10:09:10.011 \N \N 0 0 408 9 4974 -820 \N 2012-09-05 10:09:10.135 \N \N 1 2 417 4 4975 -820 \N 2012-09-05 10:09:10.19 \N \N 0 0 408 9 4976 -820 \N 2012-09-05 10:09:10.31 \N \N 1 2 418 4 4977 -820 \N 2012-09-05 10:09:13.801 \N \N 0 0 408 9 4978 -820 \N 2012-09-05 10:09:13.92 \N \N 1 2 419 4 4979 -820 \N 2012-09-05 10:09:20.036 \N \N 0 0 408 9 4980 -820 \N 2012-09-05 10:09:20.152 \N \N 1 2 420 4 4981 -820 \N 2012-09-05 10:09:20.204 \N \N 0 0 408 9 4982 -820 \N 2012-09-05 10:09:20.319 \N \N 1 2 421 4 4983 -820 \N 2012-09-05 10:09:28.209 \N \N 0 0 408 9 4984 -820 \N 2012-09-05 10:09:28.328 \N \N 1 2 422 4 4985 -820 \N 2012-09-05 10:09:28.381 \N \N 0 0 408 9 4986 -820 \N 2012-09-05 10:09:28.469 \N \N 2 3 423 4 4987 -820 \N 2012-09-05 10:09:35.444 \N \N 2 3 423 4 4988 -820 \N 2012-09-05 10:09:35.45 \N \N 2 3 423 4 4990 -820 \N 2012-09-05 10:09:35.45 \N \N 2 3 423 4 4989 -820 \N 2012-09-05 10:09:35.45 \N \N 2 3 423 4 4991 -820 \N 2012-09-05 10:09:35.45 \N \N 2 3 423 4 4992 -820 \N 2012-09-05 10:09:36.179 \N \N 2 3 423 4 4993 -820 \N 2012-09-05 10:09:36.188 \N \N 2 3 423 4 4994 -820 \N 2012-09-05 10:09:36.19 \N \N 2 3 423 4 4995 -820 \N 2012-09-05 10:09:36.194 \N \N 2 3 423 4 4996 -820 \N 2012-09-05 10:09:36.195 \N \N 2 3 423 4 4997 -820 \N 2012-09-05 10:09:36.418 \N \N 2 3 423 4 4998 -820 \N 2012-09-05 10:09:38.067 \N \N 2 3 423 4 4999 -820 \N 2012-09-05 10:09:38.524 \N \N 2 3 423 4 5000 -820 \N 2012-09-05 10:09:38.591 \N \N 2 3 423 4 5001 -820 \N 2012-09-05 10:09:38.758 \N \N 2 3 423 4 5002 -820 \N 2012-09-05 10:09:39.005 \N \N 2 3 423 4 5003 -820 \N 2012-09-05 10:09:41.077 \N \N 2 3 423 4 5004 -820 \N 2012-09-05 10:09:42.013 \N \N 2 3 423 4 5005 -820 \N 2012-09-05 10:09:42.943 \N \N 2 3 423 4 5006 -820 \N 2012-09-05 11:10:59.502 \N \N 0 0 408 9 5007 -820 \N 2012-09-05 11:10:59.631 \N \N 1 2 424 4 5008 -820 \N 2012-09-05 11:10:59.679 \N \N 0 0 408 9 5009 -820 \N 2012-09-05 11:10:59.75 \N \N 2 3 425 4 5010 -820 \N 2012-09-05 11:11:02.15 \N \N 0 0 408 9 5011 -820 \N 2012-09-05 11:11:02.244 \N \N 1 2 426 4 5012 -820 \N 2012-09-05 11:11:02.293 \N \N 0 0 408 9 5013 -820 \N 2012-09-05 11:11:02.371 \N \N 2 3 427 4 5014 -820 \N 2012-09-05 11:11:18.158 \N \N 2 3 427 4 5015 -820 \N 2012-09-05 11:11:18.168 \N \N 2 3 427 4 5016 -820 \N 2012-09-05 11:11:18.171 \N \N 2 3 427 4 5017 -820 \N 2012-09-05 11:11:18.257 \N \N 2 3 427 4 5018 -820 \N 2012-09-05 11:11:20.557 \N \N 2 3 427 4 5019 -820 \N 2012-09-05 13:22:59.486 \N \N 2 3 427 4 5020 -820 \N 2012-09-05 13:25:55.857 \N \N 2 3 427 4 5021 -820 \N 2012-09-05 13:25:56.293 \N \N 2 3 427 4 5022 -820 \N 2012-09-05 13:25:56.637 \N \N 2 3 427 4 5023 -820 \N 2012-09-05 13:26:00.689 \N \N 2 3 427 4 5024 -820 \N 2012-09-05 13:26:02.192 \N \N 2 3 427 4 5025 -820 \N 2012-09-05 13:26:14.151 \N \N 2 3 427 4 5026 -820 \N 2012-09-05 13:26:21.219 \N \N 2 3 427 4 5027 -820 \N 2012-09-05 13:26:25.891 \N \N 2 3 427 4 5028 -820 \N 2012-09-05 13:26:25.891 \N \N 2 3 427 4 5029 -820 \N 2012-09-05 13:26:25.901 \N \N 2 3 427 4 5030 -820 \N 2012-09-05 13:26:25.953 \N \N 2 3 427 4 5031 -820 \N 2012-09-05 13:26:32.714 \N \N 2 3 427 4 5032 -820 \N 2012-09-05 13:26:41.979 \N \N 2 3 427 4 5033 -820 \N 2012-09-05 13:26:48.847 \N \N 2 3 427 4 5034 -820 \N 2012-09-05 13:26:56.036 \N \N 2 3 427 4 5035 -820 \N 2012-09-05 14:08:53.909 \N \N 2 3 427 4 5036 -820 \N 2012-09-05 17:00:57.907 \N \N 0 0 408 2 5051 -820 \N 2012-09-05 17:07:03.7 \N \N 0 0 561 2 5052 -820 \N 2012-09-05 17:07:05.002 \N \N 0 0 561 2 5053 -820 \N 2012-09-05 17:07:05.027 \N \N 0 0 561 2 5054 -820 \N 2012-09-05 17:07:05.049 \N \N 0 0 561 2 5055 -820 \N 2012-09-05 17:07:05.276 \N \N 0 0 561 2 5056 -820 \N 2012-09-05 17:07:05.451 \N \N 0 0 561 2 5057 -820 \N 2012-09-05 17:07:05.466 \N \N 0 0 561 2 5058 -820 \N 2012-09-05 17:07:07.909 \N \N 0 0 561 9 5059 -820 \N 2012-09-05 17:07:08.158 \N \N 0 0 562 4 5060 -820 \N 2012-09-05 17:07:14.91 \N \N 0 0 561 9 5061 -820 \N 2012-09-05 17:07:22.016 \N \N 0 0 561 9 5062 -820 \N 2012-09-05 17:07:22.45 \N \N 1 2 564 4 5063 -820 \N 2012-09-05 17:07:22.521 \N \N 0 0 561 9 5064 -820 \N 2012-09-05 17:07:22.646 \N \N 2 3 565 4 5065 -820 \N 2012-09-05 17:07:25.722 \N \N 2 3 565 4 5066 -820 \N 2012-09-05 17:07:49.999 \N \N 2 3 565 4 5067 -820 \N 2012-09-05 17:11:36.507 \N \N 0 0 561 9 5068 -820 \N 2012-09-05 17:11:36.634 \N \N 1 2 566 4 5069 -820 \N 2012-09-05 17:11:36.691 \N \N 0 0 561 9 5070 -820 \N 2012-09-05 17:11:36.782 \N \N 3 3 567 4 5071 -820 \N 2012-09-05 17:11:58.435 \N \N 3 3 567 4 5072 -820 \N 2012-09-05 17:11:58.435 \N \N 3 3 567 4 5073 -820 \N 2012-09-05 17:11:58.436 \N \N 3 3 567 4 5074 -820 \N 2012-09-05 17:11:58.438 \N \N 3 3 567 4 5075 -820 \N 2012-09-05 17:11:58.494 \N \N 3 3 567 4 5076 -820 \N 2012-09-05 17:11:58.495 \N \N 3 3 567 4 5077 -820 \N 2012-09-05 17:11:58.496 \N \N 3 3 567 4 5078 -820 \N 2012-09-05 17:11:58.497 \N \N 3 3 567 4 5079 -820 \N 2012-09-05 17:12:00.346 \N \N 3 3 567 4 5080 -820 \N 2012-09-05 17:12:00.398 \N \N 3 3 567 4 5081 -820 \N 2012-09-05 17:12:00.411 \N \N 3 3 567 4 5082 -820 \N 2012-09-05 17:12:00.503 \N \N 3 3 567 4 5083 -820 \N 2012-09-05 17:12:03.201 \N \N 3 3 567 4 5084 -820 \N 2012-09-05 17:12:03.895 \N \N 3 3 567 4 5085 -820 \N 2012-09-05 17:12:04.033 \N \N 3 3 567 4 5086 -820 \N 2012-09-05 17:12:04.344 \N \N 3 3 567 4 5087 -820 \N 2012-09-05 17:12:04.567 \N \N 3 3 567 4 5088 -820 \N 2012-09-05 17:12:08.901 \N \N 3 3 567 4 5089 -820 \N 2012-09-05 17:12:12.389 \N \N 3 3 567 4 5090 -820 \N 2012-09-05 17:12:13.886 \N \N 3 3 567 4 5091 -820 \N 2012-09-05 17:12:20.902 \N \N 3 3 567 4 5092 -820 \N 2012-09-05 17:19:44.882 \N \N 0 0 561 9 5093 -820 \N 2012-09-05 17:19:45.013 \N \N 1 2 568 4 5094 -820 \N 2012-09-05 17:19:45.064 \N \N 0 0 561 9 5095 -820 \N 2012-09-05 17:19:45.132 \N \N 2 3 569 4 5096 -820 \N 2012-09-05 17:19:51.043 \N \N 2 3 569 4 5097 -820 \N 2012-09-06 11:18:05.534 \N \N 0 0 561 9 5098 -820 \N 2012-09-06 11:18:05.658 \N \N 1 2 570 4 5099 -820 \N 2012-09-06 11:18:05.706 \N \N 0 0 561 9 5100 -820 \N 2012-09-06 11:18:05.771 \N \N 2 3 571 4 5101 -820 \N 2012-09-06 11:18:10.623 \N \N 2 3 571 4 5102 -820 \N 2012-09-06 11:18:23.01 \N \N 2 3 571 4 5103 -820 \N 2012-09-06 11:18:23.012 \N \N 2 3 571 4 5104 -820 \N 2012-09-06 11:18:23.012 \N \N 2 3 571 4 5105 -820 \N 2012-09-06 11:18:23.012 \N \N 2 3 571 4 5106 -820 \N 2012-09-06 11:18:24.537 \N \N 2 3 571 4 5107 -820 \N 2012-09-06 14:55:42.734 \N \N 0 0 561 9 5108 -820 \N 2012-09-06 14:55:42.855 \N \N 1 2 572 4 5109 -820 \N 2012-09-06 14:55:42.901 \N \N 0 0 561 9 5110 -820 \N 2012-09-06 14:55:42.966 \N \N 2 3 573 4 5111 -820 \N 2012-09-06 14:55:46.286 \N \N 2 3 573 4 5112 -820 \N 2012-09-06 14:58:25.376 \N \N 2 3 573 4 5113 -820 \N 2012-09-06 14:58:25.378 \N \N 2 3 573 4 5114 -820 \N 2012-09-06 14:58:25.383 \N \N 2 3 573 4 5115 -820 \N 2012-09-06 14:58:25.386 \N \N 2 3 573 4 5116 -820 \N 2012-09-06 14:58:29.476 \N \N 2 3 573 4 5117 -820 \N 2012-09-06 14:58:30.518 \N \N 2 3 573 4 5118 -820 \N 2012-09-06 14:58:30.602 \N \N 2 3 573 4 5119 -820 \N 2012-09-06 14:58:30.631 \N \N 2 3 573 4 5120 -820 \N 2012-09-06 14:58:30.663 \N \N 2 3 573 4 5121 -820 \N 2012-09-06 14:58:30.901 \N \N 2 3 573 4 5122 -820 \N 2012-09-06 14:58:30.928 \N \N 2 3 573 4 5123 -820 \N 2012-09-06 14:58:30.957 \N \N 2 3 573 4 5124 -820 \N 2012-09-06 14:58:56.828 \N \N 2 3 573 4 5125 -820 \N 2012-09-06 14:58:59.362 \N \N 2 3 573 4 5126 -820 \N 2012-09-06 14:59:02.093 \N \N 2 3 573 4 5127 -820 \N 2012-09-06 15:01:25.609 \N \N 2 3 573 4 5128 -820 \N 2012-09-06 15:01:25.657 \N \N 2 3 573 4 5129 -820 \N 2012-09-06 15:01:26.151 \N \N 2 3 573 4 5130 -820 \N 2012-09-06 15:01:27.911 \N \N 2 3 573 4 5131 -820 \N 2012-09-06 15:01:28.88 \N \N 2 3 573 4 5132 -820 \N 2012-09-06 15:01:55.314 \N \N 2 3 573 4 5133 -820 \N 2012-09-06 15:01:55.745 \N \N 2 3 573 4 5134 -820 \N 2012-09-06 15:02:48.989 \N \N 0 0 561 9 5135 -820 \N 2012-09-06 15:02:49.141 \N \N 102 53 574 4 5136 -820 \N 2012-09-06 15:02:49.399 \N \N 102 53 574 4 5137 -820 \N 2012-09-06 15:04:03.086 \N \N 0 0 561 9 5138 -820 \N 2012-09-06 15:04:03.176 \N \N 1 2 575 4 5139 -820 \N 2012-09-06 15:04:03.22 \N \N 0 0 561 9 5140 -820 \N 2012-09-06 15:04:03.286 \N \N 102 53 576 4 5141 -820 \N 2012-09-06 15:07:30.294 \N \N 102 53 574 4 5142 -820 \N 2012-09-06 15:09:51.502 \N \N 102 53 574 4 5143 -820 \N 2012-09-06 15:10:47.047 \N \N 102 53 574 4 5144 -820 \N 2012-09-06 15:10:58.611 \N \N 102 53 574 4 5145 -820 \N 2012-09-06 15:11:05.442 \N \N 102 53 574 4 5146 -820 \N 2012-09-06 15:11:28.686 \N \N 102 53 574 4 5147 -820 \N 2012-09-06 15:11:28.71 \N \N 102 53 574 4 5148 -820 \N 2012-09-06 15:11:28.733 \N \N 102 53 574 4 5149 -820 \N 2012-09-06 15:11:28.983 \N \N 102 53 574 4 5150 -820 \N 2012-09-06 15:11:29.008 \N \N 102 53 574 4 5151 -820 \N 2012-09-06 15:11:30.749 \N \N 102 53 574 4 5152 -820 \N 2012-09-06 15:11:35.582 \N \N 102 53 574 4 5153 -820 \N 2012-09-06 15:11:36.254 \N \N 102 53 574 4 5154 -820 \N 2012-09-06 15:11:36.542 \N \N 102 53 574 4 5155 -820 \N 2012-09-06 15:11:37.762 \N \N 102 53 574 4 5156 -820 \N 2012-09-06 15:11:37.987 \N \N 102 53 574 4 5157 -820 \N 2012-09-06 15:11:38.37 \N \N 102 53 574 4 5158 -820 \N 2012-09-06 15:11:38.404 \N \N 102 53 574 4 5159 -820 \N 2012-09-06 15:11:38.538 \N \N 102 53 574 4 5160 -820 \N 2012-09-06 15:11:38.566 \N \N 102 53 574 4 5161 -820 \N 2012-09-06 15:11:38.586 \N \N 102 53 574 4 5162 -820 \N 2012-09-06 15:11:38.748 \N \N 102 53 574 4 5163 -820 \N 2012-09-06 15:11:38.766 \N \N 102 53 574 4 5164 -820 \N 2012-09-06 15:11:38.787 \N \N 102 53 574 4 5165 -820 \N 2012-09-06 15:11:38.831 \N \N 102 53 574 4 5166 -820 \N 2012-09-06 15:11:38.848 \N \N 102 53 574 4 5167 -820 \N 2012-09-06 15:11:38.866 \N \N 102 53 574 4 5168 -820 \N 2012-09-06 15:11:38.897 \N \N 102 53 574 4 5169 -820 \N 2012-09-06 15:11:38.916 \N \N 102 53 574 4 5170 -820 \N 2012-09-06 15:11:38.936 \N \N 102 53 574 4 5171 -820 \N 2012-09-06 15:11:39.099 \N \N 102 53 574 4 5172 -820 \N 2012-09-06 15:11:39.117 \N \N 102 53 574 4 5173 -820 \N 2012-09-06 15:11:39.837 \N \N 102 53 574 4 5174 -820 \N 2012-09-06 15:11:42.146 \N \N 102 53 574 4 5175 -820 \N 2012-09-06 15:11:42.665 \N \N 102 53 574 4 5176 -820 \N 2012-09-06 15:11:42.927 \N \N 102 53 574 4 5177 -820 \N 2012-09-06 15:11:43.939 \N \N 102 53 574 4 5178 -820 \N 2012-09-06 15:11:44.03 \N \N 102 53 574 4 5179 -820 \N 2012-09-06 15:11:44.32 \N \N 102 53 574 4 5180 -820 \N 2012-09-06 15:11:44.353 \N \N 102 53 574 4 5181 -820 \N 2012-09-06 15:11:44.476 \N \N 102 53 574 4 5182 -820 \N 2012-09-06 15:11:44.494 \N \N 102 53 574 4 5183 -820 \N 2012-09-06 15:11:44.512 \N \N 102 53 574 4 5184 -820 \N 2012-09-06 15:11:44.558 \N \N 102 53 574 4 5185 -820 \N 2012-09-06 15:11:44.577 \N \N 102 53 574 4 5186 -820 \N 2012-09-06 15:11:44.597 \N \N 102 53 574 4 5187 -820 \N 2012-09-06 15:11:44.64 \N \N 102 53 574 4 5188 -820 \N 2012-09-06 15:11:44.658 \N \N 102 53 574 4 5189 -820 \N 2012-09-06 15:11:44.676 \N \N 102 53 574 4 5190 -820 \N 2012-09-06 15:11:44.707 \N \N 102 53 574 4 5191 -820 \N 2012-09-06 15:11:44.728 \N \N 102 53 574 4 5192 -820 \N 2012-09-06 15:11:44.749 \N \N 102 53 574 4 5193 -820 \N 2012-09-06 15:11:44.918 \N \N 102 53 574 4 5194 -820 \N 2012-09-06 15:11:44.937 \N \N 102 53 574 4 5195 -820 \N 2012-09-06 15:11:45.647 \N \N 102 53 574 4 5196 -820 \N 2012-09-06 15:11:47.398 \N \N 102 53 574 4 5197 -820 \N 2012-09-06 15:11:48.057 \N \N 102 53 574 4 5198 -820 \N 2012-09-06 15:11:48.573 \N \N 102 53 574 4 5199 -820 \N 2012-09-06 15:11:48.896 \N \N 102 53 574 4 5200 -820 \N 2012-09-06 15:11:49.922 \N \N 102 53 574 4 5201 -820 \N 2012-09-06 15:11:50.003 \N \N 102 53 574 4 5202 -820 \N 2012-09-06 15:11:50.24 \N \N 102 53 574 4 5203 -820 \N 2012-09-06 15:11:50.271 \N \N 102 53 574 4 5204 -820 \N 2012-09-06 15:11:50.377 \N \N 102 53 574 4 5205 -820 \N 2012-09-06 15:11:50.394 \N \N 102 53 574 4 5206 -820 \N 2012-09-06 15:11:50.411 \N \N 102 53 574 4 5207 -820 \N 2012-09-06 15:11:50.452 \N \N 102 53 574 4 5208 -820 \N 2012-09-06 15:11:50.468 \N \N 102 53 574 4 5209 -820 \N 2012-09-06 15:11:50.484 \N \N 102 53 574 4 5210 -820 \N 2012-09-06 15:11:50.524 \N \N 102 53 574 4 5211 -820 \N 2012-09-06 15:11:50.541 \N \N 102 53 574 4 5212 -820 \N 2012-09-06 15:11:50.558 \N \N 102 53 574 4 5213 -820 \N 2012-09-06 15:11:50.591 \N \N 102 53 574 4 5214 -820 \N 2012-09-06 15:11:50.614 \N \N 102 53 574 4 5215 -820 \N 2012-09-06 15:11:50.633 \N \N 102 53 574 4 5216 -820 \N 2012-09-06 15:11:50.804 \N \N 102 53 574 4 5217 -820 \N 2012-09-06 15:11:50.826 \N \N 102 53 574 4 5218 -820 \N 2012-09-06 15:11:51.493 \N \N 102 53 574 4 5220 -820 \N 2012-09-06 15:11:53.694 \N \N 102 53 574 4 5221 -820 \N 2012-09-06 15:11:54.174 \N \N 102 53 574 4 5222 -820 \N 2012-09-06 15:11:54.424 \N \N 102 53 574 4 5223 -820 \N 2012-09-06 15:11:55.463 \N \N 102 53 574 4 5224 -820 \N 2012-09-06 15:11:55.562 \N \N 102 53 574 4 5225 -820 \N 2012-09-06 15:11:55.818 \N \N 102 53 574 4 5226 -820 \N 2012-09-06 15:11:55.847 \N \N 102 53 574 4 5227 -820 \N 2012-09-06 15:11:55.951 \N \N 102 53 574 4 5228 -820 \N 2012-09-06 15:11:55.967 \N \N 102 53 574 4 5229 -820 \N 2012-09-06 15:11:55.983 \N \N 102 53 574 4 5230 -820 \N 2012-09-06 15:11:56.022 \N \N 102 53 574 4 5231 -820 \N 2012-09-06 15:11:56.041 \N \N 102 53 574 4 5232 -820 \N 2012-09-06 15:11:56.059 \N \N 102 53 574 4 5233 -820 \N 2012-09-06 15:11:56.1 \N \N 102 53 574 4 5234 -820 \N 2012-09-06 15:11:56.116 \N \N 102 53 574 4 5235 -820 \N 2012-09-06 15:11:56.132 \N \N 102 53 574 4 5236 -820 \N 2012-09-06 15:11:56.166 \N \N 102 53 574 4 5237 -820 \N 2012-09-06 15:11:56.186 \N \N 102 53 574 4 5238 -820 \N 2012-09-06 15:11:56.205 \N \N 102 53 574 4 5239 -820 \N 2012-09-06 15:11:56.372 \N \N 102 53 574 4 5240 -820 \N 2012-09-06 15:11:56.39 \N \N 102 53 574 4 5241 -820 \N 2012-09-06 15:11:57.058 \N \N 102 53 574 4 5242 -820 \N 2012-09-06 15:11:59.282 \N \N 102 53 574 4 5243 -820 \N 2012-09-06 15:11:59.777 \N \N 102 53 574 4 5244 -820 \N 2012-09-06 15:12:00.037 \N \N 102 53 574 4 5245 -820 \N 2012-09-06 15:12:00.852 \N \N 102 53 574 4 5246 -820 \N 2012-09-06 15:12:00.896 \N \N 102 53 574 4 5247 -820 \N 2012-09-06 15:12:01.034 \N \N 102 53 574 4 5248 -820 \N 2012-09-06 15:12:01.05 \N \N 102 53 574 4 5249 -820 \N 2012-09-06 15:12:01.104 \N \N 102 53 574 4 5250 -820 \N 2012-09-06 15:12:01.111 \N \N 102 53 574 4 5251 -820 \N 2012-09-06 15:12:01.119 \N \N 102 53 574 4 5252 -820 \N 2012-09-06 15:12:01.139 \N \N 102 53 574 4 5253 -820 \N 2012-09-06 15:12:01.146 \N \N 102 53 574 4 5254 -820 \N 2012-09-06 15:12:01.154 \N \N 102 53 574 4 5255 -820 \N 2012-09-06 15:12:01.184 \N \N 102 53 574 4 5256 -820 \N 2012-09-06 15:12:01.199 \N \N 102 53 574 4 5257 -820 \N 2012-09-06 15:12:01.215 \N \N 102 53 574 4 5258 -820 \N 2012-09-06 15:12:01.242 \N \N 102 53 574 4 5259 -820 \N 2012-09-06 15:12:01.26 \N \N 102 53 574 4 5260 -820 \N 2012-09-06 15:12:01.278 \N \N 102 53 574 4 5261 -820 \N 2012-09-06 15:12:01.468 \N \N 102 53 574 4 5262 -820 \N 2012-09-06 15:12:01.486 \N \N 102 53 574 4 5263 -820 \N 2012-09-06 15:12:02.102 \N \N 102 53 574 4 5264 -820 \N 2012-09-06 15:12:04.272 \N \N 102 53 574 4 5265 -820 \N 2012-09-06 15:12:04.77 \N \N 102 53 574 4 5219 -820 \N 2012-09-06 15:11:53.132 \N \N 102 53 574 4 5332 -820 \N 2012-09-06 15:12:22.142 \N \N 102 53 576 4 5336 -820 \N 2012-09-06 15:12:22.384 \N \N 102 53 576 4 5346 -820 \N 2012-09-06 15:12:22.912 \N \N 102 53 576 4 5349 -820 \N 2012-09-06 15:12:23.094 \N \N 102 53 576 4 5354 -820 \N 2012-09-06 15:12:23.366 \N \N 102 53 576 4 5362 -820 \N 2012-09-06 15:12:23.772 \N \N 102 53 576 4 5363 -820 \N 2012-09-06 15:12:23.826 \N \N 102 53 576 4 5368 -820 \N 2012-09-06 15:12:23.997 \N \N 102 53 576 4 5369 -820 \N 2012-09-06 15:12:24.018 \N \N 102 53 576 4 5374 -820 \N 2012-09-06 15:12:24.388 \N \N 102 53 576 4 5375 -820 \N 2012-09-06 15:12:24.408 \N \N 102 53 576 4 5376 -820 \N 2012-09-06 15:12:24.451 \N \N 102 53 576 4 5377 -820 \N 2012-09-06 15:12:24.941 \N \N 102 53 574 4 5401 -820 \N 2012-09-06 15:12:32.82 \N \N 102 53 576 4 5266 -820 \N 2012-09-06 15:12:05.022 \N \N 102 53 574 4 5267 -820 \N 2012-09-06 15:12:05.985 \N \N 102 53 574 4 5268 -820 \N 2012-09-06 15:12:06.058 \N \N 102 53 574 4 5269 -820 \N 2012-09-06 15:12:06.288 \N \N 102 53 574 4 5270 -820 \N 2012-09-06 15:12:06.316 \N \N 102 53 574 4 5271 -820 \N 2012-09-06 15:12:06.417 \N \N 102 53 574 4 5272 -820 \N 2012-09-06 15:12:06.433 \N \N 102 53 574 4 5273 -820 \N 2012-09-06 15:12:06.451 \N \N 102 53 574 4 5274 -820 \N 2012-09-06 15:12:06.49 \N \N 102 53 574 4 5275 -820 \N 2012-09-06 15:12:06.506 \N \N 102 53 574 4 5276 -820 \N 2012-09-06 15:12:06.523 \N \N 102 53 574 4 5277 -820 \N 2012-09-06 15:12:06.56 \N \N 102 53 574 4 5278 -820 \N 2012-09-06 15:12:06.575 \N \N 102 53 574 4 5279 -820 \N 2012-09-06 15:12:06.591 \N \N 102 53 574 4 5280 -820 \N 2012-09-06 15:12:06.645 \N \N 102 53 574 4 5281 -820 \N 2012-09-06 15:12:06.664 \N \N 102 53 574 4 5282 -820 \N 2012-09-06 15:12:06.682 \N \N 102 53 574 4 5283 -820 \N 2012-09-06 15:12:06.852 \N \N 102 53 574 4 5284 -820 \N 2012-09-06 15:12:06.869 \N \N 102 53 574 4 5285 -820 \N 2012-09-06 15:12:07.495 \N \N 102 53 574 4 5286 -820 \N 2012-09-06 15:12:09.645 \N \N 102 53 574 4 5287 -820 \N 2012-09-06 15:12:10.178 \N \N 102 53 574 4 5288 -820 \N 2012-09-06 15:12:10.492 \N \N 102 53 574 4 5289 -820 \N 2012-09-06 15:12:11.472 \N \N 102 53 574 4 5290 -820 \N 2012-09-06 15:12:11.554 \N \N 102 53 574 4 5291 -820 \N 2012-09-06 15:12:11.829 \N \N 102 53 574 4 5292 -820 \N 2012-09-06 15:12:11.859 \N \N 102 53 574 4 5293 -820 \N 2012-09-06 15:12:11.967 \N \N 102 53 574 4 5294 -820 \N 2012-09-06 15:12:11.984 \N \N 102 53 574 4 5295 -820 \N 2012-09-06 15:12:12.001 \N \N 102 53 574 4 5296 -820 \N 2012-09-06 15:12:12.044 \N \N 102 53 574 4 5297 -820 \N 2012-09-06 15:12:12.062 \N \N 102 53 574 4 5298 -820 \N 2012-09-06 15:12:12.079 \N \N 102 53 574 4 5299 -820 \N 2012-09-06 15:12:12.119 \N \N 102 53 574 4 5300 -820 \N 2012-09-06 15:12:12.135 \N \N 102 53 574 4 5301 -820 \N 2012-09-06 15:12:12.151 \N \N 102 53 574 4 5302 -820 \N 2012-09-06 15:12:12.189 \N \N 102 53 574 4 5303 -820 \N 2012-09-06 15:12:12.209 \N \N 102 53 574 4 5304 -820 \N 2012-09-06 15:12:12.228 \N \N 102 53 574 4 5305 -820 \N 2012-09-06 15:12:12.394 \N \N 102 53 574 4 5306 -820 \N 2012-09-06 15:12:12.412 \N \N 102 53 574 4 5307 -820 \N 2012-09-06 15:12:13.065 \N \N 102 53 574 4 5308 -820 \N 2012-09-06 15:12:16.973 \N \N 102 53 574 4 5309 -820 \N 2012-09-06 15:12:17.577 \N \N 102 53 574 4 5310 -820 \N 2012-09-06 15:12:17.83 \N \N 102 53 574 4 5311 -820 \N 2012-09-06 15:12:18.879 \N \N 102 53 574 4 5312 -820 \N 2012-09-06 15:12:18.968 \N \N 102 53 574 4 5313 -820 \N 2012-09-06 15:12:19.164 \N \N 102 53 574 4 5314 -820 \N 2012-09-06 15:12:19.191 \N \N 102 53 574 4 5315 -820 \N 2012-09-06 15:12:19.292 \N \N 102 53 574 4 5316 -820 \N 2012-09-06 15:12:19.309 \N \N 102 53 574 4 5317 -820 \N 2012-09-06 15:12:19.326 \N \N 102 53 574 4 5318 -820 \N 2012-09-06 15:12:19.373 \N \N 102 53 574 4 5319 -820 \N 2012-09-06 15:12:19.393 \N \N 102 53 574 4 5320 -820 \N 2012-09-06 15:12:19.413 \N \N 102 53 574 4 5321 -820 \N 2012-09-06 15:12:19.455 \N \N 102 53 574 4 5322 -820 \N 2012-09-06 15:12:19.472 \N \N 102 53 574 4 5323 -820 \N 2012-09-06 15:12:19.489 \N \N 102 53 574 4 5324 -820 \N 2012-09-06 15:12:19.524 \N \N 102 53 574 4 5325 -820 \N 2012-09-06 15:12:19.55 \N \N 102 53 574 4 5326 -820 \N 2012-09-06 15:12:19.569 \N \N 102 53 574 4 5327 -820 \N 2012-09-06 15:12:19.732 \N \N 102 53 574 4 5328 -820 \N 2012-09-06 15:12:19.748 \N \N 102 53 574 4 5329 -820 \N 2012-09-06 15:12:20.347 \N \N 102 53 574 4 5330 -820 \N 2012-09-06 15:12:21.989 \N \N 102 53 576 4 5331 -820 \N 2012-09-06 15:12:22.127 \N \N 102 53 576 4 5333 -820 \N 2012-09-06 15:12:22.147 \N \N 102 53 576 4 5334 -820 \N 2012-09-06 15:12:22.15 \N \N 102 53 576 4 5335 -820 \N 2012-09-06 15:12:22.273 \N \N 102 53 576 4 5337 -820 \N 2012-09-06 15:12:22.4 \N \N 102 53 576 4 5338 -820 \N 2012-09-06 15:12:22.406 \N \N 102 53 576 4 5339 -820 \N 2012-09-06 15:12:22.43 \N \N 102 53 576 4 5340 -820 \N 2012-09-06 15:12:22.545 \N \N 102 53 576 4 5341 -820 \N 2012-09-06 15:12:22.662 \N \N 102 53 576 4 5342 -820 \N 2012-09-06 15:12:22.715 \N \N 102 53 576 4 5343 -820 \N 2012-09-06 15:12:22.742 \N \N 102 53 576 4 5344 -820 \N 2012-09-06 15:12:22.743 \N \N 102 53 576 4 5345 -820 \N 2012-09-06 15:12:22.827 \N \N 102 53 576 4 5347 -820 \N 2012-09-06 15:12:22.962 \N \N 102 53 576 4 5348 -820 \N 2012-09-06 15:12:23.088 \N \N 102 53 576 4 5350 -820 \N 2012-09-06 15:12:23.107 \N \N 102 53 576 4 5351 -820 \N 2012-09-06 15:12:23.146 \N \N 102 53 576 4 5352 -820 \N 2012-09-06 15:12:23.186 \N \N 102 53 576 4 5353 -820 \N 2012-09-06 15:12:23.365 \N \N 102 53 576 4 5355 -820 \N 2012-09-06 15:12:23.368 \N \N 102 53 576 4 5356 -820 \N 2012-09-06 15:12:23.401 \N \N 102 53 576 4 5357 -820 \N 2012-09-06 15:12:23.403 \N \N 102 53 576 4 5358 -820 \N 2012-09-06 15:12:23.694 \N \N 102 53 576 4 5359 -820 \N 2012-09-06 15:12:23.694 \N \N 102 53 576 4 5366 -820 \N 2012-09-06 15:12:23.976 \N \N 102 53 576 4 5371 -820 \N 2012-09-06 15:12:24.051 \N \N 102 53 576 4 5372 -820 \N 2012-09-06 15:12:24.135 \N \N 102 53 576 4 5360 -820 \N 2012-09-06 15:12:23.721 \N \N 102 53 576 4 5361 -820 \N 2012-09-06 15:12:23.749 \N \N 102 53 576 4 5365 -820 \N 2012-09-06 15:12:23.974 \N \N 102 53 576 4 5364 -820 \N 2012-09-06 15:12:23.974 \N \N 102 53 576 4 5367 -820 \N 2012-09-06 15:12:23.995 \N \N 102 53 576 4 5370 -820 \N 2012-09-06 15:12:24.036 \N \N 102 53 576 4 5373 -820 \N 2012-09-06 15:12:24.386 \N \N 102 53 574 4 5378 -820 \N 2012-09-06 15:12:25.206 \N \N 102 53 574 4 5379 -820 \N 2012-09-06 15:12:26.208 \N \N 102 53 574 4 5380 -820 \N 2012-09-06 15:12:26.29 \N \N 102 53 574 4 5381 -820 \N 2012-09-06 15:12:26.499 \N \N 102 53 574 4 5382 -820 \N 2012-09-06 15:12:26.525 \N \N 102 53 574 4 5383 -820 \N 2012-09-06 15:12:26.634 \N \N 102 53 574 4 5384 -820 \N 2012-09-06 15:12:26.649 \N \N 102 53 574 4 5385 -820 \N 2012-09-06 15:12:26.664 \N \N 102 53 574 4 5386 -820 \N 2012-09-06 15:12:26.701 \N \N 102 53 574 4 5387 -820 \N 2012-09-06 15:12:26.718 \N \N 102 53 574 4 5388 -820 \N 2012-09-06 15:12:26.734 \N \N 102 53 574 4 5389 -820 \N 2012-09-06 15:12:26.77 \N \N 102 53 574 4 5390 -820 \N 2012-09-06 15:12:26.785 \N \N 102 53 574 4 5391 -820 \N 2012-09-06 15:12:26.801 \N \N 102 53 574 4 5392 -820 \N 2012-09-06 15:12:26.829 \N \N 102 53 574 4 5393 -820 \N 2012-09-06 15:12:26.846 \N \N 102 53 574 4 5394 -820 \N 2012-09-06 15:12:26.864 \N \N 102 53 574 4 5395 -820 \N 2012-09-06 15:12:27.055 \N \N 102 53 574 4 5396 -820 \N 2012-09-06 15:12:27.073 \N \N 102 53 574 4 5397 -820 \N 2012-09-06 15:12:27.732 \N \N 102 53 574 4 5398 -820 \N 2012-09-06 15:12:30.598 \N \N 102 53 576 4 5399 -820 \N 2012-09-06 15:12:31.952 \N \N 102 53 574 4 5400 -820 \N 2012-09-06 15:12:32.586 \N \N 102 53 574 4 5402 -820 \N 2012-09-06 15:12:32.938 \N \N 102 53 574 4 5403 -820 \N 2012-09-06 15:12:33.98 \N \N 102 53 574 4 5404 -820 \N 2012-09-06 15:12:34.072 \N \N 102 53 574 4 5405 -820 \N 2012-09-06 15:12:34.292 \N \N 102 53 574 4 5406 -820 \N 2012-09-06 15:12:34.32 \N \N 102 53 574 4 5407 -820 \N 2012-09-06 15:12:34.422 \N \N 102 53 574 4 5408 -820 \N 2012-09-06 15:12:34.439 \N \N 102 53 574 4 5409 -820 \N 2012-09-06 15:12:34.456 \N \N 102 53 574 4 5410 -820 \N 2012-09-06 15:12:34.493 \N \N 102 53 574 4 5411 -820 \N 2012-09-06 15:12:34.508 \N \N 102 53 574 4 5412 -820 \N 2012-09-06 15:12:34.524 \N \N 102 53 574 4 5413 -820 \N 2012-09-06 15:12:34.562 \N \N 102 53 574 4 5414 -820 \N 2012-09-06 15:12:34.578 \N \N 102 53 574 4 5415 -820 \N 2012-09-06 15:12:34.594 \N \N 102 53 574 4 5416 -820 \N 2012-09-06 15:12:34.622 \N \N 102 53 574 4 5417 -820 \N 2012-09-06 15:12:34.648 \N \N 102 53 574 4 5418 -820 \N 2012-09-06 15:12:34.667 \N \N 102 53 574 4 5419 -820 \N 2012-09-06 15:12:34.841 \N \N 102 53 574 4 5420 -820 \N 2012-09-06 15:12:34.858 \N \N 102 53 574 4 5421 -820 \N 2012-09-06 15:12:35.517 \N \N 102 53 574 4 5422 -820 \N 2012-09-06 15:12:39.161 \N \N 102 53 576 4 5423 -820 \N 2012-09-06 15:12:39.693 \N \N 102 53 574 4 5424 -820 \N 2012-09-06 15:12:40.268 \N \N 102 53 576 4 5425 -820 \N 2012-09-06 15:12:40.336 \N \N 102 53 574 4 5426 -820 \N 2012-09-06 15:12:40.589 \N \N 102 53 574 4 5427 -820 \N 2012-09-06 15:12:41.566 \N \N 102 53 574 4 5428 -820 \N 2012-09-06 15:12:41.648 \N \N 102 53 574 4 5429 -820 \N 2012-09-06 15:12:41.864 \N \N 102 53 574 4 5430 -820 \N 2012-09-06 15:12:41.892 \N \N 102 53 574 4 5431 -820 \N 2012-09-06 15:12:41.988 \N \N 102 53 574 4 5432 -820 \N 2012-09-06 15:12:42.004 \N \N 102 53 574 4 5433 -820 \N 2012-09-06 15:12:42.02 \N \N 102 53 574 4 5434 -820 \N 2012-09-06 15:12:42.055 \N \N 102 53 574 4 5435 -820 \N 2012-09-06 15:12:42.069 \N \N 102 53 574 4 5436 -820 \N 2012-09-06 15:12:42.084 \N \N 102 53 574 4 5437 -820 \N 2012-09-06 15:12:42.118 \N \N 102 53 574 4 5438 -820 \N 2012-09-06 15:12:42.133 \N \N 102 53 574 4 5439 -820 \N 2012-09-06 15:12:42.148 \N \N 102 53 574 4 5440 -820 \N 2012-09-06 15:12:42.175 \N \N 102 53 574 4 5441 -820 \N 2012-09-06 15:12:42.199 \N \N 102 53 574 4 5442 -820 \N 2012-09-06 15:12:42.217 \N \N 102 53 574 4 5443 -820 \N 2012-09-06 15:12:42.382 \N \N 102 53 574 4 5444 -820 \N 2012-09-06 15:12:42.399 \N \N 102 53 574 4 5445 -820 \N 2012-09-06 15:12:42.476 \N \N 102 53 576 4 5446 -820 \N 2012-09-06 15:12:43.019 \N \N 102 53 574 4 5447 -820 \N 2012-09-06 15:12:43.628 \N \N 102 53 576 4 5448 -820 \N 2012-09-06 15:12:44.833 \N \N 102 53 576 4 5449 -820 \N 2012-09-06 15:12:45.629 \N \N 102 53 576 4 5450 -820 \N 2012-09-06 15:12:46.917 \N \N 102 53 574 4 5451 -820 \N 2012-09-06 15:12:47.53 \N \N 102 53 574 4 5452 -820 \N 2012-09-06 15:12:47.785 \N \N 102 53 574 4 5453 -820 \N 2012-09-06 15:12:48.82 \N \N 102 53 574 4 5454 -820 \N 2012-09-06 15:12:48.907 \N \N 102 53 574 4 5455 -820 \N 2012-09-06 15:12:49.109 \N \N 102 53 574 4 5456 -820 \N 2012-09-06 15:12:49.133 \N \N 102 53 574 4 5457 -820 \N 2012-09-06 15:12:49.228 \N \N 102 53 574 4 5458 -820 \N 2012-09-06 15:12:49.243 \N \N 102 53 574 4 5459 -820 \N 2012-09-06 15:12:49.258 \N \N 102 53 574 4 5460 -820 \N 2012-09-06 15:12:49.294 \N \N 102 53 574 4 5461 -820 \N 2012-09-06 15:12:49.311 \N \N 102 53 574 4 5462 -820 \N 2012-09-06 15:12:49.331 \N \N 102 53 574 4 5463 -820 \N 2012-09-06 15:12:49.37 \N \N 102 53 574 4 5464 -820 \N 2012-09-06 15:12:49.385 \N \N 102 53 574 4 5465 -820 \N 2012-09-06 15:12:49.4 \N \N 102 53 574 4 5466 -820 \N 2012-09-06 15:12:49.428 \N \N 102 53 574 4 5467 -820 \N 2012-09-06 15:12:49.446 \N \N 102 53 574 4 5468 -820 \N 2012-09-06 15:12:49.464 \N \N 102 53 574 4 5469 -820 \N 2012-09-06 15:12:49.627 \N \N 102 53 574 4 5470 -820 \N 2012-09-06 15:12:49.644 \N \N 102 53 574 4 5471 -820 \N 2012-09-06 15:12:50.258 \N \N 102 53 574 4 5472 -820 \N 2012-09-06 15:12:54.123 \N \N 102 53 574 4 5473 -820 \N 2012-09-06 15:12:54.723 \N \N 102 53 574 4 5474 -820 \N 2012-09-06 15:12:54.974 \N \N 102 53 574 4 5475 -820 \N 2012-09-06 15:12:55.939 \N \N 102 53 574 4 5476 -820 \N 2012-09-06 15:12:56.014 \N \N 102 53 574 4 5477 -820 \N 2012-09-06 15:12:56.24 \N \N 102 53 574 4 5478 -820 \N 2012-09-06 15:12:56.268 \N \N 102 53 574 4 5479 -820 \N 2012-09-06 15:12:56.364 \N \N 102 53 574 4 5480 -820 \N 2012-09-06 15:12:56.379 \N \N 102 53 574 4 5481 -820 \N 2012-09-06 15:12:56.395 \N \N 102 53 574 4 5482 -820 \N 2012-09-06 15:12:56.431 \N \N 102 53 574 4 5483 -820 \N 2012-09-06 15:12:56.447 \N \N 102 53 574 4 5484 -820 \N 2012-09-06 15:12:56.462 \N \N 102 53 574 4 5485 -820 \N 2012-09-06 15:12:56.5 \N \N 102 53 574 4 5486 -820 \N 2012-09-06 15:12:56.515 \N \N 102 53 574 4 5487 -820 \N 2012-09-06 15:12:56.53 \N \N 102 53 574 4 5488 -820 \N 2012-09-06 15:12:56.558 \N \N 102 53 574 4 5489 -820 \N 2012-09-06 15:12:56.578 \N \N 102 53 574 4 5490 -820 \N 2012-09-06 15:12:56.595 \N \N 102 53 574 4 5491 -820 \N 2012-09-06 15:12:56.762 \N \N 102 53 574 4 5492 -820 \N 2012-09-06 15:12:56.778 \N \N 102 53 574 4 5493 -820 \N 2012-09-06 15:12:57.394 \N \N 102 53 574 4 5494 -820 \N 2012-09-06 15:13:01.251 \N \N 102 53 574 4 5495 -820 \N 2012-09-06 15:13:01.86 \N \N 102 53 574 4 5496 -820 \N 2012-09-06 15:13:02.111 \N \N 102 53 574 4 5497 -820 \N 2012-09-06 15:13:03.075 \N \N 102 53 574 4 5498 -820 \N 2012-09-06 15:13:03.165 \N \N 102 53 574 4 5499 -820 \N 2012-09-06 15:13:03.394 \N \N 102 53 574 4 5500 -820 \N 2012-09-06 15:13:03.419 \N \N 102 53 574 4 5501 -820 \N 2012-09-06 15:13:03.515 \N \N 102 53 574 4 5502 -820 \N 2012-09-06 15:13:03.533 \N \N 102 53 574 4 5503 -820 \N 2012-09-06 15:13:03.548 \N \N 102 53 574 4 5504 -820 \N 2012-09-06 15:13:03.584 \N \N 102 53 574 4 5505 -820 \N 2012-09-06 15:13:03.599 \N \N 102 53 574 4 5506 -820 \N 2012-09-06 15:13:03.614 \N \N 102 53 574 4 5507 -820 \N 2012-09-06 15:13:03.648 \N \N 102 53 574 4 5508 -820 \N 2012-09-06 15:13:03.662 \N \N 102 53 574 4 5509 -820 \N 2012-09-06 15:13:03.678 \N \N 102 53 574 4 5510 -820 \N 2012-09-06 15:13:03.705 \N \N 102 53 574 4 5511 -820 \N 2012-09-06 15:13:03.723 \N \N 102 53 574 4 5512 -820 \N 2012-09-06 15:13:03.74 \N \N 102 53 574 4 5513 -820 \N 2012-09-06 15:13:03.911 \N \N 102 53 574 4 5514 -820 \N 2012-09-06 15:13:03.927 \N \N 102 53 574 4 5515 -820 \N 2012-09-06 15:13:04.502 \N \N 102 53 574 4 5516 -820 \N 2012-09-06 15:13:06.605 \N \N 102 53 574 4 5517 -820 \N 2012-09-06 15:13:07.085 \N \N 102 53 574 4 5518 -820 \N 2012-09-06 15:13:07.335 \N \N 102 53 574 4 5519 -820 \N 2012-09-06 15:13:08.319 \N \N 102 53 574 4 5520 -820 \N 2012-09-06 15:13:08.395 \N \N 102 53 574 4 5521 -820 \N 2012-09-06 15:13:08.625 \N \N 102 53 574 4 5522 -820 \N 2012-09-06 15:13:08.647 \N \N 102 53 574 4 5523 -820 \N 2012-09-06 15:13:08.726 \N \N 102 53 574 4 5524 -820 \N 2012-09-06 15:13:08.742 \N \N 102 53 574 4 5525 -820 \N 2012-09-06 15:13:08.778 \N \N 102 53 574 4 5526 -820 \N 2012-09-06 15:13:08.793 \N \N 102 53 574 4 5527 -820 \N 2012-09-06 15:13:08.81 \N \N 102 53 574 4 5528 -820 \N 2012-09-06 15:13:08.85 \N \N 102 53 574 4 5529 -820 \N 2012-09-06 15:13:08.865 \N \N 102 53 574 4 5530 -820 \N 2012-09-06 15:13:08.88 \N \N 102 53 574 4 5531 -820 \N 2012-09-06 15:13:08.917 \N \N 102 53 574 4 5532 -820 \N 2012-09-06 15:13:08.931 \N \N 102 53 574 4 5533 -820 \N 2012-09-06 15:13:08.946 \N \N 102 53 574 4 5534 -820 \N 2012-09-06 15:13:09.029 \N \N 102 53 574 4 5535 -820 \N 2012-09-06 15:13:09.048 \N \N 102 53 574 4 5536 -820 \N 2012-09-06 15:13:09.065 \N \N 102 53 574 4 5537 -820 \N 2012-09-06 15:13:09.237 \N \N 102 53 574 4 5538 -820 \N 2012-09-06 15:13:09.253 \N \N 102 53 574 4 5539 -820 \N 2012-09-06 15:13:09.856 \N \N 102 53 574 4 5540 -820 \N 2012-09-06 15:13:11.98 \N \N 102 53 574 4 5541 -820 \N 2012-09-06 15:13:12.475 \N \N 102 53 574 4 5542 -820 \N 2012-09-06 15:13:12.729 \N \N 102 53 574 4 5543 -820 \N 2012-09-06 15:13:13.676 \N \N 102 53 574 4 5544 -820 \N 2012-09-06 15:13:13.752 \N \N 102 53 574 4 5545 -820 \N 2012-09-06 15:13:13.983 \N \N 102 53 574 4 5546 -820 \N 2012-09-06 15:13:14.009 \N \N 102 53 574 4 5547 -820 \N 2012-09-06 15:13:14.099 \N \N 102 53 574 4 5548 -820 \N 2012-09-06 15:13:14.114 \N \N 102 53 574 4 5549 -820 \N 2012-09-06 15:13:14.13 \N \N 102 53 574 4 5550 -820 \N 2012-09-06 15:13:14.164 \N \N 102 53 574 4 5551 -820 \N 2012-09-06 15:13:14.179 \N \N 102 53 574 4 5552 -820 \N 2012-09-06 15:13:14.196 \N \N 102 53 574 4 5553 -820 \N 2012-09-06 15:13:14.231 \N \N 102 53 574 4 5554 -820 \N 2012-09-06 15:13:14.246 \N \N 102 53 574 4 5555 -820 \N 2012-09-06 15:13:14.261 \N \N 102 53 574 4 5556 -820 \N 2012-09-06 15:13:14.287 \N \N 102 53 574 4 5557 -820 \N 2012-09-06 15:13:14.303 \N \N 102 53 574 4 5558 -820 \N 2012-09-06 15:13:14.32 \N \N 102 53 574 4 5559 -820 \N 2012-09-06 15:13:14.485 \N \N 102 53 574 4 5560 -820 \N 2012-09-06 15:13:14.501 \N \N 102 53 574 4 5561 -820 \N 2012-09-06 15:13:15.082 \N \N 102 53 574 4 5562 -820 \N 2012-09-06 15:13:17.171 \N \N 102 53 574 4 5563 -820 \N 2012-09-06 15:13:17.652 \N \N 102 53 574 4 5564 -820 \N 2012-09-06 15:13:17.902 \N \N 102 53 574 4 5565 -820 \N 2012-09-06 15:13:18.852 \N \N 102 53 574 4 5566 -820 \N 2012-09-06 15:13:18.923 \N \N 102 53 574 4 5567 -820 \N 2012-09-06 15:13:19.112 \N \N 102 53 574 4 5568 -820 \N 2012-09-06 15:13:19.133 \N \N 102 53 574 4 5569 -820 \N 2012-09-06 15:13:19.219 \N \N 102 53 574 4 5570 -820 \N 2012-09-06 15:13:19.232 \N \N 102 53 574 4 5571 -820 \N 2012-09-06 15:13:19.247 \N \N 102 53 574 4 5572 -820 \N 2012-09-06 15:13:19.278 \N \N 102 53 574 4 5573 -820 \N 2012-09-06 15:13:19.299 \N \N 102 53 574 4 5574 -820 \N 2012-09-06 15:13:19.313 \N \N 102 53 574 4 5575 -820 \N 2012-09-06 15:13:19.344 \N \N 102 53 574 4 5576 -820 \N 2012-09-06 15:13:19.36 \N \N 102 53 574 4 5577 -820 \N 2012-09-06 15:13:19.376 \N \N 102 53 574 4 5578 -820 \N 2012-09-06 15:13:19.416 \N \N 102 53 574 4 5579 -820 \N 2012-09-06 15:13:19.436 \N \N 102 53 574 4 5580 -820 \N 2012-09-06 15:13:19.456 \N \N 102 53 574 4 5581 -820 \N 2012-09-06 15:13:19.638 \N \N 102 53 574 4 5582 -820 \N 2012-09-06 15:13:19.654 \N \N 102 53 574 4 5583 -820 \N 2012-09-06 15:13:20.274 \N \N 102 53 574 4 5584 -820 \N 2012-09-06 15:13:22.445 \N \N 102 53 574 4 5585 -820 \N 2012-09-06 15:13:22.924 \N \N 102 53 574 4 5586 -820 \N 2012-09-06 15:13:23.18 \N \N 102 53 574 4 5587 -820 \N 2012-09-06 15:13:24.2 \N \N 102 53 574 4 5588 -820 \N 2012-09-06 15:13:24.292 \N \N 102 53 574 4 5589 -820 \N 2012-09-06 15:13:24.556 \N \N 102 53 574 4 5590 -820 \N 2012-09-06 15:13:24.586 \N \N 102 53 574 4 5591 -820 \N 2012-09-06 15:13:24.724 \N \N 102 53 574 4 5592 -820 \N 2012-09-06 15:13:24.739 \N \N 102 53 574 4 5593 -820 \N 2012-09-06 15:13:24.754 \N \N 102 53 574 4 5594 -820 \N 2012-09-06 15:13:24.79 \N \N 102 53 574 4 5595 -820 \N 2012-09-06 15:13:24.804 \N \N 102 53 574 4 5596 -820 \N 2012-09-06 15:13:24.82 \N \N 102 53 574 4 5597 -820 \N 2012-09-06 15:13:24.855 \N \N 102 53 574 4 5598 -820 \N 2012-09-06 15:13:24.87 \N \N 102 53 574 4 5599 -820 \N 2012-09-06 15:13:24.885 \N \N 102 53 574 4 5600 -820 \N 2012-09-06 15:13:24.913 \N \N 102 53 574 4 5601 -820 \N 2012-09-06 15:13:24.931 \N \N 102 53 574 4 5602 -820 \N 2012-09-06 15:13:24.949 \N \N 102 53 574 4 5603 -820 \N 2012-09-06 15:13:25.115 \N \N 102 53 574 4 5604 -820 \N 2012-09-06 15:13:25.131 \N \N 102 53 574 4 5605 -820 \N 2012-09-06 15:13:25.729 \N \N 102 53 574 4 5606 -820 \N 2012-09-06 15:13:27.892 \N \N 102 53 574 4 5607 -820 \N 2012-09-06 15:13:28.406 \N \N 102 53 574 4 5608 -820 \N 2012-09-06 15:13:28.668 \N \N 102 53 574 4 5609 -820 \N 2012-09-06 15:13:28.863 \N \N 102 53 574 4 5610 -820 \N 2012-09-06 15:13:29.608 \N \N 102 53 574 4 5611 -820 \N 2012-09-06 15:13:29.668 \N \N 102 53 574 4 5612 -820 \N 2012-09-06 15:13:29.886 \N \N 102 53 574 4 5613 -820 \N 2012-09-06 15:13:29.91 \N \N 102 53 574 4 5614 -820 \N 2012-09-06 15:13:29.997 \N \N 102 53 574 4 5615 -820 \N 2012-09-06 15:13:30.012 \N \N 102 53 574 4 5616 -820 \N 2012-09-06 15:13:30.028 \N \N 102 53 574 4 5617 -820 \N 2012-09-06 15:13:30.061 \N \N 102 53 574 4 5618 -820 \N 2012-09-06 15:13:30.073 \N \N 102 53 574 4 5619 -820 \N 2012-09-06 15:13:30.087 \N \N 102 53 574 4 5620 -820 \N 2012-09-06 15:13:30.121 \N \N 102 53 574 4 5621 -820 \N 2012-09-06 15:13:30.135 \N \N 102 53 574 4 5622 -820 \N 2012-09-06 15:13:30.149 \N \N 102 53 574 4 5623 -820 \N 2012-09-06 15:13:30.178 \N \N 102 53 574 4 5624 -820 \N 2012-09-06 15:13:30.195 \N \N 102 53 574 4 5625 -820 \N 2012-09-06 15:13:30.212 \N \N 102 53 574 4 5626 -820 \N 2012-09-06 15:13:30.385 \N \N 102 53 574 4 5627 -820 \N 2012-09-06 15:13:30.408 \N \N 102 53 574 4 5628 -820 \N 2012-09-06 15:13:30.987 \N \N 102 53 574 4 5629 -820 \N 2012-09-06 15:13:33.107 \N \N 102 53 574 4 5630 -820 \N 2012-09-06 15:13:33.151 \N \N 102 53 574 4 5631 -820 \N 2012-09-06 15:13:33.65 \N \N 102 53 574 4 5632 -820 \N 2012-09-06 15:13:33.904 \N \N 102 53 574 4 5633 -820 \N 2012-09-06 15:13:34.873 \N \N 102 53 574 4 5634 -820 \N 2012-09-06 15:13:34.95 \N \N 102 53 574 4 5635 -820 \N 2012-09-06 15:13:35.196 \N \N 102 53 574 4 5636 -820 \N 2012-09-06 15:13:35.222 \N \N 102 53 574 4 5637 -820 \N 2012-09-06 15:13:35.315 \N \N 102 53 574 4 5638 -820 \N 2012-09-06 15:13:35.33 \N \N 102 53 574 4 5639 -820 \N 2012-09-06 15:13:35.345 \N \N 102 53 574 4 5640 -820 \N 2012-09-06 15:13:35.39 \N \N 102 53 574 4 5641 -820 \N 2012-09-06 15:13:35.405 \N \N 102 53 574 4 5642 -820 \N 2012-09-06 15:13:35.42 \N \N 102 53 574 4 5643 -820 \N 2012-09-06 15:13:35.455 \N \N 102 53 574 4 5644 -820 \N 2012-09-06 15:13:35.47 \N \N 102 53 574 4 5645 -820 \N 2012-09-06 15:13:35.485 \N \N 102 53 574 4 5646 -820 \N 2012-09-06 15:13:35.511 \N \N 102 53 574 4 5647 -820 \N 2012-09-06 15:13:35.53 \N \N 102 53 574 4 5648 -820 \N 2012-09-06 15:13:35.548 \N \N 102 53 574 4 5649 -820 \N 2012-09-06 15:13:35.718 \N \N 102 53 574 4 5650 -820 \N 2012-09-06 15:13:35.735 \N \N 102 53 574 4 5651 -820 \N 2012-09-06 15:13:36.311 \N \N 102 53 574 4 5654 -820 \N 2012-09-06 15:13:36.984 \N \N 102 53 574 4 5655 -820 \N 2012-09-06 15:13:38.481 \N \N 102 53 574 4 5656 -820 \N 2012-09-06 15:13:38.968 \N \N 102 53 574 4 5657 -820 \N 2012-09-06 15:13:39.22 \N \N 102 53 574 4 5658 -820 \N 2012-09-06 15:13:40.227 \N \N 102 53 574 4 5659 -820 \N 2012-09-06 15:13:40.3 \N \N 102 53 574 4 5660 -820 \N 2012-09-06 15:13:40.517 \N \N 102 53 574 4 5661 -820 \N 2012-09-06 15:13:40.542 \N \N 102 53 574 4 5662 -820 \N 2012-09-06 15:13:40.627 \N \N 102 53 574 4 5663 -820 \N 2012-09-06 15:13:40.64 \N \N 102 53 574 4 5664 -820 \N 2012-09-06 15:13:40.654 \N \N 102 53 574 4 5665 -820 \N 2012-09-06 15:13:40.688 \N \N 102 53 574 4 5666 -820 \N 2012-09-06 15:13:40.701 \N \N 102 53 574 4 5667 -820 \N 2012-09-06 15:13:40.716 \N \N 102 53 574 4 5668 -820 \N 2012-09-06 15:13:40.75 \N \N 102 53 574 4 5669 -820 \N 2012-09-06 15:13:40.764 \N \N 102 53 574 4 5670 -820 \N 2012-09-06 15:13:40.779 \N \N 102 53 574 4 5671 -820 \N 2012-09-06 15:13:40.804 \N \N 102 53 574 4 5672 -820 \N 2012-09-06 15:13:40.821 \N \N 102 53 574 4 5673 -820 \N 2012-09-06 15:13:40.837 \N \N 102 53 574 4 5674 -820 \N 2012-09-06 15:13:41 \N \N 102 53 574 4 5675 -820 \N 2012-09-06 15:13:41.018 \N \N 102 53 574 4 5676 -820 \N 2012-09-06 15:13:41.595 \N \N 102 53 574 4 5677 -820 \N 2012-09-06 15:13:43.77 \N \N 102 53 574 4 5681 -820 \N 2012-09-06 15:13:44.261 \N \N 102 53 574 4 5682 -820 \N 2012-09-06 15:13:44.52 \N \N 102 53 574 4 5683 -820 \N 2012-09-06 15:13:45.6 \N \N 102 53 574 4 5684 -820 \N 2012-09-06 15:13:45.68 \N \N 102 53 574 4 5685 -820 \N 2012-09-06 15:13:45.943 \N \N 102 53 574 4 5686 -820 \N 2012-09-06 15:13:45.978 \N \N 102 53 574 4 5687 -820 \N 2012-09-06 15:13:46.083 \N \N 102 53 574 4 5688 -820 \N 2012-09-06 15:13:46.098 \N \N 102 53 574 4 5689 -820 \N 2012-09-06 15:13:46.114 \N \N 102 53 574 4 5690 -820 \N 2012-09-06 15:13:46.151 \N \N 102 53 574 4 5691 -820 \N 2012-09-06 15:13:46.166 \N \N 102 53 574 4 5692 -820 \N 2012-09-06 15:13:46.181 \N \N 102 53 574 4 5693 -820 \N 2012-09-06 15:13:46.218 \N \N 102 53 574 4 5694 -820 \N 2012-09-06 15:13:46.233 \N \N 102 53 574 4 5695 -820 \N 2012-09-06 15:13:46.25 \N \N 102 53 574 4 5696 -820 \N 2012-09-06 15:13:46.282 \N \N 102 53 574 4 5697 -820 \N 2012-09-06 15:13:46.302 \N \N 102 53 574 4 5698 -820 \N 2012-09-06 15:13:46.319 \N \N 102 53 574 4 5699 -820 \N 2012-09-06 15:13:46.484 \N \N 102 53 574 4 5700 -820 \N 2012-09-06 15:13:46.501 \N \N 102 53 574 4 5701 -820 \N 2012-09-06 15:13:47.092 \N \N 102 53 574 4 5702 -820 \N 2012-09-06 15:13:49.129 \N \N 102 53 574 4 5703 -820 \N 2012-09-06 15:13:49.643 \N \N 102 53 574 4 5704 -820 \N 2012-09-06 15:13:49.895 \N \N 102 53 574 4 5705 -820 \N 2012-09-06 15:13:50.835 \N \N 102 53 574 4 5706 -820 \N 2012-09-06 15:13:50.899 \N \N 102 53 574 4 5707 -820 \N 2012-09-06 15:13:51.098 \N \N 102 53 574 4 5708 -820 \N 2012-09-06 15:13:51.121 \N \N 102 53 574 4 5709 -820 \N 2012-09-06 15:13:51.208 \N \N 102 53 574 4 5710 -820 \N 2012-09-06 15:13:51.223 \N \N 102 53 574 4 5711 -820 \N 2012-09-06 15:13:51.239 \N \N 102 53 574 4 5712 -820 \N 2012-09-06 15:13:51.274 \N \N 102 53 574 4 5713 -820 \N 2012-09-06 15:13:51.288 \N \N 102 53 574 4 5714 -820 \N 2012-09-06 15:13:51.304 \N \N 102 53 574 4 5715 -820 \N 2012-09-06 15:13:51.339 \N \N 102 53 574 4 5716 -820 \N 2012-09-06 15:13:51.353 \N \N 102 53 574 4 5717 -820 \N 2012-09-06 15:13:51.368 \N \N 102 53 574 4 5718 -820 \N 2012-09-06 15:13:51.399 \N \N 102 53 574 4 5719 -820 \N 2012-09-06 15:13:51.417 \N \N 102 53 574 4 5720 -820 \N 2012-09-06 15:13:51.434 \N \N 102 53 574 4 5721 -820 \N 2012-09-06 15:13:51.603 \N \N 102 53 574 4 5722 -820 \N 2012-09-06 15:13:51.619 \N \N 102 53 574 4 5723 -820 \N 2012-09-06 15:13:52.173 \N \N 102 53 574 4 5726 -820 \N 2012-09-06 15:13:52.602 \N \N 102 53 574 4 5727 -820 \N 2012-09-06 15:13:54.267 \N \N 102 53 574 4 5728 -820 \N 2012-09-06 15:13:54.738 \N \N 102 53 574 4 5729 -820 \N 2012-09-06 15:13:54.985 \N \N 102 53 574 4 5730 -820 \N 2012-09-06 15:13:55.928 \N \N 102 53 574 4 5731 -820 \N 2012-09-06 15:13:55.994 \N \N 102 53 574 4 5732 -820 \N 2012-09-06 15:13:56.244 \N \N 102 53 574 4 5733 -820 \N 2012-09-06 15:13:56.271 \N \N 102 53 574 4 5652 -820 \N 2012-09-06 15:13:36.5 \N \N 102 53 574 4 5653 -820 \N 2012-09-06 15:13:36.754 \N \N 102 53 574 4 5678 -820 \N 2012-09-06 15:13:43.849 \N \N 102 53 574 4 5679 -820 \N 2012-09-06 15:13:43.868 \N \N 102 53 574 4 5680 -820 \N 2012-09-06 15:13:44.15 \N \N 102 53 574 4 5724 -820 \N 2012-09-06 15:13:52.243 \N \N 102 53 574 4 5725 -820 \N 2012-09-06 15:13:52.391 \N \N 102 53 574 4 5820 -820 \N 2012-09-06 15:14:16.845 \N \N 102 53 574 4 5840 -820 \N 2012-09-06 15:14:20.72 \N \N 102 53 574 4 5846 -820 \N 2012-09-06 15:14:22.15 \N \N 102 53 574 4 5861 -820 \N 2012-09-06 15:14:22.625 \N \N 102 53 574 4 5865 -820 \N 2012-09-06 15:14:23.562 \N \N 102 53 574 4 5866 -820 \N 2012-09-06 15:14:24.012 \N \N 102 53 574 4 5886 -820 \N 2012-09-06 15:15:31.724 \N \N 102 53 574 4 5889 -820 \N 2012-09-06 15:15:56.422 \N \N 102 53 576 4 5894 -820 \N 2012-09-06 15:15:56.651 \N \N 102 53 576 4 5904 -820 \N 2012-09-06 15:15:57.134 \N \N 102 53 576 4 5908 -820 \N 2012-09-06 15:15:57.384 \N \N 102 53 576 4 5912 -820 \N 2012-09-06 15:15:57.63 \N \N 102 53 576 4 5917 -820 \N 2012-09-06 15:15:57.867 \N \N 102 53 576 4 5922 -820 \N 2012-09-06 15:15:58.112 \N \N 102 53 576 4 5928 -820 \N 2012-09-06 15:15:58.367 \N \N 102 53 576 4 5932 -820 \N 2012-09-06 15:15:58.593 \N \N 102 53 576 4 5937 -820 \N 2012-09-06 15:15:58.826 \N \N 102 53 576 4 5940 -820 \N 2012-09-06 15:15:58.921 \N \N 102 53 576 4 5941 -820 \N 2012-09-06 15:15:58.959 \N \N 102 53 576 4 5943 -820 \N 2012-09-06 15:15:59.064 \N \N 102 53 576 4 5946 -820 \N 2012-09-06 15:15:59.274 \N \N 102 53 576 4 5949 -820 \N 2012-09-06 15:17:31.712 \N \N 102 53 574 4 5950 -820 \N 2012-09-06 15:17:33.953 \N \N 102 53 574 4 5982 -820 \N 2012-09-06 15:23:10.018 \N \N 102 53 574 4 5983 -820 \N 2012-09-06 15:23:11.627 \N \N 102 53 574 4 5985 -820 \N 2012-09-06 15:23:40.966 \N \N 102 53 574 4 5988 -820 \N 2012-09-06 15:23:41.156 \N \N 102 53 574 4 6036 -820 \N 2012-09-06 15:33:50.543 \N \N 102 53 576 4 6039 -820 \N 2012-09-06 15:33:50.664 \N \N 102 53 576 4 6057 -820 \N 2012-09-06 15:33:51.425 \N \N 102 53 576 4 6059 -820 \N 2012-09-06 15:33:51.475 \N \N 102 53 576 4 6060 -820 \N 2012-09-06 15:33:51.612 \N \N 102 53 576 4 6061 -820 \N 2012-09-06 15:33:51.643 \N \N 102 53 576 4 6070 -820 \N 2012-09-06 15:33:52.02 \N \N 102 53 576 4 6077 -820 \N 2012-09-06 15:33:52.274 \N \N 102 53 576 4 6081 -820 \N 2012-09-06 15:33:52.481 \N \N 102 53 576 4 6091 -820 \N 2012-09-06 15:33:52.897 \N \N 102 53 576 4 6097 -820 \N 2012-09-06 15:33:57.843 \N \N 102 53 576 4 6102 -820 \N 2012-09-06 15:33:58.078 \N \N 102 53 576 4 6108 -820 \N 2012-09-06 15:33:58.316 \N \N 102 53 576 4 6113 -820 \N 2012-09-06 15:33:58.554 \N \N 102 53 576 4 6116 -820 \N 2012-09-06 15:33:58.755 \N \N 102 53 576 4 6117 -820 \N 2012-09-06 15:33:58.775 \N \N 102 53 576 4 6121 -820 \N 2012-09-06 15:33:58.957 \N \N 102 53 576 4 6122 -820 \N 2012-09-06 15:33:58.99 \N \N 102 53 576 4 6125 -820 \N 2012-09-06 15:33:59.112 \N \N 102 53 576 4 6127 -820 \N 2012-09-06 15:33:59.196 \N \N 102 53 576 4 6130 -820 \N 2012-09-06 15:33:59.323 \N \N 102 53 576 4 6134 -820 \N 2012-09-06 15:33:59.408 \N \N 102 53 576 4 6135 -820 \N 2012-09-06 15:33:59.523 \N \N 102 53 576 4 6137 -820 \N 2012-09-06 15:33:59.615 \N \N 102 53 576 4 6142 -820 \N 2012-09-06 15:33:59.826 \N \N 102 53 576 4 6145 -820 \N 2012-09-06 15:33:59.919 \N \N 102 53 576 4 6146 -820 \N 2012-09-06 15:33:59.967 \N \N 102 53 576 4 6149 -820 \N 2012-09-06 15:34:00.049 \N \N 102 53 576 4 6153 -820 \N 2012-09-06 15:34:00.269 \N \N 102 53 576 4 6159 -820 \N 2012-09-06 15:36:54.834 \N \N 102 53 576 4 6165 -820 \N 2012-09-06 15:36:55.048 \N \N 102 53 576 4 6172 -820 \N 2012-09-06 15:36:55.331 \N \N 102 53 576 4 6176 -820 \N 2012-09-06 15:36:55.507 \N \N 102 53 576 4 6187 -820 \N 2012-09-06 15:36:55.942 \N \N 102 53 576 4 6191 -820 \N 2012-09-06 15:36:56.146 \N \N 102 53 576 4 6195 -820 \N 2012-09-06 15:36:56.353 \N \N 102 53 576 4 6201 -820 \N 2012-09-06 15:36:56.586 \N \N 102 53 576 4 6206 -820 \N 2012-09-06 15:36:56.8 \N \N 102 53 576 4 6210 -820 \N 2012-09-06 15:36:57.02 \N \N 102 53 576 4 6216 -820 \N 2012-09-06 15:36:57.241 \N \N 102 53 576 4 5734 -820 \N 2012-09-06 15:13:56.37 \N \N 102 53 574 4 5735 -820 \N 2012-09-06 15:13:56.385 \N \N 102 53 574 4 5736 -820 \N 2012-09-06 15:13:56.401 \N \N 102 53 574 4 5737 -820 \N 2012-09-06 15:13:56.437 \N \N 102 53 574 4 5738 -820 \N 2012-09-06 15:13:56.452 \N \N 102 53 574 4 5739 -820 \N 2012-09-06 15:13:56.467 \N \N 102 53 574 4 5740 -820 \N 2012-09-06 15:13:56.502 \N \N 102 53 574 4 5741 -820 \N 2012-09-06 15:13:56.517 \N \N 102 53 574 4 5742 -820 \N 2012-09-06 15:13:56.532 \N \N 102 53 574 4 5743 -820 \N 2012-09-06 15:13:56.578 \N \N 102 53 574 4 5744 -820 \N 2012-09-06 15:13:56.597 \N \N 102 53 574 4 5745 -820 \N 2012-09-06 15:13:56.614 \N \N 102 53 574 4 5746 -820 \N 2012-09-06 15:13:56.779 \N \N 102 53 574 4 5747 -820 \N 2012-09-06 15:13:56.797 \N \N 102 53 574 4 5748 -820 \N 2012-09-06 15:13:57.377 \N \N 102 53 574 4 5749 -820 \N 2012-09-06 15:13:59.474 \N \N 102 53 574 4 5750 -820 \N 2012-09-06 15:13:59.968 \N \N 102 53 574 4 5751 -820 \N 2012-09-06 15:14:00.226 \N \N 102 53 574 4 5752 -820 \N 2012-09-06 15:14:01.175 \N \N 102 53 574 4 5753 -820 \N 2012-09-06 15:14:01.244 \N \N 102 53 574 4 5754 -820 \N 2012-09-06 15:14:01.455 \N \N 102 53 574 4 5755 -820 \N 2012-09-06 15:14:01.478 \N \N 102 53 574 4 5756 -820 \N 2012-09-06 15:14:01.564 \N \N 102 53 574 4 5757 -820 \N 2012-09-06 15:14:01.577 \N \N 102 53 574 4 5758 -820 \N 2012-09-06 15:14:01.59 \N \N 102 53 574 4 5759 -820 \N 2012-09-06 15:14:01.622 \N \N 102 53 574 4 5760 -820 \N 2012-09-06 15:14:01.634 \N \N 102 53 574 4 5761 -820 \N 2012-09-06 15:14:01.648 \N \N 102 53 574 4 5762 -820 \N 2012-09-06 15:14:01.68 \N \N 102 53 574 4 5763 -820 \N 2012-09-06 15:14:01.694 \N \N 102 53 574 4 5764 -820 \N 2012-09-06 15:14:01.709 \N \N 102 53 574 4 5765 -820 \N 2012-09-06 15:14:01.735 \N \N 102 53 574 4 5766 -820 \N 2012-09-06 15:14:01.753 \N \N 102 53 574 4 5767 -820 \N 2012-09-06 15:14:01.769 \N \N 102 53 574 4 5768 -820 \N 2012-09-06 15:14:01.936 \N \N 102 53 574 4 5769 -820 \N 2012-09-06 15:14:01.952 \N \N 102 53 574 4 5770 -820 \N 2012-09-06 15:14:02.507 \N \N 102 53 574 4 5771 -820 \N 2012-09-06 15:14:04.64 \N \N 102 53 574 4 5772 -820 \N 2012-09-06 15:14:05.137 \N \N 102 53 574 4 5773 -820 \N 2012-09-06 15:14:05.384 \N \N 102 53 574 4 5774 -820 \N 2012-09-06 15:14:06.322 \N \N 102 53 574 4 5775 -820 \N 2012-09-06 15:14:06.384 \N \N 102 53 574 4 5776 -820 \N 2012-09-06 15:14:06.585 \N \N 102 53 574 4 5777 -820 \N 2012-09-06 15:14:06.607 \N \N 102 53 574 4 5778 -820 \N 2012-09-06 15:14:06.685 \N \N 102 53 574 4 5779 -820 \N 2012-09-06 15:14:06.699 \N \N 102 53 574 4 5780 -820 \N 2012-09-06 15:14:06.713 \N \N 102 53 574 4 5781 -820 \N 2012-09-06 15:14:06.745 \N \N 102 53 574 4 5782 -820 \N 2012-09-06 15:14:06.759 \N \N 102 53 574 4 5783 -820 \N 2012-09-06 15:14:06.774 \N \N 102 53 574 4 5784 -820 \N 2012-09-06 15:14:06.806 \N \N 102 53 574 4 5785 -820 \N 2012-09-06 15:14:06.819 \N \N 102 53 574 4 5786 -820 \N 2012-09-06 15:14:06.834 \N \N 102 53 574 4 5787 -820 \N 2012-09-06 15:14:06.86 \N \N 102 53 574 4 5788 -820 \N 2012-09-06 15:14:06.877 \N \N 102 53 574 4 5789 -820 \N 2012-09-06 15:14:06.893 \N \N 102 53 574 4 5790 -820 \N 2012-09-06 15:14:07.058 \N \N 102 53 574 4 5791 -820 \N 2012-09-06 15:14:07.073 \N \N 102 53 574 4 5792 -820 \N 2012-09-06 15:14:07.641 \N \N 102 53 574 4 5793 -820 \N 2012-09-06 15:14:09.75 \N \N 102 53 574 4 5794 -820 \N 2012-09-06 15:14:10.232 \N \N 102 53 574 4 5795 -820 \N 2012-09-06 15:14:10.481 \N \N 102 53 574 4 5796 -820 \N 2012-09-06 15:14:11.455 \N \N 102 53 574 4 5797 -820 \N 2012-09-06 15:14:11.534 \N \N 102 53 574 4 5798 -820 \N 2012-09-06 15:14:11.768 \N \N 102 53 574 4 5799 -820 \N 2012-09-06 15:14:11.795 \N \N 102 53 574 4 5800 -820 \N 2012-09-06 15:14:11.887 \N \N 102 53 574 4 5801 -820 \N 2012-09-06 15:14:11.901 \N \N 102 53 574 4 5802 -820 \N 2012-09-06 15:14:11.916 \N \N 102 53 574 4 5803 -820 \N 2012-09-06 15:14:11.951 \N \N 102 53 574 4 5804 -820 \N 2012-09-06 15:14:11.966 \N \N 102 53 574 4 5805 -820 \N 2012-09-06 15:14:11.982 \N \N 102 53 574 4 5806 -820 \N 2012-09-06 15:14:12.018 \N \N 102 53 574 4 5807 -820 \N 2012-09-06 15:14:12.032 \N \N 102 53 574 4 5808 -820 \N 2012-09-06 15:14:12.047 \N \N 102 53 574 4 5809 -820 \N 2012-09-06 15:14:12.081 \N \N 102 53 574 4 5810 -820 \N 2012-09-06 15:14:12.099 \N \N 102 53 574 4 5811 -820 \N 2012-09-06 15:14:12.116 \N \N 102 53 574 4 5812 -820 \N 2012-09-06 15:14:12.282 \N \N 102 53 574 4 5813 -820 \N 2012-09-06 15:14:12.299 \N \N 102 53 574 4 5814 -820 \N 2012-09-06 15:14:12.87 \N \N 102 53 574 4 5815 -820 \N 2012-09-06 15:14:14.953 \N \N 102 53 574 4 5816 -820 \N 2012-09-06 15:14:15.438 \N \N 102 53 574 4 5817 -820 \N 2012-09-06 15:14:15.693 \N \N 102 53 574 4 5818 -820 \N 2012-09-06 15:14:16.683 \N \N 102 53 574 4 5819 -820 \N 2012-09-06 15:14:16.759 \N \N 102 53 574 4 5821 -820 \N 2012-09-06 15:14:17.015 \N \N 102 53 574 4 5822 -820 \N 2012-09-06 15:14:17.041 \N \N 102 53 574 4 5823 -820 \N 2012-09-06 15:14:17.133 \N \N 102 53 574 4 5824 -820 \N 2012-09-06 15:14:17.148 \N \N 102 53 574 4 5825 -820 \N 2012-09-06 15:14:17.163 \N \N 102 53 574 4 5826 -820 \N 2012-09-06 15:14:17.198 \N \N 102 53 574 4 5827 -820 \N 2012-09-06 15:14:17.212 \N \N 102 53 574 4 5828 -820 \N 2012-09-06 15:14:17.227 \N \N 102 53 574 4 5829 -820 \N 2012-09-06 15:14:17.262 \N \N 102 53 574 4 5830 -820 \N 2012-09-06 15:14:17.276 \N \N 102 53 574 4 5831 -820 \N 2012-09-06 15:14:17.29 \N \N 102 53 574 4 5832 -820 \N 2012-09-06 15:14:17.317 \N \N 102 53 574 4 5833 -820 \N 2012-09-06 15:14:17.334 \N \N 102 53 574 4 5834 -820 \N 2012-09-06 15:14:17.351 \N \N 102 53 574 4 5835 -820 \N 2012-09-06 15:14:17.515 \N \N 102 53 574 4 5836 -820 \N 2012-09-06 15:14:17.53 \N \N 102 53 574 4 5837 -820 \N 2012-09-06 15:14:18.111 \N \N 102 53 574 4 5838 -820 \N 2012-09-06 15:14:20.181 \N \N 102 53 574 4 5839 -820 \N 2012-09-06 15:14:20.626 \N \N 102 53 574 4 5841 -820 \N 2012-09-06 15:14:20.978 \N \N 102 53 574 4 5842 -820 \N 2012-09-06 15:14:21.046 \N \N 102 53 574 4 5843 -820 \N 2012-09-06 15:14:21.718 \N \N 102 53 574 4 5844 -820 \N 2012-09-06 15:14:21.933 \N \N 102 53 574 4 5845 -820 \N 2012-09-06 15:14:21.999 \N \N 102 53 574 4 5847 -820 \N 2012-09-06 15:14:22.217 \N \N 102 53 574 4 5848 -820 \N 2012-09-06 15:14:22.247 \N \N 102 53 574 4 5849 -820 \N 2012-09-06 15:14:22.34 \N \N 102 53 574 4 5850 -820 \N 2012-09-06 15:14:22.355 \N \N 102 53 574 4 5851 -820 \N 2012-09-06 15:14:22.37 \N \N 102 53 574 4 5852 -820 \N 2012-09-06 15:14:22.405 \N \N 102 53 574 4 5853 -820 \N 2012-09-06 15:14:22.421 \N \N 102 53 574 4 5854 -820 \N 2012-09-06 15:14:22.436 \N \N 102 53 574 4 5855 -820 \N 2012-09-06 15:14:22.473 \N \N 102 53 574 4 5856 -820 \N 2012-09-06 15:14:22.487 \N \N 102 53 574 4 5857 -820 \N 2012-09-06 15:14:22.509 \N \N 102 53 574 4 5858 -820 \N 2012-09-06 15:14:22.536 \N \N 102 53 574 4 5859 -820 \N 2012-09-06 15:14:22.555 \N \N 102 53 574 4 5860 -820 \N 2012-09-06 15:14:22.572 \N \N 102 53 574 4 5862 -820 \N 2012-09-06 15:14:22.741 \N \N 102 53 574 4 5863 -820 \N 2012-09-06 15:14:22.758 \N \N 102 53 574 4 5864 -820 \N 2012-09-06 15:14:23.332 \N \N 102 53 574 4 5867 -820 \N 2012-09-06 15:14:24.418 \N \N 102 53 574 4 5868 -820 \N 2012-09-06 15:14:25.47 \N \N 102 53 574 4 5869 -820 \N 2012-09-06 15:14:25.962 \N \N 102 53 574 4 5870 -820 \N 2012-09-06 15:14:26.209 \N \N 102 53 574 4 5871 -820 \N 2012-09-06 15:14:27.159 \N \N 102 53 574 4 5872 -820 \N 2012-09-06 15:14:27.238 \N \N 102 53 574 4 5873 -820 \N 2012-09-06 15:14:27.469 \N \N 102 53 574 4 5874 -820 \N 2012-09-06 15:14:27.494 \N \N 102 53 574 4 5875 -820 \N 2012-09-06 15:14:27.573 \N \N 102 53 574 4 5876 -820 \N 2012-09-06 15:14:27.588 \N \N 102 53 574 4 5877 -820 \N 2012-09-06 15:14:27.622 \N \N 102 53 574 4 5878 -820 \N 2012-09-06 15:14:27.635 \N \N 102 53 574 4 5879 -820 \N 2012-09-06 15:14:27.65 \N \N 102 53 574 4 5880 -820 \N 2012-09-06 15:14:27.684 \N \N 102 53 574 4 5881 -820 \N 2012-09-06 15:14:27.697 \N \N 102 53 574 4 5882 -820 \N 2012-09-06 15:14:27.711 \N \N 102 53 574 4 5883 -820 \N 2012-09-06 15:14:27.744 \N \N 102 53 574 4 5884 -820 \N 2012-09-06 15:14:27.758 \N \N 102 53 574 4 5885 -820 \N 2012-09-06 15:14:27.773 \N \N 102 53 574 4 5887 -820 \N 2012-09-06 15:15:49.424 \N \N 0 0 561 2 5888 -820 \N 2012-09-06 15:15:56.42 \N \N 102 53 576 4 5890 -820 \N 2012-09-06 15:15:56.422 \N \N 102 53 576 4 5891 -820 \N 2012-09-06 15:15:56.439 \N \N 102 53 576 4 5892 -820 \N 2012-09-06 15:15:56.443 \N \N 102 53 576 4 5895 -820 \N 2012-09-06 15:15:56.65 \N \N 102 53 576 4 5893 -820 \N 2012-09-06 15:15:56.651 \N \N 102 53 576 4 5896 -820 \N 2012-09-06 15:15:56.7 \N \N 102 53 576 4 5897 -820 \N 2012-09-06 15:15:56.711 \N \N 102 53 576 4 5898 -820 \N 2012-09-06 15:15:56.899 \N \N 102 53 576 4 5899 -820 \N 2012-09-06 15:15:56.899 \N \N 102 53 576 4 5900 -820 \N 2012-09-06 15:15:56.9 \N \N 102 53 576 4 5901 -820 \N 2012-09-06 15:15:56.919 \N \N 102 53 576 4 5902 -820 \N 2012-09-06 15:15:56.924 \N \N 102 53 576 4 5903 -820 \N 2012-09-06 15:15:57.131 \N \N 102 53 576 4 5905 -820 \N 2012-09-06 15:15:57.136 \N \N 102 53 576 4 5906 -820 \N 2012-09-06 15:15:57.143 \N \N 102 53 576 4 5907 -820 \N 2012-09-06 15:15:57.143 \N \N 102 53 576 4 5909 -820 \N 2012-09-06 15:15:57.387 \N \N 102 53 576 4 5910 -820 \N 2012-09-06 15:15:57.391 \N \N 102 53 576 4 5911 -820 \N 2012-09-06 15:15:57.393 \N \N 102 53 576 4 5913 -820 \N 2012-09-06 15:15:57.632 \N \N 102 53 576 4 5914 -820 \N 2012-09-06 15:15:57.636 \N \N 102 53 576 4 5915 -820 \N 2012-09-06 15:15:57.638 \N \N 102 53 576 4 5916 -820 \N 2012-09-06 15:15:57.676 \N \N 102 53 576 4 5918 -820 \N 2012-09-06 15:15:57.871 \N \N 102 53 576 4 5919 -820 \N 2012-09-06 15:15:57.873 \N \N 102 53 576 4 5920 -820 \N 2012-09-06 15:15:57.881 \N \N 102 53 576 4 5921 -820 \N 2012-09-06 15:15:57.889 \N \N 102 53 576 4 5923 -820 \N 2012-09-06 15:15:58.112 \N \N 102 53 576 4 5924 -820 \N 2012-09-06 15:15:58.118 \N \N 102 53 576 4 5930 -820 \N 2012-09-06 15:15:58.369 \N \N 102 53 576 4 5934 -820 \N 2012-09-06 15:15:58.596 \N \N 102 53 576 4 5939 -820 \N 2012-09-06 15:15:58.828 \N \N 102 53 576 4 5942 -820 \N 2012-09-06 15:15:59.064 \N \N 102 53 576 4 5948 -820 \N 2012-09-06 15:15:59.275 \N \N 102 53 576 4 5925 -820 \N 2012-09-06 15:15:58.119 \N \N 102 53 576 4 5929 -820 \N 2012-09-06 15:15:58.37 \N \N 102 53 576 4 5935 -820 \N 2012-09-06 15:15:58.598 \N \N 102 53 576 4 5944 -820 \N 2012-09-06 15:15:59.065 \N \N 102 53 576 4 5926 -820 \N 2012-09-06 15:15:58.12 \N \N 102 53 576 4 5945 -820 \N 2012-09-06 15:15:59.131 \N \N 102 53 576 4 5927 -820 \N 2012-09-06 15:15:58.363 \N \N 102 53 576 4 5931 -820 \N 2012-09-06 15:15:58.506 \N \N 102 53 576 4 5933 -820 \N 2012-09-06 15:15:58.593 \N \N 102 53 576 4 5936 -820 \N 2012-09-06 15:15:58.706 \N \N 102 53 576 4 5938 -820 \N 2012-09-06 15:15:58.826 \N \N 102 53 576 4 5947 -820 \N 2012-09-06 15:15:59.274 \N \N 102 53 576 4 5951 -820 \N 2012-09-06 15:17:35.117 \N \N 102 53 574 4 5952 -820 \N 2012-09-06 15:17:35.159 \N \N 102 53 574 4 5953 -820 \N 2012-09-06 15:19:21.102 \N \N 102 53 576 4 5954 -820 \N 2012-09-06 15:20:47.468 \N \N 102 53 574 4 5955 -820 \N 2012-09-06 15:22:58.02 \N \N 102 53 574 4 5956 -820 \N 2012-09-06 15:22:58.043 \N \N 102 53 574 4 5957 -820 \N 2012-09-06 15:22:58.118 \N \N 102 53 574 4 5958 -820 \N 2012-09-06 15:22:58.136 \N \N 102 53 574 4 5959 -820 \N 2012-09-06 15:22:58.154 \N \N 102 53 574 4 5960 -820 \N 2012-09-06 15:22:58.186 \N \N 102 53 574 4 5961 -820 \N 2012-09-06 15:22:58.201 \N \N 102 53 574 4 5962 -820 \N 2012-09-06 15:22:58.529 \N \N 102 53 574 4 5963 -820 \N 2012-09-06 15:23:00.297 \N \N 102 53 574 4 5964 -820 \N 2012-09-06 15:23:00.801 \N \N 102 53 574 4 5965 -820 \N 2012-09-06 15:23:01.046 \N \N 102 53 574 4 5966 -820 \N 2012-09-06 15:23:01.953 \N \N 102 53 574 4 5967 -820 \N 2012-09-06 15:23:02.027 \N \N 102 53 574 4 5968 -820 \N 2012-09-06 15:23:02.242 \N \N 102 53 574 4 5969 -820 \N 2012-09-06 15:23:02.266 \N \N 102 53 574 4 5970 -820 \N 2012-09-06 15:23:02.346 \N \N 102 53 574 4 5971 -820 \N 2012-09-06 15:23:02.362 \N \N 102 53 574 4 5972 -820 \N 2012-09-06 15:23:02.394 \N \N 102 53 574 4 5973 -820 \N 2012-09-06 15:23:02.407 \N \N 102 53 574 4 5974 -820 \N 2012-09-06 15:23:02.421 \N \N 102 53 574 4 5975 -820 \N 2012-09-06 15:23:02.456 \N \N 102 53 574 4 5976 -820 \N 2012-09-06 15:23:02.469 \N \N 102 53 574 4 5977 -820 \N 2012-09-06 15:23:02.483 \N \N 102 53 574 4 5978 -820 \N 2012-09-06 15:23:02.516 \N \N 102 53 574 4 5979 -820 \N 2012-09-06 15:23:02.529 \N \N 102 53 574 4 5980 -820 \N 2012-09-06 15:23:02.544 \N \N 102 53 574 4 5981 -820 \N 2012-09-06 15:23:08.429 \N \N 102 53 574 4 5984 -820 \N 2012-09-06 15:23:36.289 \N \N 102 53 574 4 5986 -820 \N 2012-09-06 15:23:41.078 \N \N 102 53 574 4 5987 -820 \N 2012-09-06 15:23:41.109 \N \N 102 53 574 4 5989 -820 \N 2012-09-06 15:23:41.186 \N \N 102 53 574 4 5990 -820 \N 2012-09-06 15:23:41.214 \N \N 102 53 574 4 5991 -820 \N 2012-09-06 15:23:51.016 \N \N 102 53 574 4 5992 -820 \N 2012-09-06 15:23:51.069 \N \N 102 53 574 4 5993 -820 \N 2012-09-06 15:23:51.089 \N \N 102 53 574 4 5994 -820 \N 2012-09-06 15:24:13.416 \N \N 0 0 561 9 5995 -820 \N 2012-09-06 15:24:13.5 \N \N 102 53 577 4 5996 -820 \N 2012-09-06 15:24:13.572 \N \N 102 53 577 4 5997 -820 \N 2012-09-06 15:24:14.599 \N \N 102 53 577 4 5998 -820 \N 2012-09-06 15:26:27.716 \N \N 102 53 574 4 5999 -820 \N 2012-09-06 15:26:34.487 \N \N 102 53 574 4 6000 -820 \N 2012-09-06 15:26:34.507 \N \N 102 53 574 4 6001 -820 \N 2012-09-06 15:26:35.202 \N \N 102 53 574 4 6002 -820 \N 2012-09-06 15:26:35.222 \N \N 102 53 574 4 6003 -820 \N 2012-09-06 15:26:35.24 \N \N 102 53 574 4 6004 -820 \N 2012-09-06 15:26:35.364 \N \N 102 53 574 4 6005 -820 \N 2012-09-06 15:26:35.379 \N \N 102 53 574 4 6006 -820 \N 2012-09-06 15:26:35.852 \N \N 102 53 574 4 6007 -820 \N 2012-09-06 15:26:37.204 \N \N 102 53 574 4 6008 -820 \N 2012-09-06 15:26:37.496 \N \N 102 53 574 4 6009 -820 \N 2012-09-06 15:26:37.725 \N \N 102 53 574 4 6010 -820 \N 2012-09-06 15:26:38.723 \N \N 102 53 574 4 6011 -820 \N 2012-09-06 15:26:38.762 \N \N 102 53 574 4 6012 -820 \N 2012-09-06 15:26:38.886 \N \N 102 53 574 4 6013 -820 \N 2012-09-06 15:26:38.897 \N \N 102 53 574 4 6014 -820 \N 2012-09-06 15:26:38.955 \N \N 102 53 574 4 6015 -820 \N 2012-09-06 15:26:38.967 \N \N 102 53 574 4 6016 -820 \N 2012-09-06 15:26:38.992 \N \N 102 53 574 4 6017 -820 \N 2012-09-06 15:26:39.002 \N \N 102 53 574 4 6018 -820 \N 2012-09-06 15:26:39.012 \N \N 102 53 574 4 6019 -820 \N 2012-09-06 15:26:44.162 \N \N 102 53 574 4 6020 -820 \N 2012-09-06 15:26:44.915 \N \N 102 53 574 4 6021 -820 \N 2012-09-06 15:26:44.944 \N \N 102 53 574 4 6022 -820 \N 2012-09-06 15:30:25.709 \N \N 102 53 574 4 6023 -820 \N 2012-09-06 15:30:25.722 \N \N 102 53 574 4 6024 -820 \N 2012-09-06 15:30:26.627 \N \N 102 53 574 4 6025 -820 \N 2012-09-06 15:30:28.415 \N \N 102 53 574 4 6026 -820 \N 2012-09-06 15:30:28.428 \N \N 102 53 574 4 6027 -820 \N 2012-09-06 15:30:29.022 \N \N 102 53 574 4 6028 -820 \N 2012-09-06 15:30:46.421 \N \N 102 53 576 4 6029 -820 \N 2012-09-06 15:30:46.46 \N \N 102 53 576 4 6030 -820 \N 2012-09-06 15:30:52.771 \N \N 102 53 576 4 6031 -820 \N 2012-09-06 15:30:52.805 \N \N 102 53 576 4 6032 -820 \N 2012-09-06 15:30:59.405 \N \N 102 53 576 4 6033 -820 \N 2012-09-06 15:30:59.439 \N \N 102 53 576 4 6034 -820 \N 2012-09-06 15:33:48.515 \N \N 102 53 576 4 6035 -820 \N 2012-09-06 15:33:50.543 \N \N 102 53 576 4 6037 -820 \N 2012-09-06 15:33:50.554 \N \N 102 53 576 4 6038 -820 \N 2012-09-06 15:33:50.555 \N \N 102 53 576 4 6041 -820 \N 2012-09-06 15:33:50.77 \N \N 102 53 576 4 6043 -820 \N 2012-09-06 15:33:50.791 \N \N 102 53 576 4 6050 -820 \N 2012-09-06 15:33:51.178 \N \N 102 53 576 4 6054 -820 \N 2012-09-06 15:33:51.27 \N \N 102 53 576 4 6058 -820 \N 2012-09-06 15:33:51.427 \N \N 102 53 576 4 6062 -820 \N 2012-09-06 15:33:51.647 \N \N 102 53 576 4 6066 -820 \N 2012-09-06 15:33:51.846 \N \N 102 53 576 4 6071 -820 \N 2012-09-06 15:33:52.046 \N \N 102 53 576 4 6073 -820 \N 2012-09-06 15:33:52.094 \N \N 102 53 576 4 6078 -820 \N 2012-09-06 15:33:52.312 \N \N 102 53 576 4 6093 -820 \N 2012-09-06 15:33:52.924 \N \N 102 53 576 4 6099 -820 \N 2012-09-06 15:33:57.844 \N \N 102 53 576 4 6104 -820 \N 2012-09-06 15:33:58.081 \N \N 102 53 576 4 6109 -820 \N 2012-09-06 15:33:58.317 \N \N 102 53 576 4 6111 -820 \N 2012-09-06 15:33:58.537 \N \N 102 53 576 4 6114 -820 \N 2012-09-06 15:33:58.558 \N \N 102 53 576 4 6119 -820 \N 2012-09-06 15:33:58.78 \N \N 102 53 576 4 6124 -820 \N 2012-09-06 15:33:58.992 \N \N 102 53 576 4 6126 -820 \N 2012-09-06 15:33:59.162 \N \N 102 53 576 4 6133 -820 \N 2012-09-06 15:33:59.402 \N \N 102 53 576 4 6138 -820 \N 2012-09-06 15:33:59.616 \N \N 102 53 576 4 6144 -820 \N 2012-09-06 15:33:59.831 \N \N 102 53 576 4 6147 -820 \N 2012-09-06 15:34:00.049 \N \N 102 53 576 4 6040 -820 \N 2012-09-06 15:33:50.763 \N \N 102 53 576 4 6044 -820 \N 2012-09-06 15:33:50.867 \N \N 102 53 576 4 6045 -820 \N 2012-09-06 15:33:50.974 \N \N 102 53 576 4 6048 -820 \N 2012-09-06 15:33:51.007 \N \N 102 53 576 4 6051 -820 \N 2012-09-06 15:33:51.188 \N \N 102 53 576 4 6063 -820 \N 2012-09-06 15:33:51.685 \N \N 102 53 576 4 6065 -820 \N 2012-09-06 15:33:51.81 \N \N 102 53 576 4 6068 -820 \N 2012-09-06 15:33:51.896 \N \N 102 53 576 4 6069 -820 \N 2012-09-06 15:33:52.016 \N \N 102 53 576 4 6075 -820 \N 2012-09-06 15:33:52.238 \N \N 102 53 576 4 6079 -820 \N 2012-09-06 15:33:52.441 \N \N 102 53 576 4 6083 -820 \N 2012-09-06 15:33:52.53 \N \N 102 53 576 4 6085 -820 \N 2012-09-06 15:33:52.671 \N \N 102 53 576 4 6089 -820 \N 2012-09-06 15:33:52.859 \N \N 102 53 576 4 6094 -820 \N 2012-09-06 15:33:53.051 \N \N 102 53 576 4 6095 -820 \N 2012-09-06 15:33:54.248 \N \N 102 53 576 4 6096 -820 \N 2012-09-06 15:33:57.839 \N \N 102 53 576 4 6101 -820 \N 2012-09-06 15:33:58.077 \N \N 102 53 576 4 6106 -820 \N 2012-09-06 15:33:58.316 \N \N 102 53 576 4 6112 -820 \N 2012-09-06 15:33:58.546 \N \N 102 53 576 4 6129 -820 \N 2012-09-06 15:33:59.202 \N \N 102 53 576 4 6132 -820 \N 2012-09-06 15:33:59.4 \N \N 102 53 576 4 6136 -820 \N 2012-09-06 15:33:59.56 \N \N 102 53 576 4 6140 -820 \N 2012-09-06 15:33:59.723 \N \N 102 53 576 4 6148 -820 \N 2012-09-06 15:34:00.049 \N \N 102 53 576 4 6151 -820 \N 2012-09-06 15:34:00.179 \N \N 102 53 576 4 6152 -820 \N 2012-09-06 15:34:00.259 \N \N 102 53 576 4 6155 -820 \N 2012-09-06 15:34:00.331 \N \N 102 53 576 4 6156 -820 \N 2012-09-06 15:34:17.878 \N \N 102 53 576 4 6157 -820 \N 2012-09-06 15:34:17.913 \N \N 102 53 576 4 6158 -820 \N 2012-09-06 15:36:30.171 \N \N 102 53 576 4 6160 -820 \N 2012-09-06 15:36:54.837 \N \N 102 53 576 4 6166 -820 \N 2012-09-06 15:36:55.089 \N \N 102 53 576 4 6174 -820 \N 2012-09-06 15:36:55.469 \N \N 102 53 576 4 6175 -820 \N 2012-09-06 15:36:55.501 \N \N 102 53 576 4 6182 -820 \N 2012-09-06 15:36:55.74 \N \N 102 53 576 4 6186 -820 \N 2012-09-06 15:36:55.932 \N \N 102 53 576 4 6189 -820 \N 2012-09-06 15:36:56.063 \N \N 102 53 576 4 6190 -820 \N 2012-09-06 15:36:56.143 \N \N 102 53 576 4 6194 -820 \N 2012-09-06 15:36:56.272 \N \N 102 53 576 4 6196 -820 \N 2012-09-06 15:36:56.353 \N \N 102 53 576 4 6199 -820 \N 2012-09-06 15:36:56.459 \N \N 102 53 576 4 6200 -820 \N 2012-09-06 15:36:56.582 \N \N 102 53 576 4 6205 -820 \N 2012-09-06 15:36:56.799 \N \N 102 53 576 4 6214 -820 \N 2012-09-06 15:36:57.039 \N \N 102 53 576 4 6215 -820 \N 2012-09-06 15:36:57.239 \N \N 102 53 576 4 6042 -820 \N 2012-09-06 15:33:50.79 \N \N 102 53 576 4 6046 -820 \N 2012-09-06 15:33:50.98 \N \N 102 53 576 4 6047 -820 \N 2012-09-06 15:33:51.002 \N \N 102 53 576 4 6049 -820 \N 2012-09-06 15:33:51.056 \N \N 102 53 576 4 6052 -820 \N 2012-09-06 15:33:51.216 \N \N 102 53 576 4 6053 -820 \N 2012-09-06 15:33:51.239 \N \N 102 53 576 4 6055 -820 \N 2012-09-06 15:33:51.404 \N \N 102 53 576 4 6056 -820 \N 2012-09-06 15:33:51.406 \N \N 102 53 576 4 6064 -820 \N 2012-09-06 15:33:51.795 \N \N 102 53 576 4 6067 -820 \N 2012-09-06 15:33:51.849 \N \N 102 53 576 4 6072 -820 \N 2012-09-06 15:33:52.047 \N \N 102 53 576 4 6074 -820 \N 2012-09-06 15:33:52.227 \N \N 102 53 576 4 6076 -820 \N 2012-09-06 15:33:52.268 \N \N 102 53 576 4 6080 -820 \N 2012-09-06 15:33:52.47 \N \N 102 53 576 4 6082 -820 \N 2012-09-06 15:33:52.514 \N \N 102 53 576 4 6084 -820 \N 2012-09-06 15:33:52.648 \N \N 102 53 576 4 6086 -820 \N 2012-09-06 15:33:52.684 \N \N 102 53 576 4 6087 -820 \N 2012-09-06 15:33:52.706 \N \N 102 53 576 4 6088 -820 \N 2012-09-06 15:33:52.724 \N \N 102 53 576 4 6090 -820 \N 2012-09-06 15:33:52.884 \N \N 102 53 576 4 6092 -820 \N 2012-09-06 15:33:52.905 \N \N 102 53 576 4 6098 -820 \N 2012-09-06 15:33:57.844 \N \N 102 53 576 4 6100 -820 \N 2012-09-06 15:33:57.845 \N \N 102 53 576 4 6103 -820 \N 2012-09-06 15:33:58.081 \N \N 102 53 576 4 6105 -820 \N 2012-09-06 15:33:58.085 \N \N 102 53 576 4 6107 -820 \N 2012-09-06 15:33:58.316 \N \N 102 53 576 4 6110 -820 \N 2012-09-06 15:33:58.318 \N \N 102 53 576 4 6115 -820 \N 2012-09-06 15:33:58.559 \N \N 102 53 576 4 6118 -820 \N 2012-09-06 15:33:58.777 \N \N 102 53 576 4 6120 -820 \N 2012-09-06 15:33:58.783 \N \N 102 53 576 4 6123 -820 \N 2012-09-06 15:33:58.99 \N \N 102 53 576 4 6128 -820 \N 2012-09-06 15:33:59.202 \N \N 102 53 576 4 6131 -820 \N 2012-09-06 15:33:59.358 \N \N 102 53 576 4 6139 -820 \N 2012-09-06 15:33:59.616 \N \N 102 53 576 4 6141 -820 \N 2012-09-06 15:33:59.763 \N \N 102 53 576 4 6143 -820 \N 2012-09-06 15:33:59.826 \N \N 102 53 576 4 6150 -820 \N 2012-09-06 15:34:00.133 \N \N 102 53 576 4 6154 -820 \N 2012-09-06 15:34:00.271 \N \N 102 53 576 4 6161 -820 \N 2012-09-06 15:36:54.848 \N \N 102 53 576 4 6162 -820 \N 2012-09-06 15:36:54.851 \N \N 102 53 576 4 6163 -820 \N 2012-09-06 15:36:54.852 \N \N 102 53 576 4 6164 -820 \N 2012-09-06 15:36:55.043 \N \N 102 53 576 4 6167 -820 \N 2012-09-06 15:36:55.102 \N \N 102 53 576 4 6168 -820 \N 2012-09-06 15:36:55.116 \N \N 102 53 576 4 6169 -820 \N 2012-09-06 15:36:55.27 \N \N 102 53 576 4 6170 -820 \N 2012-09-06 15:36:55.27 \N \N 102 53 576 4 6171 -820 \N 2012-09-06 15:36:55.308 \N \N 102 53 576 4 6173 -820 \N 2012-09-06 15:36:55.331 \N \N 102 53 576 4 6177 -820 \N 2012-09-06 15:36:55.533 \N \N 102 53 576 4 6178 -820 \N 2012-09-06 15:36:55.534 \N \N 102 53 576 4 6179 -820 \N 2012-09-06 15:36:55.668 \N \N 102 53 576 4 6180 -820 \N 2012-09-06 15:36:55.718 \N \N 102 53 576 4 6181 -820 \N 2012-09-06 15:36:55.723 \N \N 102 53 576 4 6183 -820 \N 2012-09-06 15:36:55.746 \N \N 102 53 576 4 6184 -820 \N 2012-09-06 15:36:55.862 \N \N 102 53 576 4 6185 -820 \N 2012-09-06 15:36:55.922 \N \N 102 53 576 4 6188 -820 \N 2012-09-06 15:36:55.944 \N \N 102 53 576 4 6192 -820 \N 2012-09-06 15:36:56.149 \N \N 102 53 576 4 6193 -820 \N 2012-09-06 15:36:56.151 \N \N 102 53 576 4 6197 -820 \N 2012-09-06 15:36:56.354 \N \N 102 53 576 4 6198 -820 \N 2012-09-06 15:36:56.357 \N \N 102 53 576 4 6202 -820 \N 2012-09-06 15:36:56.588 \N \N 102 53 576 4 6203 -820 \N 2012-09-06 15:36:56.59 \N \N 102 53 576 4 6204 -820 \N 2012-09-06 15:36:56.664 \N \N 102 53 576 4 6207 -820 \N 2012-09-06 15:36:56.802 \N \N 102 53 576 4 6208 -820 \N 2012-09-06 15:36:56.804 \N \N 102 53 576 4 6209 -820 \N 2012-09-06 15:36:56.846 \N \N 102 53 576 4 6211 -820 \N 2012-09-06 15:36:57.021 \N \N 102 53 576 4 6212 -820 \N 2012-09-06 15:36:57.022 \N \N 102 53 576 4 6213 -820 \N 2012-09-06 15:36:57.026 \N \N 102 53 576 4 6217 -820 \N 2012-09-06 15:36:57.242 \N \N 102 53 576 4 6218 -820 \N 2012-09-06 15:36:57.245 \N \N 102 53 576 4 6219 -820 \N 2012-09-06 15:37:28.345 \N \N 102 53 576 4 6220 -820 \N 2012-09-06 15:37:34.623 \N \N 102 53 576 4 6221 -820 \N 2012-09-06 15:37:47.533 \N \N 0 0 561 2 6222 -820 \N 2012-09-06 15:37:56.936 \N \N 102 53 576 4 6223 -820 \N 2012-09-06 15:37:57.192 \N \N 0 0 561 9 6224 -820 \N 2012-09-06 15:37:57.222 \N \N 0 0 561 9 6225 -820 \N 2012-09-06 15:37:57.243 \N \N 0 0 561 9 6226 -820 \N 2012-09-06 15:37:57.466 \N \N 0 53 563 4 6227 -820 \N 2012-09-06 15:37:58.233 \N \N 102 53 578 4 6228 -820 \N 2012-09-06 15:37:58.274 \N \N 102 53 578 4 6229 -820 \N 2012-09-06 15:37:58.317 \N \N 102 53 578 4 6230 -820 \N 2012-09-06 15:37:58.34 \N \N 102 53 578 4 6231 -820 \N 2012-09-06 15:37:58.394 \N \N 102 53 576 4 6232 -820 \N 2012-09-06 15:37:58.415 \N \N 102 53 576 4 6233 -820 \N 2012-09-06 15:47:24.737 \N \N 0 0 561 9 6234 -820 \N 2012-09-06 15:47:24.854 \N \N 1 2 579 4 6235 -820 \N 2012-09-06 15:47:24.898 \N \N 0 0 561 9 6236 -820 \N 2012-09-06 15:47:24.949 \N \N 102 53 580 4 6237 -820 \N 2012-09-06 15:50:54.605 \N \N 0 0 561 9 6238 -820 \N 2012-09-06 15:50:54.725 \N \N 102 53 581 4 6239 -820 \N 2012-09-06 15:50:54.992 \N \N 102 53 581 4 6240 -820 \N 2012-09-06 15:51:29.844 \N \N 102 53 581 4 6241 -820 \N 2012-09-06 15:51:30.057 \N \N 102 53 581 4 6242 -820 \N 2012-09-06 15:51:30.625 \N \N 102 53 581 4 6243 -820 \N 2012-09-06 15:51:30.974 \N \N 102 53 581 4 6244 -820 \N 2012-09-06 15:51:32.541 \N \N 102 53 581 4 6245 -820 \N 2012-09-06 15:51:32.583 \N \N 102 53 581 4 6246 -820 \N 2012-09-06 15:51:33.808 \N \N 102 53 581 4 6247 -820 \N 2012-09-06 17:00:23.24 \N \N 0 0 561 9 6248 -820 \N 2012-09-06 17:00:23.342 \N \N 1 2 582 4 6249 -820 \N 2012-09-06 17:00:26.436 \N \N 0 0 561 9 6250 -820 \N 2012-09-06 17:00:26.505 \N \N 1 2 583 4 6251 -820 \N 2012-09-06 17:00:26.544 \N \N 0 0 561 9 6252 -820 \N 2012-09-06 17:00:26.606 \N \N 1 2 584 4 6253 -820 \N 2012-09-06 17:00:43.464 \N \N 0 0 561 9 6254 -820 \N 2012-09-06 17:00:43.531 \N \N 1 2 585 4 6255 -820 \N 2012-09-06 17:00:49.625 \N \N 0 0 561 9 6256 -820 \N 2012-09-06 17:00:49.695 \N \N 1 2 586 4 6257 -820 \N 2012-09-06 17:00:49.735 \N \N 0 0 561 9 6258 -820 \N 2012-09-06 17:00:49.809 \N \N 1 2 587 4 6259 -820 \N 2012-09-06 17:00:56.771 \N \N 0 0 561 9 6260 -820 \N 2012-09-06 17:00:56.838 \N \N 1 2 588 4 6261 -820 \N 2012-09-06 17:00:56.878 \N \N 0 0 561 9 6262 -820 \N 2012-09-06 17:00:56.926 \N \N 0 0 589 4 6263 -820 \N 2012-09-06 17:01:30.535 \N \N 0 0 589 4 6264 -820 \N 2012-09-06 17:01:31.507 \N \N 0 0 589 4 6265 -820 \N 2012-09-06 17:01:31.538 \N \N 0 0 589 4 6266 -820 \N 2012-09-06 17:01:46.924 \N \N 0 0 589 4 6267 -820 \N 2012-09-06 17:01:46.96 \N \N 0 0 589 4 6268 -820 \N 2012-09-06 17:01:46.981 \N \N 0 0 589 4 6269 -820 \N 2012-09-06 17:02:14.468 \N \N 0 0 589 4 6270 -820 \N 2012-09-06 17:02:14.502 \N \N 0 0 589 4 6271 -820 \N 2012-09-06 17:02:14.539 \N \N 0 0 589 4 6272 -820 \N 2012-09-06 17:02:40.625 \N \N 0 0 589 4 6273 -820 \N 2012-09-06 17:02:41.503 \N \N 0 0 589 4 6274 -820 \N 2012-09-06 17:02:41.527 \N \N 0 0 589 4 6275 -820 \N 2012-09-06 17:03:26.379 \N \N 0 0 589 4 6276 -820 \N 2012-09-06 17:03:26.416 \N \N 0 0 589 4 6277 -820 \N 2012-09-06 17:03:26.45 \N \N 0 0 589 4 6278 -820 \N 2012-09-06 17:03:26.477 \N \N 0 0 589 4 6279 -820 \N 2012-09-06 17:03:26.544 \N \N 0 0 589 4 6280 -820 \N 2012-09-06 17:03:26.586 \N \N 0 0 589 4 6281 -820 \N 2012-09-06 17:03:26.623 \N \N 0 0 589 4 6282 -820 \N 2012-09-06 17:03:26.661 \N \N 0 0 589 4 6283 -820 \N 2012-09-06 17:03:26.698 \N \N 0 0 589 4 6284 -820 \N 2012-09-06 17:03:26.738 \N \N 0 0 589 4 6285 -820 \N 2012-09-06 17:03:26.784 \N \N 0 0 589 4 6286 -820 \N 2012-09-06 17:04:34.699 \N \N 0 0 589 4 6287 -820 \N 2012-09-06 17:04:34.73 \N \N 0 0 589 4 6288 -820 \N 2012-09-06 17:04:34.759 \N \N 0 0 589 4 6289 -820 \N 2012-09-06 17:04:34.802 \N \N 0 0 589 4 6290 -820 \N 2012-09-06 17:04:34.877 \N \N 0 0 589 4 6291 -820 \N 2012-09-06 17:04:34.905 \N \N 0 0 589 4 6292 -820 \N 2012-09-06 17:04:34.937 \N \N 0 0 589 4 6293 -820 \N 2012-09-06 17:04:34.97 \N \N 0 0 589 4 6294 -820 \N 2012-09-06 17:04:57.644 \N \N 0 0 589 4 6295 -820 \N 2012-09-06 17:04:57.679 \N \N 0 0 589 4 6296 -820 \N 2012-09-06 17:04:57.708 \N \N 0 0 589 4 6297 -820 \N 2012-09-06 17:04:57.732 \N \N 0 0 589 4 6298 -820 \N 2012-09-06 17:04:57.823 \N \N 0 0 589 4 6299 -820 \N 2012-09-06 17:04:57.857 \N \N 0 0 589 4 6300 -820 \N 2012-09-06 17:04:57.892 \N \N 0 0 589 4 6301 -820 \N 2012-09-06 17:04:57.926 \N \N 0 0 589 4 6302 -820 \N 2012-09-06 17:04:57.96 \N \N 0 0 589 4 6303 -820 \N 2012-09-06 17:04:57.992 \N \N 0 0 589 4 6304 -820 \N 2012-09-06 17:04:58.025 \N \N 0 0 589 4 6305 -820 \N 2012-09-06 17:05:48.721 \N \N 0 0 589 4 6306 -820 \N 2012-09-06 17:06:34.638 \N \N 0 0 589 4 6307 -820 \N 2012-09-06 17:06:34.664 \N \N 0 0 589 4 6308 -820 \N 2012-09-06 17:06:34.783 \N \N 0 0 589 4 6309 -820 \N 2012-09-06 17:06:34.815 \N \N 0 0 589 4 6310 -820 \N 2012-09-06 17:07:19.765 \N \N 0 0 589 4 6311 -820 \N 2012-09-06 17:07:19.799 \N \N 0 0 589 4 6312 -820 \N 2012-09-06 17:08:59.527 \N \N 0 0 589 4 6313 -820 \N 2012-09-06 17:09:12.647 \N \N 0 0 589 4 6314 -820 \N 2012-09-06 17:09:13.772 \N \N 0 0 589 4 6315 -820 \N 2012-09-06 17:09:13.805 \N \N 0 0 589 4 6316 -820 \N 2012-09-06 17:09:51.523 \N \N 0 0 589 4 6317 -820 \N 2012-09-06 17:09:51.549 \N \N 0 0 589 4 6318 -820 \N 2012-09-06 17:09:51.664 \N \N 0 0 589 4 6319 -820 \N 2012-09-06 17:11:18.081 \N \N 0 0 589 4 6320 -820 \N 2012-09-06 17:11:22.737 \N \N 0 0 561 9 6321 -820 \N 2012-09-06 17:11:22.811 \N \N 1 2 590 4 6322 -820 \N 2012-09-06 17:11:22.85 \N \N 0 0 561 9 6323 -820 \N 2012-09-06 17:11:22.899 \N \N 2 53 591 4 6324 -820 \N 2012-09-06 17:11:25.013 \N \N 2 53 591 4 6325 -820 \N 2012-09-06 17:11:29.68 \N \N 2 53 591 4 6326 -820 \N 2012-09-06 17:11:32.217 \N \N 2 53 591 4 6327 -820 \N 2012-09-06 17:11:34.109 \N \N 2 53 591 4 6328 -820 \N 2012-09-06 17:11:37.971 \N \N 2 53 591 4 6329 -820 \N 2012-09-06 17:11:43.505 \N \N 2 53 591 4 6330 -820 \N 2012-09-06 17:11:45.83 \N \N 2 53 591 4 6331 -820 \N 2012-09-06 17:11:50.869 \N \N 2 53 591 4 6332 -820 \N 2012-09-06 17:11:56.668 \N \N 2 53 591 4 6333 -820 \N 2012-09-06 17:11:57.4 \N \N 2 53 591 4 6334 -820 \N 2012-09-06 17:11:59.009 \N \N 2 53 591 4 6335 -820 \N 2012-09-06 17:11:59.526 \N \N 2 53 591 4 6336 -820 \N 2012-09-06 17:12:01.986 \N \N 2 53 591 4 6337 -820 \N 2012-09-06 17:12:02.589 \N \N 2 53 591 4 6338 -820 \N 2012-09-06 17:12:04.857 \N \N 2 53 591 4 6339 -820 \N 2012-09-06 17:12:07.386 \N \N 2 53 591 4 6340 -820 \N 2012-09-06 17:12:11.116 \N \N 0 0 561 9 6341 -820 \N 2012-09-06 17:12:11.184 \N \N 1 2 592 4 6342 -820 \N 2012-09-06 17:12:11.224 \N \N 0 0 561 9 6343 -820 \N 2012-09-06 17:12:11.272 \N \N 102 53 593 4 6344 -820 \N 2012-09-06 17:12:16.328 \N \N 102 53 593 4 6345 -820 \N 2012-09-06 17:12:16.334 \N \N 102 53 593 4 6346 -820 \N 2012-09-06 17:12:16.338 \N \N 102 53 593 4 6347 -820 \N 2012-09-06 17:12:16.34 \N \N 102 53 593 4 6348 -820 \N 2012-09-06 17:12:16.341 \N \N 102 53 593 4 6349 -820 \N 2012-09-06 17:12:16.539 \N \N 102 53 593 4 6350 -820 \N 2012-09-06 17:12:16.558 \N \N 102 53 593 4 6351 -820 \N 2012-09-06 17:12:16.574 \N \N 102 53 593 4 6352 -820 \N 2012-09-06 17:12:16.576 \N \N 102 53 593 4 6353 -820 \N 2012-09-06 17:12:16.578 \N \N 102 53 593 4 6354 -820 \N 2012-09-06 17:12:16.752 \N \N 102 53 593 4 6355 -820 \N 2012-09-06 17:12:16.765 \N \N 102 53 593 4 6356 -820 \N 2012-09-06 17:12:16.785 \N \N 102 53 593 4 6357 -820 \N 2012-09-06 17:12:16.787 \N \N 102 53 593 4 6358 -820 \N 2012-09-06 17:12:16.79 \N \N 102 53 593 4 6359 -820 \N 2012-09-06 17:12:16.951 \N \N 102 53 593 4 6360 -820 \N 2012-09-06 17:12:16.966 \N \N 102 53 593 4 6361 -820 \N 2012-09-06 17:12:17.005 \N \N 102 53 593 4 6362 -820 \N 2012-09-06 17:12:17.006 \N \N 102 53 593 4 6363 -820 \N 2012-09-06 17:12:17.008 \N \N 102 53 593 4 6364 -820 \N 2012-09-06 17:12:17.17 \N \N 102 53 593 4 6365 -820 \N 2012-09-06 17:12:17.173 \N \N 102 53 593 4 6366 -820 \N 2012-09-06 17:12:17.224 \N \N 102 53 593 4 6367 -820 \N 2012-09-06 17:12:17.226 \N \N 102 53 593 4 6368 -820 \N 2012-09-06 17:12:17.227 \N \N 102 53 593 4 6369 -820 \N 2012-09-06 17:12:17.372 \N \N 102 53 593 4 6370 -820 \N 2012-09-06 17:12:17.387 \N \N 102 53 593 4 6371 -820 \N 2012-09-06 17:12:17.446 \N \N 102 53 593 4 6372 -820 \N 2012-09-06 17:12:17.447 \N \N 102 53 593 4 6373 -820 \N 2012-09-06 17:12:17.453 \N \N 102 53 593 4 6374 -820 \N 2012-09-06 17:12:17.575 \N \N 102 53 593 4 6375 -820 \N 2012-09-06 17:12:17.593 \N \N 102 53 593 4 6376 -820 \N 2012-09-06 17:12:17.65 \N \N 102 53 593 4 6377 -820 \N 2012-09-06 17:12:17.65 \N \N 102 53 593 4 6378 -820 \N 2012-09-06 17:12:17.661 \N \N 102 53 593 4 6379 -820 \N 2012-09-06 17:12:17.773 \N \N 102 53 593 4 6380 -820 \N 2012-09-06 17:12:17.791 \N \N 102 53 593 4 6381 -820 \N 2012-09-06 17:12:17.823 \N \N 102 53 593 4 6382 -820 \N 2012-09-06 17:12:17.845 \N \N 102 53 593 4 6383 -820 \N 2012-09-06 17:12:17.845 \N \N 102 53 593 4 6384 -820 \N 2012-09-06 17:12:17.956 \N \N 102 53 593 4 6385 -820 \N 2012-09-06 17:12:17.985 \N \N 102 53 593 4 6386 -820 \N 2012-09-06 17:12:17.991 \N \N 102 53 593 4 6387 -820 \N 2012-09-06 17:12:18.027 \N \N 102 53 593 4 6388 -820 \N 2012-09-06 17:12:18.031 \N \N 102 53 593 4 6389 -820 \N 2012-09-06 17:12:18.159 \N \N 102 53 593 4 6390 -820 \N 2012-09-06 17:12:18.162 \N \N 102 53 593 4 6391 -820 \N 2012-09-06 17:12:18.163 \N \N 102 53 593 4 6392 -820 \N 2012-09-06 17:12:18.211 \N \N 102 53 593 4 6393 -820 \N 2012-09-06 17:12:18.221 \N \N 102 53 593 4 6394 -820 \N 2012-09-06 17:12:18.347 \N \N 102 53 593 4 6395 -820 \N 2012-09-06 17:12:18.355 \N \N 102 53 593 4 6396 -820 \N 2012-09-06 17:12:18.356 \N \N 102 53 593 4 6397 -820 \N 2012-09-06 17:12:18.405 \N \N 102 53 593 4 6398 -820 \N 2012-09-06 17:12:18.477 \N \N 102 53 593 4 6399 -820 \N 2012-09-06 17:12:18.561 \N \N 102 53 593 4 6400 -820 \N 2012-09-06 17:12:18.565 \N \N 102 53 593 4 6401 -820 \N 2012-09-06 17:12:18.578 \N \N 102 53 593 4 6402 -820 \N 2012-09-06 17:12:18.598 \N \N 102 53 593 4 6403 -820 \N 2012-09-06 17:12:18.665 \N \N 102 53 593 4 6404 -820 \N 2012-09-06 17:12:29.249 \N \N 0 0 561 9 6405 -820 \N 2012-09-06 17:12:29.324 \N \N 1 2 594 4 6406 -820 \N 2012-09-06 17:12:29.364 \N \N 0 0 561 9 6407 -820 \N 2012-09-06 17:12:29.411 \N \N 52 0 595 4 6408 -820 \N 2012-09-06 17:13:21.302 \N \N 52 0 595 4 6409 -820 \N 2012-09-06 17:13:56.228 \N \N 52 0 595 4 6410 -820 \N 2012-09-06 17:14:15.737 \N \N 52 0 595 4 6411 -820 \N 2012-09-06 17:14:15.768 \N \N 52 0 595 4 6412 -820 \N 2012-09-06 17:14:15.801 \N \N 52 0 595 4 6413 -820 \N 2012-09-06 17:14:15.825 \N \N 52 0 595 4 6414 -820 \N 2012-09-06 17:14:15.926 \N \N 52 0 595 4 6415 -820 \N 2012-09-06 17:14:19.936 \N \N 52 0 595 4 6416 -820 \N 2012-09-06 17:14:19.969 \N \N 52 0 595 4 6417 -820 \N 2012-09-06 17:14:20.001 \N \N 52 0 595 4 6418 -820 \N 2012-09-06 17:14:20.027 \N \N 52 0 595 4 6419 -820 \N 2012-09-06 17:14:39.867 \N \N 52 0 595 4 6420 -820 \N 2012-09-06 17:14:44.638 \N \N 0 0 561 9 6421 -820 \N 2012-09-06 17:14:44.704 \N \N 1 2 596 4 6422 -820 \N 2012-09-06 17:14:44.744 \N \N 0 0 561 9 6423 -820 \N 2012-09-06 17:14:44.796 \N \N 2 53 597 4 6424 -820 \N 2012-09-06 17:14:45.95 \N \N 2 53 597 4 6425 -820 \N 2012-09-06 17:14:55.287 \N \N 2 53 597 4 6426 -820 \N 2012-09-07 08:22:39.503 \N \N 0 0 561 9 6427 -820 \N 2012-09-07 08:22:39.604 \N \N 1 2 598 4 6428 -820 \N 2012-09-07 08:22:39.647 \N \N 0 0 561 9 6429 -820 \N 2012-09-07 08:22:39.694 \N \N 102 53 599 4 6430 -820 \N 2012-09-07 08:23:20.977 \N \N 102 53 599 4 6431 -820 \N 2012-09-07 08:23:20.989 \N \N 102 55 599 4 6432 -820 \N 2012-09-07 08:23:21.094 \N \N 102 55 599 4 6435 -820 \N 2012-09-07 08:32:13.622 \N \N 102 53 599 4 6436 -820 \N 2012-09-07 10:57:15.301 \N \N 0 0 561 9 6437 -820 \N 2012-09-07 10:57:15.401 \N \N 1 2 600 4 6438 -820 \N 2012-09-07 10:57:15.444 \N \N 0 0 561 9 6439 -820 \N 2012-09-07 10:57:15.492 \N \N 102 53 601 4 6441 -820 \N 2012-09-07 10:57:58.475 \N \N 0 0 561 2 6451 -820 \N 2012-09-07 10:58:25.089 \N \N 0 0 714 2 6452 -820 \N 2012-09-07 10:58:26.28 \N \N 0 0 714 2 6453 -820 \N 2012-09-07 10:58:26.305 \N \N 0 0 714 2 6454 -820 \N 2012-09-07 10:58:26.324 \N \N 0 0 714 2 6455 -820 \N 2012-09-07 10:58:26.568 \N \N 0 0 714 2 6456 -820 \N 2012-09-07 10:58:26.712 \N \N 0 0 714 2 6457 -820 \N 2012-09-07 10:58:26.719 \N \N 0 0 714 2 6458 -820 \N 2012-09-07 10:58:29.21 \N \N 0 0 714 9 6459 -820 \N 2012-09-07 10:58:29.368 \N \N 0 53 715 4 6460 -820 \N 2012-09-07 10:58:36.214 \N \N 0 0 714 9 6461 -820 \N 2012-09-07 10:58:37.165 \N \N 0 0 714 9 6462 -820 \N 2012-09-07 10:58:37.589 \N \N 1 2 717 4 6463 -820 \N 2012-09-07 10:58:37.659 \N \N 0 0 714 9 6464 -820 \N 2012-09-07 10:58:37.78 \N \N 102 53 718 4 6466 -820 \N 2012-09-07 12:15:02.979 \N \N 0 0 714 9 6467 -820 \N 2012-09-07 12:15:03.142 \N \N 1 2 719 4 6468 -820 \N 2012-09-07 12:15:03.197 \N \N 0 0 714 9 6469 -820 \N 2012-09-07 12:15:03.277 \N \N 52 54 720 4 6470 -820 \N 2012-09-07 12:18:03.467 \N \N 0 0 714 9 6471 -820 \N 2012-09-07 12:18:03.577 \N \N 1 2 721 4 6472 -820 \N 2012-09-07 12:18:03.628 \N \N 0 0 714 9 6473 -820 \N 2012-09-07 12:18:03.704 \N \N 102 53 722 4 6474 -820 \N 2012-09-07 12:18:33.425 \N \N 102 53 722 4 6475 -820 \N 2012-09-07 12:18:33.427 \N \N 102 53 722 4 6476 -820 \N 2012-09-07 12:18:33.427 \N \N 102 53 722 4 6477 -820 \N 2012-09-07 12:18:33.428 \N \N 102 53 722 4 6478 -820 \N 2012-09-07 12:18:33.428 \N \N 102 53 722 4 6481 -820 \N 2012-09-07 12:18:34.823 \N \N 102 53 722 4 6480 -820 \N 2012-09-07 12:18:34.823 \N \N 102 53 722 4 6479 -820 \N 2012-09-07 12:18:34.823 \N \N 102 53 722 4 6482 -820 \N 2012-09-07 12:18:34.823 \N \N 102 53 722 4 6483 -820 \N 2012-09-07 12:18:34.823 \N \N 102 53 722 4 6484 -820 \N 2012-09-07 12:18:35.116 \N \N 102 53 722 4 6485 -820 \N 2012-09-07 12:18:35.116 \N \N 102 53 722 4 6486 -820 \N 2012-09-07 12:18:35.117 \N \N 102 53 722 4 6487 -820 \N 2012-09-07 12:18:35.117 \N \N 102 53 722 4 6488 -820 \N 2012-09-07 12:18:35.119 \N \N 102 53 722 4 6489 -820 \N 2012-09-07 12:18:35.387 \N \N 102 53 722 4 6490 -820 \N 2012-09-07 12:18:35.434 \N \N 102 53 722 4 6491 -820 \N 2012-09-07 12:18:35.434 \N \N 102 53 722 4 6492 -820 \N 2012-09-07 12:18:35.434 \N \N 102 53 722 4 6493 -820 \N 2012-09-07 12:18:35.437 \N \N 102 53 722 4 6494 -820 \N 2012-09-07 12:18:35.639 \N \N 102 53 722 4 6495 -820 \N 2012-09-07 12:18:35.69 \N \N 102 53 722 4 6496 -820 \N 2012-09-07 12:18:35.697 \N \N 102 53 722 4 6497 -820 \N 2012-09-07 12:18:35.711 \N \N 102 53 722 4 6498 -820 \N 2012-09-07 12:18:35.712 \N \N 102 53 722 4 6499 -820 \N 2012-09-07 12:18:35.877 \N \N 102 53 722 4 6500 -820 \N 2012-09-07 12:18:35.93 \N \N 102 53 722 4 6501 -820 \N 2012-09-07 12:18:35.964 \N \N 102 53 722 4 6502 -820 \N 2012-09-07 12:18:35.966 \N \N 102 53 722 4 6503 -820 \N 2012-09-07 12:18:35.967 \N \N 102 53 722 4 6504 -820 \N 2012-09-07 12:18:36.098 \N \N 102 53 722 4 6505 -820 \N 2012-09-07 12:18:36.15 \N \N 102 53 722 4 6506 -820 \N 2012-09-07 12:18:36.19 \N \N 102 53 722 4 6507 -820 \N 2012-09-07 12:18:36.191 \N \N 102 53 722 4 6508 -820 \N 2012-09-07 12:18:36.198 \N \N 102 53 722 4 6509 -820 \N 2012-09-07 12:18:36.333 \N \N 102 53 722 4 6511 -820 \N 2012-09-07 12:18:36.426 \N \N 102 53 722 4 6514 -820 \N 2012-09-07 12:18:36.571 \N \N 102 53 722 4 6517 -820 \N 2012-09-07 12:18:36.663 \N \N 102 53 722 4 6522 -820 \N 2012-09-07 12:18:36.905 \N \N 102 53 722 4 6525 -820 \N 2012-09-07 12:18:37.071 \N \N 102 53 722 4 6526 -820 \N 2012-09-07 12:18:37.157 \N \N 102 53 722 4 6510 -820 \N 2012-09-07 12:18:36.378 \N \N 102 53 722 4 6518 -820 \N 2012-09-07 12:18:36.663 \N \N 102 53 722 4 6527 -820 \N 2012-09-07 12:18:37.157 \N \N 102 53 722 4 6532 -820 \N 2012-09-07 12:18:37.415 \N \N 102 53 722 4 6512 -820 \N 2012-09-07 12:18:36.426 \N \N 102 53 722 4 6516 -820 \N 2012-09-07 12:18:36.66 \N \N 102 53 722 4 6519 -820 \N 2012-09-07 12:18:36.801 \N \N 102 53 722 4 6521 -820 \N 2012-09-07 12:18:36.904 \N \N 102 53 722 4 6524 -820 \N 2012-09-07 12:18:37.035 \N \N 102 53 722 4 6531 -820 \N 2012-09-07 12:18:37.415 \N \N 102 53 722 4 6513 -820 \N 2012-09-07 12:18:36.431 \N \N 102 53 722 4 6515 -820 \N 2012-09-07 12:18:36.595 \N \N 102 53 722 4 6520 -820 \N 2012-09-07 12:18:36.835 \N \N 102 53 722 4 6523 -820 \N 2012-09-07 12:18:36.914 \N \N 102 53 722 4 6528 -820 \N 2012-09-07 12:18:37.157 \N \N 102 53 722 4 6529 -820 \N 2012-09-07 12:18:37.262 \N \N 102 53 722 4 6533 -820 \N 2012-09-07 12:18:37.417 \N \N 102 53 722 4 6534 -820 \N 2012-09-07 12:18:37.459 \N \N 102 53 722 4 \. -- -- Data for Name: eventlog; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY eventlog (id, action, permissions, entityid, entitytype, external_id, event) FROM stdin; 1 INSERT -35 1 ome.model.meta.Namespace \N 1 2 INSERT -35 1 ome.model.meta.Node \N 2 3 INSERT -35 1 ome.model.core.OriginalFile \N 3 4 INSERT -35 2 ome.model.core.OriginalFile \N 3 5 INSERT -35 3 ome.model.core.OriginalFile \N 3 6 INSERT -35 4 ome.model.core.OriginalFile \N 3 7 INSERT -35 5 ome.model.core.OriginalFile \N 3 8 INSERT -35 6 ome.model.core.OriginalFile \N 3 9 INSERT -35 7 ome.model.core.OriginalFile \N 3 10 INSERT -35 8 ome.model.core.OriginalFile \N 3 11 INSERT -35 9 ome.model.core.OriginalFile \N 3 12 INSERT -35 10 ome.model.core.OriginalFile \N 3 13 INSERT -35 11 ome.model.core.OriginalFile \N 3 14 INSERT -35 12 ome.model.core.OriginalFile \N 3 15 INSERT -35 13 ome.model.core.OriginalFile \N 3 16 INSERT -35 14 ome.model.core.OriginalFile \N 4 17 UPDATE -35 14 ome.model.core.OriginalFile \N 4 18 INSERT -35 15 ome.model.core.OriginalFile \N 5 19 UPDATE -35 15 ome.model.core.OriginalFile \N 5 20 INSERT -35 3 ome.model.meta.Session \N 6 21 INSERT -35 4 ome.model.meta.Session \N 8 22 INSERT -35 5 ome.model.meta.Session \N 9 23 INSERT -35 6 ome.model.meta.Session \N 11 24 INSERT -35 7 ome.model.meta.Session \N 13 25 INSERT -35 8 ome.model.meta.Session \N 15 26 INSERT -35 9 ome.model.meta.Session \N 17 27 INSERT -35 10 ome.model.meta.Session \N 19 28 INSERT -35 11 ome.model.meta.Session \N 21 29 INSERT -35 12 ome.model.meta.Session \N 23 30 INSERT -35 13 ome.model.meta.Session \N 25 31 INSERT -35 14 ome.model.meta.Session \N 27 32 INSERT -35 15 ome.model.meta.Session \N 29 33 INSERT -35 16 ome.model.meta.Session \N 31 34 INSERT -35 17 ome.model.meta.Session \N 33 35 INSERT -35 18 ome.model.meta.Session \N 35 36 INSERT -35 19 ome.model.meta.Session \N 37 37 INSERT -35 20 ome.model.meta.Session \N 39 38 INSERT -35 21 ome.model.meta.Session \N 41 39 INSERT -35 22 ome.model.meta.Session \N 43 40 INSERT -35 23 ome.model.meta.Session \N 45 41 INSERT -35 24 ome.model.meta.Session \N 47 42 INSERT -35 25 ome.model.meta.Session \N 49 43 INSERT -35 26 ome.model.meta.Session \N 51 44 INSERT -35 27 ome.model.meta.Session \N 53 45 INSERT -35 28 ome.model.meta.Session \N 55 46 INSERT -35 29 ome.model.meta.Session \N 57 47 INSERT -35 30 ome.model.meta.Session \N 59 48 INSERT -35 31 ome.model.meta.Session \N 61 49 INSERT -35 32 ome.model.meta.Session \N 63 50 INSERT -35 33 ome.model.meta.Session \N 65 51 INSERT -35 34 ome.model.meta.Session \N 67 52 INSERT -35 35 ome.model.meta.Session \N 69 53 INSERT -35 36 ome.model.meta.Session \N 71 54 INSERT -35 37 ome.model.meta.Session \N 73 55 INSERT -35 38 ome.model.meta.Session \N 75 56 INSERT -35 39 ome.model.meta.Session \N 77 57 INSERT -35 40 ome.model.meta.Session \N 79 58 INSERT -35 41 ome.model.meta.Session \N 81 59 INSERT -35 42 ome.model.meta.Session \N 83 60 INSERT -35 43 ome.model.meta.Session \N 85 61 INSERT -35 44 ome.model.meta.Session \N 88 62 INSERT -35 45 ome.model.meta.Session \N 90 63 INSERT -35 46 ome.model.meta.Session \N 92 64 INSERT -35 47 ome.model.meta.Session \N 94 65 INSERT -35 3 ome.model.meta.GroupExperimenterMap \N 97 66 UPDATE -35 3 ome.model.meta.GroupExperimenterMap \N 97 67 INSERT -35 2 ome.model.meta.Experimenter \N 98 68 INSERT -35 4 ome.model.meta.GroupExperimenterMap \N 98 69 INSERT -35 5 ome.model.meta.GroupExperimenterMap \N 98 70 INSERT -35 3 ome.model.meta.Experimenter \N 99 71 INSERT -35 6 ome.model.meta.GroupExperimenterMap \N 99 72 INSERT -35 7 ome.model.meta.GroupExperimenterMap \N 99 73 INSERT -35 4 ome.model.meta.Experimenter \N 100 74 INSERT -35 8 ome.model.meta.GroupExperimenterMap \N 100 75 INSERT -35 9 ome.model.meta.GroupExperimenterMap \N 100 76 INSERT -35 48 ome.model.meta.Session \N 101 77 INSERT -35 49 ome.model.meta.Session \N 103 78 INSERT -35 50 ome.model.meta.Session \N 105 79 INSERT -35 51 ome.model.meta.Session \N 107 80 INSERT -35 52 ome.model.meta.Session \N 109 81 INSERT -35 155 ome.model.meta.Session \N 112 82 INSERT -35 156 ome.model.meta.Session \N 115 83 INSERT -35 157 ome.model.meta.Session \N 119 84 INSERT -35 158 ome.model.meta.Session \N 121 85 INSERT -35 159 ome.model.meta.Session \N 123 86 INSERT -35 160 ome.model.meta.Session \N 125 87 INSERT -35 161 ome.model.meta.Session \N 127 88 INSERT -35 1 ome.model.containers.Project \N 131 89 INSERT -35 1 ome.model.containers.Dataset \N 132 90 INSERT -35 1 ome.model.containers.ProjectDatasetLink \N 132 91 INSERT -35 2 ome.model.containers.Dataset \N 133 92 INSERT -35 2 ome.model.containers.ProjectDatasetLink \N 133 93 INSERT -35 1 ome.model.acquisition.Microscope \N 139 94 INSERT -35 1 ome.model.acquisition.Instrument \N 139 95 INSERT -35 1 ome.model.acquisition.Detector \N 139 96 INSERT -35 2 ome.model.acquisition.Detector \N 139 97 INSERT -35 3 ome.model.acquisition.Detector \N 139 98 INSERT -35 1 ome.model.acquisition.TransmittanceRange \N 139 99 INSERT -35 1 ome.model.acquisition.Filter \N 139 100 INSERT -35 2 ome.model.acquisition.TransmittanceRange \N 139 101 INSERT -35 2 ome.model.acquisition.Filter \N 139 102 INSERT -35 3 ome.model.acquisition.TransmittanceRange \N 139 103 INSERT -35 3 ome.model.acquisition.Filter \N 139 104 INSERT -35 1 ome.model.acquisition.Laser \N 139 105 INSERT -35 2 ome.model.acquisition.Laser \N 139 106 INSERT -35 3 ome.model.acquisition.Laser \N 139 107 INSERT -35 4 ome.model.acquisition.Laser \N 139 108 INSERT -35 5 ome.model.acquisition.Laser \N 139 109 INSERT -35 6 ome.model.acquisition.Laser \N 139 110 INSERT -35 1 ome.model.acquisition.Objective \N 139 111 INSERT -35 1 ome.model.acquisition.ObjectiveSettings \N 139 112 INSERT -35 1 ome.model.core.Image \N 139 113 INSERT -35 16 ome.model.core.OriginalFile \N 139 114 INSERT -35 1 ome.model.annotations.FileAnnotation \N 139 115 INSERT -35 1 ome.model.annotations.ImageAnnotationLink \N 139 116 INSERT -35 1 ome.model.containers.DatasetImageLink \N 139 117 INSERT -35 1 ome.model.core.Pixels \N 139 118 INSERT -35 1 ome.model.acquisition.DetectorSettings \N 139 119 INSERT -35 1 ome.model.acquisition.LightPath \N 139 120 INSERT -35 1 ome.model.acquisition.LightPathEmissionFilterLink \N 139 121 INSERT -35 1 ome.model.acquisition.LightSettings \N 139 122 INSERT -35 1 ome.model.core.LogicalChannel \N 139 123 INSERT -35 1 ome.model.core.Channel \N 139 124 INSERT -35 2 ome.model.acquisition.DetectorSettings \N 139 125 INSERT -35 2 ome.model.acquisition.LightPath \N 139 126 INSERT -35 2 ome.model.acquisition.LightPathEmissionFilterLink \N 139 127 INSERT -35 2 ome.model.acquisition.LightSettings \N 139 128 INSERT -35 2 ome.model.core.LogicalChannel \N 139 129 INSERT -35 2 ome.model.core.Channel \N 139 130 INSERT -35 3 ome.model.acquisition.DetectorSettings \N 139 131 INSERT -35 3 ome.model.acquisition.LightSettings \N 139 132 INSERT -35 3 ome.model.core.LogicalChannel \N 139 133 INSERT -35 3 ome.model.core.Channel \N 139 134 INSERT -35 1 ome.model.core.PlaneInfo \N 139 135 INSERT -35 2 ome.model.core.PlaneInfo \N 139 136 INSERT -35 3 ome.model.core.PlaneInfo \N 139 137 INSERT -35 4 ome.model.core.PlaneInfo \N 139 138 INSERT -35 5 ome.model.core.PlaneInfo \N 139 139 INSERT -35 6 ome.model.core.PlaneInfo \N 139 140 INSERT -35 7 ome.model.core.PlaneInfo \N 139 141 INSERT -35 8 ome.model.core.PlaneInfo \N 139 142 INSERT -35 9 ome.model.core.PlaneInfo \N 139 143 INSERT -35 10 ome.model.core.PlaneInfo \N 139 144 INSERT -35 11 ome.model.core.PlaneInfo \N 139 145 INSERT -35 12 ome.model.core.PlaneInfo \N 139 146 INSERT -35 13 ome.model.core.PlaneInfo \N 139 147 INSERT -35 14 ome.model.core.PlaneInfo \N 139 148 INSERT -35 15 ome.model.core.PlaneInfo \N 139 149 INSERT -35 16 ome.model.core.PlaneInfo \N 139 150 INSERT -35 17 ome.model.core.PlaneInfo \N 139 151 INSERT -35 18 ome.model.core.PlaneInfo \N 139 152 INSERT -35 19 ome.model.core.PlaneInfo \N 139 153 INSERT -35 20 ome.model.core.PlaneInfo \N 139 154 INSERT -35 21 ome.model.core.PlaneInfo \N 139 155 INSERT -35 22 ome.model.core.PlaneInfo \N 139 156 INSERT -35 23 ome.model.core.PlaneInfo \N 139 157 INSERT -35 24 ome.model.core.PlaneInfo \N 139 158 INSERT -35 25 ome.model.core.PlaneInfo \N 139 159 INSERT -35 26 ome.model.core.PlaneInfo \N 139 160 INSERT -35 27 ome.model.core.PlaneInfo \N 139 161 INSERT -35 28 ome.model.core.PlaneInfo \N 139 162 INSERT -35 29 ome.model.core.PlaneInfo \N 139 163 INSERT -35 30 ome.model.core.PlaneInfo \N 139 164 INSERT -35 31 ome.model.core.PlaneInfo \N 139 165 INSERT -35 32 ome.model.core.PlaneInfo \N 139 166 INSERT -35 33 ome.model.core.PlaneInfo \N 139 167 INSERT -35 34 ome.model.core.PlaneInfo \N 139 168 INSERT -35 35 ome.model.core.PlaneInfo \N 139 169 INSERT -35 36 ome.model.core.PlaneInfo \N 139 170 INSERT -35 37 ome.model.core.PlaneInfo \N 139 171 INSERT -35 38 ome.model.core.PlaneInfo \N 139 172 INSERT -35 39 ome.model.core.PlaneInfo \N 139 173 INSERT -35 40 ome.model.core.PlaneInfo \N 139 174 INSERT -35 41 ome.model.core.PlaneInfo \N 139 175 INSERT -35 42 ome.model.core.PlaneInfo \N 139 176 INSERT -35 43 ome.model.core.PlaneInfo \N 139 177 INSERT -35 44 ome.model.core.PlaneInfo \N 139 178 INSERT -35 45 ome.model.core.PlaneInfo \N 139 179 INSERT -35 46 ome.model.core.PlaneInfo \N 139 180 INSERT -35 47 ome.model.core.PlaneInfo \N 139 181 INSERT -35 48 ome.model.core.PlaneInfo \N 139 182 INSERT -35 49 ome.model.core.PlaneInfo \N 139 183 INSERT -35 50 ome.model.core.PlaneInfo \N 139 184 INSERT -35 51 ome.model.core.PlaneInfo \N 139 185 INSERT -35 52 ome.model.core.PlaneInfo \N 139 186 INSERT -35 53 ome.model.core.PlaneInfo \N 139 187 INSERT -35 54 ome.model.core.PlaneInfo \N 139 188 INSERT -35 55 ome.model.core.PlaneInfo \N 139 189 INSERT -35 56 ome.model.core.PlaneInfo \N 139 190 INSERT -35 57 ome.model.core.PlaneInfo \N 139 191 INSERT -35 58 ome.model.core.PlaneInfo \N 139 192 INSERT -35 59 ome.model.core.PlaneInfo \N 139 193 INSERT -35 60 ome.model.core.PlaneInfo \N 139 194 INSERT -35 61 ome.model.core.PlaneInfo \N 139 195 INSERT -35 62 ome.model.core.PlaneInfo \N 139 196 INSERT -35 63 ome.model.core.PlaneInfo \N 139 197 INSERT -35 64 ome.model.core.PlaneInfo \N 139 198 INSERT -35 65 ome.model.core.PlaneInfo \N 139 199 INSERT -35 66 ome.model.core.PlaneInfo \N 139 200 INSERT -35 67 ome.model.core.PlaneInfo \N 139 201 INSERT -35 68 ome.model.core.PlaneInfo \N 139 202 INSERT -35 69 ome.model.core.PlaneInfo \N 139 203 INSERT -35 70 ome.model.core.PlaneInfo \N 139 204 INSERT -35 71 ome.model.core.PlaneInfo \N 139 205 INSERT -35 72 ome.model.core.PlaneInfo \N 139 206 INSERT -35 73 ome.model.core.PlaneInfo \N 139 207 INSERT -35 74 ome.model.core.PlaneInfo \N 139 208 INSERT -35 75 ome.model.core.PlaneInfo \N 139 209 INSERT -35 76 ome.model.core.PlaneInfo \N 139 210 INSERT -35 77 ome.model.core.PlaneInfo \N 139 211 INSERT -35 78 ome.model.core.PlaneInfo \N 139 212 INSERT -35 79 ome.model.core.PlaneInfo \N 139 213 INSERT -35 80 ome.model.core.PlaneInfo \N 139 214 INSERT -35 81 ome.model.core.PlaneInfo \N 139 215 INSERT -35 82 ome.model.core.PlaneInfo \N 139 216 INSERT -35 83 ome.model.core.PlaneInfo \N 139 217 INSERT -35 84 ome.model.core.PlaneInfo \N 139 218 INSERT -35 85 ome.model.core.PlaneInfo \N 139 219 INSERT -35 86 ome.model.core.PlaneInfo \N 139 220 INSERT -35 87 ome.model.core.PlaneInfo \N 139 221 INSERT -35 88 ome.model.core.PlaneInfo \N 139 222 INSERT -35 89 ome.model.core.PlaneInfo \N 139 223 INSERT -35 90 ome.model.core.PlaneInfo \N 139 224 INSERT -35 91 ome.model.core.PlaneInfo \N 139 225 INSERT -35 92 ome.model.core.PlaneInfo \N 139 226 INSERT -35 93 ome.model.core.PlaneInfo \N 139 227 INSERT -35 94 ome.model.core.PlaneInfo \N 139 228 INSERT -35 95 ome.model.core.PlaneInfo \N 139 229 INSERT -35 96 ome.model.core.PlaneInfo \N 139 230 INSERT -35 97 ome.model.core.PlaneInfo \N 139 231 INSERT -35 98 ome.model.core.PlaneInfo \N 139 232 INSERT -35 99 ome.model.core.PlaneInfo \N 139 233 INSERT -35 2 ome.model.acquisition.Microscope \N 139 234 INSERT -35 2 ome.model.acquisition.Instrument \N 139 235 INSERT -35 4 ome.model.acquisition.Detector \N 139 236 INSERT -35 5 ome.model.acquisition.Detector \N 139 237 INSERT -35 6 ome.model.acquisition.Detector \N 139 238 INSERT -35 4 ome.model.acquisition.TransmittanceRange \N 139 239 INSERT -35 4 ome.model.acquisition.Filter \N 139 240 INSERT -35 5 ome.model.acquisition.TransmittanceRange \N 139 241 INSERT -35 5 ome.model.acquisition.Filter \N 139 242 INSERT -35 6 ome.model.acquisition.TransmittanceRange \N 139 243 INSERT -35 6 ome.model.acquisition.Filter \N 139 244 INSERT -35 7 ome.model.acquisition.Laser \N 139 245 INSERT -35 8 ome.model.acquisition.Laser \N 139 246 INSERT -35 9 ome.model.acquisition.Laser \N 139 247 INSERT -35 10 ome.model.acquisition.Laser \N 139 248 INSERT -35 11 ome.model.acquisition.Laser \N 139 249 INSERT -35 12 ome.model.acquisition.Laser \N 139 250 INSERT -35 2 ome.model.acquisition.Objective \N 139 251 INSERT -35 2 ome.model.acquisition.ObjectiveSettings \N 139 252 INSERT -35 2 ome.model.core.Image \N 139 253 INSERT -35 17 ome.model.core.OriginalFile \N 139 254 INSERT -35 2 ome.model.annotations.FileAnnotation \N 139 255 INSERT -35 2 ome.model.annotations.ImageAnnotationLink \N 139 256 INSERT -35 2 ome.model.containers.DatasetImageLink \N 139 257 INSERT -35 2 ome.model.core.Pixels \N 139 258 INSERT -35 4 ome.model.acquisition.DetectorSettings \N 139 259 INSERT -35 3 ome.model.acquisition.LightPath \N 139 260 INSERT -35 3 ome.model.acquisition.LightPathEmissionFilterLink \N 139 261 INSERT -35 4 ome.model.acquisition.LightSettings \N 139 262 INSERT -35 4 ome.model.core.LogicalChannel \N 139 263 INSERT -35 4 ome.model.core.Channel \N 139 264 INSERT -35 5 ome.model.acquisition.DetectorSettings \N 139 265 INSERT -35 4 ome.model.acquisition.LightPath \N 139 266 INSERT -35 4 ome.model.acquisition.LightPathEmissionFilterLink \N 139 267 INSERT -35 5 ome.model.acquisition.LightSettings \N 139 268 INSERT -35 5 ome.model.core.LogicalChannel \N 139 269 INSERT -35 5 ome.model.core.Channel \N 139 270 INSERT -35 6 ome.model.acquisition.DetectorSettings \N 139 271 INSERT -35 6 ome.model.acquisition.LightSettings \N 139 272 INSERT -35 6 ome.model.core.LogicalChannel \N 139 273 INSERT -35 6 ome.model.core.Channel \N 139 274 INSERT -35 100 ome.model.core.PlaneInfo \N 139 275 INSERT -35 101 ome.model.core.PlaneInfo \N 139 276 INSERT -35 102 ome.model.core.PlaneInfo \N 139 277 INSERT -35 3 ome.model.acquisition.Microscope \N 139 278 INSERT -35 3 ome.model.acquisition.Instrument \N 139 279 INSERT -35 7 ome.model.acquisition.Detector \N 139 280 INSERT -35 8 ome.model.acquisition.Detector \N 139 281 INSERT -35 9 ome.model.acquisition.Detector \N 139 282 INSERT -35 7 ome.model.acquisition.TransmittanceRange \N 139 283 INSERT -35 7 ome.model.acquisition.Filter \N 139 284 INSERT -35 8 ome.model.acquisition.TransmittanceRange \N 139 285 INSERT -35 8 ome.model.acquisition.Filter \N 139 286 INSERT -35 9 ome.model.acquisition.TransmittanceRange \N 139 287 INSERT -35 9 ome.model.acquisition.Filter \N 139 288 INSERT -35 13 ome.model.acquisition.Laser \N 139 289 INSERT -35 14 ome.model.acquisition.Laser \N 139 290 INSERT -35 15 ome.model.acquisition.Laser \N 139 291 INSERT -35 16 ome.model.acquisition.Laser \N 139 292 INSERT -35 17 ome.model.acquisition.Laser \N 139 293 INSERT -35 18 ome.model.acquisition.Laser \N 139 294 INSERT -35 3 ome.model.acquisition.Objective \N 139 295 INSERT -35 3 ome.model.acquisition.ObjectiveSettings \N 139 296 INSERT -35 3 ome.model.core.Image \N 139 297 INSERT -35 18 ome.model.core.OriginalFile \N 139 298 INSERT -35 3 ome.model.annotations.FileAnnotation \N 139 299 INSERT -35 3 ome.model.annotations.ImageAnnotationLink \N 139 300 INSERT -35 3 ome.model.containers.DatasetImageLink \N 139 301 INSERT -35 3 ome.model.core.Pixels \N 139 302 INSERT -35 7 ome.model.acquisition.DetectorSettings \N 139 303 INSERT -35 5 ome.model.acquisition.LightPath \N 139 304 INSERT -35 5 ome.model.acquisition.LightPathEmissionFilterLink \N 139 305 INSERT -35 7 ome.model.acquisition.LightSettings \N 139 306 INSERT -35 7 ome.model.core.LogicalChannel \N 139 307 INSERT -35 7 ome.model.core.Channel \N 139 308 INSERT -35 8 ome.model.acquisition.DetectorSettings \N 139 309 INSERT -35 6 ome.model.acquisition.LightPath \N 139 310 INSERT -35 6 ome.model.acquisition.LightPathEmissionFilterLink \N 139 311 INSERT -35 8 ome.model.acquisition.LightSettings \N 139 312 INSERT -35 8 ome.model.core.LogicalChannel \N 139 313 INSERT -35 8 ome.model.core.Channel \N 139 314 INSERT -35 9 ome.model.acquisition.DetectorSettings \N 139 315 INSERT -35 9 ome.model.acquisition.LightSettings \N 139 316 INSERT -35 9 ome.model.core.LogicalChannel \N 139 317 INSERT -35 9 ome.model.core.Channel \N 139 318 INSERT -35 103 ome.model.core.PlaneInfo \N 139 319 INSERT -35 104 ome.model.core.PlaneInfo \N 139 320 INSERT -35 105 ome.model.core.PlaneInfo \N 139 321 INSERT -35 106 ome.model.core.PlaneInfo \N 139 322 INSERT -35 107 ome.model.core.PlaneInfo \N 139 323 INSERT -35 108 ome.model.core.PlaneInfo \N 139 324 INSERT -35 109 ome.model.core.PlaneInfo \N 139 325 INSERT -35 110 ome.model.core.PlaneInfo \N 139 326 INSERT -35 111 ome.model.core.PlaneInfo \N 139 327 INSERT -35 112 ome.model.core.PlaneInfo \N 139 328 INSERT -35 113 ome.model.core.PlaneInfo \N 139 329 INSERT -35 114 ome.model.core.PlaneInfo \N 139 330 INSERT -35 115 ome.model.core.PlaneInfo \N 139 331 INSERT -35 116 ome.model.core.PlaneInfo \N 139 332 INSERT -35 117 ome.model.core.PlaneInfo \N 139 333 INSERT -35 118 ome.model.core.PlaneInfo \N 139 334 INSERT -35 119 ome.model.core.PlaneInfo \N 139 335 INSERT -35 120 ome.model.core.PlaneInfo \N 139 336 INSERT -35 121 ome.model.core.PlaneInfo \N 139 337 INSERT -35 122 ome.model.core.PlaneInfo \N 139 338 INSERT -35 123 ome.model.core.PlaneInfo \N 139 339 INSERT -35 124 ome.model.core.PlaneInfo \N 139 340 INSERT -35 125 ome.model.core.PlaneInfo \N 139 341 INSERT -35 126 ome.model.core.PlaneInfo \N 139 342 INSERT -35 127 ome.model.core.PlaneInfo \N 139 343 INSERT -35 128 ome.model.core.PlaneInfo \N 139 344 INSERT -35 129 ome.model.core.PlaneInfo \N 139 345 INSERT -35 130 ome.model.core.PlaneInfo \N 139 346 INSERT -35 131 ome.model.core.PlaneInfo \N 139 347 INSERT -35 132 ome.model.core.PlaneInfo \N 139 348 INSERT -35 133 ome.model.core.PlaneInfo \N 139 349 INSERT -35 134 ome.model.core.PlaneInfo \N 139 350 INSERT -35 135 ome.model.core.PlaneInfo \N 139 351 INSERT -35 136 ome.model.core.PlaneInfo \N 139 352 INSERT -35 137 ome.model.core.PlaneInfo \N 139 353 INSERT -35 138 ome.model.core.PlaneInfo \N 139 354 INSERT -35 139 ome.model.core.PlaneInfo \N 139 355 INSERT -35 140 ome.model.core.PlaneInfo \N 139 356 INSERT -35 141 ome.model.core.PlaneInfo \N 139 357 INSERT -35 142 ome.model.core.PlaneInfo \N 139 358 INSERT -35 143 ome.model.core.PlaneInfo \N 139 359 INSERT -35 144 ome.model.core.PlaneInfo \N 139 360 INSERT -35 145 ome.model.core.PlaneInfo \N 139 361 INSERT -35 146 ome.model.core.PlaneInfo \N 139 362 INSERT -35 147 ome.model.core.PlaneInfo \N 139 363 INSERT -35 148 ome.model.core.PlaneInfo \N 139 364 INSERT -35 149 ome.model.core.PlaneInfo \N 139 365 INSERT -35 150 ome.model.core.PlaneInfo \N 139 366 INSERT -35 151 ome.model.core.PlaneInfo \N 139 367 INSERT -35 152 ome.model.core.PlaneInfo \N 139 368 INSERT -35 153 ome.model.core.PlaneInfo \N 139 369 INSERT -35 154 ome.model.core.PlaneInfo \N 139 370 INSERT -35 155 ome.model.core.PlaneInfo \N 139 371 INSERT -35 156 ome.model.core.PlaneInfo \N 139 372 INSERT -35 157 ome.model.core.PlaneInfo \N 139 373 INSERT -35 158 ome.model.core.PlaneInfo \N 139 374 INSERT -35 159 ome.model.core.PlaneInfo \N 139 375 INSERT -35 160 ome.model.core.PlaneInfo \N 139 376 INSERT -35 161 ome.model.core.PlaneInfo \N 139 377 INSERT -35 162 ome.model.core.PlaneInfo \N 139 378 INSERT -35 163 ome.model.core.PlaneInfo \N 139 379 INSERT -35 164 ome.model.core.PlaneInfo \N 139 380 INSERT -35 165 ome.model.core.PlaneInfo \N 139 381 INSERT -35 166 ome.model.core.PlaneInfo \N 139 382 INSERT -35 167 ome.model.core.PlaneInfo \N 139 383 INSERT -35 168 ome.model.core.PlaneInfo \N 139 384 INSERT -35 169 ome.model.core.PlaneInfo \N 139 385 INSERT -35 170 ome.model.core.PlaneInfo \N 139 386 INSERT -35 171 ome.model.core.PlaneInfo \N 139 387 INSERT -35 172 ome.model.core.PlaneInfo \N 139 388 INSERT -35 173 ome.model.core.PlaneInfo \N 139 389 INSERT -35 174 ome.model.core.PlaneInfo \N 139 390 INSERT -35 175 ome.model.core.PlaneInfo \N 139 391 INSERT -35 176 ome.model.core.PlaneInfo \N 139 392 INSERT -35 177 ome.model.core.PlaneInfo \N 139 393 INSERT -35 178 ome.model.core.PlaneInfo \N 139 394 INSERT -35 179 ome.model.core.PlaneInfo \N 139 395 INSERT -35 180 ome.model.core.PlaneInfo \N 139 396 INSERT -35 181 ome.model.core.PlaneInfo \N 139 397 INSERT -35 182 ome.model.core.PlaneInfo \N 139 398 INSERT -35 183 ome.model.core.PlaneInfo \N 139 399 INSERT -35 184 ome.model.core.PlaneInfo \N 139 400 INSERT -35 185 ome.model.core.PlaneInfo \N 139 401 INSERT -35 186 ome.model.core.PlaneInfo \N 139 402 INSERT -35 187 ome.model.core.PlaneInfo \N 139 403 INSERT -35 188 ome.model.core.PlaneInfo \N 139 404 INSERT -35 189 ome.model.core.PlaneInfo \N 139 405 INSERT -35 190 ome.model.core.PlaneInfo \N 139 406 INSERT -35 191 ome.model.core.PlaneInfo \N 139 407 INSERT -35 192 ome.model.core.PlaneInfo \N 139 408 INSERT -35 193 ome.model.core.PlaneInfo \N 139 409 INSERT -35 194 ome.model.core.PlaneInfo \N 139 410 INSERT -35 195 ome.model.core.PlaneInfo \N 139 411 INSERT -35 4 ome.model.acquisition.Microscope \N 139 412 INSERT -35 4 ome.model.acquisition.Instrument \N 139 413 INSERT -35 10 ome.model.acquisition.Detector \N 139 414 INSERT -35 11 ome.model.acquisition.Detector \N 139 415 INSERT -35 12 ome.model.acquisition.Detector \N 139 416 INSERT -35 10 ome.model.acquisition.TransmittanceRange \N 139 417 INSERT -35 10 ome.model.acquisition.Filter \N 139 418 INSERT -35 11 ome.model.acquisition.TransmittanceRange \N 139 419 INSERT -35 11 ome.model.acquisition.Filter \N 139 420 INSERT -35 12 ome.model.acquisition.TransmittanceRange \N 139 421 INSERT -35 12 ome.model.acquisition.Filter \N 139 422 INSERT -35 19 ome.model.acquisition.Laser \N 139 423 INSERT -35 20 ome.model.acquisition.Laser \N 139 424 INSERT -35 21 ome.model.acquisition.Laser \N 139 425 INSERT -35 22 ome.model.acquisition.Laser \N 139 426 INSERT -35 23 ome.model.acquisition.Laser \N 139 427 INSERT -35 24 ome.model.acquisition.Laser \N 139 428 INSERT -35 4 ome.model.acquisition.Objective \N 139 429 INSERT -35 4 ome.model.acquisition.ObjectiveSettings \N 139 430 INSERT -35 4 ome.model.core.Image \N 139 431 INSERT -35 19 ome.model.core.OriginalFile \N 139 432 INSERT -35 4 ome.model.annotations.FileAnnotation \N 139 433 INSERT -35 4 ome.model.annotations.ImageAnnotationLink \N 139 434 INSERT -35 4 ome.model.containers.DatasetImageLink \N 139 435 INSERT -35 4 ome.model.core.Pixels \N 139 436 INSERT -35 10 ome.model.acquisition.DetectorSettings \N 139 437 INSERT -35 7 ome.model.acquisition.LightPath \N 139 438 INSERT -35 7 ome.model.acquisition.LightPathEmissionFilterLink \N 139 439 INSERT -35 10 ome.model.acquisition.LightSettings \N 139 440 INSERT -35 10 ome.model.core.LogicalChannel \N 139 441 INSERT -35 10 ome.model.core.Channel \N 139 442 INSERT -35 11 ome.model.acquisition.DetectorSettings \N 139 443 INSERT -35 8 ome.model.acquisition.LightPath \N 139 444 INSERT -35 8 ome.model.acquisition.LightPathEmissionFilterLink \N 139 445 INSERT -35 11 ome.model.core.LogicalChannel \N 139 446 INSERT -35 11 ome.model.core.Channel \N 139 447 INSERT -35 12 ome.model.acquisition.DetectorSettings \N 139 448 INSERT -35 12 ome.model.core.LogicalChannel \N 139 449 INSERT -35 12 ome.model.core.Channel \N 139 450 INSERT -35 196 ome.model.core.PlaneInfo \N 139 451 INSERT -35 197 ome.model.core.PlaneInfo \N 139 452 INSERT -35 198 ome.model.core.PlaneInfo \N 139 453 INSERT -35 199 ome.model.core.PlaneInfo \N 139 454 INSERT -35 200 ome.model.core.PlaneInfo \N 139 455 INSERT -35 201 ome.model.core.PlaneInfo \N 139 456 INSERT -35 202 ome.model.core.PlaneInfo \N 139 457 INSERT -35 203 ome.model.core.PlaneInfo \N 139 458 INSERT -35 204 ome.model.core.PlaneInfo \N 139 459 INSERT -35 205 ome.model.core.PlaneInfo \N 139 460 INSERT -35 206 ome.model.core.PlaneInfo \N 139 461 INSERT -35 207 ome.model.core.PlaneInfo \N 139 462 INSERT -35 208 ome.model.core.PlaneInfo \N 139 463 INSERT -35 209 ome.model.core.PlaneInfo \N 139 464 INSERT -35 210 ome.model.core.PlaneInfo \N 139 465 INSERT -35 211 ome.model.core.PlaneInfo \N 139 466 INSERT -35 212 ome.model.core.PlaneInfo \N 139 467 INSERT -35 213 ome.model.core.PlaneInfo \N 139 468 INSERT -35 214 ome.model.core.PlaneInfo \N 139 469 INSERT -35 215 ome.model.core.PlaneInfo \N 139 470 INSERT -35 216 ome.model.core.PlaneInfo \N 139 471 INSERT -35 217 ome.model.core.PlaneInfo \N 139 472 INSERT -35 218 ome.model.core.PlaneInfo \N 139 473 INSERT -35 219 ome.model.core.PlaneInfo \N 139 474 INSERT -35 220 ome.model.core.PlaneInfo \N 139 475 INSERT -35 221 ome.model.core.PlaneInfo \N 139 476 INSERT -35 222 ome.model.core.PlaneInfo \N 139 477 INSERT -35 223 ome.model.core.PlaneInfo \N 139 478 INSERT -35 224 ome.model.core.PlaneInfo \N 139 479 INSERT -35 225 ome.model.core.PlaneInfo \N 139 480 INSERT -35 226 ome.model.core.PlaneInfo \N 139 481 INSERT -35 227 ome.model.core.PlaneInfo \N 139 482 INSERT -35 228 ome.model.core.PlaneInfo \N 139 483 INSERT -35 229 ome.model.core.PlaneInfo \N 139 484 INSERT -35 230 ome.model.core.PlaneInfo \N 139 485 INSERT -35 231 ome.model.core.PlaneInfo \N 139 486 INSERT -35 232 ome.model.core.PlaneInfo \N 139 487 INSERT -35 233 ome.model.core.PlaneInfo \N 139 488 INSERT -35 234 ome.model.core.PlaneInfo \N 139 489 INSERT -35 235 ome.model.core.PlaneInfo \N 139 490 INSERT -35 236 ome.model.core.PlaneInfo \N 139 491 INSERT -35 237 ome.model.core.PlaneInfo \N 139 492 INSERT -35 238 ome.model.core.PlaneInfo \N 139 493 INSERT -35 239 ome.model.core.PlaneInfo \N 139 494 INSERT -35 240 ome.model.core.PlaneInfo \N 139 495 INSERT -35 241 ome.model.core.PlaneInfo \N 139 496 INSERT -35 242 ome.model.core.PlaneInfo \N 139 497 INSERT -35 243 ome.model.core.PlaneInfo \N 139 498 INSERT -35 244 ome.model.core.PlaneInfo \N 139 499 INSERT -35 245 ome.model.core.PlaneInfo \N 139 500 INSERT -35 246 ome.model.core.PlaneInfo \N 139 501 INSERT -35 247 ome.model.core.PlaneInfo \N 139 502 INSERT -35 248 ome.model.core.PlaneInfo \N 139 503 INSERT -35 249 ome.model.core.PlaneInfo \N 139 504 INSERT -35 250 ome.model.core.PlaneInfo \N 139 505 INSERT -35 251 ome.model.core.PlaneInfo \N 139 506 INSERT -35 252 ome.model.core.PlaneInfo \N 139 507 INSERT -35 253 ome.model.core.PlaneInfo \N 139 508 INSERT -35 254 ome.model.core.PlaneInfo \N 139 509 INSERT -35 255 ome.model.core.PlaneInfo \N 139 510 INSERT -35 256 ome.model.core.PlaneInfo \N 139 511 INSERT -35 257 ome.model.core.PlaneInfo \N 139 512 INSERT -35 258 ome.model.core.PlaneInfo \N 139 513 INSERT -35 259 ome.model.core.PlaneInfo \N 139 514 INSERT -35 260 ome.model.core.PlaneInfo \N 139 515 INSERT -35 261 ome.model.core.PlaneInfo \N 139 516 INSERT -35 262 ome.model.core.PlaneInfo \N 139 517 INSERT -35 263 ome.model.core.PlaneInfo \N 139 518 INSERT -35 264 ome.model.core.PlaneInfo \N 139 519 INSERT -35 265 ome.model.core.PlaneInfo \N 139 520 INSERT -35 266 ome.model.core.PlaneInfo \N 139 521 INSERT -35 267 ome.model.core.PlaneInfo \N 139 522 INSERT -35 268 ome.model.core.PlaneInfo \N 139 523 INSERT -35 269 ome.model.core.PlaneInfo \N 139 524 INSERT -35 270 ome.model.core.PlaneInfo \N 139 525 INSERT -35 271 ome.model.core.PlaneInfo \N 139 526 INSERT -35 272 ome.model.core.PlaneInfo \N 139 527 INSERT -35 273 ome.model.core.PlaneInfo \N 139 528 INSERT -35 274 ome.model.core.PlaneInfo \N 139 529 INSERT -35 275 ome.model.core.PlaneInfo \N 139 530 INSERT -35 276 ome.model.core.PlaneInfo \N 139 531 INSERT -35 277 ome.model.core.PlaneInfo \N 139 532 INSERT -35 278 ome.model.core.PlaneInfo \N 139 533 INSERT -35 279 ome.model.core.PlaneInfo \N 139 534 INSERT -35 5 ome.model.acquisition.Microscope \N 139 535 INSERT -35 5 ome.model.acquisition.Instrument \N 139 536 INSERT -35 13 ome.model.acquisition.Detector \N 139 537 INSERT -35 14 ome.model.acquisition.Detector \N 139 538 INSERT -35 15 ome.model.acquisition.Detector \N 139 539 INSERT -35 13 ome.model.acquisition.TransmittanceRange \N 139 540 INSERT -35 13 ome.model.acquisition.Filter \N 139 541 INSERT -35 14 ome.model.acquisition.TransmittanceRange \N 139 542 INSERT -35 14 ome.model.acquisition.Filter \N 139 543 INSERT -35 15 ome.model.acquisition.TransmittanceRange \N 139 544 INSERT -35 15 ome.model.acquisition.Filter \N 139 545 INSERT -35 25 ome.model.acquisition.Laser \N 139 546 INSERT -35 26 ome.model.acquisition.Laser \N 139 547 INSERT -35 27 ome.model.acquisition.Laser \N 139 548 INSERT -35 28 ome.model.acquisition.Laser \N 139 549 INSERT -35 29 ome.model.acquisition.Laser \N 139 550 INSERT -35 30 ome.model.acquisition.Laser \N 139 551 INSERT -35 5 ome.model.acquisition.Objective \N 139 552 INSERT -35 5 ome.model.acquisition.ObjectiveSettings \N 139 553 INSERT -35 5 ome.model.core.Image \N 139 554 INSERT -35 20 ome.model.core.OriginalFile \N 139 555 INSERT -35 5 ome.model.annotations.FileAnnotation \N 139 556 INSERT -35 5 ome.model.annotations.ImageAnnotationLink \N 139 557 INSERT -35 5 ome.model.containers.DatasetImageLink \N 139 558 INSERT -35 5 ome.model.core.Pixels \N 139 559 INSERT -35 13 ome.model.acquisition.DetectorSettings \N 139 560 INSERT -35 9 ome.model.acquisition.LightPath \N 139 561 INSERT -35 9 ome.model.acquisition.LightPathEmissionFilterLink \N 139 562 INSERT -35 11 ome.model.acquisition.LightSettings \N 139 563 INSERT -35 13 ome.model.core.LogicalChannel \N 139 564 INSERT -35 13 ome.model.core.Channel \N 139 565 INSERT -35 14 ome.model.acquisition.DetectorSettings \N 139 566 INSERT -35 10 ome.model.acquisition.LightPath \N 139 567 INSERT -35 10 ome.model.acquisition.LightPathEmissionFilterLink \N 139 568 INSERT -35 12 ome.model.acquisition.LightSettings \N 139 569 INSERT -35 14 ome.model.core.LogicalChannel \N 139 570 INSERT -35 14 ome.model.core.Channel \N 139 571 INSERT -35 15 ome.model.acquisition.DetectorSettings \N 139 572 INSERT -35 15 ome.model.core.LogicalChannel \N 139 573 INSERT -35 15 ome.model.core.Channel \N 139 574 INSERT -35 280 ome.model.core.PlaneInfo \N 139 575 INSERT -35 281 ome.model.core.PlaneInfo \N 139 576 INSERT -35 282 ome.model.core.PlaneInfo \N 139 577 INSERT -35 283 ome.model.core.PlaneInfo \N 139 578 INSERT -35 284 ome.model.core.PlaneInfo \N 139 579 INSERT -35 285 ome.model.core.PlaneInfo \N 139 580 INSERT -35 286 ome.model.core.PlaneInfo \N 139 581 INSERT -35 287 ome.model.core.PlaneInfo \N 139 582 INSERT -35 288 ome.model.core.PlaneInfo \N 139 583 INSERT -35 289 ome.model.core.PlaneInfo \N 139 584 INSERT -35 290 ome.model.core.PlaneInfo \N 139 585 INSERT -35 291 ome.model.core.PlaneInfo \N 139 586 INSERT -35 292 ome.model.core.PlaneInfo \N 139 587 INSERT -35 293 ome.model.core.PlaneInfo \N 139 588 INSERT -35 294 ome.model.core.PlaneInfo \N 139 589 INSERT -35 295 ome.model.core.PlaneInfo \N 139 590 INSERT -35 296 ome.model.core.PlaneInfo \N 139 591 INSERT -35 297 ome.model.core.PlaneInfo \N 139 592 INSERT -35 298 ome.model.core.PlaneInfo \N 139 593 INSERT -35 299 ome.model.core.PlaneInfo \N 139 594 INSERT -35 300 ome.model.core.PlaneInfo \N 139 595 INSERT -35 301 ome.model.core.PlaneInfo \N 139 596 INSERT -35 302 ome.model.core.PlaneInfo \N 139 597 INSERT -35 303 ome.model.core.PlaneInfo \N 139 598 INSERT -35 304 ome.model.core.PlaneInfo \N 139 599 INSERT -35 305 ome.model.core.PlaneInfo \N 139 600 INSERT -35 306 ome.model.core.PlaneInfo \N 139 601 INSERT -35 307 ome.model.core.PlaneInfo \N 139 602 INSERT -35 308 ome.model.core.PlaneInfo \N 139 603 INSERT -35 309 ome.model.core.PlaneInfo \N 139 604 INSERT -35 310 ome.model.core.PlaneInfo \N 139 605 INSERT -35 311 ome.model.core.PlaneInfo \N 139 606 INSERT -35 312 ome.model.core.PlaneInfo \N 139 607 INSERT -35 313 ome.model.core.PlaneInfo \N 139 608 INSERT -35 314 ome.model.core.PlaneInfo \N 139 609 INSERT -35 315 ome.model.core.PlaneInfo \N 139 610 INSERT -35 316 ome.model.core.PlaneInfo \N 139 611 INSERT -35 317 ome.model.core.PlaneInfo \N 139 612 INSERT -35 318 ome.model.core.PlaneInfo \N 139 613 INSERT -35 319 ome.model.core.PlaneInfo \N 139 614 INSERT -35 320 ome.model.core.PlaneInfo \N 139 615 INSERT -35 321 ome.model.core.PlaneInfo \N 139 616 INSERT -35 322 ome.model.core.PlaneInfo \N 139 617 INSERT -35 323 ome.model.core.PlaneInfo \N 139 618 INSERT -35 324 ome.model.core.PlaneInfo \N 139 619 INSERT -35 325 ome.model.core.PlaneInfo \N 139 620 INSERT -35 326 ome.model.core.PlaneInfo \N 139 621 INSERT -35 327 ome.model.core.PlaneInfo \N 139 622 INSERT -35 328 ome.model.core.PlaneInfo \N 139 623 INSERT -35 329 ome.model.core.PlaneInfo \N 139 624 INSERT -35 330 ome.model.core.PlaneInfo \N 139 625 INSERT -35 331 ome.model.core.PlaneInfo \N 139 626 INSERT -35 332 ome.model.core.PlaneInfo \N 139 627 INSERT -35 333 ome.model.core.PlaneInfo \N 139 628 INSERT -35 334 ome.model.core.PlaneInfo \N 139 629 INSERT -35 335 ome.model.core.PlaneInfo \N 139 630 INSERT -35 336 ome.model.core.PlaneInfo \N 139 631 INSERT -35 337 ome.model.core.PlaneInfo \N 139 632 INSERT -35 338 ome.model.core.PlaneInfo \N 139 633 INSERT -35 339 ome.model.core.PlaneInfo \N 139 634 INSERT -35 340 ome.model.core.PlaneInfo \N 139 635 INSERT -35 341 ome.model.core.PlaneInfo \N 139 636 INSERT -35 342 ome.model.core.PlaneInfo \N 139 637 INSERT -35 343 ome.model.core.PlaneInfo \N 139 638 INSERT -35 344 ome.model.core.PlaneInfo \N 139 639 INSERT -35 345 ome.model.core.PlaneInfo \N 139 640 INSERT -35 346 ome.model.core.PlaneInfo \N 139 641 INSERT -35 347 ome.model.core.PlaneInfo \N 139 642 INSERT -35 348 ome.model.core.PlaneInfo \N 139 643 INSERT -35 349 ome.model.core.PlaneInfo \N 139 644 INSERT -35 350 ome.model.core.PlaneInfo \N 139 645 INSERT -35 351 ome.model.core.PlaneInfo \N 139 646 INSERT -35 6 ome.model.acquisition.Microscope \N 139 647 INSERT -35 6 ome.model.acquisition.Instrument \N 139 648 INSERT -35 16 ome.model.acquisition.Detector \N 139 649 INSERT -35 17 ome.model.acquisition.Detector \N 139 650 INSERT -35 16 ome.model.acquisition.TransmittanceRange \N 139 651 INSERT -35 16 ome.model.acquisition.Filter \N 139 652 INSERT -35 17 ome.model.acquisition.TransmittanceRange \N 139 653 INSERT -35 17 ome.model.acquisition.Filter \N 139 654 INSERT -35 18 ome.model.acquisition.TransmittanceRange \N 139 655 INSERT -35 18 ome.model.acquisition.Filter \N 139 656 INSERT -35 31 ome.model.acquisition.Laser \N 139 657 INSERT -35 32 ome.model.acquisition.Laser \N 139 658 INSERT -35 33 ome.model.acquisition.Laser \N 139 659 INSERT -35 34 ome.model.acquisition.Laser \N 139 660 INSERT -35 35 ome.model.acquisition.Laser \N 139 661 INSERT -35 36 ome.model.acquisition.Laser \N 139 662 INSERT -35 6 ome.model.acquisition.Objective \N 139 663 INSERT -35 6 ome.model.acquisition.ObjectiveSettings \N 139 664 INSERT -35 6 ome.model.core.Image \N 139 665 INSERT -35 21 ome.model.core.OriginalFile \N 139 666 INSERT -35 6 ome.model.annotations.FileAnnotation \N 139 667 INSERT -35 6 ome.model.annotations.ImageAnnotationLink \N 139 668 INSERT -35 6 ome.model.containers.DatasetImageLink \N 139 669 INSERT -35 6 ome.model.core.Pixels \N 139 670 INSERT -35 16 ome.model.acquisition.DetectorSettings \N 139 671 INSERT -35 11 ome.model.acquisition.LightPath \N 139 672 INSERT -35 11 ome.model.acquisition.LightPathEmissionFilterLink \N 139 673 INSERT -35 13 ome.model.acquisition.LightSettings \N 139 674 INSERT -35 16 ome.model.core.LogicalChannel \N 139 675 INSERT -35 16 ome.model.core.Channel \N 139 676 INSERT -35 17 ome.model.acquisition.DetectorSettings \N 139 677 INSERT -35 12 ome.model.acquisition.LightPath \N 139 678 INSERT -35 12 ome.model.acquisition.LightPathEmissionFilterLink \N 139 679 INSERT -35 14 ome.model.acquisition.LightSettings \N 139 680 INSERT -35 17 ome.model.core.LogicalChannel \N 139 681 INSERT -35 17 ome.model.core.Channel \N 139 682 INSERT -35 352 ome.model.core.PlaneInfo \N 139 683 INSERT -35 353 ome.model.core.PlaneInfo \N 139 684 INSERT -35 354 ome.model.core.PlaneInfo \N 139 685 INSERT -35 355 ome.model.core.PlaneInfo \N 139 686 INSERT -35 356 ome.model.core.PlaneInfo \N 139 687 INSERT -35 357 ome.model.core.PlaneInfo \N 139 688 INSERT -35 358 ome.model.core.PlaneInfo \N 139 689 INSERT -35 359 ome.model.core.PlaneInfo \N 139 690 INSERT -35 360 ome.model.core.PlaneInfo \N 139 691 INSERT -35 361 ome.model.core.PlaneInfo \N 139 692 INSERT -35 362 ome.model.core.PlaneInfo \N 139 693 INSERT -35 363 ome.model.core.PlaneInfo \N 139 694 INSERT -35 364 ome.model.core.PlaneInfo \N 139 695 INSERT -35 365 ome.model.core.PlaneInfo \N 139 696 INSERT -35 366 ome.model.core.PlaneInfo \N 139 697 INSERT -35 367 ome.model.core.PlaneInfo \N 139 698 INSERT -35 368 ome.model.core.PlaneInfo \N 139 699 INSERT -35 369 ome.model.core.PlaneInfo \N 139 700 INSERT -35 370 ome.model.core.PlaneInfo \N 139 701 INSERT -35 371 ome.model.core.PlaneInfo \N 139 702 INSERT -35 372 ome.model.core.PlaneInfo \N 139 703 INSERT -35 373 ome.model.core.PlaneInfo \N 139 704 INSERT -35 374 ome.model.core.PlaneInfo \N 139 705 INSERT -35 375 ome.model.core.PlaneInfo \N 139 706 INSERT -35 376 ome.model.core.PlaneInfo \N 139 707 INSERT -35 377 ome.model.core.PlaneInfo \N 139 708 INSERT -35 378 ome.model.core.PlaneInfo \N 139 709 INSERT -35 379 ome.model.core.PlaneInfo \N 139 710 INSERT -35 380 ome.model.core.PlaneInfo \N 139 711 INSERT -35 381 ome.model.core.PlaneInfo \N 139 712 INSERT -35 382 ome.model.core.PlaneInfo \N 139 713 INSERT -35 383 ome.model.core.PlaneInfo \N 139 714 INSERT -35 384 ome.model.core.PlaneInfo \N 139 715 INSERT -35 385 ome.model.core.PlaneInfo \N 139 716 INSERT -35 386 ome.model.core.PlaneInfo \N 139 717 INSERT -35 387 ome.model.core.PlaneInfo \N 139 718 INSERT -35 388 ome.model.core.PlaneInfo \N 139 719 INSERT -35 389 ome.model.core.PlaneInfo \N 139 720 INSERT -35 390 ome.model.core.PlaneInfo \N 139 721 INSERT -35 391 ome.model.core.PlaneInfo \N 139 722 INSERT -35 392 ome.model.core.PlaneInfo \N 139 723 INSERT -35 393 ome.model.core.PlaneInfo \N 139 724 INSERT -35 394 ome.model.core.PlaneInfo \N 139 725 INSERT -35 395 ome.model.core.PlaneInfo \N 139 726 INSERT -35 396 ome.model.core.PlaneInfo \N 139 727 INSERT -35 397 ome.model.core.PlaneInfo \N 139 728 INSERT -35 398 ome.model.core.PlaneInfo \N 139 729 INSERT -35 399 ome.model.core.PlaneInfo \N 139 730 INSERT -35 400 ome.model.core.PlaneInfo \N 139 731 INSERT -35 401 ome.model.core.PlaneInfo \N 139 732 INSERT -35 402 ome.model.core.PlaneInfo \N 139 733 INSERT -35 403 ome.model.core.PlaneInfo \N 139 734 INSERT -35 404 ome.model.core.PlaneInfo \N 139 735 INSERT -35 405 ome.model.core.PlaneInfo \N 139 736 INSERT -35 7 ome.model.acquisition.Microscope \N 139 737 INSERT -35 7 ome.model.acquisition.Instrument \N 139 738 INSERT -35 18 ome.model.acquisition.Detector \N 139 739 INSERT -35 19 ome.model.acquisition.Detector \N 139 740 INSERT -35 19 ome.model.acquisition.TransmittanceRange \N 139 741 INSERT -35 19 ome.model.acquisition.Filter \N 139 742 INSERT -35 20 ome.model.acquisition.TransmittanceRange \N 139 743 INSERT -35 20 ome.model.acquisition.Filter \N 139 744 INSERT -35 21 ome.model.acquisition.TransmittanceRange \N 139 745 INSERT -35 21 ome.model.acquisition.Filter \N 139 746 INSERT -35 37 ome.model.acquisition.Laser \N 139 747 INSERT -35 38 ome.model.acquisition.Laser \N 139 748 INSERT -35 39 ome.model.acquisition.Laser \N 139 749 INSERT -35 40 ome.model.acquisition.Laser \N 139 750 INSERT -35 41 ome.model.acquisition.Laser \N 139 751 INSERT -35 42 ome.model.acquisition.Laser \N 139 752 INSERT -35 7 ome.model.acquisition.Objective \N 139 753 INSERT -35 7 ome.model.acquisition.ObjectiveSettings \N 139 754 INSERT -35 7 ome.model.core.Image \N 139 755 INSERT -35 22 ome.model.core.OriginalFile \N 139 756 INSERT -35 7 ome.model.annotations.FileAnnotation \N 139 757 INSERT -35 7 ome.model.annotations.ImageAnnotationLink \N 139 758 INSERT -35 7 ome.model.containers.DatasetImageLink \N 139 759 INSERT -35 7 ome.model.core.Pixels \N 139 760 INSERT -35 18 ome.model.acquisition.DetectorSettings \N 139 761 INSERT -35 13 ome.model.acquisition.LightPath \N 139 762 INSERT -35 13 ome.model.acquisition.LightPathEmissionFilterLink \N 139 763 INSERT -35 15 ome.model.acquisition.LightSettings \N 139 764 INSERT -35 18 ome.model.core.LogicalChannel \N 139 765 INSERT -35 18 ome.model.core.Channel \N 139 766 INSERT -35 19 ome.model.acquisition.DetectorSettings \N 139 767 INSERT -35 14 ome.model.acquisition.LightPath \N 139 768 INSERT -35 14 ome.model.acquisition.LightPathEmissionFilterLink \N 139 769 INSERT -35 16 ome.model.acquisition.LightSettings \N 139 770 INSERT -35 19 ome.model.core.LogicalChannel \N 139 771 INSERT -35 19 ome.model.core.Channel \N 139 772 INSERT -35 406 ome.model.core.PlaneInfo \N 139 773 INSERT -35 407 ome.model.core.PlaneInfo \N 139 774 INSERT -35 408 ome.model.core.PlaneInfo \N 139 775 INSERT -35 409 ome.model.core.PlaneInfo \N 139 776 INSERT -35 410 ome.model.core.PlaneInfo \N 139 777 INSERT -35 411 ome.model.core.PlaneInfo \N 139 778 INSERT -35 412 ome.model.core.PlaneInfo \N 139 779 INSERT -35 413 ome.model.core.PlaneInfo \N 139 780 INSERT -35 414 ome.model.core.PlaneInfo \N 139 781 INSERT -35 415 ome.model.core.PlaneInfo \N 139 782 INSERT -35 416 ome.model.core.PlaneInfo \N 139 783 INSERT -35 417 ome.model.core.PlaneInfo \N 139 784 INSERT -35 418 ome.model.core.PlaneInfo \N 139 785 INSERT -35 419 ome.model.core.PlaneInfo \N 139 786 INSERT -35 420 ome.model.core.PlaneInfo \N 139 787 INSERT -35 421 ome.model.core.PlaneInfo \N 139 788 INSERT -35 422 ome.model.core.PlaneInfo \N 139 789 INSERT -35 423 ome.model.core.PlaneInfo \N 139 790 INSERT -35 424 ome.model.core.PlaneInfo \N 139 791 INSERT -35 425 ome.model.core.PlaneInfo \N 139 792 INSERT -35 426 ome.model.core.PlaneInfo \N 139 793 INSERT -35 427 ome.model.core.PlaneInfo \N 139 794 INSERT -35 428 ome.model.core.PlaneInfo \N 139 795 INSERT -35 429 ome.model.core.PlaneInfo \N 139 796 INSERT -35 430 ome.model.core.PlaneInfo \N 139 797 INSERT -35 431 ome.model.core.PlaneInfo \N 139 798 INSERT -35 432 ome.model.core.PlaneInfo \N 139 799 INSERT -35 433 ome.model.core.PlaneInfo \N 139 800 INSERT -35 434 ome.model.core.PlaneInfo \N 139 801 INSERT -35 435 ome.model.core.PlaneInfo \N 139 802 INSERT -35 436 ome.model.core.PlaneInfo \N 139 803 INSERT -35 437 ome.model.core.PlaneInfo \N 139 804 INSERT -35 438 ome.model.core.PlaneInfo \N 139 805 INSERT -35 439 ome.model.core.PlaneInfo \N 139 806 INSERT -35 440 ome.model.core.PlaneInfo \N 139 807 INSERT -35 441 ome.model.core.PlaneInfo \N 139 808 INSERT -35 442 ome.model.core.PlaneInfo \N 139 809 INSERT -35 443 ome.model.core.PlaneInfo \N 139 810 INSERT -35 444 ome.model.core.PlaneInfo \N 139 811 INSERT -35 445 ome.model.core.PlaneInfo \N 139 812 INSERT -35 446 ome.model.core.PlaneInfo \N 139 813 INSERT -35 447 ome.model.core.PlaneInfo \N 139 814 INSERT -35 448 ome.model.core.PlaneInfo \N 139 815 INSERT -35 449 ome.model.core.PlaneInfo \N 139 816 INSERT -35 450 ome.model.core.PlaneInfo \N 139 817 INSERT -35 451 ome.model.core.PlaneInfo \N 139 818 INSERT -35 452 ome.model.core.PlaneInfo \N 139 819 INSERT -35 453 ome.model.core.PlaneInfo \N 139 820 INSERT -35 454 ome.model.core.PlaneInfo \N 139 821 INSERT -35 455 ome.model.core.PlaneInfo \N 139 822 INSERT -35 8 ome.model.acquisition.Microscope \N 139 823 INSERT -35 8 ome.model.acquisition.Instrument \N 139 824 INSERT -35 20 ome.model.acquisition.Detector \N 139 825 INSERT -35 21 ome.model.acquisition.Detector \N 139 826 INSERT -35 22 ome.model.acquisition.TransmittanceRange \N 139 827 INSERT -35 22 ome.model.acquisition.Filter \N 139 828 INSERT -35 23 ome.model.acquisition.TransmittanceRange \N 139 829 INSERT -35 23 ome.model.acquisition.Filter \N 139 830 INSERT -35 24 ome.model.acquisition.TransmittanceRange \N 139 831 INSERT -35 24 ome.model.acquisition.Filter \N 139 832 INSERT -35 43 ome.model.acquisition.Laser \N 139 833 INSERT -35 44 ome.model.acquisition.Laser \N 139 834 INSERT -35 45 ome.model.acquisition.Laser \N 139 835 INSERT -35 46 ome.model.acquisition.Laser \N 139 836 INSERT -35 47 ome.model.acquisition.Laser \N 139 837 INSERT -35 48 ome.model.acquisition.Laser \N 139 838 INSERT -35 8 ome.model.acquisition.Objective \N 139 839 INSERT -35 8 ome.model.acquisition.ObjectiveSettings \N 139 840 INSERT -35 8 ome.model.core.Image \N 139 841 INSERT -35 23 ome.model.core.OriginalFile \N 139 842 INSERT -35 8 ome.model.annotations.FileAnnotation \N 139 843 INSERT -35 8 ome.model.annotations.ImageAnnotationLink \N 139 844 INSERT -35 8 ome.model.containers.DatasetImageLink \N 139 845 INSERT -35 8 ome.model.core.Pixels \N 139 846 INSERT -35 20 ome.model.acquisition.DetectorSettings \N 139 847 INSERT -35 15 ome.model.acquisition.LightPath \N 139 848 INSERT -35 15 ome.model.acquisition.LightPathEmissionFilterLink \N 139 849 INSERT -35 17 ome.model.acquisition.LightSettings \N 139 850 INSERT -35 20 ome.model.core.LogicalChannel \N 139 851 INSERT -35 20 ome.model.core.Channel \N 139 852 INSERT -35 21 ome.model.acquisition.DetectorSettings \N 139 853 INSERT -35 16 ome.model.acquisition.LightPath \N 139 854 INSERT -35 16 ome.model.acquisition.LightPathEmissionFilterLink \N 139 855 INSERT -35 18 ome.model.acquisition.LightSettings \N 139 856 INSERT -35 21 ome.model.core.LogicalChannel \N 139 857 INSERT -35 21 ome.model.core.Channel \N 139 858 INSERT -35 456 ome.model.core.PlaneInfo \N 139 859 INSERT -35 457 ome.model.core.PlaneInfo \N 139 860 INSERT -35 458 ome.model.core.PlaneInfo \N 139 861 INSERT -35 459 ome.model.core.PlaneInfo \N 139 862 INSERT -35 460 ome.model.core.PlaneInfo \N 139 863 INSERT -35 461 ome.model.core.PlaneInfo \N 139 864 INSERT -35 462 ome.model.core.PlaneInfo \N 139 865 INSERT -35 463 ome.model.core.PlaneInfo \N 139 866 INSERT -35 464 ome.model.core.PlaneInfo \N 139 867 INSERT -35 465 ome.model.core.PlaneInfo \N 139 868 INSERT -35 466 ome.model.core.PlaneInfo \N 139 869 INSERT -35 467 ome.model.core.PlaneInfo \N 139 870 INSERT -35 468 ome.model.core.PlaneInfo \N 139 871 INSERT -35 469 ome.model.core.PlaneInfo \N 139 872 INSERT -35 470 ome.model.core.PlaneInfo \N 139 873 INSERT -35 471 ome.model.core.PlaneInfo \N 139 874 INSERT -35 472 ome.model.core.PlaneInfo \N 139 875 INSERT -35 473 ome.model.core.PlaneInfo \N 139 876 INSERT -35 474 ome.model.core.PlaneInfo \N 139 877 INSERT -35 475 ome.model.core.PlaneInfo \N 139 878 INSERT -35 476 ome.model.core.PlaneInfo \N 139 879 INSERT -35 477 ome.model.core.PlaneInfo \N 139 880 INSERT -35 478 ome.model.core.PlaneInfo \N 139 881 INSERT -35 479 ome.model.core.PlaneInfo \N 139 882 INSERT -35 480 ome.model.core.PlaneInfo \N 139 883 INSERT -35 481 ome.model.core.PlaneInfo \N 139 884 INSERT -35 482 ome.model.core.PlaneInfo \N 139 885 INSERT -35 483 ome.model.core.PlaneInfo \N 139 886 INSERT -35 484 ome.model.core.PlaneInfo \N 139 887 INSERT -35 485 ome.model.core.PlaneInfo \N 139 888 INSERT -35 486 ome.model.core.PlaneInfo \N 139 889 INSERT -35 487 ome.model.core.PlaneInfo \N 139 890 INSERT -35 488 ome.model.core.PlaneInfo \N 139 891 INSERT -35 489 ome.model.core.PlaneInfo \N 139 892 INSERT -35 490 ome.model.core.PlaneInfo \N 139 893 INSERT -35 491 ome.model.core.PlaneInfo \N 139 894 INSERT -35 492 ome.model.core.PlaneInfo \N 139 895 INSERT -35 493 ome.model.core.PlaneInfo \N 139 896 INSERT -35 494 ome.model.core.PlaneInfo \N 139 897 INSERT -35 495 ome.model.core.PlaneInfo \N 139 898 INSERT -35 496 ome.model.core.PlaneInfo \N 139 899 INSERT -35 497 ome.model.core.PlaneInfo \N 139 900 INSERT -35 498 ome.model.core.PlaneInfo \N 139 901 INSERT -35 499 ome.model.core.PlaneInfo \N 139 902 INSERT -35 500 ome.model.core.PlaneInfo \N 139 903 INSERT -35 501 ome.model.core.PlaneInfo \N 139 904 INSERT -35 502 ome.model.core.PlaneInfo \N 139 905 INSERT -35 503 ome.model.core.PlaneInfo \N 139 906 INSERT -35 504 ome.model.core.PlaneInfo \N 139 907 INSERT -35 505 ome.model.core.PlaneInfo \N 139 908 INSERT -35 506 ome.model.core.PlaneInfo \N 139 909 INSERT -35 507 ome.model.core.PlaneInfo \N 139 910 INSERT -35 508 ome.model.core.PlaneInfo \N 139 911 INSERT -35 509 ome.model.core.PlaneInfo \N 139 912 INSERT -35 510 ome.model.core.PlaneInfo \N 139 913 INSERT -35 511 ome.model.core.PlaneInfo \N 139 914 INSERT -35 512 ome.model.core.PlaneInfo \N 139 915 INSERT -35 513 ome.model.core.PlaneInfo \N 139 916 INSERT -35 514 ome.model.core.PlaneInfo \N 139 917 INSERT -35 515 ome.model.core.PlaneInfo \N 139 918 INSERT -35 516 ome.model.core.PlaneInfo \N 139 919 INSERT -35 517 ome.model.core.PlaneInfo \N 139 920 INSERT -35 518 ome.model.core.PlaneInfo \N 139 921 INSERT -35 519 ome.model.core.PlaneInfo \N 139 922 INSERT -35 520 ome.model.core.PlaneInfo \N 139 923 INSERT -35 521 ome.model.core.PlaneInfo \N 139 924 INSERT -35 9 ome.model.acquisition.Microscope \N 139 925 INSERT -35 9 ome.model.acquisition.Instrument \N 139 926 INSERT -35 22 ome.model.acquisition.Detector \N 139 927 INSERT -35 23 ome.model.acquisition.Detector \N 139 928 INSERT -35 25 ome.model.acquisition.TransmittanceRange \N 139 929 INSERT -35 25 ome.model.acquisition.Filter \N 139 930 INSERT -35 26 ome.model.acquisition.TransmittanceRange \N 139 931 INSERT -35 26 ome.model.acquisition.Filter \N 139 932 INSERT -35 27 ome.model.acquisition.TransmittanceRange \N 139 933 INSERT -35 27 ome.model.acquisition.Filter \N 139 934 INSERT -35 49 ome.model.acquisition.Laser \N 139 935 INSERT -35 50 ome.model.acquisition.Laser \N 139 936 INSERT -35 51 ome.model.acquisition.Laser \N 139 937 INSERT -35 52 ome.model.acquisition.Laser \N 139 938 INSERT -35 53 ome.model.acquisition.Laser \N 139 939 INSERT -35 54 ome.model.acquisition.Laser \N 139 940 INSERT -35 9 ome.model.acquisition.Objective \N 139 941 INSERT -35 9 ome.model.acquisition.ObjectiveSettings \N 139 942 INSERT -35 9 ome.model.core.Image \N 139 943 INSERT -35 24 ome.model.core.OriginalFile \N 139 944 INSERT -35 9 ome.model.annotations.FileAnnotation \N 139 945 INSERT -35 9 ome.model.annotations.ImageAnnotationLink \N 139 946 INSERT -35 9 ome.model.containers.DatasetImageLink \N 139 947 INSERT -35 9 ome.model.core.Pixels \N 139 948 INSERT -35 22 ome.model.acquisition.DetectorSettings \N 139 949 INSERT -35 17 ome.model.acquisition.LightPath \N 139 950 INSERT -35 17 ome.model.acquisition.LightPathEmissionFilterLink \N 139 951 INSERT -35 19 ome.model.acquisition.LightSettings \N 139 952 INSERT -35 22 ome.model.core.LogicalChannel \N 139 953 INSERT -35 22 ome.model.core.Channel \N 139 954 INSERT -35 23 ome.model.acquisition.DetectorSettings \N 139 955 INSERT -35 18 ome.model.acquisition.LightPath \N 139 956 INSERT -35 18 ome.model.acquisition.LightPathEmissionFilterLink \N 139 957 INSERT -35 20 ome.model.acquisition.LightSettings \N 139 958 INSERT -35 23 ome.model.core.LogicalChannel \N 139 959 INSERT -35 23 ome.model.core.Channel \N 139 960 INSERT -35 522 ome.model.core.PlaneInfo \N 139 961 INSERT -35 523 ome.model.core.PlaneInfo \N 139 962 INSERT -35 524 ome.model.core.PlaneInfo \N 139 963 INSERT -35 525 ome.model.core.PlaneInfo \N 139 964 INSERT -35 526 ome.model.core.PlaneInfo \N 139 965 INSERT -35 527 ome.model.core.PlaneInfo \N 139 966 INSERT -35 528 ome.model.core.PlaneInfo \N 139 967 INSERT -35 529 ome.model.core.PlaneInfo \N 139 968 INSERT -35 530 ome.model.core.PlaneInfo \N 139 969 INSERT -35 531 ome.model.core.PlaneInfo \N 139 970 INSERT -35 532 ome.model.core.PlaneInfo \N 139 971 INSERT -35 533 ome.model.core.PlaneInfo \N 139 972 INSERT -35 534 ome.model.core.PlaneInfo \N 139 973 INSERT -35 535 ome.model.core.PlaneInfo \N 139 974 INSERT -35 536 ome.model.core.PlaneInfo \N 139 975 INSERT -35 537 ome.model.core.PlaneInfo \N 139 976 INSERT -35 538 ome.model.core.PlaneInfo \N 139 977 INSERT -35 539 ome.model.core.PlaneInfo \N 139 978 INSERT -35 540 ome.model.core.PlaneInfo \N 139 979 INSERT -35 541 ome.model.core.PlaneInfo \N 139 980 INSERT -35 542 ome.model.core.PlaneInfo \N 139 981 INSERT -35 543 ome.model.core.PlaneInfo \N 139 982 INSERT -35 544 ome.model.core.PlaneInfo \N 139 983 INSERT -35 545 ome.model.core.PlaneInfo \N 139 984 INSERT -35 546 ome.model.core.PlaneInfo \N 139 985 INSERT -35 547 ome.model.core.PlaneInfo \N 139 986 INSERT -35 548 ome.model.core.PlaneInfo \N 139 987 INSERT -35 549 ome.model.core.PlaneInfo \N 139 988 INSERT -35 550 ome.model.core.PlaneInfo \N 139 989 INSERT -35 551 ome.model.core.PlaneInfo \N 139 990 INSERT -35 552 ome.model.core.PlaneInfo \N 139 991 INSERT -35 553 ome.model.core.PlaneInfo \N 139 992 INSERT -35 554 ome.model.core.PlaneInfo \N 139 993 INSERT -35 555 ome.model.core.PlaneInfo \N 139 994 INSERT -35 556 ome.model.core.PlaneInfo \N 139 995 INSERT -35 557 ome.model.core.PlaneInfo \N 139 996 INSERT -35 558 ome.model.core.PlaneInfo \N 139 997 INSERT -35 559 ome.model.core.PlaneInfo \N 139 998 INSERT -35 560 ome.model.core.PlaneInfo \N 139 999 INSERT -35 561 ome.model.core.PlaneInfo \N 139 1000 INSERT -35 562 ome.model.core.PlaneInfo \N 139 1001 INSERT -35 563 ome.model.core.PlaneInfo \N 139 1002 INSERT -35 564 ome.model.core.PlaneInfo \N 139 1003 INSERT -35 565 ome.model.core.PlaneInfo \N 139 1004 INSERT -35 566 ome.model.core.PlaneInfo \N 139 1005 INSERT -35 567 ome.model.core.PlaneInfo \N 139 1006 INSERT -35 568 ome.model.core.PlaneInfo \N 139 1007 INSERT -35 569 ome.model.core.PlaneInfo \N 139 1008 INSERT -35 570 ome.model.core.PlaneInfo \N 139 1009 INSERT -35 571 ome.model.core.PlaneInfo \N 139 1010 INSERT -35 572 ome.model.core.PlaneInfo \N 139 1011 INSERT -35 573 ome.model.core.PlaneInfo \N 139 1012 INSERT -35 574 ome.model.core.PlaneInfo \N 139 1013 INSERT -35 575 ome.model.core.PlaneInfo \N 139 1014 INSERT -35 10 ome.model.acquisition.Microscope \N 139 1015 INSERT -35 10 ome.model.acquisition.Instrument \N 139 1016 INSERT -35 24 ome.model.acquisition.Detector \N 139 1017 INSERT -35 25 ome.model.acquisition.Detector \N 139 1018 INSERT -35 28 ome.model.acquisition.TransmittanceRange \N 139 1019 INSERT -35 28 ome.model.acquisition.Filter \N 139 1020 INSERT -35 29 ome.model.acquisition.TransmittanceRange \N 139 1021 INSERT -35 29 ome.model.acquisition.Filter \N 139 1022 INSERT -35 30 ome.model.acquisition.TransmittanceRange \N 139 1023 INSERT -35 30 ome.model.acquisition.Filter \N 139 1024 INSERT -35 55 ome.model.acquisition.Laser \N 139 1025 INSERT -35 56 ome.model.acquisition.Laser \N 139 1026 INSERT -35 57 ome.model.acquisition.Laser \N 139 1027 INSERT -35 58 ome.model.acquisition.Laser \N 139 1028 INSERT -35 59 ome.model.acquisition.Laser \N 139 1029 INSERT -35 60 ome.model.acquisition.Laser \N 139 1030 INSERT -35 10 ome.model.acquisition.Objective \N 139 1031 INSERT -35 10 ome.model.acquisition.ObjectiveSettings \N 139 1032 INSERT -35 10 ome.model.core.Image \N 139 1033 INSERT -35 25 ome.model.core.OriginalFile \N 139 1034 INSERT -35 10 ome.model.annotations.FileAnnotation \N 139 1035 INSERT -35 10 ome.model.annotations.ImageAnnotationLink \N 139 1036 INSERT -35 10 ome.model.containers.DatasetImageLink \N 139 1037 INSERT -35 10 ome.model.core.Pixels \N 139 1038 INSERT -35 24 ome.model.acquisition.DetectorSettings \N 139 1039 INSERT -35 19 ome.model.acquisition.LightPath \N 139 1040 INSERT -35 19 ome.model.acquisition.LightPathEmissionFilterLink \N 139 1041 INSERT -35 21 ome.model.acquisition.LightSettings \N 139 1042 INSERT -35 24 ome.model.core.LogicalChannel \N 139 1043 INSERT -35 24 ome.model.core.Channel \N 139 1044 INSERT -35 25 ome.model.acquisition.DetectorSettings \N 139 1045 INSERT -35 20 ome.model.acquisition.LightPath \N 139 1046 INSERT -35 20 ome.model.acquisition.LightPathEmissionFilterLink \N 139 1047 INSERT -35 22 ome.model.acquisition.LightSettings \N 139 1048 INSERT -35 25 ome.model.core.LogicalChannel \N 139 1049 INSERT -35 25 ome.model.core.Channel \N 139 1050 INSERT -35 576 ome.model.core.PlaneInfo \N 139 1051 INSERT -35 577 ome.model.core.PlaneInfo \N 139 1052 INSERT -35 578 ome.model.core.PlaneInfo \N 139 1053 INSERT -35 579 ome.model.core.PlaneInfo \N 139 1054 INSERT -35 580 ome.model.core.PlaneInfo \N 139 1055 INSERT -35 581 ome.model.core.PlaneInfo \N 139 1056 INSERT -35 582 ome.model.core.PlaneInfo \N 139 1057 INSERT -35 583 ome.model.core.PlaneInfo \N 139 1058 INSERT -35 584 ome.model.core.PlaneInfo \N 139 1059 INSERT -35 585 ome.model.core.PlaneInfo \N 139 1060 INSERT -35 586 ome.model.core.PlaneInfo \N 139 1061 INSERT -35 587 ome.model.core.PlaneInfo \N 139 1062 INSERT -35 588 ome.model.core.PlaneInfo \N 139 1063 INSERT -35 589 ome.model.core.PlaneInfo \N 139 1064 INSERT -35 590 ome.model.core.PlaneInfo \N 139 1065 INSERT -35 591 ome.model.core.PlaneInfo \N 139 1066 INSERT -35 592 ome.model.core.PlaneInfo \N 139 1067 INSERT -35 593 ome.model.core.PlaneInfo \N 139 1068 INSERT -35 594 ome.model.core.PlaneInfo \N 139 1069 INSERT -35 595 ome.model.core.PlaneInfo \N 139 1070 INSERT -35 596 ome.model.core.PlaneInfo \N 139 1071 INSERT -35 597 ome.model.core.PlaneInfo \N 139 1072 INSERT -35 598 ome.model.core.PlaneInfo \N 139 1073 INSERT -35 599 ome.model.core.PlaneInfo \N 139 1074 INSERT -35 600 ome.model.core.PlaneInfo \N 139 1075 INSERT -35 601 ome.model.core.PlaneInfo \N 139 1076 INSERT -35 602 ome.model.core.PlaneInfo \N 139 1077 INSERT -35 603 ome.model.core.PlaneInfo \N 139 1078 INSERT -35 604 ome.model.core.PlaneInfo \N 139 1079 INSERT -35 605 ome.model.core.PlaneInfo \N 139 1080 INSERT -35 606 ome.model.core.PlaneInfo \N 139 1081 INSERT -35 607 ome.model.core.PlaneInfo \N 139 1082 INSERT -35 608 ome.model.core.PlaneInfo \N 139 1083 INSERT -35 609 ome.model.core.PlaneInfo \N 139 1084 INSERT -35 610 ome.model.core.PlaneInfo \N 139 1085 INSERT -35 611 ome.model.core.PlaneInfo \N 139 1086 INSERT -35 612 ome.model.core.PlaneInfo \N 139 1087 INSERT -35 613 ome.model.core.PlaneInfo \N 139 1088 INSERT -35 614 ome.model.core.PlaneInfo \N 139 1089 INSERT -35 615 ome.model.core.PlaneInfo \N 139 1090 INSERT -35 616 ome.model.core.PlaneInfo \N 139 1091 INSERT -35 617 ome.model.core.PlaneInfo \N 139 1092 INSERT -35 618 ome.model.core.PlaneInfo \N 139 1093 INSERT -35 619 ome.model.core.PlaneInfo \N 139 1094 INSERT -35 620 ome.model.core.PlaneInfo \N 139 1095 INSERT -35 621 ome.model.core.PlaneInfo \N 139 1096 INSERT -35 622 ome.model.core.PlaneInfo \N 139 1097 INSERT -35 623 ome.model.core.PlaneInfo \N 139 1098 INSERT -35 624 ome.model.core.PlaneInfo \N 139 1099 INSERT -35 625 ome.model.core.PlaneInfo \N 139 1100 UPDATE -35 10 ome.model.core.Pixels \N 140 1101 UPDATE -35 1 ome.model.core.Pixels \N 141 1102 UPDATE -35 2 ome.model.core.Pixels \N 141 1103 UPDATE -35 3 ome.model.core.Pixels \N 141 1104 UPDATE -35 4 ome.model.core.Pixels \N 141 1105 UPDATE -35 5 ome.model.core.Pixels \N 141 1106 UPDATE -35 6 ome.model.core.Pixels \N 141 1107 UPDATE -35 7 ome.model.core.Pixels \N 141 1108 UPDATE -35 8 ome.model.core.Pixels \N 141 1109 UPDATE -35 9 ome.model.core.Pixels \N 141 1110 UPDATE -35 10 ome.model.core.Pixels \N 141 1111 INSERT -35 1 ome.model.stats.StatsInfo \N 142 1112 INSERT -35 2 ome.model.stats.StatsInfo \N 142 1113 INSERT -35 3 ome.model.stats.StatsInfo \N 142 1114 INSERT -35 4 ome.model.stats.StatsInfo \N 142 1115 INSERT -35 5 ome.model.stats.StatsInfo \N 142 1116 INSERT -35 6 ome.model.stats.StatsInfo \N 142 1117 INSERT -35 7 ome.model.stats.StatsInfo \N 142 1118 INSERT -35 8 ome.model.stats.StatsInfo \N 142 1119 INSERT -35 9 ome.model.stats.StatsInfo \N 142 1120 INSERT -35 10 ome.model.stats.StatsInfo \N 142 1121 INSERT -35 11 ome.model.stats.StatsInfo \N 142 1122 INSERT -35 12 ome.model.stats.StatsInfo \N 142 1123 INSERT -35 13 ome.model.stats.StatsInfo \N 142 1124 INSERT -35 14 ome.model.stats.StatsInfo \N 142 1125 INSERT -35 15 ome.model.stats.StatsInfo \N 142 1126 INSERT -35 16 ome.model.stats.StatsInfo \N 142 1127 INSERT -35 17 ome.model.stats.StatsInfo \N 142 1128 INSERT -35 18 ome.model.stats.StatsInfo \N 142 1129 INSERT -35 19 ome.model.stats.StatsInfo \N 142 1130 INSERT -35 20 ome.model.stats.StatsInfo \N 142 1131 INSERT -35 21 ome.model.stats.StatsInfo \N 142 1132 INSERT -35 22 ome.model.stats.StatsInfo \N 142 1133 INSERT -35 23 ome.model.stats.StatsInfo \N 142 1134 INSERT -35 24 ome.model.stats.StatsInfo \N 142 1135 INSERT -35 25 ome.model.stats.StatsInfo \N 142 1136 UPDATE -35 1 ome.model.core.Channel \N 142 1137 UPDATE -35 2 ome.model.core.Channel \N 142 1138 UPDATE -35 3 ome.model.core.Channel \N 142 1139 UPDATE -35 4 ome.model.core.Channel \N 142 1140 UPDATE -35 5 ome.model.core.Channel \N 142 1141 UPDATE -35 6 ome.model.core.Channel \N 142 1142 UPDATE -35 7 ome.model.core.Channel \N 142 1143 UPDATE -35 8 ome.model.core.Channel \N 142 1144 UPDATE -35 9 ome.model.core.Channel \N 142 1145 UPDATE -35 10 ome.model.core.Channel \N 142 1146 UPDATE -35 11 ome.model.core.Channel \N 142 1147 UPDATE -35 12 ome.model.core.Channel \N 142 1148 UPDATE -35 13 ome.model.core.Channel \N 142 1149 UPDATE -35 14 ome.model.core.Channel \N 142 1150 UPDATE -35 15 ome.model.core.Channel \N 142 1151 UPDATE -35 16 ome.model.core.Channel \N 142 1152 UPDATE -35 17 ome.model.core.Channel \N 142 1153 UPDATE -35 18 ome.model.core.Channel \N 142 1154 UPDATE -35 19 ome.model.core.Channel \N 142 1155 UPDATE -35 20 ome.model.core.Channel \N 142 1156 UPDATE -35 21 ome.model.core.Channel \N 142 1157 UPDATE -35 22 ome.model.core.Channel \N 142 1158 UPDATE -35 23 ome.model.core.Channel \N 142 1159 UPDATE -35 24 ome.model.core.Channel \N 142 1160 UPDATE -35 25 ome.model.core.Channel \N 142 1161 INSERT -35 1 ome.model.display.QuantumDef \N 143 1162 INSERT -35 1 ome.model.display.RenderingDef \N 143 1163 INSERT -35 1 ome.model.display.ChannelBinding \N 143 1164 INSERT -35 2 ome.model.display.ChannelBinding \N 143 1165 INSERT -35 2 ome.model.display.QuantumDef \N 143 1166 INSERT -35 2 ome.model.display.RenderingDef \N 143 1167 INSERT -35 3 ome.model.display.ChannelBinding \N 143 1168 INSERT -35 4 ome.model.display.ChannelBinding \N 143 1169 INSERT -35 5 ome.model.display.ChannelBinding \N 143 1170 INSERT -35 3 ome.model.display.QuantumDef \N 143 1171 INSERT -35 3 ome.model.display.RenderingDef \N 143 1172 INSERT -35 6 ome.model.display.ChannelBinding \N 143 1173 INSERT -35 7 ome.model.display.ChannelBinding \N 143 1174 INSERT -35 8 ome.model.display.ChannelBinding \N 143 1175 INSERT -35 4 ome.model.display.QuantumDef \N 143 1176 INSERT -35 4 ome.model.display.RenderingDef \N 143 1177 INSERT -35 9 ome.model.display.ChannelBinding \N 143 1178 INSERT -35 10 ome.model.display.ChannelBinding \N 143 1179 INSERT -35 11 ome.model.display.ChannelBinding \N 143 1180 INSERT -35 5 ome.model.display.QuantumDef \N 143 1181 INSERT -35 5 ome.model.display.RenderingDef \N 143 1182 INSERT -35 12 ome.model.display.ChannelBinding \N 143 1183 INSERT -35 13 ome.model.display.ChannelBinding \N 143 1184 INSERT -35 14 ome.model.display.ChannelBinding \N 143 1185 INSERT -35 6 ome.model.display.QuantumDef \N 143 1186 INSERT -35 6 ome.model.display.RenderingDef \N 143 1187 INSERT -35 15 ome.model.display.ChannelBinding \N 143 1188 INSERT -35 16 ome.model.display.ChannelBinding \N 143 1189 INSERT -35 17 ome.model.display.ChannelBinding \N 143 1190 INSERT -35 7 ome.model.display.QuantumDef \N 143 1191 INSERT -35 7 ome.model.display.RenderingDef \N 143 1192 INSERT -35 18 ome.model.display.ChannelBinding \N 143 1193 INSERT -35 19 ome.model.display.ChannelBinding \N 143 1194 INSERT -35 8 ome.model.display.QuantumDef \N 143 1195 INSERT -35 8 ome.model.display.RenderingDef \N 143 1196 INSERT -35 20 ome.model.display.ChannelBinding \N 143 1197 INSERT -35 21 ome.model.display.ChannelBinding \N 143 1198 INSERT -35 9 ome.model.display.QuantumDef \N 143 1199 INSERT -35 9 ome.model.display.RenderingDef \N 143 1200 INSERT -35 22 ome.model.display.ChannelBinding \N 143 1201 INSERT -35 23 ome.model.display.ChannelBinding \N 143 1202 INSERT -35 10 ome.model.display.QuantumDef \N 143 1203 INSERT -35 10 ome.model.display.RenderingDef \N 143 1204 INSERT -35 24 ome.model.display.ChannelBinding \N 143 1205 INSERT -35 25 ome.model.display.ChannelBinding \N 143 1206 INSERT -35 1 ome.model.display.Thumbnail \N 144 1207 INSERT -35 2 ome.model.display.Thumbnail \N 144 1208 INSERT -35 3 ome.model.display.Thumbnail \N 144 1209 INSERT -35 4 ome.model.display.Thumbnail \N 144 1210 INSERT -35 5 ome.model.display.Thumbnail \N 144 1211 INSERT -35 6 ome.model.display.Thumbnail \N 144 1212 INSERT -35 7 ome.model.display.Thumbnail \N 144 1213 INSERT -35 8 ome.model.display.Thumbnail \N 144 1214 INSERT -35 9 ome.model.display.Thumbnail \N 144 1215 INSERT -35 10 ome.model.display.Thumbnail \N 144 1216 UPDATE -35 25 ome.model.core.OriginalFile \N 145 1217 INSERT -35 11 ome.model.acquisition.Microscope \N 161 1218 INSERT -35 11 ome.model.acquisition.Instrument \N 161 1219 INSERT -35 26 ome.model.acquisition.Detector \N 161 1220 INSERT -35 27 ome.model.acquisition.Detector \N 161 1221 INSERT -35 31 ome.model.acquisition.TransmittanceRange \N 161 1222 INSERT -35 31 ome.model.acquisition.Filter \N 161 1223 INSERT -35 32 ome.model.acquisition.TransmittanceRange \N 161 1224 INSERT -35 32 ome.model.acquisition.Filter \N 161 1225 INSERT -35 33 ome.model.acquisition.TransmittanceRange \N 161 1226 INSERT -35 33 ome.model.acquisition.Filter \N 161 1227 INSERT -35 61 ome.model.acquisition.Laser \N 161 1228 INSERT -35 62 ome.model.acquisition.Laser \N 161 1229 INSERT -35 63 ome.model.acquisition.Laser \N 161 1230 INSERT -35 64 ome.model.acquisition.Laser \N 161 1231 INSERT -35 65 ome.model.acquisition.Laser \N 161 1232 INSERT -35 66 ome.model.acquisition.Laser \N 161 1233 INSERT -35 11 ome.model.acquisition.Objective \N 161 1234 INSERT -35 11 ome.model.acquisition.ObjectiveSettings \N 161 1235 INSERT -35 11 ome.model.core.Image \N 161 1236 INSERT -35 26 ome.model.core.OriginalFile \N 161 1237 INSERT -35 11 ome.model.annotations.FileAnnotation \N 161 1238 INSERT -35 11 ome.model.annotations.ImageAnnotationLink \N 161 1239 INSERT -35 11 ome.model.containers.DatasetImageLink \N 161 1240 INSERT -35 11 ome.model.core.Pixels \N 161 1241 INSERT -35 26 ome.model.acquisition.DetectorSettings \N 161 1242 INSERT -35 21 ome.model.acquisition.LightPath \N 161 1243 INSERT -35 21 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1244 INSERT -35 23 ome.model.acquisition.LightSettings \N 161 1245 INSERT -35 26 ome.model.core.LogicalChannel \N 161 1246 INSERT -35 26 ome.model.core.Channel \N 161 1247 INSERT -35 27 ome.model.acquisition.DetectorSettings \N 161 1248 INSERT -35 22 ome.model.acquisition.LightPath \N 161 1249 INSERT -35 22 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1250 INSERT -35 24 ome.model.acquisition.LightSettings \N 161 1251 INSERT -35 27 ome.model.core.LogicalChannel \N 161 1252 INSERT -35 27 ome.model.core.Channel \N 161 1253 INSERT -35 626 ome.model.core.PlaneInfo \N 161 1254 INSERT -35 627 ome.model.core.PlaneInfo \N 161 1255 INSERT -35 628 ome.model.core.PlaneInfo \N 161 1256 INSERT -35 629 ome.model.core.PlaneInfo \N 161 1257 INSERT -35 630 ome.model.core.PlaneInfo \N 161 1258 INSERT -35 631 ome.model.core.PlaneInfo \N 161 1259 INSERT -35 632 ome.model.core.PlaneInfo \N 161 1260 INSERT -35 633 ome.model.core.PlaneInfo \N 161 1261 INSERT -35 634 ome.model.core.PlaneInfo \N 161 1262 INSERT -35 635 ome.model.core.PlaneInfo \N 161 1263 INSERT -35 636 ome.model.core.PlaneInfo \N 161 1264 INSERT -35 637 ome.model.core.PlaneInfo \N 161 1265 INSERT -35 638 ome.model.core.PlaneInfo \N 161 1266 INSERT -35 639 ome.model.core.PlaneInfo \N 161 1267 INSERT -35 640 ome.model.core.PlaneInfo \N 161 1268 INSERT -35 641 ome.model.core.PlaneInfo \N 161 1269 INSERT -35 642 ome.model.core.PlaneInfo \N 161 1270 INSERT -35 643 ome.model.core.PlaneInfo \N 161 1271 INSERT -35 644 ome.model.core.PlaneInfo \N 161 1272 INSERT -35 645 ome.model.core.PlaneInfo \N 161 1273 INSERT -35 646 ome.model.core.PlaneInfo \N 161 1274 INSERT -35 647 ome.model.core.PlaneInfo \N 161 1275 INSERT -35 648 ome.model.core.PlaneInfo \N 161 1276 INSERT -35 649 ome.model.core.PlaneInfo \N 161 1277 INSERT -35 650 ome.model.core.PlaneInfo \N 161 1278 INSERT -35 651 ome.model.core.PlaneInfo \N 161 1279 INSERT -35 652 ome.model.core.PlaneInfo \N 161 1280 INSERT -35 653 ome.model.core.PlaneInfo \N 161 1281 INSERT -35 654 ome.model.core.PlaneInfo \N 161 1282 INSERT -35 655 ome.model.core.PlaneInfo \N 161 1283 INSERT -35 656 ome.model.core.PlaneInfo \N 161 1284 INSERT -35 657 ome.model.core.PlaneInfo \N 161 1285 INSERT -35 658 ome.model.core.PlaneInfo \N 161 1286 INSERT -35 659 ome.model.core.PlaneInfo \N 161 1287 INSERT -35 660 ome.model.core.PlaneInfo \N 161 1288 INSERT -35 661 ome.model.core.PlaneInfo \N 161 1289 INSERT -35 662 ome.model.core.PlaneInfo \N 161 1290 INSERT -35 663 ome.model.core.PlaneInfo \N 161 1291 INSERT -35 664 ome.model.core.PlaneInfo \N 161 1292 INSERT -35 665 ome.model.core.PlaneInfo \N 161 1293 INSERT -35 666 ome.model.core.PlaneInfo \N 161 1294 INSERT -35 667 ome.model.core.PlaneInfo \N 161 1295 INSERT -35 668 ome.model.core.PlaneInfo \N 161 1296 INSERT -35 669 ome.model.core.PlaneInfo \N 161 1297 INSERT -35 670 ome.model.core.PlaneInfo \N 161 1298 INSERT -35 671 ome.model.core.PlaneInfo \N 161 1299 INSERT -35 672 ome.model.core.PlaneInfo \N 161 1300 INSERT -35 673 ome.model.core.PlaneInfo \N 161 1301 INSERT -35 674 ome.model.core.PlaneInfo \N 161 1302 INSERT -35 675 ome.model.core.PlaneInfo \N 161 1303 INSERT -35 676 ome.model.core.PlaneInfo \N 161 1304 INSERT -35 677 ome.model.core.PlaneInfo \N 161 1305 INSERT -35 12 ome.model.acquisition.Microscope \N 161 1306 INSERT -35 12 ome.model.acquisition.Instrument \N 161 1307 INSERT -35 28 ome.model.acquisition.Detector \N 161 1308 INSERT -35 29 ome.model.acquisition.Detector \N 161 1309 INSERT -35 34 ome.model.acquisition.TransmittanceRange \N 161 1310 INSERT -35 34 ome.model.acquisition.Filter \N 161 1311 INSERT -35 35 ome.model.acquisition.TransmittanceRange \N 161 1312 INSERT -35 35 ome.model.acquisition.Filter \N 161 1313 INSERT -35 36 ome.model.acquisition.TransmittanceRange \N 161 1314 INSERT -35 36 ome.model.acquisition.Filter \N 161 1315 INSERT -35 67 ome.model.acquisition.Laser \N 161 1316 INSERT -35 68 ome.model.acquisition.Laser \N 161 1317 INSERT -35 69 ome.model.acquisition.Laser \N 161 1318 INSERT -35 70 ome.model.acquisition.Laser \N 161 1319 INSERT -35 71 ome.model.acquisition.Laser \N 161 1320 INSERT -35 72 ome.model.acquisition.Laser \N 161 1321 INSERT -35 12 ome.model.acquisition.Objective \N 161 1322 INSERT -35 12 ome.model.acquisition.ObjectiveSettings \N 161 1323 INSERT -35 12 ome.model.core.Image \N 161 1324 INSERT -35 27 ome.model.core.OriginalFile \N 161 1325 INSERT -35 12 ome.model.annotations.FileAnnotation \N 161 1326 INSERT -35 12 ome.model.annotations.ImageAnnotationLink \N 161 1327 INSERT -35 12 ome.model.containers.DatasetImageLink \N 161 1328 INSERT -35 12 ome.model.core.Pixels \N 161 1329 INSERT -35 28 ome.model.acquisition.DetectorSettings \N 161 1330 INSERT -35 23 ome.model.acquisition.LightPath \N 161 1331 INSERT -35 23 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1332 INSERT -35 25 ome.model.acquisition.LightSettings \N 161 1333 INSERT -35 28 ome.model.core.LogicalChannel \N 161 1334 INSERT -35 28 ome.model.core.Channel \N 161 1335 INSERT -35 29 ome.model.acquisition.DetectorSettings \N 161 1336 INSERT -35 24 ome.model.acquisition.LightPath \N 161 1337 INSERT -35 24 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1338 INSERT -35 26 ome.model.acquisition.LightSettings \N 161 1339 INSERT -35 29 ome.model.core.LogicalChannel \N 161 1340 INSERT -35 29 ome.model.core.Channel \N 161 1341 INSERT -35 678 ome.model.core.PlaneInfo \N 161 1342 INSERT -35 679 ome.model.core.PlaneInfo \N 161 1343 INSERT -35 680 ome.model.core.PlaneInfo \N 161 1344 INSERT -35 681 ome.model.core.PlaneInfo \N 161 1345 INSERT -35 682 ome.model.core.PlaneInfo \N 161 1346 INSERT -35 683 ome.model.core.PlaneInfo \N 161 1347 INSERT -35 684 ome.model.core.PlaneInfo \N 161 1348 INSERT -35 685 ome.model.core.PlaneInfo \N 161 1349 INSERT -35 686 ome.model.core.PlaneInfo \N 161 1350 INSERT -35 687 ome.model.core.PlaneInfo \N 161 1351 INSERT -35 688 ome.model.core.PlaneInfo \N 161 1352 INSERT -35 689 ome.model.core.PlaneInfo \N 161 1353 INSERT -35 690 ome.model.core.PlaneInfo \N 161 1354 INSERT -35 691 ome.model.core.PlaneInfo \N 161 1355 INSERT -35 692 ome.model.core.PlaneInfo \N 161 1356 INSERT -35 693 ome.model.core.PlaneInfo \N 161 1357 INSERT -35 694 ome.model.core.PlaneInfo \N 161 1358 INSERT -35 695 ome.model.core.PlaneInfo \N 161 1359 INSERT -35 696 ome.model.core.PlaneInfo \N 161 1360 INSERT -35 697 ome.model.core.PlaneInfo \N 161 1361 INSERT -35 698 ome.model.core.PlaneInfo \N 161 1362 INSERT -35 699 ome.model.core.PlaneInfo \N 161 1363 INSERT -35 700 ome.model.core.PlaneInfo \N 161 1364 INSERT -35 701 ome.model.core.PlaneInfo \N 161 1365 INSERT -35 702 ome.model.core.PlaneInfo \N 161 1366 INSERT -35 703 ome.model.core.PlaneInfo \N 161 1367 INSERT -35 704 ome.model.core.PlaneInfo \N 161 1368 INSERT -35 705 ome.model.core.PlaneInfo \N 161 1369 INSERT -35 706 ome.model.core.PlaneInfo \N 161 1370 INSERT -35 707 ome.model.core.PlaneInfo \N 161 1371 INSERT -35 708 ome.model.core.PlaneInfo \N 161 1372 INSERT -35 709 ome.model.core.PlaneInfo \N 161 1373 INSERT -35 710 ome.model.core.PlaneInfo \N 161 1374 INSERT -35 711 ome.model.core.PlaneInfo \N 161 1375 INSERT -35 712 ome.model.core.PlaneInfo \N 161 1376 INSERT -35 713 ome.model.core.PlaneInfo \N 161 1377 INSERT -35 714 ome.model.core.PlaneInfo \N 161 1378 INSERT -35 715 ome.model.core.PlaneInfo \N 161 1379 INSERT -35 716 ome.model.core.PlaneInfo \N 161 1380 INSERT -35 717 ome.model.core.PlaneInfo \N 161 1381 INSERT -35 718 ome.model.core.PlaneInfo \N 161 1382 INSERT -35 719 ome.model.core.PlaneInfo \N 161 1383 INSERT -35 720 ome.model.core.PlaneInfo \N 161 1384 INSERT -35 721 ome.model.core.PlaneInfo \N 161 1385 INSERT -35 722 ome.model.core.PlaneInfo \N 161 1386 INSERT -35 723 ome.model.core.PlaneInfo \N 161 1387 INSERT -35 724 ome.model.core.PlaneInfo \N 161 1388 INSERT -35 725 ome.model.core.PlaneInfo \N 161 1389 INSERT -35 726 ome.model.core.PlaneInfo \N 161 1390 INSERT -35 727 ome.model.core.PlaneInfo \N 161 1391 INSERT -35 728 ome.model.core.PlaneInfo \N 161 1392 INSERT -35 729 ome.model.core.PlaneInfo \N 161 1393 INSERT -35 730 ome.model.core.PlaneInfo \N 161 1394 INSERT -35 731 ome.model.core.PlaneInfo \N 161 1395 INSERT -35 732 ome.model.core.PlaneInfo \N 161 1396 INSERT -35 733 ome.model.core.PlaneInfo \N 161 1397 INSERT -35 734 ome.model.core.PlaneInfo \N 161 1398 INSERT -35 735 ome.model.core.PlaneInfo \N 161 1399 INSERT -35 13 ome.model.acquisition.Microscope \N 161 1400 INSERT -35 13 ome.model.acquisition.Instrument \N 161 1401 INSERT -35 30 ome.model.acquisition.Detector \N 161 1402 INSERT -35 31 ome.model.acquisition.Detector \N 161 1403 INSERT -35 37 ome.model.acquisition.TransmittanceRange \N 161 1404 INSERT -35 37 ome.model.acquisition.Filter \N 161 1405 INSERT -35 38 ome.model.acquisition.TransmittanceRange \N 161 1406 INSERT -35 38 ome.model.acquisition.Filter \N 161 1407 INSERT -35 39 ome.model.acquisition.TransmittanceRange \N 161 1408 INSERT -35 39 ome.model.acquisition.Filter \N 161 1409 INSERT -35 73 ome.model.acquisition.Laser \N 161 1410 INSERT -35 74 ome.model.acquisition.Laser \N 161 1411 INSERT -35 75 ome.model.acquisition.Laser \N 161 1412 INSERT -35 76 ome.model.acquisition.Laser \N 161 1413 INSERT -35 77 ome.model.acquisition.Laser \N 161 1414 INSERT -35 78 ome.model.acquisition.Laser \N 161 1415 INSERT -35 13 ome.model.acquisition.Objective \N 161 1416 INSERT -35 13 ome.model.acquisition.ObjectiveSettings \N 161 1417 INSERT -35 13 ome.model.core.Image \N 161 1418 INSERT -35 28 ome.model.core.OriginalFile \N 161 1419 INSERT -35 13 ome.model.annotations.FileAnnotation \N 161 1420 INSERT -35 13 ome.model.annotations.ImageAnnotationLink \N 161 1421 INSERT -35 13 ome.model.containers.DatasetImageLink \N 161 1422 INSERT -35 13 ome.model.core.Pixels \N 161 1423 INSERT -35 30 ome.model.acquisition.DetectorSettings \N 161 1424 INSERT -35 25 ome.model.acquisition.LightPath \N 161 1425 INSERT -35 25 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1426 INSERT -35 27 ome.model.acquisition.LightSettings \N 161 1427 INSERT -35 30 ome.model.core.LogicalChannel \N 161 1428 INSERT -35 30 ome.model.core.Channel \N 161 1429 INSERT -35 31 ome.model.acquisition.DetectorSettings \N 161 1430 INSERT -35 26 ome.model.acquisition.LightPath \N 161 1431 INSERT -35 26 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1432 INSERT -35 28 ome.model.acquisition.LightSettings \N 161 1433 INSERT -35 31 ome.model.core.LogicalChannel \N 161 1434 INSERT -35 31 ome.model.core.Channel \N 161 1435 INSERT -35 736 ome.model.core.PlaneInfo \N 161 1436 INSERT -35 737 ome.model.core.PlaneInfo \N 161 1437 INSERT -35 738 ome.model.core.PlaneInfo \N 161 1438 INSERT -35 739 ome.model.core.PlaneInfo \N 161 1439 INSERT -35 740 ome.model.core.PlaneInfo \N 161 1440 INSERT -35 741 ome.model.core.PlaneInfo \N 161 1441 INSERT -35 742 ome.model.core.PlaneInfo \N 161 1442 INSERT -35 743 ome.model.core.PlaneInfo \N 161 1443 INSERT -35 744 ome.model.core.PlaneInfo \N 161 1444 INSERT -35 745 ome.model.core.PlaneInfo \N 161 1445 INSERT -35 746 ome.model.core.PlaneInfo \N 161 1446 INSERT -35 747 ome.model.core.PlaneInfo \N 161 1447 INSERT -35 748 ome.model.core.PlaneInfo \N 161 1448 INSERT -35 749 ome.model.core.PlaneInfo \N 161 1449 INSERT -35 750 ome.model.core.PlaneInfo \N 161 1450 INSERT -35 751 ome.model.core.PlaneInfo \N 161 1451 INSERT -35 752 ome.model.core.PlaneInfo \N 161 1452 INSERT -35 753 ome.model.core.PlaneInfo \N 161 1453 INSERT -35 754 ome.model.core.PlaneInfo \N 161 1454 INSERT -35 755 ome.model.core.PlaneInfo \N 161 1455 INSERT -35 756 ome.model.core.PlaneInfo \N 161 1456 INSERT -35 757 ome.model.core.PlaneInfo \N 161 1457 INSERT -35 758 ome.model.core.PlaneInfo \N 161 1458 INSERT -35 759 ome.model.core.PlaneInfo \N 161 1459 INSERT -35 760 ome.model.core.PlaneInfo \N 161 1460 INSERT -35 761 ome.model.core.PlaneInfo \N 161 1461 INSERT -35 762 ome.model.core.PlaneInfo \N 161 1462 INSERT -35 763 ome.model.core.PlaneInfo \N 161 1463 INSERT -35 764 ome.model.core.PlaneInfo \N 161 1464 INSERT -35 765 ome.model.core.PlaneInfo \N 161 1465 INSERT -35 766 ome.model.core.PlaneInfo \N 161 1466 INSERT -35 767 ome.model.core.PlaneInfo \N 161 1467 INSERT -35 768 ome.model.core.PlaneInfo \N 161 1468 INSERT -35 769 ome.model.core.PlaneInfo \N 161 1469 INSERT -35 770 ome.model.core.PlaneInfo \N 161 1470 INSERT -35 771 ome.model.core.PlaneInfo \N 161 1471 INSERT -35 772 ome.model.core.PlaneInfo \N 161 1472 INSERT -35 773 ome.model.core.PlaneInfo \N 161 1473 INSERT -35 774 ome.model.core.PlaneInfo \N 161 1474 INSERT -35 775 ome.model.core.PlaneInfo \N 161 1475 INSERT -35 776 ome.model.core.PlaneInfo \N 161 1476 INSERT -35 777 ome.model.core.PlaneInfo \N 161 1477 INSERT -35 778 ome.model.core.PlaneInfo \N 161 1478 INSERT -35 779 ome.model.core.PlaneInfo \N 161 1479 INSERT -35 780 ome.model.core.PlaneInfo \N 161 1480 INSERT -35 781 ome.model.core.PlaneInfo \N 161 1481 INSERT -35 782 ome.model.core.PlaneInfo \N 161 1482 INSERT -35 783 ome.model.core.PlaneInfo \N 161 1483 INSERT -35 784 ome.model.core.PlaneInfo \N 161 1484 INSERT -35 785 ome.model.core.PlaneInfo \N 161 1485 INSERT -35 786 ome.model.core.PlaneInfo \N 161 1486 INSERT -35 787 ome.model.core.PlaneInfo \N 161 1487 INSERT -35 788 ome.model.core.PlaneInfo \N 161 1488 INSERT -35 789 ome.model.core.PlaneInfo \N 161 1489 INSERT -35 790 ome.model.core.PlaneInfo \N 161 1490 INSERT -35 791 ome.model.core.PlaneInfo \N 161 1491 INSERT -35 792 ome.model.core.PlaneInfo \N 161 1492 INSERT -35 793 ome.model.core.PlaneInfo \N 161 1493 INSERT -35 794 ome.model.core.PlaneInfo \N 161 1494 INSERT -35 795 ome.model.core.PlaneInfo \N 161 1495 INSERT -35 796 ome.model.core.PlaneInfo \N 161 1496 INSERT -35 797 ome.model.core.PlaneInfo \N 161 1497 INSERT -35 14 ome.model.acquisition.Microscope \N 161 1498 INSERT -35 14 ome.model.acquisition.Instrument \N 161 1499 INSERT -35 32 ome.model.acquisition.Detector \N 161 1500 INSERT -35 33 ome.model.acquisition.Detector \N 161 1501 INSERT -35 40 ome.model.acquisition.TransmittanceRange \N 161 1502 INSERT -35 40 ome.model.acquisition.Filter \N 161 1503 INSERT -35 41 ome.model.acquisition.TransmittanceRange \N 161 1504 INSERT -35 41 ome.model.acquisition.Filter \N 161 1505 INSERT -35 42 ome.model.acquisition.TransmittanceRange \N 161 1506 INSERT -35 42 ome.model.acquisition.Filter \N 161 1507 INSERT -35 79 ome.model.acquisition.Laser \N 161 1508 INSERT -35 80 ome.model.acquisition.Laser \N 161 1509 INSERT -35 81 ome.model.acquisition.Laser \N 161 1510 INSERT -35 82 ome.model.acquisition.Laser \N 161 1511 INSERT -35 83 ome.model.acquisition.Laser \N 161 1512 INSERT -35 84 ome.model.acquisition.Laser \N 161 1513 INSERT -35 14 ome.model.acquisition.Objective \N 161 1514 INSERT -35 14 ome.model.acquisition.ObjectiveSettings \N 161 1515 INSERT -35 14 ome.model.core.Image \N 161 1516 INSERT -35 29 ome.model.core.OriginalFile \N 161 1517 INSERT -35 14 ome.model.annotations.FileAnnotation \N 161 1518 INSERT -35 14 ome.model.annotations.ImageAnnotationLink \N 161 1519 INSERT -35 14 ome.model.containers.DatasetImageLink \N 161 1520 INSERT -35 14 ome.model.core.Pixels \N 161 1521 INSERT -35 32 ome.model.acquisition.DetectorSettings \N 161 1522 INSERT -35 27 ome.model.acquisition.LightPath \N 161 1523 INSERT -35 27 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1524 INSERT -35 29 ome.model.acquisition.LightSettings \N 161 1525 INSERT -35 32 ome.model.core.LogicalChannel \N 161 1526 INSERT -35 32 ome.model.core.Channel \N 161 1527 INSERT -35 33 ome.model.acquisition.DetectorSettings \N 161 1528 INSERT -35 28 ome.model.acquisition.LightPath \N 161 1529 INSERT -35 28 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1530 INSERT -35 30 ome.model.acquisition.LightSettings \N 161 1531 INSERT -35 33 ome.model.core.LogicalChannel \N 161 1532 INSERT -35 33 ome.model.core.Channel \N 161 1533 INSERT -35 798 ome.model.core.PlaneInfo \N 161 1534 INSERT -35 799 ome.model.core.PlaneInfo \N 161 1535 INSERT -35 800 ome.model.core.PlaneInfo \N 161 1536 INSERT -35 801 ome.model.core.PlaneInfo \N 161 1537 INSERT -35 802 ome.model.core.PlaneInfo \N 161 1538 INSERT -35 803 ome.model.core.PlaneInfo \N 161 1539 INSERT -35 804 ome.model.core.PlaneInfo \N 161 1540 INSERT -35 805 ome.model.core.PlaneInfo \N 161 1541 INSERT -35 806 ome.model.core.PlaneInfo \N 161 1542 INSERT -35 807 ome.model.core.PlaneInfo \N 161 1543 INSERT -35 808 ome.model.core.PlaneInfo \N 161 1544 INSERT -35 809 ome.model.core.PlaneInfo \N 161 1545 INSERT -35 810 ome.model.core.PlaneInfo \N 161 1546 INSERT -35 811 ome.model.core.PlaneInfo \N 161 1547 INSERT -35 812 ome.model.core.PlaneInfo \N 161 1548 INSERT -35 813 ome.model.core.PlaneInfo \N 161 1549 INSERT -35 814 ome.model.core.PlaneInfo \N 161 1550 INSERT -35 815 ome.model.core.PlaneInfo \N 161 1551 INSERT -35 816 ome.model.core.PlaneInfo \N 161 1552 INSERT -35 817 ome.model.core.PlaneInfo \N 161 1553 INSERT -35 818 ome.model.core.PlaneInfo \N 161 1554 INSERT -35 819 ome.model.core.PlaneInfo \N 161 1555 INSERT -35 820 ome.model.core.PlaneInfo \N 161 1556 INSERT -35 821 ome.model.core.PlaneInfo \N 161 1557 INSERT -35 822 ome.model.core.PlaneInfo \N 161 1558 INSERT -35 823 ome.model.core.PlaneInfo \N 161 1559 INSERT -35 824 ome.model.core.PlaneInfo \N 161 1560 INSERT -35 825 ome.model.core.PlaneInfo \N 161 1561 INSERT -35 826 ome.model.core.PlaneInfo \N 161 1562 INSERT -35 827 ome.model.core.PlaneInfo \N 161 1563 INSERT -35 828 ome.model.core.PlaneInfo \N 161 1564 INSERT -35 829 ome.model.core.PlaneInfo \N 161 1565 INSERT -35 830 ome.model.core.PlaneInfo \N 161 1566 INSERT -35 831 ome.model.core.PlaneInfo \N 161 1567 INSERT -35 832 ome.model.core.PlaneInfo \N 161 1568 INSERT -35 833 ome.model.core.PlaneInfo \N 161 1569 INSERT -35 834 ome.model.core.PlaneInfo \N 161 1570 INSERT -35 835 ome.model.core.PlaneInfo \N 161 1571 INSERT -35 836 ome.model.core.PlaneInfo \N 161 1572 INSERT -35 837 ome.model.core.PlaneInfo \N 161 1573 INSERT -35 838 ome.model.core.PlaneInfo \N 161 1574 INSERT -35 839 ome.model.core.PlaneInfo \N 161 1575 INSERT -35 840 ome.model.core.PlaneInfo \N 161 1576 INSERT -35 841 ome.model.core.PlaneInfo \N 161 1577 INSERT -35 842 ome.model.core.PlaneInfo \N 161 1578 INSERT -35 843 ome.model.core.PlaneInfo \N 161 1579 INSERT -35 844 ome.model.core.PlaneInfo \N 161 1580 INSERT -35 845 ome.model.core.PlaneInfo \N 161 1581 INSERT -35 846 ome.model.core.PlaneInfo \N 161 1582 INSERT -35 847 ome.model.core.PlaneInfo \N 161 1583 INSERT -35 848 ome.model.core.PlaneInfo \N 161 1584 INSERT -35 849 ome.model.core.PlaneInfo \N 161 1585 INSERT -35 850 ome.model.core.PlaneInfo \N 161 1586 INSERT -35 851 ome.model.core.PlaneInfo \N 161 1587 INSERT -35 852 ome.model.core.PlaneInfo \N 161 1588 INSERT -35 853 ome.model.core.PlaneInfo \N 161 1589 INSERT -35 854 ome.model.core.PlaneInfo \N 161 1590 INSERT -35 855 ome.model.core.PlaneInfo \N 161 1591 INSERT -35 856 ome.model.core.PlaneInfo \N 161 1592 INSERT -35 857 ome.model.core.PlaneInfo \N 161 1593 INSERT -35 858 ome.model.core.PlaneInfo \N 161 1594 INSERT -35 859 ome.model.core.PlaneInfo \N 161 1595 INSERT -35 860 ome.model.core.PlaneInfo \N 161 1596 INSERT -35 861 ome.model.core.PlaneInfo \N 161 1597 INSERT -35 15 ome.model.acquisition.Microscope \N 161 1598 INSERT -35 15 ome.model.acquisition.Instrument \N 161 1599 INSERT -35 34 ome.model.acquisition.Detector \N 161 1600 INSERT -35 35 ome.model.acquisition.Detector \N 161 1601 INSERT -35 36 ome.model.acquisition.Detector \N 161 1602 INSERT -35 43 ome.model.acquisition.TransmittanceRange \N 161 1603 INSERT -35 43 ome.model.acquisition.Filter \N 161 1604 INSERT -35 44 ome.model.acquisition.TransmittanceRange \N 161 1605 INSERT -35 44 ome.model.acquisition.Filter \N 161 1606 INSERT -35 45 ome.model.acquisition.TransmittanceRange \N 161 1607 INSERT -35 45 ome.model.acquisition.Filter \N 161 1608 INSERT -35 85 ome.model.acquisition.Laser \N 161 1609 INSERT -35 86 ome.model.acquisition.Laser \N 161 1610 INSERT -35 87 ome.model.acquisition.Laser \N 161 1611 INSERT -35 88 ome.model.acquisition.Laser \N 161 1612 INSERT -35 89 ome.model.acquisition.Laser \N 161 1613 INSERT -35 90 ome.model.acquisition.Laser \N 161 1614 INSERT -35 15 ome.model.acquisition.Objective \N 161 1615 INSERT -35 15 ome.model.acquisition.ObjectiveSettings \N 161 1616 INSERT -35 15 ome.model.core.Image \N 161 1617 INSERT -35 30 ome.model.core.OriginalFile \N 161 1618 INSERT -35 15 ome.model.annotations.FileAnnotation \N 161 1619 INSERT -35 15 ome.model.annotations.ImageAnnotationLink \N 161 1620 INSERT -35 15 ome.model.containers.DatasetImageLink \N 161 1621 INSERT -35 15 ome.model.core.Pixels \N 161 1622 INSERT -35 34 ome.model.acquisition.DetectorSettings \N 161 1623 INSERT -35 29 ome.model.acquisition.LightPath \N 161 1624 INSERT -35 29 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1625 INSERT -35 31 ome.model.acquisition.LightSettings \N 161 1626 INSERT -35 34 ome.model.core.LogicalChannel \N 161 1627 INSERT -35 34 ome.model.core.Channel \N 161 1628 INSERT -35 35 ome.model.acquisition.DetectorSettings \N 161 1629 INSERT -35 30 ome.model.acquisition.LightPath \N 161 1630 INSERT -35 30 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1631 INSERT -35 35 ome.model.core.LogicalChannel \N 161 1632 INSERT -35 35 ome.model.core.Channel \N 161 1633 INSERT -35 36 ome.model.acquisition.DetectorSettings \N 161 1634 INSERT -35 36 ome.model.core.LogicalChannel \N 161 1635 INSERT -35 36 ome.model.core.Channel \N 161 1636 INSERT -35 862 ome.model.core.PlaneInfo \N 161 1637 INSERT -35 863 ome.model.core.PlaneInfo \N 161 1638 INSERT -35 864 ome.model.core.PlaneInfo \N 161 1639 INSERT -35 865 ome.model.core.PlaneInfo \N 161 1640 INSERT -35 866 ome.model.core.PlaneInfo \N 161 1641 INSERT -35 867 ome.model.core.PlaneInfo \N 161 1642 INSERT -35 868 ome.model.core.PlaneInfo \N 161 1643 INSERT -35 869 ome.model.core.PlaneInfo \N 161 1644 INSERT -35 870 ome.model.core.PlaneInfo \N 161 1645 INSERT -35 871 ome.model.core.PlaneInfo \N 161 1646 INSERT -35 872 ome.model.core.PlaneInfo \N 161 1647 INSERT -35 873 ome.model.core.PlaneInfo \N 161 1648 INSERT -35 874 ome.model.core.PlaneInfo \N 161 1649 INSERT -35 875 ome.model.core.PlaneInfo \N 161 1650 INSERT -35 876 ome.model.core.PlaneInfo \N 161 1651 INSERT -35 877 ome.model.core.PlaneInfo \N 161 1652 INSERT -35 878 ome.model.core.PlaneInfo \N 161 1653 INSERT -35 879 ome.model.core.PlaneInfo \N 161 1654 INSERT -35 880 ome.model.core.PlaneInfo \N 161 1655 INSERT -35 881 ome.model.core.PlaneInfo \N 161 1656 INSERT -35 882 ome.model.core.PlaneInfo \N 161 1657 INSERT -35 883 ome.model.core.PlaneInfo \N 161 1658 INSERT -35 884 ome.model.core.PlaneInfo \N 161 1659 INSERT -35 885 ome.model.core.PlaneInfo \N 161 1660 INSERT -35 886 ome.model.core.PlaneInfo \N 161 1661 INSERT -35 887 ome.model.core.PlaneInfo \N 161 1662 INSERT -35 888 ome.model.core.PlaneInfo \N 161 1663 INSERT -35 889 ome.model.core.PlaneInfo \N 161 1664 INSERT -35 890 ome.model.core.PlaneInfo \N 161 1665 INSERT -35 891 ome.model.core.PlaneInfo \N 161 1666 INSERT -35 892 ome.model.core.PlaneInfo \N 161 1667 INSERT -35 893 ome.model.core.PlaneInfo \N 161 1668 INSERT -35 894 ome.model.core.PlaneInfo \N 161 1669 INSERT -35 895 ome.model.core.PlaneInfo \N 161 1670 INSERT -35 896 ome.model.core.PlaneInfo \N 161 1671 INSERT -35 897 ome.model.core.PlaneInfo \N 161 1672 INSERT -35 898 ome.model.core.PlaneInfo \N 161 1673 INSERT -35 899 ome.model.core.PlaneInfo \N 161 1674 INSERT -35 900 ome.model.core.PlaneInfo \N 161 1675 INSERT -35 901 ome.model.core.PlaneInfo \N 161 1676 INSERT -35 902 ome.model.core.PlaneInfo \N 161 1677 INSERT -35 903 ome.model.core.PlaneInfo \N 161 1678 INSERT -35 904 ome.model.core.PlaneInfo \N 161 1679 INSERT -35 905 ome.model.core.PlaneInfo \N 161 1680 INSERT -35 906 ome.model.core.PlaneInfo \N 161 1681 INSERT -35 907 ome.model.core.PlaneInfo \N 161 1682 INSERT -35 908 ome.model.core.PlaneInfo \N 161 1683 INSERT -35 909 ome.model.core.PlaneInfo \N 161 1684 INSERT -35 910 ome.model.core.PlaneInfo \N 161 1685 INSERT -35 911 ome.model.core.PlaneInfo \N 161 1686 INSERT -35 912 ome.model.core.PlaneInfo \N 161 1687 INSERT -35 913 ome.model.core.PlaneInfo \N 161 1688 INSERT -35 914 ome.model.core.PlaneInfo \N 161 1689 INSERT -35 915 ome.model.core.PlaneInfo \N 161 1690 INSERT -35 916 ome.model.core.PlaneInfo \N 161 1691 INSERT -35 917 ome.model.core.PlaneInfo \N 161 1692 INSERT -35 918 ome.model.core.PlaneInfo \N 161 1693 INSERT -35 919 ome.model.core.PlaneInfo \N 161 1694 INSERT -35 920 ome.model.core.PlaneInfo \N 161 1695 INSERT -35 921 ome.model.core.PlaneInfo \N 161 1696 INSERT -35 922 ome.model.core.PlaneInfo \N 161 1697 INSERT -35 923 ome.model.core.PlaneInfo \N 161 1698 INSERT -35 924 ome.model.core.PlaneInfo \N 161 1699 INSERT -35 925 ome.model.core.PlaneInfo \N 161 1700 INSERT -35 926 ome.model.core.PlaneInfo \N 161 1701 INSERT -35 927 ome.model.core.PlaneInfo \N 161 1702 INSERT -35 928 ome.model.core.PlaneInfo \N 161 1703 INSERT -35 929 ome.model.core.PlaneInfo \N 161 1704 INSERT -35 930 ome.model.core.PlaneInfo \N 161 1705 INSERT -35 931 ome.model.core.PlaneInfo \N 161 1706 INSERT -35 932 ome.model.core.PlaneInfo \N 161 1707 INSERT -35 933 ome.model.core.PlaneInfo \N 161 1708 INSERT -35 934 ome.model.core.PlaneInfo \N 161 1709 INSERT -35 935 ome.model.core.PlaneInfo \N 161 1710 INSERT -35 936 ome.model.core.PlaneInfo \N 161 1711 INSERT -35 937 ome.model.core.PlaneInfo \N 161 1712 INSERT -35 938 ome.model.core.PlaneInfo \N 161 1713 INSERT -35 939 ome.model.core.PlaneInfo \N 161 1714 INSERT -35 940 ome.model.core.PlaneInfo \N 161 1715 INSERT -35 941 ome.model.core.PlaneInfo \N 161 1716 INSERT -35 942 ome.model.core.PlaneInfo \N 161 1717 INSERT -35 943 ome.model.core.PlaneInfo \N 161 1718 INSERT -35 944 ome.model.core.PlaneInfo \N 161 1719 INSERT -35 945 ome.model.core.PlaneInfo \N 161 1720 INSERT -35 946 ome.model.core.PlaneInfo \N 161 1721 INSERT -35 947 ome.model.core.PlaneInfo \N 161 1722 INSERT -35 948 ome.model.core.PlaneInfo \N 161 1723 INSERT -35 949 ome.model.core.PlaneInfo \N 161 1724 INSERT -35 950 ome.model.core.PlaneInfo \N 161 1725 INSERT -35 951 ome.model.core.PlaneInfo \N 161 1726 INSERT -35 952 ome.model.core.PlaneInfo \N 161 1727 INSERT -35 953 ome.model.core.PlaneInfo \N 161 1728 INSERT -35 954 ome.model.core.PlaneInfo \N 161 1729 INSERT -35 16 ome.model.acquisition.Microscope \N 161 1730 INSERT -35 16 ome.model.acquisition.Instrument \N 161 1731 INSERT -35 37 ome.model.acquisition.Detector \N 161 1732 INSERT -35 38 ome.model.acquisition.Detector \N 161 1733 INSERT -35 39 ome.model.acquisition.Detector \N 161 1734 INSERT -35 46 ome.model.acquisition.TransmittanceRange \N 161 1735 INSERT -35 46 ome.model.acquisition.Filter \N 161 1736 INSERT -35 47 ome.model.acquisition.TransmittanceRange \N 161 1737 INSERT -35 47 ome.model.acquisition.Filter \N 161 1738 INSERT -35 48 ome.model.acquisition.TransmittanceRange \N 161 1739 INSERT -35 48 ome.model.acquisition.Filter \N 161 1740 INSERT -35 91 ome.model.acquisition.Laser \N 161 1741 INSERT -35 92 ome.model.acquisition.Laser \N 161 1742 INSERT -35 93 ome.model.acquisition.Laser \N 161 1743 INSERT -35 94 ome.model.acquisition.Laser \N 161 1744 INSERT -35 95 ome.model.acquisition.Laser \N 161 1745 INSERT -35 96 ome.model.acquisition.Laser \N 161 1746 INSERT -35 16 ome.model.acquisition.Objective \N 161 1747 INSERT -35 16 ome.model.acquisition.ObjectiveSettings \N 161 1748 INSERT -35 16 ome.model.core.Image \N 161 1749 INSERT -35 31 ome.model.core.OriginalFile \N 161 1750 INSERT -35 16 ome.model.annotations.FileAnnotation \N 161 1751 INSERT -35 16 ome.model.annotations.ImageAnnotationLink \N 161 1752 INSERT -35 16 ome.model.containers.DatasetImageLink \N 161 1753 INSERT -35 16 ome.model.core.Pixels \N 161 1754 INSERT -35 37 ome.model.acquisition.DetectorSettings \N 161 1755 INSERT -35 31 ome.model.acquisition.LightPath \N 161 1756 INSERT -35 31 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1757 INSERT -35 32 ome.model.acquisition.LightSettings \N 161 1758 INSERT -35 37 ome.model.core.LogicalChannel \N 161 1759 INSERT -35 37 ome.model.core.Channel \N 161 1760 INSERT -35 38 ome.model.acquisition.DetectorSettings \N 161 1761 INSERT -35 32 ome.model.acquisition.LightPath \N 161 1762 INSERT -35 32 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1763 INSERT -35 38 ome.model.core.LogicalChannel \N 161 1764 INSERT -35 38 ome.model.core.Channel \N 161 1765 INSERT -35 39 ome.model.acquisition.DetectorSettings \N 161 1766 INSERT -35 39 ome.model.core.LogicalChannel \N 161 1767 INSERT -35 39 ome.model.core.Channel \N 161 1768 INSERT -35 955 ome.model.core.PlaneInfo \N 161 1769 INSERT -35 956 ome.model.core.PlaneInfo \N 161 1770 INSERT -35 957 ome.model.core.PlaneInfo \N 161 1771 INSERT -35 958 ome.model.core.PlaneInfo \N 161 1772 INSERT -35 959 ome.model.core.PlaneInfo \N 161 1773 INSERT -35 960 ome.model.core.PlaneInfo \N 161 1774 INSERT -35 961 ome.model.core.PlaneInfo \N 161 1775 INSERT -35 962 ome.model.core.PlaneInfo \N 161 1776 INSERT -35 963 ome.model.core.PlaneInfo \N 161 1777 INSERT -35 964 ome.model.core.PlaneInfo \N 161 1778 INSERT -35 965 ome.model.core.PlaneInfo \N 161 1779 INSERT -35 966 ome.model.core.PlaneInfo \N 161 1780 INSERT -35 967 ome.model.core.PlaneInfo \N 161 1781 INSERT -35 968 ome.model.core.PlaneInfo \N 161 1782 INSERT -35 969 ome.model.core.PlaneInfo \N 161 1783 INSERT -35 970 ome.model.core.PlaneInfo \N 161 1784 INSERT -35 971 ome.model.core.PlaneInfo \N 161 1785 INSERT -35 972 ome.model.core.PlaneInfo \N 161 1786 INSERT -35 973 ome.model.core.PlaneInfo \N 161 1787 INSERT -35 974 ome.model.core.PlaneInfo \N 161 1788 INSERT -35 975 ome.model.core.PlaneInfo \N 161 1789 INSERT -35 976 ome.model.core.PlaneInfo \N 161 1790 INSERT -35 977 ome.model.core.PlaneInfo \N 161 1791 INSERT -35 978 ome.model.core.PlaneInfo \N 161 1792 INSERT -35 979 ome.model.core.PlaneInfo \N 161 1793 INSERT -35 980 ome.model.core.PlaneInfo \N 161 1794 INSERT -35 981 ome.model.core.PlaneInfo \N 161 1795 INSERT -35 982 ome.model.core.PlaneInfo \N 161 1796 INSERT -35 983 ome.model.core.PlaneInfo \N 161 1797 INSERT -35 984 ome.model.core.PlaneInfo \N 161 1798 INSERT -35 985 ome.model.core.PlaneInfo \N 161 1799 INSERT -35 986 ome.model.core.PlaneInfo \N 161 1800 INSERT -35 987 ome.model.core.PlaneInfo \N 161 1801 INSERT -35 988 ome.model.core.PlaneInfo \N 161 1802 INSERT -35 989 ome.model.core.PlaneInfo \N 161 1803 INSERT -35 990 ome.model.core.PlaneInfo \N 161 1804 INSERT -35 991 ome.model.core.PlaneInfo \N 161 1805 INSERT -35 992 ome.model.core.PlaneInfo \N 161 1806 INSERT -35 993 ome.model.core.PlaneInfo \N 161 1807 INSERT -35 994 ome.model.core.PlaneInfo \N 161 1808 INSERT -35 995 ome.model.core.PlaneInfo \N 161 1809 INSERT -35 996 ome.model.core.PlaneInfo \N 161 1810 INSERT -35 997 ome.model.core.PlaneInfo \N 161 1811 INSERT -35 998 ome.model.core.PlaneInfo \N 161 1812 INSERT -35 999 ome.model.core.PlaneInfo \N 161 1813 INSERT -35 1000 ome.model.core.PlaneInfo \N 161 1814 INSERT -35 1001 ome.model.core.PlaneInfo \N 161 1815 INSERT -35 1002 ome.model.core.PlaneInfo \N 161 1816 INSERT -35 1003 ome.model.core.PlaneInfo \N 161 1817 INSERT -35 1004 ome.model.core.PlaneInfo \N 161 1818 INSERT -35 1005 ome.model.core.PlaneInfo \N 161 1819 INSERT -35 1006 ome.model.core.PlaneInfo \N 161 1820 INSERT -35 1007 ome.model.core.PlaneInfo \N 161 1821 INSERT -35 1008 ome.model.core.PlaneInfo \N 161 1822 INSERT -35 1009 ome.model.core.PlaneInfo \N 161 1823 INSERT -35 1010 ome.model.core.PlaneInfo \N 161 1824 INSERT -35 1011 ome.model.core.PlaneInfo \N 161 1825 INSERT -35 1012 ome.model.core.PlaneInfo \N 161 1826 INSERT -35 1013 ome.model.core.PlaneInfo \N 161 1827 INSERT -35 1014 ome.model.core.PlaneInfo \N 161 1828 INSERT -35 1015 ome.model.core.PlaneInfo \N 161 1829 INSERT -35 1016 ome.model.core.PlaneInfo \N 161 1830 INSERT -35 1017 ome.model.core.PlaneInfo \N 161 1831 INSERT -35 1018 ome.model.core.PlaneInfo \N 161 1832 INSERT -35 1019 ome.model.core.PlaneInfo \N 161 1833 INSERT -35 1020 ome.model.core.PlaneInfo \N 161 1834 INSERT -35 1021 ome.model.core.PlaneInfo \N 161 1835 INSERT -35 1022 ome.model.core.PlaneInfo \N 161 1836 INSERT -35 1023 ome.model.core.PlaneInfo \N 161 1837 INSERT -35 1024 ome.model.core.PlaneInfo \N 161 1838 INSERT -35 1025 ome.model.core.PlaneInfo \N 161 1839 INSERT -35 1026 ome.model.core.PlaneInfo \N 161 1840 INSERT -35 1027 ome.model.core.PlaneInfo \N 161 1841 INSERT -35 1028 ome.model.core.PlaneInfo \N 161 1842 INSERT -35 1029 ome.model.core.PlaneInfo \N 161 1843 INSERT -35 1030 ome.model.core.PlaneInfo \N 161 1844 INSERT -35 1031 ome.model.core.PlaneInfo \N 161 1845 INSERT -35 1032 ome.model.core.PlaneInfo \N 161 1846 INSERT -35 1033 ome.model.core.PlaneInfo \N 161 1847 INSERT -35 1034 ome.model.core.PlaneInfo \N 161 1848 INSERT -35 1035 ome.model.core.PlaneInfo \N 161 1849 INSERT -35 1036 ome.model.core.PlaneInfo \N 161 1850 INSERT -35 1037 ome.model.core.PlaneInfo \N 161 1851 INSERT -35 1038 ome.model.core.PlaneInfo \N 161 1852 INSERT -35 1039 ome.model.core.PlaneInfo \N 161 1853 INSERT -35 1040 ome.model.core.PlaneInfo \N 161 1854 INSERT -35 1041 ome.model.core.PlaneInfo \N 161 1855 INSERT -35 17 ome.model.acquisition.Microscope \N 161 1856 INSERT -35 17 ome.model.acquisition.Instrument \N 161 1857 INSERT -35 40 ome.model.acquisition.Detector \N 161 1858 INSERT -35 41 ome.model.acquisition.Detector \N 161 1859 INSERT -35 42 ome.model.acquisition.Detector \N 161 1860 INSERT -35 49 ome.model.acquisition.TransmittanceRange \N 161 1861 INSERT -35 49 ome.model.acquisition.Filter \N 161 1862 INSERT -35 50 ome.model.acquisition.TransmittanceRange \N 161 1863 INSERT -35 50 ome.model.acquisition.Filter \N 161 1864 INSERT -35 51 ome.model.acquisition.TransmittanceRange \N 161 1865 INSERT -35 51 ome.model.acquisition.Filter \N 161 1866 INSERT -35 97 ome.model.acquisition.Laser \N 161 1867 INSERT -35 98 ome.model.acquisition.Laser \N 161 1868 INSERT -35 99 ome.model.acquisition.Laser \N 161 1869 INSERT -35 100 ome.model.acquisition.Laser \N 161 1870 INSERT -35 101 ome.model.acquisition.Laser \N 161 1871 INSERT -35 102 ome.model.acquisition.Laser \N 161 1872 INSERT -35 17 ome.model.acquisition.Objective \N 161 1873 INSERT -35 17 ome.model.acquisition.ObjectiveSettings \N 161 1874 INSERT -35 17 ome.model.core.Image \N 161 1875 INSERT -35 32 ome.model.core.OriginalFile \N 161 1876 INSERT -35 17 ome.model.annotations.FileAnnotation \N 161 1877 INSERT -35 17 ome.model.annotations.ImageAnnotationLink \N 161 1878 INSERT -35 17 ome.model.containers.DatasetImageLink \N 161 1879 INSERT -35 17 ome.model.core.Pixels \N 161 1880 INSERT -35 40 ome.model.acquisition.DetectorSettings \N 161 1881 INSERT -35 33 ome.model.acquisition.LightPath \N 161 1882 INSERT -35 33 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1883 INSERT -35 33 ome.model.acquisition.LightSettings \N 161 1884 INSERT -35 40 ome.model.core.LogicalChannel \N 161 1885 INSERT -35 40 ome.model.core.Channel \N 161 1886 INSERT -35 41 ome.model.acquisition.DetectorSettings \N 161 1887 INSERT -35 34 ome.model.acquisition.LightPath \N 161 1888 INSERT -35 34 ome.model.acquisition.LightPathEmissionFilterLink \N 161 1889 INSERT -35 41 ome.model.core.LogicalChannel \N 161 1890 INSERT -35 41 ome.model.core.Channel \N 161 1891 INSERT -35 42 ome.model.acquisition.DetectorSettings \N 161 1892 INSERT -35 42 ome.model.core.LogicalChannel \N 161 1893 INSERT -35 42 ome.model.core.Channel \N 161 1894 INSERT -35 1042 ome.model.core.PlaneInfo \N 161 1895 INSERT -35 1043 ome.model.core.PlaneInfo \N 161 1896 INSERT -35 1044 ome.model.core.PlaneInfo \N 161 1897 INSERT -35 1045 ome.model.core.PlaneInfo \N 161 1898 INSERT -35 1046 ome.model.core.PlaneInfo \N 161 1899 INSERT -35 1047 ome.model.core.PlaneInfo \N 161 1900 INSERT -35 1048 ome.model.core.PlaneInfo \N 161 1901 INSERT -35 1049 ome.model.core.PlaneInfo \N 161 1902 INSERT -35 1050 ome.model.core.PlaneInfo \N 161 1903 INSERT -35 1051 ome.model.core.PlaneInfo \N 161 1904 INSERT -35 1052 ome.model.core.PlaneInfo \N 161 1905 INSERT -35 1053 ome.model.core.PlaneInfo \N 161 1906 INSERT -35 1054 ome.model.core.PlaneInfo \N 161 1907 INSERT -35 1055 ome.model.core.PlaneInfo \N 161 1908 INSERT -35 1056 ome.model.core.PlaneInfo \N 161 1909 INSERT -35 1057 ome.model.core.PlaneInfo \N 161 1910 INSERT -35 1058 ome.model.core.PlaneInfo \N 161 1911 INSERT -35 1059 ome.model.core.PlaneInfo \N 161 1912 INSERT -35 1060 ome.model.core.PlaneInfo \N 161 1913 INSERT -35 1061 ome.model.core.PlaneInfo \N 161 1914 INSERT -35 1062 ome.model.core.PlaneInfo \N 161 1915 INSERT -35 1063 ome.model.core.PlaneInfo \N 161 1916 INSERT -35 1064 ome.model.core.PlaneInfo \N 161 1917 INSERT -35 1065 ome.model.core.PlaneInfo \N 161 1918 INSERT -35 1066 ome.model.core.PlaneInfo \N 161 1919 INSERT -35 1067 ome.model.core.PlaneInfo \N 161 1920 INSERT -35 1068 ome.model.core.PlaneInfo \N 161 1921 INSERT -35 1069 ome.model.core.PlaneInfo \N 161 1922 INSERT -35 1070 ome.model.core.PlaneInfo \N 161 1923 INSERT -35 1071 ome.model.core.PlaneInfo \N 161 1924 INSERT -35 1072 ome.model.core.PlaneInfo \N 161 1925 INSERT -35 1073 ome.model.core.PlaneInfo \N 161 1926 INSERT -35 1074 ome.model.core.PlaneInfo \N 161 1927 INSERT -35 1075 ome.model.core.PlaneInfo \N 161 1928 INSERT -35 1076 ome.model.core.PlaneInfo \N 161 1929 INSERT -35 1077 ome.model.core.PlaneInfo \N 161 1930 INSERT -35 1078 ome.model.core.PlaneInfo \N 161 1931 INSERT -35 1079 ome.model.core.PlaneInfo \N 161 1932 INSERT -35 1080 ome.model.core.PlaneInfo \N 161 1933 INSERT -35 1081 ome.model.core.PlaneInfo \N 161 1934 INSERT -35 1082 ome.model.core.PlaneInfo \N 161 1935 INSERT -35 1083 ome.model.core.PlaneInfo \N 161 1936 INSERT -35 1084 ome.model.core.PlaneInfo \N 161 1937 INSERT -35 1085 ome.model.core.PlaneInfo \N 161 1938 INSERT -35 1086 ome.model.core.PlaneInfo \N 161 1939 INSERT -35 1087 ome.model.core.PlaneInfo \N 161 1940 INSERT -35 1088 ome.model.core.PlaneInfo \N 161 1941 INSERT -35 1089 ome.model.core.PlaneInfo \N 161 1942 INSERT -35 1090 ome.model.core.PlaneInfo \N 161 1943 INSERT -35 1091 ome.model.core.PlaneInfo \N 161 1944 INSERT -35 1092 ome.model.core.PlaneInfo \N 161 1945 INSERT -35 1093 ome.model.core.PlaneInfo \N 161 1946 INSERT -35 1094 ome.model.core.PlaneInfo \N 161 1947 INSERT -35 1095 ome.model.core.PlaneInfo \N 161 1948 INSERT -35 1096 ome.model.core.PlaneInfo \N 161 1949 INSERT -35 1097 ome.model.core.PlaneInfo \N 161 1950 INSERT -35 1098 ome.model.core.PlaneInfo \N 161 1951 INSERT -35 1099 ome.model.core.PlaneInfo \N 161 1952 INSERT -35 1100 ome.model.core.PlaneInfo \N 161 1953 INSERT -35 1101 ome.model.core.PlaneInfo \N 161 1954 INSERT -35 1102 ome.model.core.PlaneInfo \N 161 1955 INSERT -35 1103 ome.model.core.PlaneInfo \N 161 1956 INSERT -35 1104 ome.model.core.PlaneInfo \N 161 1957 INSERT -35 1105 ome.model.core.PlaneInfo \N 161 1958 INSERT -35 1106 ome.model.core.PlaneInfo \N 161 1959 INSERT -35 1107 ome.model.core.PlaneInfo \N 161 1960 INSERT -35 1108 ome.model.core.PlaneInfo \N 161 1961 INSERT -35 1109 ome.model.core.PlaneInfo \N 161 1962 INSERT -35 1110 ome.model.core.PlaneInfo \N 161 1963 INSERT -35 1111 ome.model.core.PlaneInfo \N 161 1964 INSERT -35 1112 ome.model.core.PlaneInfo \N 161 1965 INSERT -35 1113 ome.model.core.PlaneInfo \N 161 1966 INSERT -35 1114 ome.model.core.PlaneInfo \N 161 1967 INSERT -35 1115 ome.model.core.PlaneInfo \N 161 1968 INSERT -35 1116 ome.model.core.PlaneInfo \N 161 1969 INSERT -35 1117 ome.model.core.PlaneInfo \N 161 1970 INSERT -35 1118 ome.model.core.PlaneInfo \N 161 1971 INSERT -35 1119 ome.model.core.PlaneInfo \N 161 1972 INSERT -35 1120 ome.model.core.PlaneInfo \N 161 1973 INSERT -35 1121 ome.model.core.PlaneInfo \N 161 1974 INSERT -35 1122 ome.model.core.PlaneInfo \N 161 1975 INSERT -35 1123 ome.model.core.PlaneInfo \N 161 1976 INSERT -35 1124 ome.model.core.PlaneInfo \N 161 1977 INSERT -35 1125 ome.model.core.PlaneInfo \N 161 1978 INSERT -35 1126 ome.model.core.PlaneInfo \N 161 1979 INSERT -35 1127 ome.model.core.PlaneInfo \N 161 1980 INSERT -35 1128 ome.model.core.PlaneInfo \N 161 1981 INSERT -35 18 ome.model.acquisition.Microscope \N 161 1982 INSERT -35 18 ome.model.acquisition.Instrument \N 161 1983 INSERT -35 43 ome.model.acquisition.Detector \N 161 1984 INSERT -35 44 ome.model.acquisition.Detector \N 161 1985 INSERT -35 45 ome.model.acquisition.Detector \N 161 1986 INSERT -35 52 ome.model.acquisition.TransmittanceRange \N 161 1987 INSERT -35 52 ome.model.acquisition.Filter \N 161 1988 INSERT -35 53 ome.model.acquisition.TransmittanceRange \N 161 1989 INSERT -35 53 ome.model.acquisition.Filter \N 161 1990 INSERT -35 54 ome.model.acquisition.TransmittanceRange \N 161 1991 INSERT -35 54 ome.model.acquisition.Filter \N 161 1992 INSERT -35 103 ome.model.acquisition.Laser \N 161 1993 INSERT -35 104 ome.model.acquisition.Laser \N 161 1994 INSERT -35 105 ome.model.acquisition.Laser \N 161 1995 INSERT -35 106 ome.model.acquisition.Laser \N 161 1996 INSERT -35 107 ome.model.acquisition.Laser \N 161 1997 INSERT -35 108 ome.model.acquisition.Laser \N 161 1998 INSERT -35 18 ome.model.acquisition.Objective \N 161 1999 INSERT -35 18 ome.model.acquisition.ObjectiveSettings \N 161 2000 INSERT -35 18 ome.model.core.Image \N 161 2001 INSERT -35 33 ome.model.core.OriginalFile \N 161 2002 INSERT -35 18 ome.model.annotations.FileAnnotation \N 161 2003 INSERT -35 18 ome.model.annotations.ImageAnnotationLink \N 161 2004 INSERT -35 18 ome.model.containers.DatasetImageLink \N 161 2005 INSERT -35 18 ome.model.core.Pixels \N 161 2006 INSERT -35 43 ome.model.acquisition.DetectorSettings \N 161 2007 INSERT -35 35 ome.model.acquisition.LightPath \N 161 2008 INSERT -35 35 ome.model.acquisition.LightPathEmissionFilterLink \N 161 2009 INSERT -35 34 ome.model.acquisition.LightSettings \N 161 2010 INSERT -35 43 ome.model.core.LogicalChannel \N 161 2011 INSERT -35 43 ome.model.core.Channel \N 161 2012 INSERT -35 44 ome.model.acquisition.DetectorSettings \N 161 2013 INSERT -35 36 ome.model.acquisition.LightPath \N 161 2014 INSERT -35 36 ome.model.acquisition.LightPathEmissionFilterLink \N 161 2015 INSERT -35 35 ome.model.acquisition.LightSettings \N 161 2016 INSERT -35 44 ome.model.core.LogicalChannel \N 161 2017 INSERT -35 44 ome.model.core.Channel \N 161 2018 INSERT -35 45 ome.model.acquisition.DetectorSettings \N 161 2019 INSERT -35 36 ome.model.acquisition.LightSettings \N 161 2020 INSERT -35 45 ome.model.core.LogicalChannel \N 161 2021 INSERT -35 45 ome.model.core.Channel \N 161 2022 INSERT -35 1129 ome.model.core.PlaneInfo \N 161 2023 INSERT -35 1130 ome.model.core.PlaneInfo \N 161 2024 INSERT -35 1131 ome.model.core.PlaneInfo \N 161 2025 INSERT -35 1132 ome.model.core.PlaneInfo \N 161 2026 INSERT -35 1133 ome.model.core.PlaneInfo \N 161 2027 INSERT -35 1134 ome.model.core.PlaneInfo \N 161 2028 INSERT -35 1135 ome.model.core.PlaneInfo \N 161 2029 INSERT -35 1136 ome.model.core.PlaneInfo \N 161 2030 INSERT -35 1137 ome.model.core.PlaneInfo \N 161 2031 INSERT -35 1138 ome.model.core.PlaneInfo \N 161 2032 INSERT -35 1139 ome.model.core.PlaneInfo \N 161 2033 INSERT -35 1140 ome.model.core.PlaneInfo \N 161 2034 INSERT -35 1141 ome.model.core.PlaneInfo \N 161 2035 INSERT -35 1142 ome.model.core.PlaneInfo \N 161 2036 INSERT -35 1143 ome.model.core.PlaneInfo \N 161 2037 INSERT -35 1144 ome.model.core.PlaneInfo \N 161 2038 INSERT -35 1145 ome.model.core.PlaneInfo \N 161 2039 INSERT -35 1146 ome.model.core.PlaneInfo \N 161 2040 INSERT -35 1147 ome.model.core.PlaneInfo \N 161 2041 INSERT -35 1148 ome.model.core.PlaneInfo \N 161 2042 INSERT -35 1149 ome.model.core.PlaneInfo \N 161 2043 INSERT -35 1150 ome.model.core.PlaneInfo \N 161 2044 INSERT -35 1151 ome.model.core.PlaneInfo \N 161 2045 INSERT -35 1152 ome.model.core.PlaneInfo \N 161 2046 INSERT -35 1153 ome.model.core.PlaneInfo \N 161 2047 INSERT -35 1154 ome.model.core.PlaneInfo \N 161 2048 INSERT -35 1155 ome.model.core.PlaneInfo \N 161 2049 INSERT -35 1156 ome.model.core.PlaneInfo \N 161 2050 INSERT -35 1157 ome.model.core.PlaneInfo \N 161 2051 INSERT -35 1158 ome.model.core.PlaneInfo \N 161 2052 INSERT -35 1159 ome.model.core.PlaneInfo \N 161 2053 INSERT -35 1160 ome.model.core.PlaneInfo \N 161 2054 INSERT -35 1161 ome.model.core.PlaneInfo \N 161 2055 INSERT -35 1162 ome.model.core.PlaneInfo \N 161 2056 INSERT -35 1163 ome.model.core.PlaneInfo \N 161 2057 INSERT -35 1164 ome.model.core.PlaneInfo \N 161 2058 INSERT -35 1165 ome.model.core.PlaneInfo \N 161 2059 INSERT -35 1166 ome.model.core.PlaneInfo \N 161 2060 INSERT -35 1167 ome.model.core.PlaneInfo \N 161 2061 INSERT -35 1168 ome.model.core.PlaneInfo \N 161 2062 INSERT -35 1169 ome.model.core.PlaneInfo \N 161 2063 INSERT -35 1170 ome.model.core.PlaneInfo \N 161 2064 INSERT -35 1171 ome.model.core.PlaneInfo \N 161 2065 INSERT -35 1172 ome.model.core.PlaneInfo \N 161 2066 INSERT -35 1173 ome.model.core.PlaneInfo \N 161 2067 INSERT -35 1174 ome.model.core.PlaneInfo \N 161 2068 INSERT -35 1175 ome.model.core.PlaneInfo \N 161 2069 INSERT -35 1176 ome.model.core.PlaneInfo \N 161 2070 INSERT -35 1177 ome.model.core.PlaneInfo \N 161 2071 INSERT -35 1178 ome.model.core.PlaneInfo \N 161 2072 INSERT -35 1179 ome.model.core.PlaneInfo \N 161 2073 INSERT -35 1180 ome.model.core.PlaneInfo \N 161 2074 INSERT -35 1181 ome.model.core.PlaneInfo \N 161 2075 INSERT -35 1182 ome.model.core.PlaneInfo \N 161 2076 INSERT -35 1183 ome.model.core.PlaneInfo \N 161 2077 INSERT -35 1184 ome.model.core.PlaneInfo \N 161 2078 INSERT -35 1185 ome.model.core.PlaneInfo \N 161 2079 INSERT -35 1186 ome.model.core.PlaneInfo \N 161 2080 INSERT -35 1187 ome.model.core.PlaneInfo \N 161 2081 INSERT -35 1188 ome.model.core.PlaneInfo \N 161 2082 INSERT -35 1189 ome.model.core.PlaneInfo \N 161 2083 INSERT -35 1190 ome.model.core.PlaneInfo \N 161 2084 INSERT -35 1191 ome.model.core.PlaneInfo \N 161 2085 INSERT -35 1192 ome.model.core.PlaneInfo \N 161 2086 INSERT -35 1193 ome.model.core.PlaneInfo \N 161 2087 INSERT -35 1194 ome.model.core.PlaneInfo \N 161 2088 INSERT -35 1195 ome.model.core.PlaneInfo \N 161 2089 INSERT -35 1196 ome.model.core.PlaneInfo \N 161 2090 INSERT -35 1197 ome.model.core.PlaneInfo \N 161 2091 INSERT -35 1198 ome.model.core.PlaneInfo \N 161 2092 INSERT -35 1199 ome.model.core.PlaneInfo \N 161 2093 INSERT -35 1200 ome.model.core.PlaneInfo \N 161 2094 INSERT -35 1201 ome.model.core.PlaneInfo \N 161 2095 INSERT -35 1202 ome.model.core.PlaneInfo \N 161 2096 INSERT -35 1203 ome.model.core.PlaneInfo \N 161 2097 INSERT -35 1204 ome.model.core.PlaneInfo \N 161 2098 INSERT -35 1205 ome.model.core.PlaneInfo \N 161 2099 INSERT -35 1206 ome.model.core.PlaneInfo \N 161 2100 INSERT -35 1207 ome.model.core.PlaneInfo \N 161 2101 INSERT -35 1208 ome.model.core.PlaneInfo \N 161 2102 INSERT -35 1209 ome.model.core.PlaneInfo \N 161 2103 UPDATE -35 18 ome.model.core.Pixels \N 162 2104 UPDATE -35 11 ome.model.core.Pixels \N 163 2105 UPDATE -35 12 ome.model.core.Pixels \N 163 2106 UPDATE -35 13 ome.model.core.Pixels \N 163 2107 UPDATE -35 14 ome.model.core.Pixels \N 163 2108 UPDATE -35 15 ome.model.core.Pixels \N 163 2109 UPDATE -35 16 ome.model.core.Pixels \N 163 2110 UPDATE -35 17 ome.model.core.Pixels \N 163 2111 UPDATE -35 18 ome.model.core.Pixels \N 163 2112 INSERT -35 26 ome.model.stats.StatsInfo \N 164 2113 INSERT -35 27 ome.model.stats.StatsInfo \N 164 2114 INSERT -35 28 ome.model.stats.StatsInfo \N 164 2115 INSERT -35 29 ome.model.stats.StatsInfo \N 164 2116 INSERT -35 30 ome.model.stats.StatsInfo \N 164 2117 INSERT -35 31 ome.model.stats.StatsInfo \N 164 2118 INSERT -35 32 ome.model.stats.StatsInfo \N 164 2119 INSERT -35 33 ome.model.stats.StatsInfo \N 164 2120 INSERT -35 34 ome.model.stats.StatsInfo \N 164 2121 INSERT -35 35 ome.model.stats.StatsInfo \N 164 2122 INSERT -35 36 ome.model.stats.StatsInfo \N 164 2123 INSERT -35 37 ome.model.stats.StatsInfo \N 164 2124 INSERT -35 38 ome.model.stats.StatsInfo \N 164 2125 INSERT -35 39 ome.model.stats.StatsInfo \N 164 2126 INSERT -35 40 ome.model.stats.StatsInfo \N 164 2127 INSERT -35 41 ome.model.stats.StatsInfo \N 164 2128 INSERT -35 42 ome.model.stats.StatsInfo \N 164 2129 INSERT -35 43 ome.model.stats.StatsInfo \N 164 2130 INSERT -35 44 ome.model.stats.StatsInfo \N 164 2131 INSERT -35 45 ome.model.stats.StatsInfo \N 164 2132 UPDATE -35 26 ome.model.core.Channel \N 164 2133 UPDATE -35 27 ome.model.core.Channel \N 164 2134 UPDATE -35 28 ome.model.core.Channel \N 164 2135 UPDATE -35 29 ome.model.core.Channel \N 164 2136 UPDATE -35 30 ome.model.core.Channel \N 164 2137 UPDATE -35 31 ome.model.core.Channel \N 164 2138 UPDATE -35 32 ome.model.core.Channel \N 164 2139 UPDATE -35 33 ome.model.core.Channel \N 164 2140 UPDATE -35 34 ome.model.core.Channel \N 164 2141 UPDATE -35 35 ome.model.core.Channel \N 164 2142 UPDATE -35 36 ome.model.core.Channel \N 164 2143 UPDATE -35 37 ome.model.core.Channel \N 164 2144 UPDATE -35 38 ome.model.core.Channel \N 164 2145 UPDATE -35 39 ome.model.core.Channel \N 164 2146 UPDATE -35 40 ome.model.core.Channel \N 164 2147 UPDATE -35 41 ome.model.core.Channel \N 164 2148 UPDATE -35 42 ome.model.core.Channel \N 164 2149 UPDATE -35 43 ome.model.core.Channel \N 164 2150 UPDATE -35 44 ome.model.core.Channel \N 164 2151 UPDATE -35 45 ome.model.core.Channel \N 164 2152 INSERT -35 11 ome.model.display.QuantumDef \N 165 2153 INSERT -35 11 ome.model.display.RenderingDef \N 165 2154 INSERT -35 26 ome.model.display.ChannelBinding \N 165 2155 INSERT -35 27 ome.model.display.ChannelBinding \N 165 2156 INSERT -35 28 ome.model.display.ChannelBinding \N 165 2157 INSERT -35 12 ome.model.display.QuantumDef \N 165 2158 INSERT -35 12 ome.model.display.RenderingDef \N 165 2159 INSERT -35 29 ome.model.display.ChannelBinding \N 165 2160 INSERT -35 30 ome.model.display.ChannelBinding \N 165 2161 INSERT -35 13 ome.model.display.QuantumDef \N 165 2162 INSERT -35 13 ome.model.display.RenderingDef \N 165 2163 INSERT -35 31 ome.model.display.ChannelBinding \N 165 2164 INSERT -35 32 ome.model.display.ChannelBinding \N 165 2165 INSERT -35 14 ome.model.display.QuantumDef \N 165 2166 INSERT -35 14 ome.model.display.RenderingDef \N 165 2167 INSERT -35 33 ome.model.display.ChannelBinding \N 165 2168 INSERT -35 34 ome.model.display.ChannelBinding \N 165 2169 INSERT -35 15 ome.model.display.QuantumDef \N 165 2170 INSERT -35 15 ome.model.display.RenderingDef \N 165 2171 INSERT -35 35 ome.model.display.ChannelBinding \N 165 2172 INSERT -35 36 ome.model.display.ChannelBinding \N 165 2173 INSERT -35 16 ome.model.display.QuantumDef \N 165 2174 INSERT -35 16 ome.model.display.RenderingDef \N 165 2175 INSERT -35 37 ome.model.display.ChannelBinding \N 165 2255 INSERT -35 1232 ome.model.core.PlaneInfo \N 183 2176 INSERT -35 38 ome.model.display.ChannelBinding \N 165 2177 INSERT -35 39 ome.model.display.ChannelBinding \N 165 2178 INSERT -35 17 ome.model.display.QuantumDef \N 165 2179 INSERT -35 17 ome.model.display.RenderingDef \N 165 2180 INSERT -35 40 ome.model.display.ChannelBinding \N 165 2181 INSERT -35 41 ome.model.display.ChannelBinding \N 165 2182 INSERT -35 42 ome.model.display.ChannelBinding \N 165 2183 INSERT -35 18 ome.model.display.QuantumDef \N 165 2184 INSERT -35 18 ome.model.display.RenderingDef \N 165 2185 INSERT -35 43 ome.model.display.ChannelBinding \N 165 2186 INSERT -35 44 ome.model.display.ChannelBinding \N 165 2187 INSERT -35 45 ome.model.display.ChannelBinding \N 165 2188 INSERT -35 11 ome.model.display.Thumbnail \N 166 2189 INSERT -35 12 ome.model.display.Thumbnail \N 166 2190 INSERT -35 13 ome.model.display.Thumbnail \N 166 2191 INSERT -35 14 ome.model.display.Thumbnail \N 166 2192 INSERT -35 15 ome.model.display.Thumbnail \N 166 2193 INSERT -35 16 ome.model.display.Thumbnail \N 166 2194 INSERT -35 17 ome.model.display.Thumbnail \N 166 2195 INSERT -35 18 ome.model.display.Thumbnail \N 166 2196 UPDATE -35 33 ome.model.core.OriginalFile \N 167 2197 INSERT -35 19 ome.model.acquisition.Microscope \N 183 2198 INSERT -35 19 ome.model.acquisition.Instrument \N 183 2199 INSERT -35 46 ome.model.acquisition.Detector \N 183 2200 INSERT -35 47 ome.model.acquisition.Detector \N 183 2201 INSERT -35 55 ome.model.acquisition.TransmittanceRange \N 183 2202 INSERT -35 55 ome.model.acquisition.Filter \N 183 2203 INSERT -35 56 ome.model.acquisition.TransmittanceRange \N 183 2204 INSERT -35 56 ome.model.acquisition.Filter \N 183 2205 INSERT -35 57 ome.model.acquisition.TransmittanceRange \N 183 2206 INSERT -35 57 ome.model.acquisition.Filter \N 183 2207 INSERT -35 109 ome.model.acquisition.Laser \N 183 2208 INSERT -35 110 ome.model.acquisition.Laser \N 183 2209 INSERT -35 111 ome.model.acquisition.Laser \N 183 2210 INSERT -35 112 ome.model.acquisition.Laser \N 183 2211 INSERT -35 113 ome.model.acquisition.Laser \N 183 2212 INSERT -35 114 ome.model.acquisition.Laser \N 183 2213 INSERT -35 19 ome.model.acquisition.Objective \N 183 2214 INSERT -35 19 ome.model.acquisition.ObjectiveSettings \N 183 2215 INSERT -35 19 ome.model.core.Image \N 183 2216 INSERT -35 34 ome.model.core.OriginalFile \N 183 2217 INSERT -35 19 ome.model.annotations.FileAnnotation \N 183 2218 INSERT -35 19 ome.model.annotations.ImageAnnotationLink \N 183 2219 INSERT -35 19 ome.model.containers.DatasetImageLink \N 183 2220 INSERT -35 19 ome.model.core.Pixels \N 183 2221 INSERT -35 46 ome.model.acquisition.DetectorSettings \N 183 2222 INSERT -35 37 ome.model.acquisition.LightPath \N 183 2223 INSERT -35 37 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2224 INSERT -35 37 ome.model.acquisition.LightSettings \N 183 2225 INSERT -35 46 ome.model.core.LogicalChannel \N 183 2226 INSERT -35 46 ome.model.core.Channel \N 183 2227 INSERT -35 47 ome.model.acquisition.DetectorSettings \N 183 2228 INSERT -35 38 ome.model.acquisition.LightPath \N 183 2229 INSERT -35 38 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2230 INSERT -35 38 ome.model.acquisition.LightSettings \N 183 2231 INSERT -35 47 ome.model.core.LogicalChannel \N 183 2232 INSERT -35 47 ome.model.core.Channel \N 183 2233 INSERT -35 1210 ome.model.core.PlaneInfo \N 183 2234 INSERT -35 1211 ome.model.core.PlaneInfo \N 183 2235 INSERT -35 1212 ome.model.core.PlaneInfo \N 183 2236 INSERT -35 1213 ome.model.core.PlaneInfo \N 183 2237 INSERT -35 1214 ome.model.core.PlaneInfo \N 183 2238 INSERT -35 1215 ome.model.core.PlaneInfo \N 183 2239 INSERT -35 1216 ome.model.core.PlaneInfo \N 183 2240 INSERT -35 1217 ome.model.core.PlaneInfo \N 183 2241 INSERT -35 1218 ome.model.core.PlaneInfo \N 183 2242 INSERT -35 1219 ome.model.core.PlaneInfo \N 183 2243 INSERT -35 1220 ome.model.core.PlaneInfo \N 183 2244 INSERT -35 1221 ome.model.core.PlaneInfo \N 183 2245 INSERT -35 1222 ome.model.core.PlaneInfo \N 183 2246 INSERT -35 1223 ome.model.core.PlaneInfo \N 183 2247 INSERT -35 1224 ome.model.core.PlaneInfo \N 183 2248 INSERT -35 1225 ome.model.core.PlaneInfo \N 183 2249 INSERT -35 1226 ome.model.core.PlaneInfo \N 183 2250 INSERT -35 1227 ome.model.core.PlaneInfo \N 183 2251 INSERT -35 1228 ome.model.core.PlaneInfo \N 183 2252 INSERT -35 1229 ome.model.core.PlaneInfo \N 183 2253 INSERT -35 1230 ome.model.core.PlaneInfo \N 183 2254 INSERT -35 1231 ome.model.core.PlaneInfo \N 183 2256 INSERT -35 1233 ome.model.core.PlaneInfo \N 183 2257 INSERT -35 1234 ome.model.core.PlaneInfo \N 183 2258 INSERT -35 1235 ome.model.core.PlaneInfo \N 183 2259 INSERT -35 1236 ome.model.core.PlaneInfo \N 183 2260 INSERT -35 1237 ome.model.core.PlaneInfo \N 183 2261 INSERT -35 1238 ome.model.core.PlaneInfo \N 183 2262 INSERT -35 1239 ome.model.core.PlaneInfo \N 183 2263 INSERT -35 1240 ome.model.core.PlaneInfo \N 183 2264 INSERT -35 1241 ome.model.core.PlaneInfo \N 183 2265 INSERT -35 1242 ome.model.core.PlaneInfo \N 183 2266 INSERT -35 1243 ome.model.core.PlaneInfo \N 183 2267 INSERT -35 1244 ome.model.core.PlaneInfo \N 183 2268 INSERT -35 1245 ome.model.core.PlaneInfo \N 183 2269 INSERT -35 1246 ome.model.core.PlaneInfo \N 183 2270 INSERT -35 1247 ome.model.core.PlaneInfo \N 183 2271 INSERT -35 1248 ome.model.core.PlaneInfo \N 183 2272 INSERT -35 1249 ome.model.core.PlaneInfo \N 183 2273 INSERT -35 1250 ome.model.core.PlaneInfo \N 183 2274 INSERT -35 1251 ome.model.core.PlaneInfo \N 183 2275 INSERT -35 1252 ome.model.core.PlaneInfo \N 183 2276 INSERT -35 1253 ome.model.core.PlaneInfo \N 183 2277 INSERT -35 1254 ome.model.core.PlaneInfo \N 183 2278 INSERT -35 1255 ome.model.core.PlaneInfo \N 183 2279 INSERT -35 1256 ome.model.core.PlaneInfo \N 183 2280 INSERT -35 1257 ome.model.core.PlaneInfo \N 183 2281 INSERT -35 1258 ome.model.core.PlaneInfo \N 183 2282 INSERT -35 1259 ome.model.core.PlaneInfo \N 183 2283 INSERT -35 1260 ome.model.core.PlaneInfo \N 183 2284 INSERT -35 1261 ome.model.core.PlaneInfo \N 183 2285 INSERT -35 1262 ome.model.core.PlaneInfo \N 183 2286 INSERT -35 1263 ome.model.core.PlaneInfo \N 183 2287 INSERT -35 1264 ome.model.core.PlaneInfo \N 183 2288 INSERT -35 1265 ome.model.core.PlaneInfo \N 183 2289 INSERT -35 1266 ome.model.core.PlaneInfo \N 183 2290 INSERT -35 1267 ome.model.core.PlaneInfo \N 183 2291 INSERT -35 1268 ome.model.core.PlaneInfo \N 183 2292 INSERT -35 1269 ome.model.core.PlaneInfo \N 183 2293 INSERT -35 1270 ome.model.core.PlaneInfo \N 183 2294 INSERT -35 1271 ome.model.core.PlaneInfo \N 183 2295 INSERT -35 1272 ome.model.core.PlaneInfo \N 183 2296 INSERT -35 1273 ome.model.core.PlaneInfo \N 183 2297 INSERT -35 1274 ome.model.core.PlaneInfo \N 183 2298 INSERT -35 1275 ome.model.core.PlaneInfo \N 183 2299 INSERT -35 20 ome.model.acquisition.Microscope \N 183 2300 INSERT -35 20 ome.model.acquisition.Instrument \N 183 2301 INSERT -35 48 ome.model.acquisition.Detector \N 183 2302 INSERT -35 49 ome.model.acquisition.Detector \N 183 2303 INSERT -35 50 ome.model.acquisition.Detector \N 183 2304 INSERT -35 58 ome.model.acquisition.TransmittanceRange \N 183 2305 INSERT -35 58 ome.model.acquisition.Filter \N 183 2306 INSERT -35 59 ome.model.acquisition.TransmittanceRange \N 183 2307 INSERT -35 59 ome.model.acquisition.Filter \N 183 2308 INSERT -35 60 ome.model.acquisition.TransmittanceRange \N 183 2309 INSERT -35 60 ome.model.acquisition.Filter \N 183 2310 INSERT -35 115 ome.model.acquisition.Laser \N 183 2311 INSERT -35 116 ome.model.acquisition.Laser \N 183 2312 INSERT -35 117 ome.model.acquisition.Laser \N 183 2313 INSERT -35 118 ome.model.acquisition.Laser \N 183 2314 INSERT -35 119 ome.model.acquisition.Laser \N 183 2315 INSERT -35 120 ome.model.acquisition.Laser \N 183 2316 INSERT -35 20 ome.model.acquisition.Objective \N 183 2317 INSERT -35 20 ome.model.acquisition.ObjectiveSettings \N 183 2318 INSERT -35 20 ome.model.core.Image \N 183 2319 INSERT -35 35 ome.model.core.OriginalFile \N 183 2320 INSERT -35 20 ome.model.annotations.FileAnnotation \N 183 2321 INSERT -35 20 ome.model.annotations.ImageAnnotationLink \N 183 2322 INSERT -35 20 ome.model.containers.DatasetImageLink \N 183 2323 INSERT -35 20 ome.model.core.Pixels \N 183 2324 INSERT -35 48 ome.model.acquisition.DetectorSettings \N 183 2325 INSERT -35 39 ome.model.acquisition.LightPath \N 183 2326 INSERT -35 39 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2327 INSERT -35 39 ome.model.acquisition.LightSettings \N 183 2328 INSERT -35 48 ome.model.core.LogicalChannel \N 183 2329 INSERT -35 48 ome.model.core.Channel \N 183 2330 INSERT -35 49 ome.model.acquisition.DetectorSettings \N 183 2331 INSERT -35 40 ome.model.acquisition.LightPath \N 183 2332 INSERT -35 40 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2333 INSERT -35 49 ome.model.core.LogicalChannel \N 183 2334 INSERT -35 49 ome.model.core.Channel \N 183 2335 INSERT -35 50 ome.model.acquisition.DetectorSettings \N 183 2336 INSERT -35 50 ome.model.core.LogicalChannel \N 183 2337 INSERT -35 50 ome.model.core.Channel \N 183 2338 INSERT -35 1276 ome.model.core.PlaneInfo \N 183 2339 INSERT -35 1277 ome.model.core.PlaneInfo \N 183 2340 INSERT -35 1278 ome.model.core.PlaneInfo \N 183 2341 INSERT -35 1279 ome.model.core.PlaneInfo \N 183 2342 INSERT -35 1280 ome.model.core.PlaneInfo \N 183 2343 INSERT -35 1281 ome.model.core.PlaneInfo \N 183 2344 INSERT -35 1282 ome.model.core.PlaneInfo \N 183 2345 INSERT -35 1283 ome.model.core.PlaneInfo \N 183 2346 INSERT -35 1284 ome.model.core.PlaneInfo \N 183 2347 INSERT -35 1285 ome.model.core.PlaneInfo \N 183 2348 INSERT -35 1286 ome.model.core.PlaneInfo \N 183 2349 INSERT -35 1287 ome.model.core.PlaneInfo \N 183 2350 INSERT -35 1288 ome.model.core.PlaneInfo \N 183 2351 INSERT -35 1289 ome.model.core.PlaneInfo \N 183 2352 INSERT -35 1290 ome.model.core.PlaneInfo \N 183 2353 INSERT -35 1291 ome.model.core.PlaneInfo \N 183 2354 INSERT -35 1292 ome.model.core.PlaneInfo \N 183 2355 INSERT -35 1293 ome.model.core.PlaneInfo \N 183 2356 INSERT -35 1294 ome.model.core.PlaneInfo \N 183 2357 INSERT -35 1295 ome.model.core.PlaneInfo \N 183 2358 INSERT -35 1296 ome.model.core.PlaneInfo \N 183 2359 INSERT -35 1297 ome.model.core.PlaneInfo \N 183 2360 INSERT -35 1298 ome.model.core.PlaneInfo \N 183 2361 INSERT -35 1299 ome.model.core.PlaneInfo \N 183 2362 INSERT -35 1300 ome.model.core.PlaneInfo \N 183 2363 INSERT -35 1301 ome.model.core.PlaneInfo \N 183 2364 INSERT -35 1302 ome.model.core.PlaneInfo \N 183 2365 INSERT -35 1303 ome.model.core.PlaneInfo \N 183 2366 INSERT -35 1304 ome.model.core.PlaneInfo \N 183 2367 INSERT -35 1305 ome.model.core.PlaneInfo \N 183 2368 INSERT -35 1306 ome.model.core.PlaneInfo \N 183 2369 INSERT -35 1307 ome.model.core.PlaneInfo \N 183 2370 INSERT -35 1308 ome.model.core.PlaneInfo \N 183 2371 INSERT -35 1309 ome.model.core.PlaneInfo \N 183 2372 INSERT -35 1310 ome.model.core.PlaneInfo \N 183 2373 INSERT -35 1311 ome.model.core.PlaneInfo \N 183 2374 INSERT -35 1312 ome.model.core.PlaneInfo \N 183 2375 INSERT -35 1313 ome.model.core.PlaneInfo \N 183 2376 INSERT -35 1314 ome.model.core.PlaneInfo \N 183 2377 INSERT -35 1315 ome.model.core.PlaneInfo \N 183 2378 INSERT -35 1316 ome.model.core.PlaneInfo \N 183 2379 INSERT -35 1317 ome.model.core.PlaneInfo \N 183 2380 INSERT -35 1318 ome.model.core.PlaneInfo \N 183 2381 INSERT -35 1319 ome.model.core.PlaneInfo \N 183 2382 INSERT -35 1320 ome.model.core.PlaneInfo \N 183 2383 INSERT -35 1321 ome.model.core.PlaneInfo \N 183 2384 INSERT -35 1322 ome.model.core.PlaneInfo \N 183 2385 INSERT -35 1323 ome.model.core.PlaneInfo \N 183 2386 INSERT -35 1324 ome.model.core.PlaneInfo \N 183 2387 INSERT -35 1325 ome.model.core.PlaneInfo \N 183 2388 INSERT -35 1326 ome.model.core.PlaneInfo \N 183 2389 INSERT -35 1327 ome.model.core.PlaneInfo \N 183 2390 INSERT -35 1328 ome.model.core.PlaneInfo \N 183 2391 INSERT -35 1329 ome.model.core.PlaneInfo \N 183 2392 INSERT -35 1330 ome.model.core.PlaneInfo \N 183 2393 INSERT -35 1331 ome.model.core.PlaneInfo \N 183 2394 INSERT -35 1332 ome.model.core.PlaneInfo \N 183 2395 INSERT -35 1333 ome.model.core.PlaneInfo \N 183 2396 INSERT -35 1334 ome.model.core.PlaneInfo \N 183 2397 INSERT -35 1335 ome.model.core.PlaneInfo \N 183 2398 INSERT -35 1336 ome.model.core.PlaneInfo \N 183 2399 INSERT -35 1337 ome.model.core.PlaneInfo \N 183 2400 INSERT -35 1338 ome.model.core.PlaneInfo \N 183 2401 INSERT -35 1339 ome.model.core.PlaneInfo \N 183 2402 INSERT -35 1340 ome.model.core.PlaneInfo \N 183 2403 INSERT -35 1341 ome.model.core.PlaneInfo \N 183 2404 INSERT -35 1342 ome.model.core.PlaneInfo \N 183 2405 INSERT -35 1343 ome.model.core.PlaneInfo \N 183 2406 INSERT -35 1344 ome.model.core.PlaneInfo \N 183 2407 INSERT -35 1345 ome.model.core.PlaneInfo \N 183 2408 INSERT -35 1346 ome.model.core.PlaneInfo \N 183 2409 INSERT -35 1347 ome.model.core.PlaneInfo \N 183 2410 INSERT -35 1348 ome.model.core.PlaneInfo \N 183 2411 INSERT -35 1349 ome.model.core.PlaneInfo \N 183 2412 INSERT -35 1350 ome.model.core.PlaneInfo \N 183 2413 INSERT -35 1351 ome.model.core.PlaneInfo \N 183 2414 INSERT -35 1352 ome.model.core.PlaneInfo \N 183 2415 INSERT -35 1353 ome.model.core.PlaneInfo \N 183 2416 INSERT -35 1354 ome.model.core.PlaneInfo \N 183 2417 INSERT -35 1355 ome.model.core.PlaneInfo \N 183 2418 INSERT -35 1356 ome.model.core.PlaneInfo \N 183 2419 INSERT -35 1357 ome.model.core.PlaneInfo \N 183 2420 INSERT -35 1358 ome.model.core.PlaneInfo \N 183 2421 INSERT -35 1359 ome.model.core.PlaneInfo \N 183 2422 INSERT -35 1360 ome.model.core.PlaneInfo \N 183 2423 INSERT -35 1361 ome.model.core.PlaneInfo \N 183 2424 INSERT -35 1362 ome.model.core.PlaneInfo \N 183 2425 INSERT -35 1363 ome.model.core.PlaneInfo \N 183 2426 INSERT -35 1364 ome.model.core.PlaneInfo \N 183 2427 INSERT -35 1365 ome.model.core.PlaneInfo \N 183 2428 INSERT -35 1366 ome.model.core.PlaneInfo \N 183 2429 INSERT -35 1367 ome.model.core.PlaneInfo \N 183 2430 INSERT -35 1368 ome.model.core.PlaneInfo \N 183 2431 INSERT -35 1369 ome.model.core.PlaneInfo \N 183 2432 INSERT -35 1370 ome.model.core.PlaneInfo \N 183 2433 INSERT -35 1371 ome.model.core.PlaneInfo \N 183 2434 INSERT -35 1372 ome.model.core.PlaneInfo \N 183 2435 INSERT -35 1373 ome.model.core.PlaneInfo \N 183 2436 INSERT -35 1374 ome.model.core.PlaneInfo \N 183 2437 INSERT -35 1375 ome.model.core.PlaneInfo \N 183 2438 INSERT -35 1376 ome.model.core.PlaneInfo \N 183 2439 INSERT -35 1377 ome.model.core.PlaneInfo \N 183 2440 INSERT -35 1378 ome.model.core.PlaneInfo \N 183 2441 INSERT -35 1379 ome.model.core.PlaneInfo \N 183 2442 INSERT -35 1380 ome.model.core.PlaneInfo \N 183 2443 INSERT -35 1381 ome.model.core.PlaneInfo \N 183 2444 INSERT -35 1382 ome.model.core.PlaneInfo \N 183 2445 INSERT -35 1383 ome.model.core.PlaneInfo \N 183 2446 INSERT -35 1384 ome.model.core.PlaneInfo \N 183 2447 INSERT -35 1385 ome.model.core.PlaneInfo \N 183 2448 INSERT -35 1386 ome.model.core.PlaneInfo \N 183 2449 INSERT -35 1387 ome.model.core.PlaneInfo \N 183 2450 INSERT -35 1388 ome.model.core.PlaneInfo \N 183 2451 INSERT -35 1389 ome.model.core.PlaneInfo \N 183 2452 INSERT -35 1390 ome.model.core.PlaneInfo \N 183 2453 INSERT -35 1391 ome.model.core.PlaneInfo \N 183 2454 INSERT -35 1392 ome.model.core.PlaneInfo \N 183 2455 INSERT -35 21 ome.model.acquisition.Microscope \N 183 2456 INSERT -35 21 ome.model.acquisition.Instrument \N 183 2457 INSERT -35 51 ome.model.acquisition.Detector \N 183 2458 INSERT -35 52 ome.model.acquisition.Detector \N 183 2459 INSERT -35 53 ome.model.acquisition.Detector \N 183 2460 INSERT -35 61 ome.model.acquisition.TransmittanceRange \N 183 2461 INSERT -35 61 ome.model.acquisition.Filter \N 183 2462 INSERT -35 62 ome.model.acquisition.TransmittanceRange \N 183 2463 INSERT -35 62 ome.model.acquisition.Filter \N 183 2464 INSERT -35 63 ome.model.acquisition.TransmittanceRange \N 183 2465 INSERT -35 63 ome.model.acquisition.Filter \N 183 2466 INSERT -35 121 ome.model.acquisition.Laser \N 183 2467 INSERT -35 122 ome.model.acquisition.Laser \N 183 2468 INSERT -35 123 ome.model.acquisition.Laser \N 183 2469 INSERT -35 124 ome.model.acquisition.Laser \N 183 2470 INSERT -35 125 ome.model.acquisition.Laser \N 183 2471 INSERT -35 126 ome.model.acquisition.Laser \N 183 2472 INSERT -35 21 ome.model.acquisition.Objective \N 183 2473 INSERT -35 21 ome.model.acquisition.ObjectiveSettings \N 183 2474 INSERT -35 21 ome.model.core.Image \N 183 2475 INSERT -35 36 ome.model.core.OriginalFile \N 183 2476 INSERT -35 21 ome.model.annotations.FileAnnotation \N 183 2477 INSERT -35 21 ome.model.annotations.ImageAnnotationLink \N 183 2478 INSERT -35 21 ome.model.containers.DatasetImageLink \N 183 2479 INSERT -35 21 ome.model.core.Pixels \N 183 2480 INSERT -35 51 ome.model.acquisition.DetectorSettings \N 183 2481 INSERT -35 41 ome.model.acquisition.LightPath \N 183 2482 INSERT -35 41 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2483 INSERT -35 40 ome.model.acquisition.LightSettings \N 183 2484 INSERT -35 51 ome.model.core.LogicalChannel \N 183 2485 INSERT -35 51 ome.model.core.Channel \N 183 2486 INSERT -35 52 ome.model.acquisition.DetectorSettings \N 183 2487 INSERT -35 42 ome.model.acquisition.LightPath \N 183 2488 INSERT -35 42 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2489 INSERT -35 52 ome.model.core.LogicalChannel \N 183 2490 INSERT -35 52 ome.model.core.Channel \N 183 2491 INSERT -35 53 ome.model.acquisition.DetectorSettings \N 183 2492 INSERT -35 53 ome.model.core.LogicalChannel \N 183 2493 INSERT -35 53 ome.model.core.Channel \N 183 2494 INSERT -35 1393 ome.model.core.PlaneInfo \N 183 2495 INSERT -35 1394 ome.model.core.PlaneInfo \N 183 2496 INSERT -35 1395 ome.model.core.PlaneInfo \N 183 2497 INSERT -35 1396 ome.model.core.PlaneInfo \N 183 2498 INSERT -35 1397 ome.model.core.PlaneInfo \N 183 2499 INSERT -35 1398 ome.model.core.PlaneInfo \N 183 2500 INSERT -35 1399 ome.model.core.PlaneInfo \N 183 2501 INSERT -35 1400 ome.model.core.PlaneInfo \N 183 2502 INSERT -35 1401 ome.model.core.PlaneInfo \N 183 2503 INSERT -35 1402 ome.model.core.PlaneInfo \N 183 2504 INSERT -35 1403 ome.model.core.PlaneInfo \N 183 2505 INSERT -35 1404 ome.model.core.PlaneInfo \N 183 2506 INSERT -35 1405 ome.model.core.PlaneInfo \N 183 2507 INSERT -35 1406 ome.model.core.PlaneInfo \N 183 2508 INSERT -35 1407 ome.model.core.PlaneInfo \N 183 2509 INSERT -35 1408 ome.model.core.PlaneInfo \N 183 2510 INSERT -35 1409 ome.model.core.PlaneInfo \N 183 2511 INSERT -35 1410 ome.model.core.PlaneInfo \N 183 2512 INSERT -35 1411 ome.model.core.PlaneInfo \N 183 2513 INSERT -35 1412 ome.model.core.PlaneInfo \N 183 2514 INSERT -35 1413 ome.model.core.PlaneInfo \N 183 2515 INSERT -35 1414 ome.model.core.PlaneInfo \N 183 2516 INSERT -35 1415 ome.model.core.PlaneInfo \N 183 2517 INSERT -35 1416 ome.model.core.PlaneInfo \N 183 2518 INSERT -35 1417 ome.model.core.PlaneInfo \N 183 2519 INSERT -35 1418 ome.model.core.PlaneInfo \N 183 2520 INSERT -35 1419 ome.model.core.PlaneInfo \N 183 2521 INSERT -35 1420 ome.model.core.PlaneInfo \N 183 2522 INSERT -35 1421 ome.model.core.PlaneInfo \N 183 2523 INSERT -35 1422 ome.model.core.PlaneInfo \N 183 2524 INSERT -35 1423 ome.model.core.PlaneInfo \N 183 2525 INSERT -35 1424 ome.model.core.PlaneInfo \N 183 2526 INSERT -35 1425 ome.model.core.PlaneInfo \N 183 2527 INSERT -35 1426 ome.model.core.PlaneInfo \N 183 2528 INSERT -35 1427 ome.model.core.PlaneInfo \N 183 2529 INSERT -35 1428 ome.model.core.PlaneInfo \N 183 2530 INSERT -35 1429 ome.model.core.PlaneInfo \N 183 2531 INSERT -35 1430 ome.model.core.PlaneInfo \N 183 2532 INSERT -35 1431 ome.model.core.PlaneInfo \N 183 2533 INSERT -35 1432 ome.model.core.PlaneInfo \N 183 2534 INSERT -35 1433 ome.model.core.PlaneInfo \N 183 2535 INSERT -35 1434 ome.model.core.PlaneInfo \N 183 2536 INSERT -35 1435 ome.model.core.PlaneInfo \N 183 2537 INSERT -35 1436 ome.model.core.PlaneInfo \N 183 2538 INSERT -35 1437 ome.model.core.PlaneInfo \N 183 2539 INSERT -35 1438 ome.model.core.PlaneInfo \N 183 2540 INSERT -35 1439 ome.model.core.PlaneInfo \N 183 2541 INSERT -35 1440 ome.model.core.PlaneInfo \N 183 2542 INSERT -35 1441 ome.model.core.PlaneInfo \N 183 2543 INSERT -35 1442 ome.model.core.PlaneInfo \N 183 2544 INSERT -35 1443 ome.model.core.PlaneInfo \N 183 2545 INSERT -35 1444 ome.model.core.PlaneInfo \N 183 2546 INSERT -35 1445 ome.model.core.PlaneInfo \N 183 2547 INSERT -35 1446 ome.model.core.PlaneInfo \N 183 2548 INSERT -35 1447 ome.model.core.PlaneInfo \N 183 2549 INSERT -35 1448 ome.model.core.PlaneInfo \N 183 2550 INSERT -35 1449 ome.model.core.PlaneInfo \N 183 2551 INSERT -35 1450 ome.model.core.PlaneInfo \N 183 2552 INSERT -35 1451 ome.model.core.PlaneInfo \N 183 2553 INSERT -35 1452 ome.model.core.PlaneInfo \N 183 2554 INSERT -35 1453 ome.model.core.PlaneInfo \N 183 2555 INSERT -35 1454 ome.model.core.PlaneInfo \N 183 2556 INSERT -35 1455 ome.model.core.PlaneInfo \N 183 2557 INSERT -35 1456 ome.model.core.PlaneInfo \N 183 2558 INSERT -35 1457 ome.model.core.PlaneInfo \N 183 2559 INSERT -35 1458 ome.model.core.PlaneInfo \N 183 2560 INSERT -35 1459 ome.model.core.PlaneInfo \N 183 2561 INSERT -35 1460 ome.model.core.PlaneInfo \N 183 2562 INSERT -35 1461 ome.model.core.PlaneInfo \N 183 2563 INSERT -35 1462 ome.model.core.PlaneInfo \N 183 2564 INSERT -35 1463 ome.model.core.PlaneInfo \N 183 2565 INSERT -35 1464 ome.model.core.PlaneInfo \N 183 2566 INSERT -35 1465 ome.model.core.PlaneInfo \N 183 2567 INSERT -35 1466 ome.model.core.PlaneInfo \N 183 2568 INSERT -35 1467 ome.model.core.PlaneInfo \N 183 2569 INSERT -35 1468 ome.model.core.PlaneInfo \N 183 2570 INSERT -35 1469 ome.model.core.PlaneInfo \N 183 2571 INSERT -35 1470 ome.model.core.PlaneInfo \N 183 2572 INSERT -35 1471 ome.model.core.PlaneInfo \N 183 2573 INSERT -35 1472 ome.model.core.PlaneInfo \N 183 2574 INSERT -35 1473 ome.model.core.PlaneInfo \N 183 2575 INSERT -35 1474 ome.model.core.PlaneInfo \N 183 2576 INSERT -35 1475 ome.model.core.PlaneInfo \N 183 2577 INSERT -35 1476 ome.model.core.PlaneInfo \N 183 2578 INSERT -35 1477 ome.model.core.PlaneInfo \N 183 2579 INSERT -35 1478 ome.model.core.PlaneInfo \N 183 2580 INSERT -35 1479 ome.model.core.PlaneInfo \N 183 2581 INSERT -35 1480 ome.model.core.PlaneInfo \N 183 2582 INSERT -35 1481 ome.model.core.PlaneInfo \N 183 2583 INSERT -35 1482 ome.model.core.PlaneInfo \N 183 2584 INSERT -35 1483 ome.model.core.PlaneInfo \N 183 2585 INSERT -35 1484 ome.model.core.PlaneInfo \N 183 2586 INSERT -35 1485 ome.model.core.PlaneInfo \N 183 2587 INSERT -35 1486 ome.model.core.PlaneInfo \N 183 2588 INSERT -35 1487 ome.model.core.PlaneInfo \N 183 2589 INSERT -35 1488 ome.model.core.PlaneInfo \N 183 2590 INSERT -35 1489 ome.model.core.PlaneInfo \N 183 2591 INSERT -35 1490 ome.model.core.PlaneInfo \N 183 2592 INSERT -35 1491 ome.model.core.PlaneInfo \N 183 2593 INSERT -35 1492 ome.model.core.PlaneInfo \N 183 2594 INSERT -35 1493 ome.model.core.PlaneInfo \N 183 2595 INSERT -35 1494 ome.model.core.PlaneInfo \N 183 2596 INSERT -35 1495 ome.model.core.PlaneInfo \N 183 2597 INSERT -35 1496 ome.model.core.PlaneInfo \N 183 2598 INSERT -35 1497 ome.model.core.PlaneInfo \N 183 2599 INSERT -35 1498 ome.model.core.PlaneInfo \N 183 2600 INSERT -35 1499 ome.model.core.PlaneInfo \N 183 2601 INSERT -35 1500 ome.model.core.PlaneInfo \N 183 2602 INSERT -35 1501 ome.model.core.PlaneInfo \N 183 2603 INSERT -35 1502 ome.model.core.PlaneInfo \N 183 2604 INSERT -35 1503 ome.model.core.PlaneInfo \N 183 2605 INSERT -35 22 ome.model.acquisition.Microscope \N 183 2606 INSERT -35 22 ome.model.acquisition.Instrument \N 183 2607 INSERT -35 54 ome.model.acquisition.Detector \N 183 2608 INSERT -35 55 ome.model.acquisition.Detector \N 183 2609 INSERT -35 64 ome.model.acquisition.TransmittanceRange \N 183 2610 INSERT -35 64 ome.model.acquisition.Filter \N 183 2611 INSERT -35 65 ome.model.acquisition.TransmittanceRange \N 183 2612 INSERT -35 65 ome.model.acquisition.Filter \N 183 2613 INSERT -35 66 ome.model.acquisition.TransmittanceRange \N 183 2614 INSERT -35 66 ome.model.acquisition.Filter \N 183 2615 INSERT -35 127 ome.model.acquisition.Laser \N 183 2616 INSERT -35 128 ome.model.acquisition.Laser \N 183 2617 INSERT -35 129 ome.model.acquisition.Laser \N 183 2618 INSERT -35 130 ome.model.acquisition.Laser \N 183 2619 INSERT -35 131 ome.model.acquisition.Laser \N 183 2620 INSERT -35 132 ome.model.acquisition.Laser \N 183 2621 INSERT -35 22 ome.model.acquisition.Objective \N 183 2622 INSERT -35 22 ome.model.acquisition.ObjectiveSettings \N 183 2623 INSERT -35 22 ome.model.core.Image \N 183 2624 INSERT -35 37 ome.model.core.OriginalFile \N 183 2625 INSERT -35 22 ome.model.annotations.FileAnnotation \N 183 2626 INSERT -35 22 ome.model.annotations.ImageAnnotationLink \N 183 2627 INSERT -35 22 ome.model.containers.DatasetImageLink \N 183 2628 INSERT -35 22 ome.model.core.Pixels \N 183 2629 INSERT -35 54 ome.model.acquisition.DetectorSettings \N 183 2630 INSERT -35 43 ome.model.acquisition.LightPath \N 183 2631 INSERT -35 43 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2632 INSERT -35 41 ome.model.acquisition.LightSettings \N 183 2633 INSERT -35 54 ome.model.core.LogicalChannel \N 183 2634 INSERT -35 54 ome.model.core.Channel \N 183 2635 INSERT -35 55 ome.model.acquisition.DetectorSettings \N 183 2636 INSERT -35 44 ome.model.acquisition.LightPath \N 183 2637 INSERT -35 44 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2638 INSERT -35 42 ome.model.acquisition.LightSettings \N 183 2639 INSERT -35 55 ome.model.core.LogicalChannel \N 183 2640 INSERT -35 55 ome.model.core.Channel \N 183 2641 INSERT -35 1504 ome.model.core.PlaneInfo \N 183 2642 INSERT -35 1505 ome.model.core.PlaneInfo \N 183 2643 INSERT -35 1506 ome.model.core.PlaneInfo \N 183 2644 INSERT -35 1507 ome.model.core.PlaneInfo \N 183 2645 INSERT -35 1508 ome.model.core.PlaneInfo \N 183 2646 INSERT -35 1509 ome.model.core.PlaneInfo \N 183 2647 INSERT -35 1510 ome.model.core.PlaneInfo \N 183 2648 INSERT -35 1511 ome.model.core.PlaneInfo \N 183 2649 INSERT -35 1512 ome.model.core.PlaneInfo \N 183 2650 INSERT -35 1513 ome.model.core.PlaneInfo \N 183 2651 INSERT -35 1514 ome.model.core.PlaneInfo \N 183 2652 INSERT -35 1515 ome.model.core.PlaneInfo \N 183 2653 INSERT -35 1516 ome.model.core.PlaneInfo \N 183 2654 INSERT -35 1517 ome.model.core.PlaneInfo \N 183 2655 INSERT -35 1518 ome.model.core.PlaneInfo \N 183 2656 INSERT -35 1519 ome.model.core.PlaneInfo \N 183 2657 INSERT -35 1520 ome.model.core.PlaneInfo \N 183 2658 INSERT -35 1521 ome.model.core.PlaneInfo \N 183 2659 INSERT -35 1522 ome.model.core.PlaneInfo \N 183 2660 INSERT -35 1523 ome.model.core.PlaneInfo \N 183 2661 INSERT -35 1524 ome.model.core.PlaneInfo \N 183 2662 INSERT -35 1525 ome.model.core.PlaneInfo \N 183 2663 INSERT -35 1526 ome.model.core.PlaneInfo \N 183 2664 INSERT -35 1527 ome.model.core.PlaneInfo \N 183 2665 INSERT -35 1528 ome.model.core.PlaneInfo \N 183 2666 INSERT -35 1529 ome.model.core.PlaneInfo \N 183 2667 INSERT -35 1530 ome.model.core.PlaneInfo \N 183 2668 INSERT -35 1531 ome.model.core.PlaneInfo \N 183 2669 INSERT -35 1532 ome.model.core.PlaneInfo \N 183 2670 INSERT -35 1533 ome.model.core.PlaneInfo \N 183 2671 INSERT -35 1534 ome.model.core.PlaneInfo \N 183 2672 INSERT -35 1535 ome.model.core.PlaneInfo \N 183 2673 INSERT -35 1536 ome.model.core.PlaneInfo \N 183 2674 INSERT -35 1537 ome.model.core.PlaneInfo \N 183 2675 INSERT -35 1538 ome.model.core.PlaneInfo \N 183 2676 INSERT -35 1539 ome.model.core.PlaneInfo \N 183 2677 INSERT -35 1540 ome.model.core.PlaneInfo \N 183 2678 INSERT -35 1541 ome.model.core.PlaneInfo \N 183 2679 INSERT -35 1542 ome.model.core.PlaneInfo \N 183 2680 INSERT -35 1543 ome.model.core.PlaneInfo \N 183 2681 INSERT -35 1544 ome.model.core.PlaneInfo \N 183 2682 INSERT -35 1545 ome.model.core.PlaneInfo \N 183 2683 INSERT -35 1546 ome.model.core.PlaneInfo \N 183 2684 INSERT -35 1547 ome.model.core.PlaneInfo \N 183 2685 INSERT -35 1548 ome.model.core.PlaneInfo \N 183 2686 INSERT -35 1549 ome.model.core.PlaneInfo \N 183 2687 INSERT -35 1550 ome.model.core.PlaneInfo \N 183 2688 INSERT -35 1551 ome.model.core.PlaneInfo \N 183 2689 INSERT -35 1552 ome.model.core.PlaneInfo \N 183 2690 INSERT -35 1553 ome.model.core.PlaneInfo \N 183 2691 INSERT -35 1554 ome.model.core.PlaneInfo \N 183 2692 INSERT -35 1555 ome.model.core.PlaneInfo \N 183 2693 INSERT -35 1556 ome.model.core.PlaneInfo \N 183 2694 INSERT -35 1557 ome.model.core.PlaneInfo \N 183 2695 INSERT -35 1558 ome.model.core.PlaneInfo \N 183 2696 INSERT -35 1559 ome.model.core.PlaneInfo \N 183 2697 INSERT -35 1560 ome.model.core.PlaneInfo \N 183 2698 INSERT -35 1561 ome.model.core.PlaneInfo \N 183 2699 INSERT -35 1562 ome.model.core.PlaneInfo \N 183 2700 INSERT -35 1563 ome.model.core.PlaneInfo \N 183 2701 INSERT -35 1564 ome.model.core.PlaneInfo \N 183 2702 INSERT -35 1565 ome.model.core.PlaneInfo \N 183 2703 INSERT -35 1566 ome.model.core.PlaneInfo \N 183 2704 INSERT -35 1567 ome.model.core.PlaneInfo \N 183 2705 INSERT -35 1568 ome.model.core.PlaneInfo \N 183 2706 INSERT -35 1569 ome.model.core.PlaneInfo \N 183 2707 INSERT -35 1570 ome.model.core.PlaneInfo \N 183 2708 INSERT -35 1571 ome.model.core.PlaneInfo \N 183 2709 INSERT -35 1572 ome.model.core.PlaneInfo \N 183 2710 INSERT -35 1573 ome.model.core.PlaneInfo \N 183 2711 INSERT -35 1574 ome.model.core.PlaneInfo \N 183 2712 INSERT -35 1575 ome.model.core.PlaneInfo \N 183 2713 INSERT -35 1576 ome.model.core.PlaneInfo \N 183 2714 INSERT -35 1577 ome.model.core.PlaneInfo \N 183 2715 INSERT -35 1578 ome.model.core.PlaneInfo \N 183 2716 INSERT -35 1579 ome.model.core.PlaneInfo \N 183 2717 INSERT -35 1580 ome.model.core.PlaneInfo \N 183 2718 INSERT -35 1581 ome.model.core.PlaneInfo \N 183 2719 INSERT -35 23 ome.model.acquisition.Microscope \N 183 2720 INSERT -35 23 ome.model.acquisition.Instrument \N 183 2721 INSERT -35 56 ome.model.acquisition.Detector \N 183 2722 INSERT -35 57 ome.model.acquisition.Detector \N 183 2723 INSERT -35 58 ome.model.acquisition.Detector \N 183 2724 INSERT -35 67 ome.model.acquisition.TransmittanceRange \N 183 2725 INSERT -35 67 ome.model.acquisition.Filter \N 183 2726 INSERT -35 68 ome.model.acquisition.TransmittanceRange \N 183 2727 INSERT -35 68 ome.model.acquisition.Filter \N 183 2728 INSERT -35 69 ome.model.acquisition.TransmittanceRange \N 183 2729 INSERT -35 69 ome.model.acquisition.Filter \N 183 2730 INSERT -35 133 ome.model.acquisition.Laser \N 183 2731 INSERT -35 134 ome.model.acquisition.Laser \N 183 2732 INSERT -35 135 ome.model.acquisition.Laser \N 183 2733 INSERT -35 136 ome.model.acquisition.Laser \N 183 2734 INSERT -35 137 ome.model.acquisition.Laser \N 183 2735 INSERT -35 138 ome.model.acquisition.Laser \N 183 2736 INSERT -35 23 ome.model.acquisition.Objective \N 183 2737 INSERT -35 23 ome.model.acquisition.ObjectiveSettings \N 183 2738 INSERT -35 23 ome.model.core.Image \N 183 2739 INSERT -35 38 ome.model.core.OriginalFile \N 183 2740 INSERT -35 23 ome.model.annotations.FileAnnotation \N 183 2741 INSERT -35 23 ome.model.annotations.ImageAnnotationLink \N 183 2742 INSERT -35 23 ome.model.containers.DatasetImageLink \N 183 2743 INSERT -35 23 ome.model.core.Pixels \N 183 2744 INSERT -35 56 ome.model.acquisition.DetectorSettings \N 183 2745 INSERT -35 45 ome.model.acquisition.LightPath \N 183 2746 INSERT -35 45 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2747 INSERT -35 43 ome.model.acquisition.LightSettings \N 183 2748 INSERT -35 56 ome.model.core.LogicalChannel \N 183 2749 INSERT -35 56 ome.model.core.Channel \N 183 2750 INSERT -35 57 ome.model.acquisition.DetectorSettings \N 183 2751 INSERT -35 46 ome.model.acquisition.LightPath \N 183 2752 INSERT -35 46 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2753 INSERT -35 57 ome.model.core.LogicalChannel \N 183 2754 INSERT -35 57 ome.model.core.Channel \N 183 2755 INSERT -35 58 ome.model.acquisition.DetectorSettings \N 183 2756 INSERT -35 58 ome.model.core.LogicalChannel \N 183 2757 INSERT -35 58 ome.model.core.Channel \N 183 2758 INSERT -35 1582 ome.model.core.PlaneInfo \N 183 2759 INSERT -35 1583 ome.model.core.PlaneInfo \N 183 2760 INSERT -35 1584 ome.model.core.PlaneInfo \N 183 2761 INSERT -35 1585 ome.model.core.PlaneInfo \N 183 2762 INSERT -35 1586 ome.model.core.PlaneInfo \N 183 2763 INSERT -35 1587 ome.model.core.PlaneInfo \N 183 2764 INSERT -35 1588 ome.model.core.PlaneInfo \N 183 2765 INSERT -35 1589 ome.model.core.PlaneInfo \N 183 2766 INSERT -35 1590 ome.model.core.PlaneInfo \N 183 2767 INSERT -35 1591 ome.model.core.PlaneInfo \N 183 2768 INSERT -35 1592 ome.model.core.PlaneInfo \N 183 2769 INSERT -35 1593 ome.model.core.PlaneInfo \N 183 2770 INSERT -35 1594 ome.model.core.PlaneInfo \N 183 2771 INSERT -35 1595 ome.model.core.PlaneInfo \N 183 2772 INSERT -35 1596 ome.model.core.PlaneInfo \N 183 2773 INSERT -35 1597 ome.model.core.PlaneInfo \N 183 2774 INSERT -35 1598 ome.model.core.PlaneInfo \N 183 2775 INSERT -35 1599 ome.model.core.PlaneInfo \N 183 2776 INSERT -35 1600 ome.model.core.PlaneInfo \N 183 2777 INSERT -35 1601 ome.model.core.PlaneInfo \N 183 2778 INSERT -35 1602 ome.model.core.PlaneInfo \N 183 2779 INSERT -35 1603 ome.model.core.PlaneInfo \N 183 2780 INSERT -35 1604 ome.model.core.PlaneInfo \N 183 2781 INSERT -35 1605 ome.model.core.PlaneInfo \N 183 2782 INSERT -35 1606 ome.model.core.PlaneInfo \N 183 2783 INSERT -35 1607 ome.model.core.PlaneInfo \N 183 2784 INSERT -35 1608 ome.model.core.PlaneInfo \N 183 2785 INSERT -35 1609 ome.model.core.PlaneInfo \N 183 2786 INSERT -35 1610 ome.model.core.PlaneInfo \N 183 2787 INSERT -35 1611 ome.model.core.PlaneInfo \N 183 2788 INSERT -35 1612 ome.model.core.PlaneInfo \N 183 2789 INSERT -35 1613 ome.model.core.PlaneInfo \N 183 2790 INSERT -35 1614 ome.model.core.PlaneInfo \N 183 2791 INSERT -35 1615 ome.model.core.PlaneInfo \N 183 2792 INSERT -35 1616 ome.model.core.PlaneInfo \N 183 2793 INSERT -35 1617 ome.model.core.PlaneInfo \N 183 2794 INSERT -35 1618 ome.model.core.PlaneInfo \N 183 2795 INSERT -35 1619 ome.model.core.PlaneInfo \N 183 2796 INSERT -35 1620 ome.model.core.PlaneInfo \N 183 2797 INSERT -35 1621 ome.model.core.PlaneInfo \N 183 2798 INSERT -35 1622 ome.model.core.PlaneInfo \N 183 2799 INSERT -35 1623 ome.model.core.PlaneInfo \N 183 2800 INSERT -35 1624 ome.model.core.PlaneInfo \N 183 2801 INSERT -35 1625 ome.model.core.PlaneInfo \N 183 2802 INSERT -35 1626 ome.model.core.PlaneInfo \N 183 2803 INSERT -35 1627 ome.model.core.PlaneInfo \N 183 2804 INSERT -35 1628 ome.model.core.PlaneInfo \N 183 2805 INSERT -35 1629 ome.model.core.PlaneInfo \N 183 2806 INSERT -35 1630 ome.model.core.PlaneInfo \N 183 2807 INSERT -35 1631 ome.model.core.PlaneInfo \N 183 2808 INSERT -35 1632 ome.model.core.PlaneInfo \N 183 2809 INSERT -35 1633 ome.model.core.PlaneInfo \N 183 2810 INSERT -35 1634 ome.model.core.PlaneInfo \N 183 2811 INSERT -35 1635 ome.model.core.PlaneInfo \N 183 2812 INSERT -35 1636 ome.model.core.PlaneInfo \N 183 2813 INSERT -35 1637 ome.model.core.PlaneInfo \N 183 2814 INSERT -35 1638 ome.model.core.PlaneInfo \N 183 2815 INSERT -35 1639 ome.model.core.PlaneInfo \N 183 2816 INSERT -35 1640 ome.model.core.PlaneInfo \N 183 2817 INSERT -35 1641 ome.model.core.PlaneInfo \N 183 2818 INSERT -35 1642 ome.model.core.PlaneInfo \N 183 2819 INSERT -35 1643 ome.model.core.PlaneInfo \N 183 2820 INSERT -35 1644 ome.model.core.PlaneInfo \N 183 2821 INSERT -35 1645 ome.model.core.PlaneInfo \N 183 2822 INSERT -35 1646 ome.model.core.PlaneInfo \N 183 2823 INSERT -35 1647 ome.model.core.PlaneInfo \N 183 2824 INSERT -35 1648 ome.model.core.PlaneInfo \N 183 2825 INSERT -35 1649 ome.model.core.PlaneInfo \N 183 2826 INSERT -35 1650 ome.model.core.PlaneInfo \N 183 2827 INSERT -35 1651 ome.model.core.PlaneInfo \N 183 2828 INSERT -35 1652 ome.model.core.PlaneInfo \N 183 2829 INSERT -35 1653 ome.model.core.PlaneInfo \N 183 2830 INSERT -35 1654 ome.model.core.PlaneInfo \N 183 2831 INSERT -35 1655 ome.model.core.PlaneInfo \N 183 2832 INSERT -35 1656 ome.model.core.PlaneInfo \N 183 2833 INSERT -35 1657 ome.model.core.PlaneInfo \N 183 2834 INSERT -35 1658 ome.model.core.PlaneInfo \N 183 2835 INSERT -35 1659 ome.model.core.PlaneInfo \N 183 2836 INSERT -35 1660 ome.model.core.PlaneInfo \N 183 2837 INSERT -35 1661 ome.model.core.PlaneInfo \N 183 2838 INSERT -35 1662 ome.model.core.PlaneInfo \N 183 2839 INSERT -35 1663 ome.model.core.PlaneInfo \N 183 2840 INSERT -35 1664 ome.model.core.PlaneInfo \N 183 2841 INSERT -35 1665 ome.model.core.PlaneInfo \N 183 2842 INSERT -35 1666 ome.model.core.PlaneInfo \N 183 2843 INSERT -35 1667 ome.model.core.PlaneInfo \N 183 2844 INSERT -35 1668 ome.model.core.PlaneInfo \N 183 2845 INSERT -35 1669 ome.model.core.PlaneInfo \N 183 2846 INSERT -35 1670 ome.model.core.PlaneInfo \N 183 2847 INSERT -35 1671 ome.model.core.PlaneInfo \N 183 2848 INSERT -35 1672 ome.model.core.PlaneInfo \N 183 2849 INSERT -35 1673 ome.model.core.PlaneInfo \N 183 2850 INSERT -35 1674 ome.model.core.PlaneInfo \N 183 2851 INSERT -35 1675 ome.model.core.PlaneInfo \N 183 2852 INSERT -35 1676 ome.model.core.PlaneInfo \N 183 2853 INSERT -35 1677 ome.model.core.PlaneInfo \N 183 2854 INSERT -35 1678 ome.model.core.PlaneInfo \N 183 2855 INSERT -35 1679 ome.model.core.PlaneInfo \N 183 2856 INSERT -35 1680 ome.model.core.PlaneInfo \N 183 2857 INSERT -35 1681 ome.model.core.PlaneInfo \N 183 2858 INSERT -35 1682 ome.model.core.PlaneInfo \N 183 2859 INSERT -35 1683 ome.model.core.PlaneInfo \N 183 2860 INSERT -35 1684 ome.model.core.PlaneInfo \N 183 2861 INSERT -35 1685 ome.model.core.PlaneInfo \N 183 2862 INSERT -35 1686 ome.model.core.PlaneInfo \N 183 2863 INSERT -35 1687 ome.model.core.PlaneInfo \N 183 2864 INSERT -35 1688 ome.model.core.PlaneInfo \N 183 2865 INSERT -35 1689 ome.model.core.PlaneInfo \N 183 2866 INSERT -35 1690 ome.model.core.PlaneInfo \N 183 2867 INSERT -35 1691 ome.model.core.PlaneInfo \N 183 2868 INSERT -35 1692 ome.model.core.PlaneInfo \N 183 2869 INSERT -35 24 ome.model.acquisition.Microscope \N 183 2870 INSERT -35 24 ome.model.acquisition.Instrument \N 183 2871 INSERT -35 59 ome.model.acquisition.Detector \N 183 2872 INSERT -35 60 ome.model.acquisition.Detector \N 183 2873 INSERT -35 61 ome.model.acquisition.Detector \N 183 2874 INSERT -35 70 ome.model.acquisition.TransmittanceRange \N 183 2875 INSERT -35 70 ome.model.acquisition.Filter \N 183 2876 INSERT -35 71 ome.model.acquisition.TransmittanceRange \N 183 2877 INSERT -35 71 ome.model.acquisition.Filter \N 183 2878 INSERT -35 72 ome.model.acquisition.TransmittanceRange \N 183 2879 INSERT -35 72 ome.model.acquisition.Filter \N 183 2880 INSERT -35 139 ome.model.acquisition.Laser \N 183 2881 INSERT -35 140 ome.model.acquisition.Laser \N 183 2882 INSERT -35 141 ome.model.acquisition.Laser \N 183 2883 INSERT -35 142 ome.model.acquisition.Laser \N 183 2884 INSERT -35 143 ome.model.acquisition.Laser \N 183 2885 INSERT -35 144 ome.model.acquisition.Laser \N 183 2886 INSERT -35 24 ome.model.acquisition.Objective \N 183 2887 INSERT -35 24 ome.model.acquisition.ObjectiveSettings \N 183 2888 INSERT -35 24 ome.model.core.Image \N 183 2889 INSERT -35 39 ome.model.core.OriginalFile \N 183 2890 INSERT -35 24 ome.model.annotations.FileAnnotation \N 183 2891 INSERT -35 24 ome.model.annotations.ImageAnnotationLink \N 183 2892 INSERT -35 24 ome.model.containers.DatasetImageLink \N 183 2893 INSERT -35 24 ome.model.core.Pixels \N 183 2894 INSERT -35 59 ome.model.acquisition.DetectorSettings \N 183 2895 INSERT -35 47 ome.model.acquisition.LightPath \N 183 2896 INSERT -35 47 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2897 INSERT -35 44 ome.model.acquisition.LightSettings \N 183 2898 INSERT -35 59 ome.model.core.LogicalChannel \N 183 2899 INSERT -35 59 ome.model.core.Channel \N 183 2900 INSERT -35 60 ome.model.acquisition.DetectorSettings \N 183 2901 INSERT -35 48 ome.model.acquisition.LightPath \N 183 2902 INSERT -35 48 ome.model.acquisition.LightPathEmissionFilterLink \N 183 2903 INSERT -35 60 ome.model.core.LogicalChannel \N 183 2904 INSERT -35 60 ome.model.core.Channel \N 183 2905 INSERT -35 61 ome.model.acquisition.DetectorSettings \N 183 2906 INSERT -35 61 ome.model.core.LogicalChannel \N 183 2907 INSERT -35 61 ome.model.core.Channel \N 183 2908 INSERT -35 1693 ome.model.core.PlaneInfo \N 183 2909 INSERT -35 1694 ome.model.core.PlaneInfo \N 183 2910 INSERT -35 1695 ome.model.core.PlaneInfo \N 183 2911 INSERT -35 1696 ome.model.core.PlaneInfo \N 183 2912 INSERT -35 1697 ome.model.core.PlaneInfo \N 183 2913 INSERT -35 1698 ome.model.core.PlaneInfo \N 183 2914 INSERT -35 1699 ome.model.core.PlaneInfo \N 183 2915 INSERT -35 1700 ome.model.core.PlaneInfo \N 183 2916 INSERT -35 1701 ome.model.core.PlaneInfo \N 183 2917 INSERT -35 1702 ome.model.core.PlaneInfo \N 183 2918 INSERT -35 1703 ome.model.core.PlaneInfo \N 183 2919 INSERT -35 1704 ome.model.core.PlaneInfo \N 183 2920 INSERT -35 1705 ome.model.core.PlaneInfo \N 183 2921 INSERT -35 1706 ome.model.core.PlaneInfo \N 183 2922 INSERT -35 1707 ome.model.core.PlaneInfo \N 183 2923 INSERT -35 1708 ome.model.core.PlaneInfo \N 183 2924 INSERT -35 1709 ome.model.core.PlaneInfo \N 183 2925 INSERT -35 1710 ome.model.core.PlaneInfo \N 183 2926 INSERT -35 1711 ome.model.core.PlaneInfo \N 183 2927 INSERT -35 1712 ome.model.core.PlaneInfo \N 183 2928 INSERT -35 1713 ome.model.core.PlaneInfo \N 183 2929 INSERT -35 1714 ome.model.core.PlaneInfo \N 183 2930 INSERT -35 1715 ome.model.core.PlaneInfo \N 183 2931 INSERT -35 1716 ome.model.core.PlaneInfo \N 183 2932 INSERT -35 1717 ome.model.core.PlaneInfo \N 183 2933 INSERT -35 1718 ome.model.core.PlaneInfo \N 183 2934 INSERT -35 1719 ome.model.core.PlaneInfo \N 183 2935 INSERT -35 1720 ome.model.core.PlaneInfo \N 183 2936 INSERT -35 1721 ome.model.core.PlaneInfo \N 183 2937 INSERT -35 1722 ome.model.core.PlaneInfo \N 183 2938 INSERT -35 1723 ome.model.core.PlaneInfo \N 183 2939 INSERT -35 1724 ome.model.core.PlaneInfo \N 183 2940 INSERT -35 1725 ome.model.core.PlaneInfo \N 183 2941 INSERT -35 1726 ome.model.core.PlaneInfo \N 183 2942 INSERT -35 1727 ome.model.core.PlaneInfo \N 183 2943 INSERT -35 1728 ome.model.core.PlaneInfo \N 183 2944 INSERT -35 1729 ome.model.core.PlaneInfo \N 183 2945 INSERT -35 1730 ome.model.core.PlaneInfo \N 183 2946 INSERT -35 1731 ome.model.core.PlaneInfo \N 183 2947 INSERT -35 1732 ome.model.core.PlaneInfo \N 183 2948 INSERT -35 1733 ome.model.core.PlaneInfo \N 183 2949 INSERT -35 1734 ome.model.core.PlaneInfo \N 183 2950 INSERT -35 1735 ome.model.core.PlaneInfo \N 183 2951 INSERT -35 1736 ome.model.core.PlaneInfo \N 183 2952 INSERT -35 1737 ome.model.core.PlaneInfo \N 183 2953 INSERT -35 1738 ome.model.core.PlaneInfo \N 183 2954 INSERT -35 1739 ome.model.core.PlaneInfo \N 183 2955 INSERT -35 1740 ome.model.core.PlaneInfo \N 183 2956 INSERT -35 1741 ome.model.core.PlaneInfo \N 183 2957 INSERT -35 1742 ome.model.core.PlaneInfo \N 183 2958 INSERT -35 1743 ome.model.core.PlaneInfo \N 183 2959 INSERT -35 1744 ome.model.core.PlaneInfo \N 183 2960 INSERT -35 1745 ome.model.core.PlaneInfo \N 183 2961 INSERT -35 1746 ome.model.core.PlaneInfo \N 183 2962 INSERT -35 1747 ome.model.core.PlaneInfo \N 183 2963 INSERT -35 1748 ome.model.core.PlaneInfo \N 183 2964 INSERT -35 1749 ome.model.core.PlaneInfo \N 183 2965 INSERT -35 1750 ome.model.core.PlaneInfo \N 183 2966 INSERT -35 1751 ome.model.core.PlaneInfo \N 183 2967 INSERT -35 1752 ome.model.core.PlaneInfo \N 183 2968 INSERT -35 1753 ome.model.core.PlaneInfo \N 183 2969 INSERT -35 1754 ome.model.core.PlaneInfo \N 183 2970 INSERT -35 1755 ome.model.core.PlaneInfo \N 183 2971 INSERT -35 1756 ome.model.core.PlaneInfo \N 183 2972 INSERT -35 1757 ome.model.core.PlaneInfo \N 183 2973 INSERT -35 1758 ome.model.core.PlaneInfo \N 183 2974 INSERT -35 1759 ome.model.core.PlaneInfo \N 183 2975 INSERT -35 1760 ome.model.core.PlaneInfo \N 183 2976 INSERT -35 1761 ome.model.core.PlaneInfo \N 183 2977 INSERT -35 1762 ome.model.core.PlaneInfo \N 183 2978 INSERT -35 1763 ome.model.core.PlaneInfo \N 183 2979 INSERT -35 1764 ome.model.core.PlaneInfo \N 183 2980 INSERT -35 1765 ome.model.core.PlaneInfo \N 183 2981 INSERT -35 1766 ome.model.core.PlaneInfo \N 183 2982 INSERT -35 1767 ome.model.core.PlaneInfo \N 183 2983 INSERT -35 1768 ome.model.core.PlaneInfo \N 183 2984 INSERT -35 1769 ome.model.core.PlaneInfo \N 183 2985 INSERT -35 1770 ome.model.core.PlaneInfo \N 183 2986 INSERT -35 1771 ome.model.core.PlaneInfo \N 183 2987 INSERT -35 1772 ome.model.core.PlaneInfo \N 183 2988 INSERT -35 1773 ome.model.core.PlaneInfo \N 183 2989 INSERT -35 1774 ome.model.core.PlaneInfo \N 183 2990 INSERT -35 1775 ome.model.core.PlaneInfo \N 183 2991 INSERT -35 1776 ome.model.core.PlaneInfo \N 183 2992 INSERT -35 1777 ome.model.core.PlaneInfo \N 183 2993 INSERT -35 1778 ome.model.core.PlaneInfo \N 183 2994 INSERT -35 1779 ome.model.core.PlaneInfo \N 183 2995 INSERT -35 1780 ome.model.core.PlaneInfo \N 183 2996 INSERT -35 1781 ome.model.core.PlaneInfo \N 183 2997 INSERT -35 1782 ome.model.core.PlaneInfo \N 183 2998 INSERT -35 1783 ome.model.core.PlaneInfo \N 183 2999 INSERT -35 1784 ome.model.core.PlaneInfo \N 183 3000 INSERT -35 1785 ome.model.core.PlaneInfo \N 183 3001 INSERT -35 1786 ome.model.core.PlaneInfo \N 183 3002 INSERT -35 1787 ome.model.core.PlaneInfo \N 183 3003 INSERT -35 1788 ome.model.core.PlaneInfo \N 183 3004 INSERT -35 1789 ome.model.core.PlaneInfo \N 183 3005 INSERT -35 1790 ome.model.core.PlaneInfo \N 183 3006 INSERT -35 1791 ome.model.core.PlaneInfo \N 183 3007 INSERT -35 25 ome.model.acquisition.Microscope \N 183 3008 INSERT -35 25 ome.model.acquisition.Instrument \N 183 3009 INSERT -35 62 ome.model.acquisition.Detector \N 183 3010 INSERT -35 63 ome.model.acquisition.Detector \N 183 3011 INSERT -35 64 ome.model.acquisition.Detector \N 183 3012 INSERT -35 73 ome.model.acquisition.TransmittanceRange \N 183 3013 INSERT -35 73 ome.model.acquisition.Filter \N 183 3014 INSERT -35 74 ome.model.acquisition.TransmittanceRange \N 183 3015 INSERT -35 74 ome.model.acquisition.Filter \N 183 3016 INSERT -35 75 ome.model.acquisition.TransmittanceRange \N 183 3017 INSERT -35 75 ome.model.acquisition.Filter \N 183 3018 INSERT -35 145 ome.model.acquisition.Laser \N 183 3019 INSERT -35 146 ome.model.acquisition.Laser \N 183 3020 INSERT -35 147 ome.model.acquisition.Laser \N 183 3021 INSERT -35 148 ome.model.acquisition.Laser \N 183 3022 INSERT -35 149 ome.model.acquisition.Laser \N 183 3023 INSERT -35 150 ome.model.acquisition.Laser \N 183 3024 INSERT -35 25 ome.model.acquisition.Objective \N 183 3025 INSERT -35 25 ome.model.acquisition.ObjectiveSettings \N 183 3026 INSERT -35 25 ome.model.core.Image \N 183 3027 INSERT -35 40 ome.model.core.OriginalFile \N 183 3028 INSERT -35 25 ome.model.annotations.FileAnnotation \N 183 3029 INSERT -35 25 ome.model.annotations.ImageAnnotationLink \N 183 3030 INSERT -35 25 ome.model.containers.DatasetImageLink \N 183 3031 INSERT -35 25 ome.model.core.Pixels \N 183 3032 INSERT -35 62 ome.model.acquisition.DetectorSettings \N 183 3033 INSERT -35 49 ome.model.acquisition.LightPath \N 183 3034 INSERT -35 49 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3035 INSERT -35 45 ome.model.acquisition.LightSettings \N 183 3036 INSERT -35 62 ome.model.core.LogicalChannel \N 183 3037 INSERT -35 62 ome.model.core.Channel \N 183 3038 INSERT -35 63 ome.model.acquisition.DetectorSettings \N 183 3039 INSERT -35 50 ome.model.acquisition.LightPath \N 183 3040 INSERT -35 50 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3041 INSERT -35 63 ome.model.core.LogicalChannel \N 183 3042 INSERT -35 63 ome.model.core.Channel \N 183 3043 INSERT -35 64 ome.model.acquisition.DetectorSettings \N 183 3044 INSERT -35 64 ome.model.core.LogicalChannel \N 183 3045 INSERT -35 64 ome.model.core.Channel \N 183 3046 INSERT -35 1792 ome.model.core.PlaneInfo \N 183 3047 INSERT -35 1793 ome.model.core.PlaneInfo \N 183 3048 INSERT -35 1794 ome.model.core.PlaneInfo \N 183 3049 INSERT -35 1795 ome.model.core.PlaneInfo \N 183 3050 INSERT -35 1796 ome.model.core.PlaneInfo \N 183 3051 INSERT -35 1797 ome.model.core.PlaneInfo \N 183 3052 INSERT -35 1798 ome.model.core.PlaneInfo \N 183 3053 INSERT -35 1799 ome.model.core.PlaneInfo \N 183 3054 INSERT -35 1800 ome.model.core.PlaneInfo \N 183 3055 INSERT -35 1801 ome.model.core.PlaneInfo \N 183 3056 INSERT -35 1802 ome.model.core.PlaneInfo \N 183 3057 INSERT -35 1803 ome.model.core.PlaneInfo \N 183 3058 INSERT -35 1804 ome.model.core.PlaneInfo \N 183 3059 INSERT -35 1805 ome.model.core.PlaneInfo \N 183 3060 INSERT -35 1806 ome.model.core.PlaneInfo \N 183 3061 INSERT -35 1807 ome.model.core.PlaneInfo \N 183 3062 INSERT -35 1808 ome.model.core.PlaneInfo \N 183 3063 INSERT -35 1809 ome.model.core.PlaneInfo \N 183 3064 INSERT -35 1810 ome.model.core.PlaneInfo \N 183 3065 INSERT -35 1811 ome.model.core.PlaneInfo \N 183 3066 INSERT -35 1812 ome.model.core.PlaneInfo \N 183 3067 INSERT -35 1813 ome.model.core.PlaneInfo \N 183 3068 INSERT -35 1814 ome.model.core.PlaneInfo \N 183 3069 INSERT -35 1815 ome.model.core.PlaneInfo \N 183 3070 INSERT -35 1816 ome.model.core.PlaneInfo \N 183 3071 INSERT -35 1817 ome.model.core.PlaneInfo \N 183 3072 INSERT -35 1818 ome.model.core.PlaneInfo \N 183 3073 INSERT -35 1819 ome.model.core.PlaneInfo \N 183 3074 INSERT -35 1820 ome.model.core.PlaneInfo \N 183 3075 INSERT -35 1821 ome.model.core.PlaneInfo \N 183 3076 INSERT -35 1822 ome.model.core.PlaneInfo \N 183 3077 INSERT -35 1823 ome.model.core.PlaneInfo \N 183 3078 INSERT -35 1824 ome.model.core.PlaneInfo \N 183 3079 INSERT -35 1825 ome.model.core.PlaneInfo \N 183 3080 INSERT -35 1826 ome.model.core.PlaneInfo \N 183 3081 INSERT -35 1827 ome.model.core.PlaneInfo \N 183 3082 INSERT -35 1828 ome.model.core.PlaneInfo \N 183 3083 INSERT -35 1829 ome.model.core.PlaneInfo \N 183 3084 INSERT -35 1830 ome.model.core.PlaneInfo \N 183 3085 INSERT -35 1831 ome.model.core.PlaneInfo \N 183 3086 INSERT -35 1832 ome.model.core.PlaneInfo \N 183 3087 INSERT -35 1833 ome.model.core.PlaneInfo \N 183 3088 INSERT -35 1834 ome.model.core.PlaneInfo \N 183 3089 INSERT -35 1835 ome.model.core.PlaneInfo \N 183 3090 INSERT -35 1836 ome.model.core.PlaneInfo \N 183 3091 INSERT -35 1837 ome.model.core.PlaneInfo \N 183 3092 INSERT -35 1838 ome.model.core.PlaneInfo \N 183 3093 INSERT -35 1839 ome.model.core.PlaneInfo \N 183 3094 INSERT -35 1840 ome.model.core.PlaneInfo \N 183 3095 INSERT -35 1841 ome.model.core.PlaneInfo \N 183 3096 INSERT -35 1842 ome.model.core.PlaneInfo \N 183 3097 INSERT -35 1843 ome.model.core.PlaneInfo \N 183 3098 INSERT -35 1844 ome.model.core.PlaneInfo \N 183 3099 INSERT -35 1845 ome.model.core.PlaneInfo \N 183 3100 INSERT -35 1846 ome.model.core.PlaneInfo \N 183 3101 INSERT -35 1847 ome.model.core.PlaneInfo \N 183 3102 INSERT -35 1848 ome.model.core.PlaneInfo \N 183 3103 INSERT -35 1849 ome.model.core.PlaneInfo \N 183 3104 INSERT -35 1850 ome.model.core.PlaneInfo \N 183 3105 INSERT -35 1851 ome.model.core.PlaneInfo \N 183 3106 INSERT -35 1852 ome.model.core.PlaneInfo \N 183 3107 INSERT -35 1853 ome.model.core.PlaneInfo \N 183 3108 INSERT -35 1854 ome.model.core.PlaneInfo \N 183 3109 INSERT -35 1855 ome.model.core.PlaneInfo \N 183 3110 INSERT -35 1856 ome.model.core.PlaneInfo \N 183 3111 INSERT -35 1857 ome.model.core.PlaneInfo \N 183 3112 INSERT -35 1858 ome.model.core.PlaneInfo \N 183 3113 INSERT -35 1859 ome.model.core.PlaneInfo \N 183 3114 INSERT -35 1860 ome.model.core.PlaneInfo \N 183 3115 INSERT -35 1861 ome.model.core.PlaneInfo \N 183 3116 INSERT -35 1862 ome.model.core.PlaneInfo \N 183 3117 INSERT -35 1863 ome.model.core.PlaneInfo \N 183 3118 INSERT -35 1864 ome.model.core.PlaneInfo \N 183 3119 INSERT -35 1865 ome.model.core.PlaneInfo \N 183 3120 INSERT -35 1866 ome.model.core.PlaneInfo \N 183 3121 INSERT -35 1867 ome.model.core.PlaneInfo \N 183 3122 INSERT -35 1868 ome.model.core.PlaneInfo \N 183 3123 INSERT -35 1869 ome.model.core.PlaneInfo \N 183 3124 INSERT -35 1870 ome.model.core.PlaneInfo \N 183 3125 INSERT -35 1871 ome.model.core.PlaneInfo \N 183 3126 INSERT -35 1872 ome.model.core.PlaneInfo \N 183 3127 INSERT -35 1873 ome.model.core.PlaneInfo \N 183 3128 INSERT -35 1874 ome.model.core.PlaneInfo \N 183 3129 INSERT -35 1875 ome.model.core.PlaneInfo \N 183 3130 INSERT -35 1876 ome.model.core.PlaneInfo \N 183 3131 INSERT -35 1877 ome.model.core.PlaneInfo \N 183 3132 INSERT -35 1878 ome.model.core.PlaneInfo \N 183 3133 INSERT -35 1879 ome.model.core.PlaneInfo \N 183 3134 INSERT -35 1880 ome.model.core.PlaneInfo \N 183 3135 INSERT -35 1881 ome.model.core.PlaneInfo \N 183 3136 INSERT -35 1882 ome.model.core.PlaneInfo \N 183 3137 INSERT -35 1883 ome.model.core.PlaneInfo \N 183 3138 INSERT -35 1884 ome.model.core.PlaneInfo \N 183 3139 INSERT -35 1885 ome.model.core.PlaneInfo \N 183 3140 INSERT -35 1886 ome.model.core.PlaneInfo \N 183 3141 INSERT -35 1887 ome.model.core.PlaneInfo \N 183 3142 INSERT -35 26 ome.model.acquisition.Microscope \N 183 3143 INSERT -35 26 ome.model.acquisition.Instrument \N 183 3144 INSERT -35 65 ome.model.acquisition.Detector \N 183 3145 INSERT -35 66 ome.model.acquisition.Detector \N 183 3146 INSERT -35 76 ome.model.acquisition.TransmittanceRange \N 183 3147 INSERT -35 76 ome.model.acquisition.Filter \N 183 3148 INSERT -35 77 ome.model.acquisition.TransmittanceRange \N 183 3149 INSERT -35 77 ome.model.acquisition.Filter \N 183 3150 INSERT -35 78 ome.model.acquisition.TransmittanceRange \N 183 3151 INSERT -35 78 ome.model.acquisition.Filter \N 183 3152 INSERT -35 151 ome.model.acquisition.Laser \N 183 3153 INSERT -35 152 ome.model.acquisition.Laser \N 183 3154 INSERT -35 153 ome.model.acquisition.Laser \N 183 3155 INSERT -35 154 ome.model.acquisition.Laser \N 183 3156 INSERT -35 155 ome.model.acquisition.Laser \N 183 3157 INSERT -35 156 ome.model.acquisition.Laser \N 183 3158 INSERT -35 26 ome.model.acquisition.Objective \N 183 3159 INSERT -35 26 ome.model.acquisition.ObjectiveSettings \N 183 3160 INSERT -35 26 ome.model.core.Image \N 183 3161 INSERT -35 41 ome.model.core.OriginalFile \N 183 3162 INSERT -35 26 ome.model.annotations.FileAnnotation \N 183 3163 INSERT -35 26 ome.model.annotations.ImageAnnotationLink \N 183 3164 INSERT -35 26 ome.model.containers.DatasetImageLink \N 183 3165 INSERT -35 26 ome.model.core.Pixels \N 183 3166 INSERT -35 65 ome.model.acquisition.DetectorSettings \N 183 3167 INSERT -35 51 ome.model.acquisition.LightPath \N 183 3168 INSERT -35 51 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3169 INSERT -35 46 ome.model.acquisition.LightSettings \N 183 3170 INSERT -35 65 ome.model.core.LogicalChannel \N 183 3171 INSERT -35 65 ome.model.core.Channel \N 183 3172 INSERT -35 66 ome.model.acquisition.DetectorSettings \N 183 3173 INSERT -35 52 ome.model.acquisition.LightPath \N 183 3174 INSERT -35 52 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3175 INSERT -35 47 ome.model.acquisition.LightSettings \N 183 3176 INSERT -35 66 ome.model.core.LogicalChannel \N 183 3177 INSERT -35 66 ome.model.core.Channel \N 183 3178 INSERT -35 1888 ome.model.core.PlaneInfo \N 183 3179 INSERT -35 1889 ome.model.core.PlaneInfo \N 183 3180 INSERT -35 1890 ome.model.core.PlaneInfo \N 183 3181 INSERT -35 1891 ome.model.core.PlaneInfo \N 183 3182 INSERT -35 1892 ome.model.core.PlaneInfo \N 183 3183 INSERT -35 1893 ome.model.core.PlaneInfo \N 183 3184 INSERT -35 1894 ome.model.core.PlaneInfo \N 183 3185 INSERT -35 1895 ome.model.core.PlaneInfo \N 183 3186 INSERT -35 1896 ome.model.core.PlaneInfo \N 183 3187 INSERT -35 1897 ome.model.core.PlaneInfo \N 183 3188 INSERT -35 1898 ome.model.core.PlaneInfo \N 183 3189 INSERT -35 1899 ome.model.core.PlaneInfo \N 183 3190 INSERT -35 1900 ome.model.core.PlaneInfo \N 183 3191 INSERT -35 1901 ome.model.core.PlaneInfo \N 183 3192 INSERT -35 1902 ome.model.core.PlaneInfo \N 183 3193 INSERT -35 1903 ome.model.core.PlaneInfo \N 183 3194 INSERT -35 1904 ome.model.core.PlaneInfo \N 183 3195 INSERT -35 1905 ome.model.core.PlaneInfo \N 183 3196 INSERT -35 1906 ome.model.core.PlaneInfo \N 183 3197 INSERT -35 1907 ome.model.core.PlaneInfo \N 183 3198 INSERT -35 1908 ome.model.core.PlaneInfo \N 183 3199 INSERT -35 1909 ome.model.core.PlaneInfo \N 183 3200 INSERT -35 1910 ome.model.core.PlaneInfo \N 183 3201 INSERT -35 1911 ome.model.core.PlaneInfo \N 183 3202 INSERT -35 1912 ome.model.core.PlaneInfo \N 183 3203 INSERT -35 1913 ome.model.core.PlaneInfo \N 183 3204 INSERT -35 1914 ome.model.core.PlaneInfo \N 183 3205 INSERT -35 1915 ome.model.core.PlaneInfo \N 183 3206 INSERT -35 1916 ome.model.core.PlaneInfo \N 183 3207 INSERT -35 1917 ome.model.core.PlaneInfo \N 183 3208 INSERT -35 1918 ome.model.core.PlaneInfo \N 183 3209 INSERT -35 1919 ome.model.core.PlaneInfo \N 183 3210 INSERT -35 1920 ome.model.core.PlaneInfo \N 183 3211 INSERT -35 1921 ome.model.core.PlaneInfo \N 183 3212 INSERT -35 1922 ome.model.core.PlaneInfo \N 183 3213 INSERT -35 1923 ome.model.core.PlaneInfo \N 183 3214 INSERT -35 1924 ome.model.core.PlaneInfo \N 183 3215 INSERT -35 1925 ome.model.core.PlaneInfo \N 183 3216 INSERT -35 1926 ome.model.core.PlaneInfo \N 183 3217 INSERT -35 1927 ome.model.core.PlaneInfo \N 183 3218 INSERT -35 1928 ome.model.core.PlaneInfo \N 183 3219 INSERT -35 1929 ome.model.core.PlaneInfo \N 183 3220 INSERT -35 1930 ome.model.core.PlaneInfo \N 183 3221 INSERT -35 1931 ome.model.core.PlaneInfo \N 183 3222 INSERT -35 1932 ome.model.core.PlaneInfo \N 183 3223 INSERT -35 1933 ome.model.core.PlaneInfo \N 183 3224 INSERT -35 1934 ome.model.core.PlaneInfo \N 183 3225 INSERT -35 1935 ome.model.core.PlaneInfo \N 183 3226 INSERT -35 1936 ome.model.core.PlaneInfo \N 183 3227 INSERT -35 1937 ome.model.core.PlaneInfo \N 183 3228 INSERT -35 1938 ome.model.core.PlaneInfo \N 183 3229 INSERT -35 1939 ome.model.core.PlaneInfo \N 183 3230 INSERT -35 1940 ome.model.core.PlaneInfo \N 183 3231 INSERT -35 1941 ome.model.core.PlaneInfo \N 183 3232 INSERT -35 1942 ome.model.core.PlaneInfo \N 183 3233 INSERT -35 1943 ome.model.core.PlaneInfo \N 183 3234 INSERT -35 1944 ome.model.core.PlaneInfo \N 183 3235 INSERT -35 1945 ome.model.core.PlaneInfo \N 183 3236 INSERT -35 1946 ome.model.core.PlaneInfo \N 183 3237 INSERT -35 1947 ome.model.core.PlaneInfo \N 183 3238 INSERT -35 1948 ome.model.core.PlaneInfo \N 183 3239 INSERT -35 1949 ome.model.core.PlaneInfo \N 183 3240 INSERT -35 1950 ome.model.core.PlaneInfo \N 183 3241 INSERT -35 1951 ome.model.core.PlaneInfo \N 183 3242 INSERT -35 1952 ome.model.core.PlaneInfo \N 183 3243 INSERT -35 1953 ome.model.core.PlaneInfo \N 183 3244 INSERT -35 1954 ome.model.core.PlaneInfo \N 183 3245 INSERT -35 1955 ome.model.core.PlaneInfo \N 183 3246 INSERT -35 1956 ome.model.core.PlaneInfo \N 183 3247 INSERT -35 1957 ome.model.core.PlaneInfo \N 183 3248 INSERT -35 1958 ome.model.core.PlaneInfo \N 183 3249 INSERT -35 1959 ome.model.core.PlaneInfo \N 183 3250 INSERT -35 1960 ome.model.core.PlaneInfo \N 183 3251 INSERT -35 1961 ome.model.core.PlaneInfo \N 183 3252 INSERT -35 1962 ome.model.core.PlaneInfo \N 183 3253 INSERT -35 1963 ome.model.core.PlaneInfo \N 183 3254 INSERT -35 1964 ome.model.core.PlaneInfo \N 183 3255 INSERT -35 1965 ome.model.core.PlaneInfo \N 183 3256 INSERT -35 1966 ome.model.core.PlaneInfo \N 183 3257 INSERT -35 1967 ome.model.core.PlaneInfo \N 183 3258 INSERT -35 1968 ome.model.core.PlaneInfo \N 183 3259 INSERT -35 1969 ome.model.core.PlaneInfo \N 183 3260 INSERT -35 1970 ome.model.core.PlaneInfo \N 183 3261 INSERT -35 1971 ome.model.core.PlaneInfo \N 183 3262 INSERT -35 1972 ome.model.core.PlaneInfo \N 183 3263 INSERT -35 1973 ome.model.core.PlaneInfo \N 183 3264 INSERT -35 1974 ome.model.core.PlaneInfo \N 183 3265 INSERT -35 1975 ome.model.core.PlaneInfo \N 183 3266 INSERT -35 1976 ome.model.core.PlaneInfo \N 183 3267 INSERT -35 1977 ome.model.core.PlaneInfo \N 183 3268 INSERT -35 1978 ome.model.core.PlaneInfo \N 183 3269 INSERT -35 1979 ome.model.core.PlaneInfo \N 183 3270 INSERT -35 1980 ome.model.core.PlaneInfo \N 183 3271 INSERT -35 1981 ome.model.core.PlaneInfo \N 183 3272 INSERT -35 1982 ome.model.core.PlaneInfo \N 183 3273 INSERT -35 1983 ome.model.core.PlaneInfo \N 183 3274 INSERT -35 1984 ome.model.core.PlaneInfo \N 183 3275 INSERT -35 1985 ome.model.core.PlaneInfo \N 183 3276 INSERT -35 1986 ome.model.core.PlaneInfo \N 183 3277 INSERT -35 1987 ome.model.core.PlaneInfo \N 183 3278 INSERT -35 1988 ome.model.core.PlaneInfo \N 183 3279 INSERT -35 1989 ome.model.core.PlaneInfo \N 183 3280 INSERT -35 1990 ome.model.core.PlaneInfo \N 183 3281 INSERT -35 1991 ome.model.core.PlaneInfo \N 183 3282 INSERT -35 1992 ome.model.core.PlaneInfo \N 183 3283 INSERT -35 1993 ome.model.core.PlaneInfo \N 183 3284 INSERT -35 1994 ome.model.core.PlaneInfo \N 183 3285 INSERT -35 1995 ome.model.core.PlaneInfo \N 183 3286 INSERT -35 27 ome.model.acquisition.Microscope \N 183 3287 INSERT -35 27 ome.model.acquisition.Instrument \N 183 3288 INSERT -35 67 ome.model.acquisition.Detector \N 183 3289 INSERT -35 68 ome.model.acquisition.Detector \N 183 3290 INSERT -35 79 ome.model.acquisition.TransmittanceRange \N 183 3291 INSERT -35 79 ome.model.acquisition.Filter \N 183 3292 INSERT -35 80 ome.model.acquisition.TransmittanceRange \N 183 3293 INSERT -35 80 ome.model.acquisition.Filter \N 183 3294 INSERT -35 81 ome.model.acquisition.TransmittanceRange \N 183 3295 INSERT -35 81 ome.model.acquisition.Filter \N 183 3296 INSERT -35 157 ome.model.acquisition.Laser \N 183 3297 INSERT -35 158 ome.model.acquisition.Laser \N 183 3298 INSERT -35 159 ome.model.acquisition.Laser \N 183 3299 INSERT -35 160 ome.model.acquisition.Laser \N 183 3300 INSERT -35 161 ome.model.acquisition.Laser \N 183 3301 INSERT -35 162 ome.model.acquisition.Laser \N 183 3302 INSERT -35 27 ome.model.acquisition.Objective \N 183 3303 INSERT -35 27 ome.model.acquisition.ObjectiveSettings \N 183 3304 INSERT -35 27 ome.model.core.Image \N 183 3305 INSERT -35 42 ome.model.core.OriginalFile \N 183 3306 INSERT -35 27 ome.model.annotations.FileAnnotation \N 183 3307 INSERT -35 27 ome.model.annotations.ImageAnnotationLink \N 183 3308 INSERT -35 27 ome.model.containers.DatasetImageLink \N 183 3309 INSERT -35 27 ome.model.core.Pixels \N 183 3310 INSERT -35 67 ome.model.acquisition.DetectorSettings \N 183 3311 INSERT -35 53 ome.model.acquisition.LightPath \N 183 3312 INSERT -35 53 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3313 INSERT -35 48 ome.model.acquisition.LightSettings \N 183 3314 INSERT -35 67 ome.model.core.LogicalChannel \N 183 3315 INSERT -35 67 ome.model.core.Channel \N 183 3316 INSERT -35 68 ome.model.acquisition.DetectorSettings \N 183 3317 INSERT -35 54 ome.model.acquisition.LightPath \N 183 3318 INSERT -35 54 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3319 INSERT -35 68 ome.model.core.LogicalChannel \N 183 3320 INSERT -35 68 ome.model.core.Channel \N 183 3321 INSERT -35 1996 ome.model.core.PlaneInfo \N 183 3322 INSERT -35 1997 ome.model.core.PlaneInfo \N 183 3323 INSERT -35 1998 ome.model.core.PlaneInfo \N 183 3324 INSERT -35 1999 ome.model.core.PlaneInfo \N 183 3325 INSERT -35 2000 ome.model.core.PlaneInfo \N 183 3326 INSERT -35 2001 ome.model.core.PlaneInfo \N 183 3327 INSERT -35 2002 ome.model.core.PlaneInfo \N 183 3328 INSERT -35 2003 ome.model.core.PlaneInfo \N 183 3329 INSERT -35 2004 ome.model.core.PlaneInfo \N 183 3330 INSERT -35 2005 ome.model.core.PlaneInfo \N 183 3331 INSERT -35 2006 ome.model.core.PlaneInfo \N 183 3332 INSERT -35 2007 ome.model.core.PlaneInfo \N 183 3333 INSERT -35 2008 ome.model.core.PlaneInfo \N 183 3334 INSERT -35 2009 ome.model.core.PlaneInfo \N 183 3335 INSERT -35 2010 ome.model.core.PlaneInfo \N 183 3336 INSERT -35 2011 ome.model.core.PlaneInfo \N 183 3337 INSERT -35 2012 ome.model.core.PlaneInfo \N 183 3338 INSERT -35 2013 ome.model.core.PlaneInfo \N 183 3339 INSERT -35 2014 ome.model.core.PlaneInfo \N 183 3340 INSERT -35 2015 ome.model.core.PlaneInfo \N 183 3341 INSERT -35 2016 ome.model.core.PlaneInfo \N 183 3342 INSERT -35 2017 ome.model.core.PlaneInfo \N 183 3343 INSERT -35 2018 ome.model.core.PlaneInfo \N 183 3344 INSERT -35 2019 ome.model.core.PlaneInfo \N 183 3345 INSERT -35 2020 ome.model.core.PlaneInfo \N 183 3346 INSERT -35 2021 ome.model.core.PlaneInfo \N 183 3347 INSERT -35 2022 ome.model.core.PlaneInfo \N 183 3348 INSERT -35 2023 ome.model.core.PlaneInfo \N 183 3349 INSERT -35 2024 ome.model.core.PlaneInfo \N 183 3350 INSERT -35 2025 ome.model.core.PlaneInfo \N 183 3351 INSERT -35 2026 ome.model.core.PlaneInfo \N 183 3352 INSERT -35 2027 ome.model.core.PlaneInfo \N 183 3353 INSERT -35 2028 ome.model.core.PlaneInfo \N 183 3354 INSERT -35 2029 ome.model.core.PlaneInfo \N 183 3355 INSERT -35 2030 ome.model.core.PlaneInfo \N 183 3356 INSERT -35 2031 ome.model.core.PlaneInfo \N 183 3357 INSERT -35 2032 ome.model.core.PlaneInfo \N 183 3358 INSERT -35 2033 ome.model.core.PlaneInfo \N 183 3359 INSERT -35 2034 ome.model.core.PlaneInfo \N 183 3360 INSERT -35 2035 ome.model.core.PlaneInfo \N 183 3361 INSERT -35 2036 ome.model.core.PlaneInfo \N 183 3362 INSERT -35 2037 ome.model.core.PlaneInfo \N 183 3363 INSERT -35 2038 ome.model.core.PlaneInfo \N 183 3364 INSERT -35 2039 ome.model.core.PlaneInfo \N 183 3365 INSERT -35 2040 ome.model.core.PlaneInfo \N 183 3366 INSERT -35 2041 ome.model.core.PlaneInfo \N 183 3367 INSERT -35 2042 ome.model.core.PlaneInfo \N 183 3368 INSERT -35 2043 ome.model.core.PlaneInfo \N 183 3369 INSERT -35 2044 ome.model.core.PlaneInfo \N 183 3370 INSERT -35 2045 ome.model.core.PlaneInfo \N 183 3371 INSERT -35 2046 ome.model.core.PlaneInfo \N 183 3372 INSERT -35 2047 ome.model.core.PlaneInfo \N 183 3373 INSERT -35 2048 ome.model.core.PlaneInfo \N 183 3374 INSERT -35 2049 ome.model.core.PlaneInfo \N 183 3375 INSERT -35 2050 ome.model.core.PlaneInfo \N 183 3376 INSERT -35 2051 ome.model.core.PlaneInfo \N 183 3377 INSERT -35 2052 ome.model.core.PlaneInfo \N 183 3378 INSERT -35 2053 ome.model.core.PlaneInfo \N 183 3379 INSERT -35 2054 ome.model.core.PlaneInfo \N 183 3380 INSERT -35 2055 ome.model.core.PlaneInfo \N 183 3381 INSERT -35 2056 ome.model.core.PlaneInfo \N 183 3382 INSERT -35 2057 ome.model.core.PlaneInfo \N 183 3383 INSERT -35 2058 ome.model.core.PlaneInfo \N 183 3384 INSERT -35 2059 ome.model.core.PlaneInfo \N 183 3385 INSERT -35 2060 ome.model.core.PlaneInfo \N 183 3386 INSERT -35 2061 ome.model.core.PlaneInfo \N 183 3387 INSERT -35 2062 ome.model.core.PlaneInfo \N 183 3388 INSERT -35 2063 ome.model.core.PlaneInfo \N 183 3389 INSERT -35 2064 ome.model.core.PlaneInfo \N 183 3390 INSERT -35 2065 ome.model.core.PlaneInfo \N 183 3391 INSERT -35 2066 ome.model.core.PlaneInfo \N 183 3392 INSERT -35 2067 ome.model.core.PlaneInfo \N 183 3393 INSERT -35 2068 ome.model.core.PlaneInfo \N 183 3394 INSERT -35 2069 ome.model.core.PlaneInfo \N 183 3395 INSERT -35 2070 ome.model.core.PlaneInfo \N 183 3396 INSERT -35 2071 ome.model.core.PlaneInfo \N 183 3397 INSERT -35 2072 ome.model.core.PlaneInfo \N 183 3398 INSERT -35 2073 ome.model.core.PlaneInfo \N 183 3399 INSERT -35 28 ome.model.acquisition.Microscope \N 183 3400 INSERT -35 28 ome.model.acquisition.Instrument \N 183 3401 INSERT -35 69 ome.model.acquisition.Detector \N 183 3402 INSERT -35 70 ome.model.acquisition.Detector \N 183 3403 INSERT -35 82 ome.model.acquisition.TransmittanceRange \N 183 3404 INSERT -35 82 ome.model.acquisition.Filter \N 183 3405 INSERT -35 83 ome.model.acquisition.TransmittanceRange \N 183 3406 INSERT -35 83 ome.model.acquisition.Filter \N 183 3407 INSERT -35 84 ome.model.acquisition.TransmittanceRange \N 183 3408 INSERT -35 84 ome.model.acquisition.Filter \N 183 3409 INSERT -35 163 ome.model.acquisition.Laser \N 183 3410 INSERT -35 164 ome.model.acquisition.Laser \N 183 3411 INSERT -35 165 ome.model.acquisition.Laser \N 183 3412 INSERT -35 166 ome.model.acquisition.Laser \N 183 3413 INSERT -35 167 ome.model.acquisition.Laser \N 183 3414 INSERT -35 168 ome.model.acquisition.Laser \N 183 3415 INSERT -35 28 ome.model.acquisition.Objective \N 183 3416 INSERT -35 28 ome.model.acquisition.ObjectiveSettings \N 183 3417 INSERT -35 28 ome.model.core.Image \N 183 3418 INSERT -35 43 ome.model.core.OriginalFile \N 183 3419 INSERT -35 28 ome.model.annotations.FileAnnotation \N 183 3420 INSERT -35 28 ome.model.annotations.ImageAnnotationLink \N 183 3421 INSERT -35 28 ome.model.containers.DatasetImageLink \N 183 3422 INSERT -35 28 ome.model.core.Pixels \N 183 3423 INSERT -35 69 ome.model.acquisition.DetectorSettings \N 183 3424 INSERT -35 55 ome.model.acquisition.LightPath \N 183 3425 INSERT -35 55 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3426 INSERT -35 49 ome.model.acquisition.LightSettings \N 183 3427 INSERT -35 69 ome.model.core.LogicalChannel \N 183 3428 INSERT -35 69 ome.model.core.Channel \N 183 3429 INSERT -35 70 ome.model.acquisition.DetectorSettings \N 183 3430 INSERT -35 56 ome.model.acquisition.LightPath \N 183 3431 INSERT -35 56 ome.model.acquisition.LightPathEmissionFilterLink \N 183 3432 INSERT -35 50 ome.model.acquisition.LightSettings \N 183 3433 INSERT -35 70 ome.model.core.LogicalChannel \N 183 3434 INSERT -35 70 ome.model.core.Channel \N 183 3435 INSERT -35 2074 ome.model.core.PlaneInfo \N 183 3436 INSERT -35 2075 ome.model.core.PlaneInfo \N 183 3437 INSERT -35 2076 ome.model.core.PlaneInfo \N 183 3438 INSERT -35 2077 ome.model.core.PlaneInfo \N 183 3439 INSERT -35 2078 ome.model.core.PlaneInfo \N 183 3440 INSERT -35 2079 ome.model.core.PlaneInfo \N 183 3441 INSERT -35 2080 ome.model.core.PlaneInfo \N 183 3442 INSERT -35 2081 ome.model.core.PlaneInfo \N 183 3443 INSERT -35 2082 ome.model.core.PlaneInfo \N 183 3444 INSERT -35 2083 ome.model.core.PlaneInfo \N 183 3445 INSERT -35 2084 ome.model.core.PlaneInfo \N 183 3446 INSERT -35 2085 ome.model.core.PlaneInfo \N 183 3447 INSERT -35 2086 ome.model.core.PlaneInfo \N 183 3448 INSERT -35 2087 ome.model.core.PlaneInfo \N 183 3449 INSERT -35 2088 ome.model.core.PlaneInfo \N 183 3450 INSERT -35 2089 ome.model.core.PlaneInfo \N 183 3451 INSERT -35 2090 ome.model.core.PlaneInfo \N 183 3452 INSERT -35 2091 ome.model.core.PlaneInfo \N 183 3453 INSERT -35 2092 ome.model.core.PlaneInfo \N 183 3454 INSERT -35 2093 ome.model.core.PlaneInfo \N 183 3455 INSERT -35 2094 ome.model.core.PlaneInfo \N 183 3456 INSERT -35 2095 ome.model.core.PlaneInfo \N 183 3457 INSERT -35 2096 ome.model.core.PlaneInfo \N 183 3458 INSERT -35 2097 ome.model.core.PlaneInfo \N 183 3459 INSERT -35 2098 ome.model.core.PlaneInfo \N 183 3460 INSERT -35 2099 ome.model.core.PlaneInfo \N 183 3461 INSERT -35 2100 ome.model.core.PlaneInfo \N 183 3462 INSERT -35 2101 ome.model.core.PlaneInfo \N 183 3463 INSERT -35 2102 ome.model.core.PlaneInfo \N 183 3464 INSERT -35 2103 ome.model.core.PlaneInfo \N 183 3465 INSERT -35 2104 ome.model.core.PlaneInfo \N 183 3466 INSERT -35 2105 ome.model.core.PlaneInfo \N 183 3467 INSERT -35 2106 ome.model.core.PlaneInfo \N 183 3468 INSERT -35 2107 ome.model.core.PlaneInfo \N 183 3469 INSERT -35 2108 ome.model.core.PlaneInfo \N 183 3470 INSERT -35 2109 ome.model.core.PlaneInfo \N 183 3471 INSERT -35 2110 ome.model.core.PlaneInfo \N 183 3472 INSERT -35 2111 ome.model.core.PlaneInfo \N 183 3473 INSERT -35 2112 ome.model.core.PlaneInfo \N 183 3474 INSERT -35 2113 ome.model.core.PlaneInfo \N 183 3475 INSERT -35 2114 ome.model.core.PlaneInfo \N 183 3476 INSERT -35 2115 ome.model.core.PlaneInfo \N 183 3477 INSERT -35 2116 ome.model.core.PlaneInfo \N 183 3478 INSERT -35 2117 ome.model.core.PlaneInfo \N 183 3479 INSERT -35 2118 ome.model.core.PlaneInfo \N 183 3480 INSERT -35 2119 ome.model.core.PlaneInfo \N 183 3481 INSERT -35 2120 ome.model.core.PlaneInfo \N 183 3482 INSERT -35 2121 ome.model.core.PlaneInfo \N 183 3483 INSERT -35 2122 ome.model.core.PlaneInfo \N 183 3484 INSERT -35 2123 ome.model.core.PlaneInfo \N 183 3485 INSERT -35 2124 ome.model.core.PlaneInfo \N 183 3486 INSERT -35 2125 ome.model.core.PlaneInfo \N 183 3487 INSERT -35 2126 ome.model.core.PlaneInfo \N 183 3488 INSERT -35 2127 ome.model.core.PlaneInfo \N 183 3489 INSERT -35 2128 ome.model.core.PlaneInfo \N 183 3490 INSERT -35 2129 ome.model.core.PlaneInfo \N 183 3491 INSERT -35 2130 ome.model.core.PlaneInfo \N 183 3492 INSERT -35 2131 ome.model.core.PlaneInfo \N 183 3493 INSERT -35 2132 ome.model.core.PlaneInfo \N 183 3494 INSERT -35 2133 ome.model.core.PlaneInfo \N 183 3495 INSERT -35 2134 ome.model.core.PlaneInfo \N 183 3496 INSERT -35 2135 ome.model.core.PlaneInfo \N 183 3497 INSERT -35 2136 ome.model.core.PlaneInfo \N 183 3498 INSERT -35 2137 ome.model.core.PlaneInfo \N 183 3499 INSERT -35 2138 ome.model.core.PlaneInfo \N 183 3500 INSERT -35 2139 ome.model.core.PlaneInfo \N 183 3501 INSERT -35 2140 ome.model.core.PlaneInfo \N 183 3502 INSERT -35 2141 ome.model.core.PlaneInfo \N 183 3503 INSERT -35 2142 ome.model.core.PlaneInfo \N 183 3504 INSERT -35 2143 ome.model.core.PlaneInfo \N 183 3505 INSERT -35 2144 ome.model.core.PlaneInfo \N 183 3506 INSERT -35 2145 ome.model.core.PlaneInfo \N 183 3507 INSERT -35 2146 ome.model.core.PlaneInfo \N 183 3508 INSERT -35 2147 ome.model.core.PlaneInfo \N 183 3509 INSERT -35 2148 ome.model.core.PlaneInfo \N 183 3510 INSERT -35 2149 ome.model.core.PlaneInfo \N 183 3511 INSERT -35 2150 ome.model.core.PlaneInfo \N 183 3512 INSERT -35 2151 ome.model.core.PlaneInfo \N 183 3513 INSERT -35 2152 ome.model.core.PlaneInfo \N 183 3514 INSERT -35 2153 ome.model.core.PlaneInfo \N 183 3515 INSERT -35 2154 ome.model.core.PlaneInfo \N 183 3516 INSERT -35 2155 ome.model.core.PlaneInfo \N 183 3517 INSERT -35 2156 ome.model.core.PlaneInfo \N 183 3518 INSERT -35 2157 ome.model.core.PlaneInfo \N 183 3519 INSERT -35 2158 ome.model.core.PlaneInfo \N 183 3520 INSERT -35 2159 ome.model.core.PlaneInfo \N 183 3521 INSERT -35 2160 ome.model.core.PlaneInfo \N 183 3522 INSERT -35 2161 ome.model.core.PlaneInfo \N 183 3523 INSERT -35 2162 ome.model.core.PlaneInfo \N 183 3524 INSERT -35 2163 ome.model.core.PlaneInfo \N 183 3525 INSERT -35 2164 ome.model.core.PlaneInfo \N 183 3526 INSERT -35 2165 ome.model.core.PlaneInfo \N 183 3527 INSERT -35 2166 ome.model.core.PlaneInfo \N 183 3528 INSERT -35 2167 ome.model.core.PlaneInfo \N 183 3529 INSERT -35 2168 ome.model.core.PlaneInfo \N 183 3530 INSERT -35 2169 ome.model.core.PlaneInfo \N 183 3531 INSERT -35 2170 ome.model.core.PlaneInfo \N 183 3532 INSERT -35 2171 ome.model.core.PlaneInfo \N 183 3533 INSERT -35 2172 ome.model.core.PlaneInfo \N 183 3534 INSERT -35 2173 ome.model.core.PlaneInfo \N 183 3535 INSERT -35 2174 ome.model.core.PlaneInfo \N 183 3536 INSERT -35 2175 ome.model.core.PlaneInfo \N 183 3537 INSERT -35 2176 ome.model.core.PlaneInfo \N 183 3538 INSERT -35 2177 ome.model.core.PlaneInfo \N 183 3539 INSERT -35 2178 ome.model.core.PlaneInfo \N 183 3540 INSERT -35 2179 ome.model.core.PlaneInfo \N 183 3541 INSERT -35 2180 ome.model.core.PlaneInfo \N 183 3542 INSERT -35 2181 ome.model.core.PlaneInfo \N 183 3543 INSERT -35 2182 ome.model.core.PlaneInfo \N 183 3544 INSERT -35 2183 ome.model.core.PlaneInfo \N 183 3545 INSERT -35 2184 ome.model.core.PlaneInfo \N 183 3546 INSERT -35 2185 ome.model.core.PlaneInfo \N 183 3547 INSERT -35 2186 ome.model.core.PlaneInfo \N 183 3548 INSERT -35 2187 ome.model.core.PlaneInfo \N 183 3549 INSERT -35 2188 ome.model.core.PlaneInfo \N 183 3550 INSERT -35 2189 ome.model.core.PlaneInfo \N 183 3551 INSERT -35 2190 ome.model.core.PlaneInfo \N 183 3552 INSERT -35 2191 ome.model.core.PlaneInfo \N 183 3553 INSERT -35 2192 ome.model.core.PlaneInfo \N 183 3554 INSERT -35 2193 ome.model.core.PlaneInfo \N 183 3555 INSERT -35 2194 ome.model.core.PlaneInfo \N 183 3556 INSERT -35 2195 ome.model.core.PlaneInfo \N 183 3557 INSERT -35 2196 ome.model.core.PlaneInfo \N 183 3558 INSERT -35 2197 ome.model.core.PlaneInfo \N 183 3559 INSERT -35 2198 ome.model.core.PlaneInfo \N 183 3560 INSERT -35 2199 ome.model.core.PlaneInfo \N 183 3561 INSERT -35 2200 ome.model.core.PlaneInfo \N 183 3562 INSERT -35 2201 ome.model.core.PlaneInfo \N 183 3563 INSERT -35 2202 ome.model.core.PlaneInfo \N 183 3564 INSERT -35 2203 ome.model.core.PlaneInfo \N 183 3565 INSERT -35 2204 ome.model.core.PlaneInfo \N 183 3566 INSERT -35 2205 ome.model.core.PlaneInfo \N 183 3567 INSERT -35 2206 ome.model.core.PlaneInfo \N 183 3568 INSERT -35 2207 ome.model.core.PlaneInfo \N 183 3569 INSERT -35 2208 ome.model.core.PlaneInfo \N 183 3570 INSERT -35 2209 ome.model.core.PlaneInfo \N 183 3571 INSERT -35 2210 ome.model.core.PlaneInfo \N 183 3572 INSERT -35 2211 ome.model.core.PlaneInfo \N 183 3573 INSERT -35 2212 ome.model.core.PlaneInfo \N 183 3574 INSERT -35 2213 ome.model.core.PlaneInfo \N 183 3575 INSERT -35 2214 ome.model.core.PlaneInfo \N 183 3576 INSERT -35 2215 ome.model.core.PlaneInfo \N 183 3577 INSERT -35 2216 ome.model.core.PlaneInfo \N 183 3578 INSERT -35 2217 ome.model.core.PlaneInfo \N 183 3579 INSERT -35 2218 ome.model.core.PlaneInfo \N 183 3580 INSERT -35 2219 ome.model.core.PlaneInfo \N 183 3581 INSERT -35 2220 ome.model.core.PlaneInfo \N 183 3582 INSERT -35 2221 ome.model.core.PlaneInfo \N 183 3583 INSERT -35 2222 ome.model.core.PlaneInfo \N 183 3584 INSERT -35 2223 ome.model.core.PlaneInfo \N 183 3585 INSERT -35 2224 ome.model.core.PlaneInfo \N 183 3586 INSERT -35 2225 ome.model.core.PlaneInfo \N 183 3587 INSERT -35 2226 ome.model.core.PlaneInfo \N 183 3588 INSERT -35 2227 ome.model.core.PlaneInfo \N 183 3589 INSERT -35 2228 ome.model.core.PlaneInfo \N 183 3590 INSERT -35 2229 ome.model.core.PlaneInfo \N 183 3591 INSERT -35 2230 ome.model.core.PlaneInfo \N 183 3592 INSERT -35 2231 ome.model.core.PlaneInfo \N 183 3593 INSERT -35 2232 ome.model.core.PlaneInfo \N 183 3594 INSERT -35 2233 ome.model.core.PlaneInfo \N 183 3595 INSERT -35 2234 ome.model.core.PlaneInfo \N 183 3596 INSERT -35 2235 ome.model.core.PlaneInfo \N 183 3597 INSERT -35 2236 ome.model.core.PlaneInfo \N 183 3598 INSERT -35 2237 ome.model.core.PlaneInfo \N 183 3599 INSERT -35 2238 ome.model.core.PlaneInfo \N 183 3600 INSERT -35 2239 ome.model.core.PlaneInfo \N 183 3601 INSERT -35 2240 ome.model.core.PlaneInfo \N 183 3602 INSERT -35 2241 ome.model.core.PlaneInfo \N 183 3603 INSERT -35 2242 ome.model.core.PlaneInfo \N 183 3604 INSERT -35 2243 ome.model.core.PlaneInfo \N 183 3605 INSERT -35 2244 ome.model.core.PlaneInfo \N 183 3606 INSERT -35 2245 ome.model.core.PlaneInfo \N 183 3607 INSERT -35 2246 ome.model.core.PlaneInfo \N 183 3608 INSERT -35 2247 ome.model.core.PlaneInfo \N 183 3609 INSERT -35 2248 ome.model.core.PlaneInfo \N 183 3610 INSERT -35 2249 ome.model.core.PlaneInfo \N 183 3611 INSERT -35 2250 ome.model.core.PlaneInfo \N 183 3612 INSERT -35 2251 ome.model.core.PlaneInfo \N 183 3613 INSERT -35 2252 ome.model.core.PlaneInfo \N 183 3614 INSERT -35 2253 ome.model.core.PlaneInfo \N 183 3615 INSERT -35 2254 ome.model.core.PlaneInfo \N 183 3616 INSERT -35 2255 ome.model.core.PlaneInfo \N 183 3617 INSERT -35 2256 ome.model.core.PlaneInfo \N 183 3618 INSERT -35 2257 ome.model.core.PlaneInfo \N 183 3619 INSERT -35 2258 ome.model.core.PlaneInfo \N 183 3620 INSERT -35 2259 ome.model.core.PlaneInfo \N 183 3621 INSERT -35 2260 ome.model.core.PlaneInfo \N 183 3622 INSERT -35 2261 ome.model.core.PlaneInfo \N 183 3623 INSERT -35 2262 ome.model.core.PlaneInfo \N 183 3624 INSERT -35 2263 ome.model.core.PlaneInfo \N 183 3625 INSERT -35 2264 ome.model.core.PlaneInfo \N 183 3626 INSERT -35 2265 ome.model.core.PlaneInfo \N 183 3627 INSERT -35 2266 ome.model.core.PlaneInfo \N 183 3628 INSERT -35 2267 ome.model.core.PlaneInfo \N 183 3629 INSERT -35 2268 ome.model.core.PlaneInfo \N 183 3630 INSERT -35 2269 ome.model.core.PlaneInfo \N 183 3631 INSERT -35 2270 ome.model.core.PlaneInfo \N 183 3632 INSERT -35 2271 ome.model.core.PlaneInfo \N 183 3633 INSERT -35 2272 ome.model.core.PlaneInfo \N 183 3634 INSERT -35 2273 ome.model.core.PlaneInfo \N 183 3635 INSERT -35 2274 ome.model.core.PlaneInfo \N 183 3636 INSERT -35 2275 ome.model.core.PlaneInfo \N 183 3637 INSERT -35 2276 ome.model.core.PlaneInfo \N 183 3638 INSERT -35 2277 ome.model.core.PlaneInfo \N 183 3639 INSERT -35 2278 ome.model.core.PlaneInfo \N 183 3640 INSERT -35 2279 ome.model.core.PlaneInfo \N 183 3641 INSERT -35 2280 ome.model.core.PlaneInfo \N 183 3642 INSERT -35 2281 ome.model.core.PlaneInfo \N 183 3643 INSERT -35 2282 ome.model.core.PlaneInfo \N 183 3644 INSERT -35 2283 ome.model.core.PlaneInfo \N 183 3645 INSERT -35 2284 ome.model.core.PlaneInfo \N 183 3646 INSERT -35 2285 ome.model.core.PlaneInfo \N 183 3647 INSERT -35 2286 ome.model.core.PlaneInfo \N 183 3648 INSERT -35 2287 ome.model.core.PlaneInfo \N 183 3649 INSERT -35 2288 ome.model.core.PlaneInfo \N 183 3650 INSERT -35 2289 ome.model.core.PlaneInfo \N 183 3651 INSERT -35 2290 ome.model.core.PlaneInfo \N 183 3652 INSERT -35 2291 ome.model.core.PlaneInfo \N 183 3653 INSERT -35 2292 ome.model.core.PlaneInfo \N 183 3654 INSERT -35 2293 ome.model.core.PlaneInfo \N 183 3655 INSERT -35 2294 ome.model.core.PlaneInfo \N 183 3656 INSERT -35 2295 ome.model.core.PlaneInfo \N 183 3657 INSERT -35 2296 ome.model.core.PlaneInfo \N 183 3658 INSERT -35 2297 ome.model.core.PlaneInfo \N 183 3659 INSERT -35 2298 ome.model.core.PlaneInfo \N 183 3660 INSERT -35 2299 ome.model.core.PlaneInfo \N 183 3661 INSERT -35 2300 ome.model.core.PlaneInfo \N 183 3662 INSERT -35 2301 ome.model.core.PlaneInfo \N 183 3663 INSERT -35 2302 ome.model.core.PlaneInfo \N 183 3664 INSERT -35 2303 ome.model.core.PlaneInfo \N 183 3665 INSERT -35 2304 ome.model.core.PlaneInfo \N 183 3666 INSERT -35 2305 ome.model.core.PlaneInfo \N 183 3667 INSERT -35 2306 ome.model.core.PlaneInfo \N 183 3668 INSERT -35 2307 ome.model.core.PlaneInfo \N 183 3669 INSERT -35 2308 ome.model.core.PlaneInfo \N 183 3670 INSERT -35 2309 ome.model.core.PlaneInfo \N 183 3671 INSERT -35 2310 ome.model.core.PlaneInfo \N 183 3672 INSERT -35 2311 ome.model.core.PlaneInfo \N 183 3673 INSERT -35 2312 ome.model.core.PlaneInfo \N 183 3674 INSERT -35 2313 ome.model.core.PlaneInfo \N 183 3675 INSERT -35 2314 ome.model.core.PlaneInfo \N 183 3676 INSERT -35 2315 ome.model.core.PlaneInfo \N 183 3677 INSERT -35 2316 ome.model.core.PlaneInfo \N 183 3678 INSERT -35 2317 ome.model.core.PlaneInfo \N 183 3679 INSERT -35 2318 ome.model.core.PlaneInfo \N 183 3680 INSERT -35 2319 ome.model.core.PlaneInfo \N 183 3681 INSERT -35 2320 ome.model.core.PlaneInfo \N 183 3682 INSERT -35 2321 ome.model.core.PlaneInfo \N 183 3683 INSERT -35 2322 ome.model.core.PlaneInfo \N 183 3684 INSERT -35 2323 ome.model.core.PlaneInfo \N 183 3685 INSERT -35 2324 ome.model.core.PlaneInfo \N 183 3686 INSERT -35 2325 ome.model.core.PlaneInfo \N 183 3687 INSERT -35 2326 ome.model.core.PlaneInfo \N 183 3688 INSERT -35 2327 ome.model.core.PlaneInfo \N 183 3689 INSERT -35 2328 ome.model.core.PlaneInfo \N 183 3690 INSERT -35 2329 ome.model.core.PlaneInfo \N 183 3691 INSERT -35 2330 ome.model.core.PlaneInfo \N 183 3692 INSERT -35 2331 ome.model.core.PlaneInfo \N 183 3693 INSERT -35 2332 ome.model.core.PlaneInfo \N 183 3694 INSERT -35 2333 ome.model.core.PlaneInfo \N 183 3695 INSERT -35 2334 ome.model.core.PlaneInfo \N 183 3696 INSERT -35 2335 ome.model.core.PlaneInfo \N 183 3697 INSERT -35 2336 ome.model.core.PlaneInfo \N 183 3698 INSERT -35 2337 ome.model.core.PlaneInfo \N 183 3699 INSERT -35 2338 ome.model.core.PlaneInfo \N 183 3700 INSERT -35 2339 ome.model.core.PlaneInfo \N 183 3701 INSERT -35 162 ome.model.meta.Session \N 184 3702 INSERT -35 163 ome.model.meta.Session \N 186 3703 INSERT -35 19 ome.model.display.QuantumDef \N 212 3704 INSERT -35 19 ome.model.display.RenderingDef \N 212 3705 INSERT -35 46 ome.model.display.ChannelBinding \N 212 3706 INSERT -35 47 ome.model.display.ChannelBinding \N 212 3707 INSERT -35 48 ome.model.display.ChannelBinding \N 212 3708 INSERT -35 20 ome.model.display.QuantumDef \N 211 3709 INSERT -35 20 ome.model.display.RenderingDef \N 211 3710 INSERT -35 49 ome.model.display.ChannelBinding \N 211 3711 INSERT -35 50 ome.model.display.ChannelBinding \N 211 3717 INSERT -35 22 ome.model.display.QuantumDef \N 220 3718 INSERT -35 22 ome.model.display.RenderingDef \N 220 3719 INSERT -35 54 ome.model.display.ChannelBinding \N 220 3720 INSERT -35 55 ome.model.display.ChannelBinding \N 220 3721 INSERT -35 56 ome.model.display.ChannelBinding \N 220 3722 INSERT -35 23 ome.model.display.QuantumDef \N 221 3723 INSERT -35 23 ome.model.display.RenderingDef \N 221 3724 INSERT -35 57 ome.model.display.ChannelBinding \N 221 3725 INSERT -35 58 ome.model.display.ChannelBinding \N 221 3726 INSERT -35 24 ome.model.display.QuantumDef \N 227 3727 INSERT -35 24 ome.model.display.RenderingDef \N 227 3728 INSERT -35 59 ome.model.display.ChannelBinding \N 227 3729 INSERT -35 60 ome.model.display.ChannelBinding \N 227 3730 INSERT -35 61 ome.model.display.ChannelBinding \N 227 3731 INSERT -35 25 ome.model.display.QuantumDef \N 226 3732 INSERT -35 25 ome.model.display.RenderingDef \N 226 3733 INSERT -35 62 ome.model.display.ChannelBinding \N 226 3734 INSERT -35 63 ome.model.display.ChannelBinding \N 226 3735 INSERT -35 64 ome.model.display.ChannelBinding \N 226 3712 INSERT -35 21 ome.model.display.QuantumDef \N 216 3713 INSERT -35 21 ome.model.display.RenderingDef \N 216 3714 INSERT -35 51 ome.model.display.ChannelBinding \N 216 3715 INSERT -35 52 ome.model.display.ChannelBinding \N 216 3716 INSERT -35 53 ome.model.display.ChannelBinding \N 216 3736 INSERT -35 26 ome.model.display.QuantumDef \N 231 3737 INSERT -35 26 ome.model.display.RenderingDef \N 231 3738 INSERT -35 65 ome.model.display.ChannelBinding \N 231 3739 INSERT -35 66 ome.model.display.ChannelBinding \N 231 3740 UPDATE -35 28 ome.model.core.Pixels \N 262 3741 UPDATE -35 19 ome.model.core.Pixels \N 270 3742 UPDATE -35 20 ome.model.core.Pixels \N 270 3743 UPDATE -35 21 ome.model.core.Pixels \N 270 3744 UPDATE -35 22 ome.model.core.Pixels \N 270 3745 UPDATE -35 23 ome.model.core.Pixels \N 270 3746 UPDATE -35 24 ome.model.core.Pixels \N 270 3747 UPDATE -35 25 ome.model.core.Pixels \N 270 3748 UPDATE -35 26 ome.model.core.Pixels \N 270 3749 UPDATE -35 27 ome.model.core.Pixels \N 270 3750 UPDATE -35 28 ome.model.core.Pixels \N 270 3751 INSERT -35 46 ome.model.stats.StatsInfo \N 272 3752 INSERT -35 47 ome.model.stats.StatsInfo \N 272 3753 INSERT -35 48 ome.model.stats.StatsInfo \N 272 3754 INSERT -35 49 ome.model.stats.StatsInfo \N 272 3755 INSERT -35 50 ome.model.stats.StatsInfo \N 272 3756 INSERT -35 51 ome.model.stats.StatsInfo \N 272 3757 INSERT -35 52 ome.model.stats.StatsInfo \N 272 3758 INSERT -35 53 ome.model.stats.StatsInfo \N 272 3759 INSERT -35 54 ome.model.stats.StatsInfo \N 272 3760 INSERT -35 55 ome.model.stats.StatsInfo \N 272 3761 INSERT -35 56 ome.model.stats.StatsInfo \N 272 3762 INSERT -35 57 ome.model.stats.StatsInfo \N 272 3763 INSERT -35 58 ome.model.stats.StatsInfo \N 272 3764 INSERT -35 59 ome.model.stats.StatsInfo \N 272 3765 INSERT -35 60 ome.model.stats.StatsInfo \N 272 3766 INSERT -35 61 ome.model.stats.StatsInfo \N 272 3767 INSERT -35 62 ome.model.stats.StatsInfo \N 272 3768 INSERT -35 63 ome.model.stats.StatsInfo \N 272 3769 INSERT -35 64 ome.model.stats.StatsInfo \N 272 3770 INSERT -35 65 ome.model.stats.StatsInfo \N 272 3771 INSERT -35 66 ome.model.stats.StatsInfo \N 272 3772 INSERT -35 67 ome.model.stats.StatsInfo \N 272 3773 INSERT -35 68 ome.model.stats.StatsInfo \N 272 3774 INSERT -35 69 ome.model.stats.StatsInfo \N 272 3775 INSERT -35 70 ome.model.stats.StatsInfo \N 272 3776 UPDATE -35 46 ome.model.core.Channel \N 272 3777 UPDATE -35 47 ome.model.core.Channel \N 272 3778 UPDATE -35 48 ome.model.core.Channel \N 272 3779 UPDATE -35 49 ome.model.core.Channel \N 272 3780 UPDATE -35 50 ome.model.core.Channel \N 272 3781 UPDATE -35 51 ome.model.core.Channel \N 272 3782 UPDATE -35 52 ome.model.core.Channel \N 272 3783 UPDATE -35 53 ome.model.core.Channel \N 272 3784 UPDATE -35 54 ome.model.core.Channel \N 272 3785 UPDATE -35 55 ome.model.core.Channel \N 272 3786 UPDATE -35 56 ome.model.core.Channel \N 272 3787 UPDATE -35 57 ome.model.core.Channel \N 272 3788 UPDATE -35 58 ome.model.core.Channel \N 272 3789 UPDATE -35 59 ome.model.core.Channel \N 272 3790 UPDATE -35 60 ome.model.core.Channel \N 272 3791 UPDATE -35 61 ome.model.core.Channel \N 272 3792 UPDATE -35 62 ome.model.core.Channel \N 272 3793 UPDATE -35 63 ome.model.core.Channel \N 272 3794 UPDATE -35 64 ome.model.core.Channel \N 272 3795 UPDATE -35 65 ome.model.core.Channel \N 272 3796 UPDATE -35 66 ome.model.core.Channel \N 272 3797 UPDATE -35 67 ome.model.core.Channel \N 272 3798 UPDATE -35 68 ome.model.core.Channel \N 272 3799 UPDATE -35 69 ome.model.core.Channel \N 272 3800 UPDATE -35 70 ome.model.core.Channel \N 272 3801 INSERT -35 27 ome.model.display.QuantumDef \N 273 3802 INSERT -35 27 ome.model.display.RenderingDef \N 273 3803 INSERT -35 67 ome.model.display.ChannelBinding \N 273 3804 INSERT -35 68 ome.model.display.ChannelBinding \N 273 3805 INSERT -35 28 ome.model.display.QuantumDef \N 273 3806 INSERT -35 28 ome.model.display.RenderingDef \N 273 3807 INSERT -35 69 ome.model.display.ChannelBinding \N 273 3808 INSERT -35 70 ome.model.display.ChannelBinding \N 273 3809 UPDATE -35 26 ome.model.display.RenderingDef \N 273 3810 UPDATE -35 65 ome.model.display.ChannelBinding \N 273 3811 UPDATE -35 66 ome.model.display.ChannelBinding \N 273 3812 UPDATE -35 24 ome.model.display.RenderingDef \N 273 3813 UPDATE -35 59 ome.model.display.ChannelBinding \N 273 3814 UPDATE -35 60 ome.model.display.ChannelBinding \N 273 3815 UPDATE -35 61 ome.model.display.ChannelBinding \N 273 3816 UPDATE -35 25 ome.model.display.RenderingDef \N 273 3817 UPDATE -35 62 ome.model.display.ChannelBinding \N 273 3818 UPDATE -35 63 ome.model.display.ChannelBinding \N 273 3819 UPDATE -35 64 ome.model.display.ChannelBinding \N 273 3820 UPDATE -35 23 ome.model.display.RenderingDef \N 273 3821 UPDATE -35 57 ome.model.display.ChannelBinding \N 273 3822 UPDATE -35 58 ome.model.display.ChannelBinding \N 273 3823 UPDATE -35 22 ome.model.display.RenderingDef \N 273 3824 UPDATE -35 54 ome.model.display.ChannelBinding \N 273 3825 UPDATE -35 55 ome.model.display.ChannelBinding \N 273 3826 UPDATE -35 56 ome.model.display.ChannelBinding \N 273 3827 UPDATE -35 21 ome.model.display.RenderingDef \N 273 3828 UPDATE -35 51 ome.model.display.ChannelBinding \N 273 3829 UPDATE -35 52 ome.model.display.ChannelBinding \N 273 3830 UPDATE -35 53 ome.model.display.ChannelBinding \N 273 3831 UPDATE -35 20 ome.model.display.RenderingDef \N 273 3832 UPDATE -35 49 ome.model.display.ChannelBinding \N 273 3833 UPDATE -35 50 ome.model.display.ChannelBinding \N 273 3834 UPDATE -35 19 ome.model.display.RenderingDef \N 273 3835 UPDATE -35 46 ome.model.display.ChannelBinding \N 273 3836 UPDATE -35 47 ome.model.display.ChannelBinding \N 273 3837 UPDATE -35 48 ome.model.display.ChannelBinding \N 273 3838 INSERT -35 19 ome.model.display.Thumbnail \N 274 3839 INSERT -35 20 ome.model.display.Thumbnail \N 274 3840 INSERT -35 21 ome.model.display.Thumbnail \N 274 3841 INSERT -35 22 ome.model.display.Thumbnail \N 274 3842 INSERT -35 23 ome.model.display.Thumbnail \N 274 3843 INSERT -35 24 ome.model.display.Thumbnail \N 274 3844 INSERT -35 25 ome.model.display.Thumbnail \N 274 3845 INSERT -35 26 ome.model.display.Thumbnail \N 274 3846 INSERT -35 27 ome.model.display.Thumbnail \N 274 3847 INSERT -35 28 ome.model.display.Thumbnail \N 274 3848 UPDATE -35 43 ome.model.core.OriginalFile \N 275 3849 INSERT -35 29 ome.model.acquisition.Microscope \N 292 3850 INSERT -35 29 ome.model.acquisition.Instrument \N 292 3851 INSERT -35 71 ome.model.acquisition.Detector \N 292 3852 INSERT -35 72 ome.model.acquisition.Detector \N 292 3853 INSERT -35 73 ome.model.acquisition.Detector \N 292 3854 INSERT -35 85 ome.model.acquisition.TransmittanceRange \N 292 3855 INSERT -35 85 ome.model.acquisition.Filter \N 292 3856 INSERT -35 86 ome.model.acquisition.TransmittanceRange \N 292 3857 INSERT -35 86 ome.model.acquisition.Filter \N 292 3858 INSERT -35 87 ome.model.acquisition.TransmittanceRange \N 292 3859 INSERT -35 87 ome.model.acquisition.Filter \N 292 3860 INSERT -35 169 ome.model.acquisition.Laser \N 292 3861 INSERT -35 170 ome.model.acquisition.Laser \N 292 3862 INSERT -35 171 ome.model.acquisition.Laser \N 292 3863 INSERT -35 172 ome.model.acquisition.Laser \N 292 3864 INSERT -35 173 ome.model.acquisition.Laser \N 292 3865 INSERT -35 174 ome.model.acquisition.Laser \N 292 3866 INSERT -35 29 ome.model.acquisition.Objective \N 292 3867 INSERT -35 29 ome.model.acquisition.ObjectiveSettings \N 292 3868 INSERT -35 29 ome.model.core.Image \N 292 3869 INSERT -35 44 ome.model.core.OriginalFile \N 292 3870 INSERT -35 29 ome.model.annotations.FileAnnotation \N 292 3871 INSERT -35 29 ome.model.annotations.ImageAnnotationLink \N 292 3872 INSERT -35 29 ome.model.containers.DatasetImageLink \N 292 3873 INSERT -35 29 ome.model.core.Pixels \N 292 3874 INSERT -35 71 ome.model.acquisition.DetectorSettings \N 292 3875 INSERT -35 57 ome.model.acquisition.LightPath \N 292 3876 INSERT -35 57 ome.model.acquisition.LightPathEmissionFilterLink \N 292 3877 INSERT -35 51 ome.model.acquisition.LightSettings \N 292 3878 INSERT -35 71 ome.model.core.LogicalChannel \N 292 3879 INSERT -35 71 ome.model.core.Channel \N 292 3880 INSERT -35 72 ome.model.acquisition.DetectorSettings \N 292 3881 INSERT -35 58 ome.model.acquisition.LightPath \N 292 3882 INSERT -35 58 ome.model.acquisition.LightPathEmissionFilterLink \N 292 3883 INSERT -35 52 ome.model.acquisition.LightSettings \N 292 3884 INSERT -35 72 ome.model.core.LogicalChannel \N 292 3885 INSERT -35 72 ome.model.core.Channel \N 292 3886 INSERT -35 73 ome.model.acquisition.DetectorSettings \N 292 3887 INSERT -35 53 ome.model.acquisition.LightSettings \N 292 3888 INSERT -35 73 ome.model.core.LogicalChannel \N 292 3889 INSERT -35 73 ome.model.core.Channel \N 292 3890 INSERT -35 2340 ome.model.core.PlaneInfo \N 292 3891 INSERT -35 2341 ome.model.core.PlaneInfo \N 292 3892 INSERT -35 2342 ome.model.core.PlaneInfo \N 292 3893 INSERT -35 2343 ome.model.core.PlaneInfo \N 292 3894 INSERT -35 2344 ome.model.core.PlaneInfo \N 292 3895 INSERT -35 2345 ome.model.core.PlaneInfo \N 292 3896 INSERT -35 2346 ome.model.core.PlaneInfo \N 292 3897 INSERT -35 2347 ome.model.core.PlaneInfo \N 292 3898 INSERT -35 2348 ome.model.core.PlaneInfo \N 292 3899 INSERT -35 2349 ome.model.core.PlaneInfo \N 292 3900 INSERT -35 2350 ome.model.core.PlaneInfo \N 292 3901 INSERT -35 2351 ome.model.core.PlaneInfo \N 292 3902 INSERT -35 2352 ome.model.core.PlaneInfo \N 292 3903 INSERT -35 2353 ome.model.core.PlaneInfo \N 292 3904 INSERT -35 2354 ome.model.core.PlaneInfo \N 292 3905 INSERT -35 2355 ome.model.core.PlaneInfo \N 292 3906 INSERT -35 2356 ome.model.core.PlaneInfo \N 292 3907 INSERT -35 2357 ome.model.core.PlaneInfo \N 292 3908 INSERT -35 2358 ome.model.core.PlaneInfo \N 292 3909 INSERT -35 2359 ome.model.core.PlaneInfo \N 292 3910 INSERT -35 2360 ome.model.core.PlaneInfo \N 292 3911 INSERT -35 2361 ome.model.core.PlaneInfo \N 292 3912 INSERT -35 2362 ome.model.core.PlaneInfo \N 292 3913 INSERT -35 2363 ome.model.core.PlaneInfo \N 292 3914 INSERT -35 2364 ome.model.core.PlaneInfo \N 292 3915 INSERT -35 2365 ome.model.core.PlaneInfo \N 292 3916 INSERT -35 2366 ome.model.core.PlaneInfo \N 292 3917 INSERT -35 2367 ome.model.core.PlaneInfo \N 292 3918 INSERT -35 2368 ome.model.core.PlaneInfo \N 292 3919 INSERT -35 2369 ome.model.core.PlaneInfo \N 292 3920 INSERT -35 2370 ome.model.core.PlaneInfo \N 292 3921 INSERT -35 2371 ome.model.core.PlaneInfo \N 292 3922 INSERT -35 2372 ome.model.core.PlaneInfo \N 292 3923 INSERT -35 2373 ome.model.core.PlaneInfo \N 292 3924 INSERT -35 2374 ome.model.core.PlaneInfo \N 292 3925 INSERT -35 2375 ome.model.core.PlaneInfo \N 292 3926 INSERT -35 2376 ome.model.core.PlaneInfo \N 292 3927 INSERT -35 2377 ome.model.core.PlaneInfo \N 292 3928 INSERT -35 2378 ome.model.core.PlaneInfo \N 292 3929 INSERT -35 2379 ome.model.core.PlaneInfo \N 292 3930 INSERT -35 2380 ome.model.core.PlaneInfo \N 292 3931 INSERT -35 2381 ome.model.core.PlaneInfo \N 292 3932 INSERT -35 2382 ome.model.core.PlaneInfo \N 292 3933 INSERT -35 2383 ome.model.core.PlaneInfo \N 292 3934 INSERT -35 2384 ome.model.core.PlaneInfo \N 292 3935 INSERT -35 2385 ome.model.core.PlaneInfo \N 292 3936 INSERT -35 2386 ome.model.core.PlaneInfo \N 292 3937 INSERT -35 2387 ome.model.core.PlaneInfo \N 292 3938 INSERT -35 2388 ome.model.core.PlaneInfo \N 292 3939 INSERT -35 2389 ome.model.core.PlaneInfo \N 292 3940 INSERT -35 2390 ome.model.core.PlaneInfo \N 292 3941 INSERT -35 2391 ome.model.core.PlaneInfo \N 292 3942 INSERT -35 2392 ome.model.core.PlaneInfo \N 292 3943 INSERT -35 2393 ome.model.core.PlaneInfo \N 292 3944 INSERT -35 2394 ome.model.core.PlaneInfo \N 292 3945 INSERT -35 2395 ome.model.core.PlaneInfo \N 292 3946 INSERT -35 2396 ome.model.core.PlaneInfo \N 292 3947 INSERT -35 2397 ome.model.core.PlaneInfo \N 292 3948 INSERT -35 2398 ome.model.core.PlaneInfo \N 292 3949 INSERT -35 2399 ome.model.core.PlaneInfo \N 292 3950 INSERT -35 2400 ome.model.core.PlaneInfo \N 292 3951 INSERT -35 2401 ome.model.core.PlaneInfo \N 292 3952 INSERT -35 2402 ome.model.core.PlaneInfo \N 292 3953 INSERT -35 2403 ome.model.core.PlaneInfo \N 292 3954 INSERT -35 2404 ome.model.core.PlaneInfo \N 292 3955 INSERT -35 2405 ome.model.core.PlaneInfo \N 292 3956 INSERT -35 2406 ome.model.core.PlaneInfo \N 292 3957 INSERT -35 2407 ome.model.core.PlaneInfo \N 292 3958 INSERT -35 2408 ome.model.core.PlaneInfo \N 292 3959 INSERT -35 2409 ome.model.core.PlaneInfo \N 292 3960 INSERT -35 2410 ome.model.core.PlaneInfo \N 292 3961 INSERT -35 2411 ome.model.core.PlaneInfo \N 292 3962 INSERT -35 2412 ome.model.core.PlaneInfo \N 292 3963 INSERT -35 2413 ome.model.core.PlaneInfo \N 292 3964 INSERT -35 2414 ome.model.core.PlaneInfo \N 292 3965 INSERT -35 2415 ome.model.core.PlaneInfo \N 292 3966 INSERT -35 2416 ome.model.core.PlaneInfo \N 292 3967 INSERT -35 2417 ome.model.core.PlaneInfo \N 292 3968 INSERT -35 2418 ome.model.core.PlaneInfo \N 292 3969 INSERT -35 2419 ome.model.core.PlaneInfo \N 292 3970 INSERT -35 2420 ome.model.core.PlaneInfo \N 292 3971 INSERT -35 2421 ome.model.core.PlaneInfo \N 292 3972 INSERT -35 2422 ome.model.core.PlaneInfo \N 292 3973 INSERT -35 2423 ome.model.core.PlaneInfo \N 292 3974 INSERT -35 2424 ome.model.core.PlaneInfo \N 292 3975 INSERT -35 2425 ome.model.core.PlaneInfo \N 292 3976 INSERT -35 2426 ome.model.core.PlaneInfo \N 292 3977 INSERT -35 2427 ome.model.core.PlaneInfo \N 292 3978 INSERT -35 2428 ome.model.core.PlaneInfo \N 292 3979 INSERT -35 2429 ome.model.core.PlaneInfo \N 292 3980 INSERT -35 2430 ome.model.core.PlaneInfo \N 292 3981 INSERT -35 2431 ome.model.core.PlaneInfo \N 292 3982 INSERT -35 2432 ome.model.core.PlaneInfo \N 292 3983 INSERT -35 2433 ome.model.core.PlaneInfo \N 292 3984 INSERT -35 2434 ome.model.core.PlaneInfo \N 292 3985 INSERT -35 2435 ome.model.core.PlaneInfo \N 292 3986 INSERT -35 2436 ome.model.core.PlaneInfo \N 292 3987 INSERT -35 2437 ome.model.core.PlaneInfo \N 292 3988 INSERT -35 2438 ome.model.core.PlaneInfo \N 292 3989 INSERT -35 2439 ome.model.core.PlaneInfo \N 292 3990 INSERT -35 2440 ome.model.core.PlaneInfo \N 292 3991 INSERT -35 2441 ome.model.core.PlaneInfo \N 292 3992 INSERT -35 2442 ome.model.core.PlaneInfo \N 292 3993 INSERT -35 2443 ome.model.core.PlaneInfo \N 292 3994 INSERT -35 2444 ome.model.core.PlaneInfo \N 292 3995 INSERT -35 30 ome.model.acquisition.Microscope \N 292 3996 INSERT -35 30 ome.model.acquisition.Instrument \N 292 3997 INSERT -35 74 ome.model.acquisition.Detector \N 292 3998 INSERT -35 75 ome.model.acquisition.Detector \N 292 3999 INSERT -35 76 ome.model.acquisition.Detector \N 292 4000 INSERT -35 88 ome.model.acquisition.TransmittanceRange \N 292 4001 INSERT -35 88 ome.model.acquisition.Filter \N 292 4002 INSERT -35 89 ome.model.acquisition.TransmittanceRange \N 292 4003 INSERT -35 89 ome.model.acquisition.Filter \N 292 4004 INSERT -35 90 ome.model.acquisition.TransmittanceRange \N 292 4005 INSERT -35 90 ome.model.acquisition.Filter \N 292 4006 INSERT -35 175 ome.model.acquisition.Laser \N 292 4007 INSERT -35 176 ome.model.acquisition.Laser \N 292 4008 INSERT -35 177 ome.model.acquisition.Laser \N 292 4009 INSERT -35 178 ome.model.acquisition.Laser \N 292 4010 INSERT -35 179 ome.model.acquisition.Laser \N 292 4011 INSERT -35 180 ome.model.acquisition.Laser \N 292 4012 INSERT -35 30 ome.model.acquisition.Objective \N 292 4013 INSERT -35 30 ome.model.acquisition.ObjectiveSettings \N 292 4014 INSERT -35 30 ome.model.core.Image \N 292 4015 INSERT -35 45 ome.model.core.OriginalFile \N 292 4016 INSERT -35 30 ome.model.annotations.FileAnnotation \N 292 4017 INSERT -35 30 ome.model.annotations.ImageAnnotationLink \N 292 4018 INSERT -35 30 ome.model.containers.DatasetImageLink \N 292 4019 INSERT -35 30 ome.model.core.Pixels \N 292 4020 INSERT -35 74 ome.model.acquisition.DetectorSettings \N 292 4021 INSERT -35 59 ome.model.acquisition.LightPath \N 292 4022 INSERT -35 59 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4023 INSERT -35 54 ome.model.acquisition.LightSettings \N 292 4024 INSERT -35 74 ome.model.core.LogicalChannel \N 292 4025 INSERT -35 74 ome.model.core.Channel \N 292 4026 INSERT -35 75 ome.model.acquisition.DetectorSettings \N 292 4027 INSERT -35 60 ome.model.acquisition.LightPath \N 292 4028 INSERT -35 60 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4029 INSERT -35 55 ome.model.acquisition.LightSettings \N 292 4030 INSERT -35 75 ome.model.core.LogicalChannel \N 292 4031 INSERT -35 75 ome.model.core.Channel \N 292 4032 INSERT -35 76 ome.model.acquisition.DetectorSettings \N 292 4033 INSERT -35 56 ome.model.acquisition.LightSettings \N 292 4034 INSERT -35 76 ome.model.core.LogicalChannel \N 292 4035 INSERT -35 76 ome.model.core.Channel \N 292 4036 INSERT -35 2445 ome.model.core.PlaneInfo \N 292 4037 INSERT -35 2446 ome.model.core.PlaneInfo \N 292 4038 INSERT -35 2447 ome.model.core.PlaneInfo \N 292 4039 INSERT -35 2448 ome.model.core.PlaneInfo \N 292 4040 INSERT -35 2449 ome.model.core.PlaneInfo \N 292 4041 INSERT -35 2450 ome.model.core.PlaneInfo \N 292 4042 INSERT -35 2451 ome.model.core.PlaneInfo \N 292 4043 INSERT -35 2452 ome.model.core.PlaneInfo \N 292 4044 INSERT -35 2453 ome.model.core.PlaneInfo \N 292 4045 INSERT -35 2454 ome.model.core.PlaneInfo \N 292 4046 INSERT -35 2455 ome.model.core.PlaneInfo \N 292 4047 INSERT -35 2456 ome.model.core.PlaneInfo \N 292 4048 INSERT -35 2457 ome.model.core.PlaneInfo \N 292 4049 INSERT -35 2458 ome.model.core.PlaneInfo \N 292 4050 INSERT -35 2459 ome.model.core.PlaneInfo \N 292 4051 INSERT -35 2460 ome.model.core.PlaneInfo \N 292 4052 INSERT -35 2461 ome.model.core.PlaneInfo \N 292 4053 INSERT -35 2462 ome.model.core.PlaneInfo \N 292 4054 INSERT -35 2463 ome.model.core.PlaneInfo \N 292 4055 INSERT -35 2464 ome.model.core.PlaneInfo \N 292 4056 INSERT -35 2465 ome.model.core.PlaneInfo \N 292 4057 INSERT -35 2466 ome.model.core.PlaneInfo \N 292 4058 INSERT -35 2467 ome.model.core.PlaneInfo \N 292 4059 INSERT -35 2468 ome.model.core.PlaneInfo \N 292 4060 INSERT -35 2469 ome.model.core.PlaneInfo \N 292 4061 INSERT -35 2470 ome.model.core.PlaneInfo \N 292 4062 INSERT -35 2471 ome.model.core.PlaneInfo \N 292 4063 INSERT -35 2472 ome.model.core.PlaneInfo \N 292 4064 INSERT -35 2473 ome.model.core.PlaneInfo \N 292 4065 INSERT -35 2474 ome.model.core.PlaneInfo \N 292 4066 INSERT -35 2475 ome.model.core.PlaneInfo \N 292 4067 INSERT -35 2476 ome.model.core.PlaneInfo \N 292 4068 INSERT -35 2477 ome.model.core.PlaneInfo \N 292 4069 INSERT -35 2478 ome.model.core.PlaneInfo \N 292 4070 INSERT -35 2479 ome.model.core.PlaneInfo \N 292 4071 INSERT -35 2480 ome.model.core.PlaneInfo \N 292 4072 INSERT -35 2481 ome.model.core.PlaneInfo \N 292 4073 INSERT -35 2482 ome.model.core.PlaneInfo \N 292 4074 INSERT -35 2483 ome.model.core.PlaneInfo \N 292 4075 INSERT -35 2484 ome.model.core.PlaneInfo \N 292 4076 INSERT -35 2485 ome.model.core.PlaneInfo \N 292 4077 INSERT -35 2486 ome.model.core.PlaneInfo \N 292 4078 INSERT -35 2487 ome.model.core.PlaneInfo \N 292 4079 INSERT -35 2488 ome.model.core.PlaneInfo \N 292 4080 INSERT -35 2489 ome.model.core.PlaneInfo \N 292 4081 INSERT -35 2490 ome.model.core.PlaneInfo \N 292 4082 INSERT -35 2491 ome.model.core.PlaneInfo \N 292 4083 INSERT -35 2492 ome.model.core.PlaneInfo \N 292 4084 INSERT -35 2493 ome.model.core.PlaneInfo \N 292 4085 INSERT -35 2494 ome.model.core.PlaneInfo \N 292 4086 INSERT -35 2495 ome.model.core.PlaneInfo \N 292 4087 INSERT -35 2496 ome.model.core.PlaneInfo \N 292 4088 INSERT -35 2497 ome.model.core.PlaneInfo \N 292 4089 INSERT -35 2498 ome.model.core.PlaneInfo \N 292 4090 INSERT -35 2499 ome.model.core.PlaneInfo \N 292 4091 INSERT -35 2500 ome.model.core.PlaneInfo \N 292 4092 INSERT -35 2501 ome.model.core.PlaneInfo \N 292 4093 INSERT -35 2502 ome.model.core.PlaneInfo \N 292 4094 INSERT -35 2503 ome.model.core.PlaneInfo \N 292 4095 INSERT -35 2504 ome.model.core.PlaneInfo \N 292 4096 INSERT -35 2505 ome.model.core.PlaneInfo \N 292 4097 INSERT -35 2506 ome.model.core.PlaneInfo \N 292 4098 INSERT -35 2507 ome.model.core.PlaneInfo \N 292 4099 INSERT -35 2508 ome.model.core.PlaneInfo \N 292 4100 INSERT -35 2509 ome.model.core.PlaneInfo \N 292 4101 INSERT -35 2510 ome.model.core.PlaneInfo \N 292 4102 INSERT -35 2511 ome.model.core.PlaneInfo \N 292 4103 INSERT -35 2512 ome.model.core.PlaneInfo \N 292 4104 INSERT -35 2513 ome.model.core.PlaneInfo \N 292 4105 INSERT -35 2514 ome.model.core.PlaneInfo \N 292 4106 INSERT -35 2515 ome.model.core.PlaneInfo \N 292 4107 INSERT -35 2516 ome.model.core.PlaneInfo \N 292 4108 INSERT -35 2517 ome.model.core.PlaneInfo \N 292 4109 INSERT -35 2518 ome.model.core.PlaneInfo \N 292 4110 INSERT -35 2519 ome.model.core.PlaneInfo \N 292 4111 INSERT -35 2520 ome.model.core.PlaneInfo \N 292 4112 INSERT -35 2521 ome.model.core.PlaneInfo \N 292 4113 INSERT -35 2522 ome.model.core.PlaneInfo \N 292 4114 INSERT -35 2523 ome.model.core.PlaneInfo \N 292 4115 INSERT -35 2524 ome.model.core.PlaneInfo \N 292 4116 INSERT -35 2525 ome.model.core.PlaneInfo \N 292 4117 INSERT -35 2526 ome.model.core.PlaneInfo \N 292 4118 INSERT -35 2527 ome.model.core.PlaneInfo \N 292 4119 INSERT -35 2528 ome.model.core.PlaneInfo \N 292 4120 INSERT -35 2529 ome.model.core.PlaneInfo \N 292 4121 INSERT -35 2530 ome.model.core.PlaneInfo \N 292 4122 INSERT -35 2531 ome.model.core.PlaneInfo \N 292 4123 INSERT -35 2532 ome.model.core.PlaneInfo \N 292 4124 INSERT -35 2533 ome.model.core.PlaneInfo \N 292 4125 INSERT -35 2534 ome.model.core.PlaneInfo \N 292 4126 INSERT -35 2535 ome.model.core.PlaneInfo \N 292 4127 INSERT -35 2536 ome.model.core.PlaneInfo \N 292 4128 INSERT -35 2537 ome.model.core.PlaneInfo \N 292 4129 INSERT -35 2538 ome.model.core.PlaneInfo \N 292 4130 INSERT -35 2539 ome.model.core.PlaneInfo \N 292 4131 INSERT -35 2540 ome.model.core.PlaneInfo \N 292 4132 INSERT -35 2541 ome.model.core.PlaneInfo \N 292 4133 INSERT -35 2542 ome.model.core.PlaneInfo \N 292 4134 INSERT -35 2543 ome.model.core.PlaneInfo \N 292 4135 INSERT -35 2544 ome.model.core.PlaneInfo \N 292 4136 INSERT -35 2545 ome.model.core.PlaneInfo \N 292 4137 INSERT -35 2546 ome.model.core.PlaneInfo \N 292 4138 INSERT -35 2547 ome.model.core.PlaneInfo \N 292 4139 INSERT -35 2548 ome.model.core.PlaneInfo \N 292 4140 INSERT -35 2549 ome.model.core.PlaneInfo \N 292 4141 INSERT -35 31 ome.model.acquisition.Microscope \N 292 4142 INSERT -35 31 ome.model.acquisition.Instrument \N 292 4143 INSERT -35 77 ome.model.acquisition.Detector \N 292 4144 INSERT -35 78 ome.model.acquisition.Detector \N 292 4145 INSERT -35 91 ome.model.acquisition.TransmittanceRange \N 292 4146 INSERT -35 91 ome.model.acquisition.Filter \N 292 4147 INSERT -35 92 ome.model.acquisition.TransmittanceRange \N 292 4148 INSERT -35 92 ome.model.acquisition.Filter \N 292 4149 INSERT -35 93 ome.model.acquisition.TransmittanceRange \N 292 4150 INSERT -35 93 ome.model.acquisition.Filter \N 292 4151 INSERT -35 181 ome.model.acquisition.Laser \N 292 4152 INSERT -35 182 ome.model.acquisition.Laser \N 292 4153 INSERT -35 183 ome.model.acquisition.Laser \N 292 4154 INSERT -35 184 ome.model.acquisition.Laser \N 292 4155 INSERT -35 185 ome.model.acquisition.Laser \N 292 4156 INSERT -35 186 ome.model.acquisition.Laser \N 292 4157 INSERT -35 31 ome.model.acquisition.Objective \N 292 4158 INSERT -35 31 ome.model.acquisition.ObjectiveSettings \N 292 4159 INSERT -35 31 ome.model.core.Image \N 292 4160 INSERT -35 46 ome.model.core.OriginalFile \N 292 4161 INSERT -35 31 ome.model.annotations.FileAnnotation \N 292 4162 INSERT -35 31 ome.model.annotations.ImageAnnotationLink \N 292 4163 INSERT -35 31 ome.model.containers.DatasetImageLink \N 292 4164 INSERT -35 31 ome.model.core.Pixels \N 292 4165 INSERT -35 77 ome.model.acquisition.DetectorSettings \N 292 4166 INSERT -35 61 ome.model.acquisition.LightPath \N 292 4167 INSERT -35 61 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4168 INSERT -35 57 ome.model.acquisition.LightSettings \N 292 4169 INSERT -35 77 ome.model.core.LogicalChannel \N 292 4170 INSERT -35 77 ome.model.core.Channel \N 292 4171 INSERT -35 78 ome.model.acquisition.DetectorSettings \N 292 4172 INSERT -35 62 ome.model.acquisition.LightPath \N 292 4173 INSERT -35 62 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4174 INSERT -35 78 ome.model.core.LogicalChannel \N 292 4175 INSERT -35 78 ome.model.core.Channel \N 292 4176 INSERT -35 2550 ome.model.core.PlaneInfo \N 292 4177 INSERT -35 2551 ome.model.core.PlaneInfo \N 292 4178 INSERT -35 2552 ome.model.core.PlaneInfo \N 292 4179 INSERT -35 2553 ome.model.core.PlaneInfo \N 292 4180 INSERT -35 2554 ome.model.core.PlaneInfo \N 292 4181 INSERT -35 2555 ome.model.core.PlaneInfo \N 292 4182 INSERT -35 2556 ome.model.core.PlaneInfo \N 292 4183 INSERT -35 2557 ome.model.core.PlaneInfo \N 292 4184 INSERT -35 2558 ome.model.core.PlaneInfo \N 292 4185 INSERT -35 2559 ome.model.core.PlaneInfo \N 292 4186 INSERT -35 2560 ome.model.core.PlaneInfo \N 292 4187 INSERT -35 2561 ome.model.core.PlaneInfo \N 292 4188 INSERT -35 2562 ome.model.core.PlaneInfo \N 292 4189 INSERT -35 2563 ome.model.core.PlaneInfo \N 292 4190 INSERT -35 2564 ome.model.core.PlaneInfo \N 292 4191 INSERT -35 2565 ome.model.core.PlaneInfo \N 292 4192 INSERT -35 2566 ome.model.core.PlaneInfo \N 292 4193 INSERT -35 2567 ome.model.core.PlaneInfo \N 292 4194 INSERT -35 2568 ome.model.core.PlaneInfo \N 292 4195 INSERT -35 2569 ome.model.core.PlaneInfo \N 292 4196 INSERT -35 2570 ome.model.core.PlaneInfo \N 292 4197 INSERT -35 2571 ome.model.core.PlaneInfo \N 292 4198 INSERT -35 2572 ome.model.core.PlaneInfo \N 292 4199 INSERT -35 2573 ome.model.core.PlaneInfo \N 292 4200 INSERT -35 2574 ome.model.core.PlaneInfo \N 292 4201 INSERT -35 2575 ome.model.core.PlaneInfo \N 292 4202 INSERT -35 2576 ome.model.core.PlaneInfo \N 292 4203 INSERT -35 2577 ome.model.core.PlaneInfo \N 292 4204 INSERT -35 2578 ome.model.core.PlaneInfo \N 292 4205 INSERT -35 2579 ome.model.core.PlaneInfo \N 292 4206 INSERT -35 2580 ome.model.core.PlaneInfo \N 292 4207 INSERT -35 2581 ome.model.core.PlaneInfo \N 292 4208 INSERT -35 2582 ome.model.core.PlaneInfo \N 292 4209 INSERT -35 2583 ome.model.core.PlaneInfo \N 292 4210 INSERT -35 2584 ome.model.core.PlaneInfo \N 292 4211 INSERT -35 2585 ome.model.core.PlaneInfo \N 292 4212 INSERT -35 2586 ome.model.core.PlaneInfo \N 292 4213 INSERT -35 2587 ome.model.core.PlaneInfo \N 292 4214 INSERT -35 2588 ome.model.core.PlaneInfo \N 292 4215 INSERT -35 2589 ome.model.core.PlaneInfo \N 292 4216 INSERT -35 2590 ome.model.core.PlaneInfo \N 292 4217 INSERT -35 2591 ome.model.core.PlaneInfo \N 292 4218 INSERT -35 2592 ome.model.core.PlaneInfo \N 292 4219 INSERT -35 2593 ome.model.core.PlaneInfo \N 292 4220 INSERT -35 2594 ome.model.core.PlaneInfo \N 292 4221 INSERT -35 2595 ome.model.core.PlaneInfo \N 292 4222 INSERT -35 2596 ome.model.core.PlaneInfo \N 292 4223 INSERT -35 2597 ome.model.core.PlaneInfo \N 292 4224 INSERT -35 2598 ome.model.core.PlaneInfo \N 292 4225 INSERT -35 2599 ome.model.core.PlaneInfo \N 292 4226 INSERT -35 2600 ome.model.core.PlaneInfo \N 292 4227 INSERT -35 2601 ome.model.core.PlaneInfo \N 292 4228 INSERT -35 2602 ome.model.core.PlaneInfo \N 292 4229 INSERT -35 2603 ome.model.core.PlaneInfo \N 292 4230 INSERT -35 2604 ome.model.core.PlaneInfo \N 292 4231 INSERT -35 2605 ome.model.core.PlaneInfo \N 292 4232 INSERT -35 2606 ome.model.core.PlaneInfo \N 292 4233 INSERT -35 2607 ome.model.core.PlaneInfo \N 292 4234 INSERT -35 2608 ome.model.core.PlaneInfo \N 292 4235 INSERT -35 2609 ome.model.core.PlaneInfo \N 292 4236 INSERT -35 2610 ome.model.core.PlaneInfo \N 292 4237 INSERT -35 2611 ome.model.core.PlaneInfo \N 292 4238 INSERT -35 2612 ome.model.core.PlaneInfo \N 292 4239 INSERT -35 2613 ome.model.core.PlaneInfo \N 292 4240 INSERT -35 2614 ome.model.core.PlaneInfo \N 292 4241 INSERT -35 2615 ome.model.core.PlaneInfo \N 292 4242 INSERT -35 2616 ome.model.core.PlaneInfo \N 292 4243 INSERT -35 2617 ome.model.core.PlaneInfo \N 292 4244 INSERT -35 2618 ome.model.core.PlaneInfo \N 292 4245 INSERT -35 2619 ome.model.core.PlaneInfo \N 292 4246 INSERT -35 2620 ome.model.core.PlaneInfo \N 292 4247 INSERT -35 2621 ome.model.core.PlaneInfo \N 292 4248 INSERT -35 2622 ome.model.core.PlaneInfo \N 292 4249 INSERT -35 2623 ome.model.core.PlaneInfo \N 292 4250 INSERT -35 2624 ome.model.core.PlaneInfo \N 292 4251 INSERT -35 2625 ome.model.core.PlaneInfo \N 292 4252 INSERT -35 2626 ome.model.core.PlaneInfo \N 292 4253 INSERT -35 2627 ome.model.core.PlaneInfo \N 292 4254 INSERT -35 2628 ome.model.core.PlaneInfo \N 292 4255 INSERT -35 2629 ome.model.core.PlaneInfo \N 292 4256 INSERT -35 2630 ome.model.core.PlaneInfo \N 292 4257 INSERT -35 2631 ome.model.core.PlaneInfo \N 292 4258 INSERT -35 2632 ome.model.core.PlaneInfo \N 292 4259 INSERT -35 2633 ome.model.core.PlaneInfo \N 292 4260 INSERT -35 2634 ome.model.core.PlaneInfo \N 292 4261 INSERT -35 2635 ome.model.core.PlaneInfo \N 292 4262 INSERT -35 2636 ome.model.core.PlaneInfo \N 292 4263 INSERT -35 2637 ome.model.core.PlaneInfo \N 292 4264 INSERT -35 2638 ome.model.core.PlaneInfo \N 292 4265 INSERT -35 2639 ome.model.core.PlaneInfo \N 292 4266 INSERT -35 2640 ome.model.core.PlaneInfo \N 292 4267 INSERT -35 2641 ome.model.core.PlaneInfo \N 292 4268 INSERT -35 32 ome.model.acquisition.Microscope \N 292 4269 INSERT -35 32 ome.model.acquisition.Instrument \N 292 4270 INSERT -35 79 ome.model.acquisition.Detector \N 292 4271 INSERT -35 80 ome.model.acquisition.Detector \N 292 4272 INSERT -35 81 ome.model.acquisition.Detector \N 292 4273 INSERT -35 94 ome.model.acquisition.TransmittanceRange \N 292 4274 INSERT -35 94 ome.model.acquisition.Filter \N 292 4275 INSERT -35 95 ome.model.acquisition.TransmittanceRange \N 292 4276 INSERT -35 95 ome.model.acquisition.Filter \N 292 4277 INSERT -35 96 ome.model.acquisition.TransmittanceRange \N 292 4278 INSERT -35 96 ome.model.acquisition.Filter \N 292 4279 INSERT -35 187 ome.model.acquisition.Laser \N 292 4280 INSERT -35 188 ome.model.acquisition.Laser \N 292 4281 INSERT -35 189 ome.model.acquisition.Laser \N 292 4282 INSERT -35 190 ome.model.acquisition.Laser \N 292 4283 INSERT -35 191 ome.model.acquisition.Laser \N 292 4284 INSERT -35 192 ome.model.acquisition.Laser \N 292 4285 INSERT -35 32 ome.model.acquisition.Objective \N 292 4286 INSERT -35 32 ome.model.acquisition.ObjectiveSettings \N 292 4287 INSERT -35 32 ome.model.core.Image \N 292 4288 INSERT -35 47 ome.model.core.OriginalFile \N 292 4289 INSERT -35 32 ome.model.annotations.FileAnnotation \N 292 4290 INSERT -35 32 ome.model.annotations.ImageAnnotationLink \N 292 4291 INSERT -35 32 ome.model.containers.DatasetImageLink \N 292 4292 INSERT -35 32 ome.model.core.Pixels \N 292 4293 INSERT -35 79 ome.model.acquisition.DetectorSettings \N 292 4294 INSERT -35 63 ome.model.acquisition.LightPath \N 292 4295 INSERT -35 63 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4296 INSERT -35 58 ome.model.acquisition.LightSettings \N 292 4297 INSERT -35 79 ome.model.core.LogicalChannel \N 292 4298 INSERT -35 79 ome.model.core.Channel \N 292 4299 INSERT -35 80 ome.model.acquisition.DetectorSettings \N 292 4300 INSERT -35 64 ome.model.acquisition.LightPath \N 292 4301 INSERT -35 64 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4302 INSERT -35 59 ome.model.acquisition.LightSettings \N 292 4303 INSERT -35 80 ome.model.core.LogicalChannel \N 292 4304 INSERT -35 80 ome.model.core.Channel \N 292 4305 INSERT -35 81 ome.model.acquisition.DetectorSettings \N 292 4306 INSERT -35 60 ome.model.acquisition.LightSettings \N 292 4307 INSERT -35 81 ome.model.core.LogicalChannel \N 292 4308 INSERT -35 81 ome.model.core.Channel \N 292 4309 INSERT -35 2642 ome.model.core.PlaneInfo \N 292 4310 INSERT -35 2643 ome.model.core.PlaneInfo \N 292 4311 INSERT -35 2644 ome.model.core.PlaneInfo \N 292 4312 INSERT -35 2645 ome.model.core.PlaneInfo \N 292 4313 INSERT -35 2646 ome.model.core.PlaneInfo \N 292 4314 INSERT -35 2647 ome.model.core.PlaneInfo \N 292 4315 INSERT -35 2648 ome.model.core.PlaneInfo \N 292 4316 INSERT -35 2649 ome.model.core.PlaneInfo \N 292 4317 INSERT -35 2650 ome.model.core.PlaneInfo \N 292 4318 INSERT -35 2651 ome.model.core.PlaneInfo \N 292 4319 INSERT -35 2652 ome.model.core.PlaneInfo \N 292 4320 INSERT -35 2653 ome.model.core.PlaneInfo \N 292 4321 INSERT -35 2654 ome.model.core.PlaneInfo \N 292 4322 INSERT -35 2655 ome.model.core.PlaneInfo \N 292 4323 INSERT -35 2656 ome.model.core.PlaneInfo \N 292 4324 INSERT -35 2657 ome.model.core.PlaneInfo \N 292 4325 INSERT -35 2658 ome.model.core.PlaneInfo \N 292 4326 INSERT -35 2659 ome.model.core.PlaneInfo \N 292 4327 INSERT -35 2660 ome.model.core.PlaneInfo \N 292 4328 INSERT -35 2661 ome.model.core.PlaneInfo \N 292 4329 INSERT -35 2662 ome.model.core.PlaneInfo \N 292 4330 INSERT -35 2663 ome.model.core.PlaneInfo \N 292 4331 INSERT -35 2664 ome.model.core.PlaneInfo \N 292 4332 INSERT -35 2665 ome.model.core.PlaneInfo \N 292 4333 INSERT -35 2666 ome.model.core.PlaneInfo \N 292 4334 INSERT -35 2667 ome.model.core.PlaneInfo \N 292 4335 INSERT -35 2668 ome.model.core.PlaneInfo \N 292 4336 INSERT -35 2669 ome.model.core.PlaneInfo \N 292 4337 INSERT -35 2670 ome.model.core.PlaneInfo \N 292 4338 INSERT -35 2671 ome.model.core.PlaneInfo \N 292 4339 INSERT -35 2672 ome.model.core.PlaneInfo \N 292 4340 INSERT -35 2673 ome.model.core.PlaneInfo \N 292 4341 INSERT -35 2674 ome.model.core.PlaneInfo \N 292 4342 INSERT -35 2675 ome.model.core.PlaneInfo \N 292 4343 INSERT -35 2676 ome.model.core.PlaneInfo \N 292 4344 INSERT -35 2677 ome.model.core.PlaneInfo \N 292 4345 INSERT -35 2678 ome.model.core.PlaneInfo \N 292 4346 INSERT -35 2679 ome.model.core.PlaneInfo \N 292 4347 INSERT -35 2680 ome.model.core.PlaneInfo \N 292 4348 INSERT -35 2681 ome.model.core.PlaneInfo \N 292 4349 INSERT -35 2682 ome.model.core.PlaneInfo \N 292 4350 INSERT -35 2683 ome.model.core.PlaneInfo \N 292 4351 INSERT -35 2684 ome.model.core.PlaneInfo \N 292 4352 INSERT -35 2685 ome.model.core.PlaneInfo \N 292 4353 INSERT -35 2686 ome.model.core.PlaneInfo \N 292 4354 INSERT -35 2687 ome.model.core.PlaneInfo \N 292 4355 INSERT -35 2688 ome.model.core.PlaneInfo \N 292 4356 INSERT -35 2689 ome.model.core.PlaneInfo \N 292 4357 INSERT -35 2690 ome.model.core.PlaneInfo \N 292 4358 INSERT -35 2691 ome.model.core.PlaneInfo \N 292 4359 INSERT -35 2692 ome.model.core.PlaneInfo \N 292 4360 INSERT -35 2693 ome.model.core.PlaneInfo \N 292 4361 INSERT -35 2694 ome.model.core.PlaneInfo \N 292 4362 INSERT -35 2695 ome.model.core.PlaneInfo \N 292 4363 INSERT -35 2696 ome.model.core.PlaneInfo \N 292 4364 INSERT -35 2697 ome.model.core.PlaneInfo \N 292 4365 INSERT -35 2698 ome.model.core.PlaneInfo \N 292 4366 INSERT -35 2699 ome.model.core.PlaneInfo \N 292 4367 INSERT -35 2700 ome.model.core.PlaneInfo \N 292 4368 INSERT -35 2701 ome.model.core.PlaneInfo \N 292 4369 INSERT -35 2702 ome.model.core.PlaneInfo \N 292 4370 INSERT -35 2703 ome.model.core.PlaneInfo \N 292 4371 INSERT -35 2704 ome.model.core.PlaneInfo \N 292 4372 INSERT -35 2705 ome.model.core.PlaneInfo \N 292 4373 INSERT -35 2706 ome.model.core.PlaneInfo \N 292 4374 INSERT -35 2707 ome.model.core.PlaneInfo \N 292 4375 INSERT -35 2708 ome.model.core.PlaneInfo \N 292 4376 INSERT -35 2709 ome.model.core.PlaneInfo \N 292 4377 INSERT -35 2710 ome.model.core.PlaneInfo \N 292 4378 INSERT -35 2711 ome.model.core.PlaneInfo \N 292 4379 INSERT -35 2712 ome.model.core.PlaneInfo \N 292 4380 INSERT -35 2713 ome.model.core.PlaneInfo \N 292 4381 INSERT -35 2714 ome.model.core.PlaneInfo \N 292 4382 INSERT -35 2715 ome.model.core.PlaneInfo \N 292 4383 INSERT -35 2716 ome.model.core.PlaneInfo \N 292 4384 INSERT -35 2717 ome.model.core.PlaneInfo \N 292 4385 INSERT -35 2718 ome.model.core.PlaneInfo \N 292 4386 INSERT -35 2719 ome.model.core.PlaneInfo \N 292 4387 INSERT -35 2720 ome.model.core.PlaneInfo \N 292 4388 INSERT -35 2721 ome.model.core.PlaneInfo \N 292 4389 INSERT -35 2722 ome.model.core.PlaneInfo \N 292 4390 INSERT -35 2723 ome.model.core.PlaneInfo \N 292 4391 INSERT -35 2724 ome.model.core.PlaneInfo \N 292 4392 INSERT -35 2725 ome.model.core.PlaneInfo \N 292 4393 INSERT -35 2726 ome.model.core.PlaneInfo \N 292 4394 INSERT -35 2727 ome.model.core.PlaneInfo \N 292 4395 INSERT -35 2728 ome.model.core.PlaneInfo \N 292 4396 INSERT -35 2729 ome.model.core.PlaneInfo \N 292 4397 INSERT -35 2730 ome.model.core.PlaneInfo \N 292 4398 INSERT -35 2731 ome.model.core.PlaneInfo \N 292 4399 INSERT -35 2732 ome.model.core.PlaneInfo \N 292 4400 INSERT -35 2733 ome.model.core.PlaneInfo \N 292 4401 INSERT -35 2734 ome.model.core.PlaneInfo \N 292 4402 INSERT -35 2735 ome.model.core.PlaneInfo \N 292 4403 INSERT -35 2736 ome.model.core.PlaneInfo \N 292 4404 INSERT -35 2737 ome.model.core.PlaneInfo \N 292 4405 INSERT -35 2738 ome.model.core.PlaneInfo \N 292 4406 INSERT -35 2739 ome.model.core.PlaneInfo \N 292 4407 INSERT -35 2740 ome.model.core.PlaneInfo \N 292 4408 INSERT -35 2741 ome.model.core.PlaneInfo \N 292 4409 INSERT -35 2742 ome.model.core.PlaneInfo \N 292 4410 INSERT -35 2743 ome.model.core.PlaneInfo \N 292 4411 INSERT -35 2744 ome.model.core.PlaneInfo \N 292 4412 INSERT -35 2745 ome.model.core.PlaneInfo \N 292 4413 INSERT -35 2746 ome.model.core.PlaneInfo \N 292 4414 INSERT -35 2747 ome.model.core.PlaneInfo \N 292 4415 INSERT -35 2748 ome.model.core.PlaneInfo \N 292 4416 INSERT -35 2749 ome.model.core.PlaneInfo \N 292 4417 INSERT -35 2750 ome.model.core.PlaneInfo \N 292 4418 INSERT -35 2751 ome.model.core.PlaneInfo \N 292 4419 INSERT -35 2752 ome.model.core.PlaneInfo \N 292 4420 INSERT -35 2753 ome.model.core.PlaneInfo \N 292 4421 INSERT -35 2754 ome.model.core.PlaneInfo \N 292 4422 INSERT -35 2755 ome.model.core.PlaneInfo \N 292 4423 INSERT -35 2756 ome.model.core.PlaneInfo \N 292 4424 INSERT -35 2757 ome.model.core.PlaneInfo \N 292 4425 INSERT -35 2758 ome.model.core.PlaneInfo \N 292 4426 INSERT -35 2759 ome.model.core.PlaneInfo \N 292 4427 INSERT -35 2760 ome.model.core.PlaneInfo \N 292 4428 INSERT -35 2761 ome.model.core.PlaneInfo \N 292 4429 INSERT -35 2762 ome.model.core.PlaneInfo \N 292 4430 INSERT -35 2763 ome.model.core.PlaneInfo \N 292 4431 INSERT -35 2764 ome.model.core.PlaneInfo \N 292 4432 INSERT -35 2765 ome.model.core.PlaneInfo \N 292 4433 INSERT -35 2766 ome.model.core.PlaneInfo \N 292 4434 INSERT -35 2767 ome.model.core.PlaneInfo \N 292 4435 INSERT -35 2768 ome.model.core.PlaneInfo \N 292 4436 INSERT -35 2769 ome.model.core.PlaneInfo \N 292 4437 INSERT -35 2770 ome.model.core.PlaneInfo \N 292 4438 INSERT -35 2771 ome.model.core.PlaneInfo \N 292 4439 INSERT -35 2772 ome.model.core.PlaneInfo \N 292 4440 INSERT -35 2773 ome.model.core.PlaneInfo \N 292 4441 INSERT -35 2774 ome.model.core.PlaneInfo \N 292 4442 INSERT -35 2775 ome.model.core.PlaneInfo \N 292 4443 INSERT -35 2776 ome.model.core.PlaneInfo \N 292 4444 INSERT -35 2777 ome.model.core.PlaneInfo \N 292 4445 INSERT -35 2778 ome.model.core.PlaneInfo \N 292 4446 INSERT -35 2779 ome.model.core.PlaneInfo \N 292 4447 INSERT -35 2780 ome.model.core.PlaneInfo \N 292 4448 INSERT -35 2781 ome.model.core.PlaneInfo \N 292 4449 INSERT -35 2782 ome.model.core.PlaneInfo \N 292 4450 INSERT -35 2783 ome.model.core.PlaneInfo \N 292 4451 INSERT -35 2784 ome.model.core.PlaneInfo \N 292 4452 INSERT -35 2785 ome.model.core.PlaneInfo \N 292 4453 INSERT -35 2786 ome.model.core.PlaneInfo \N 292 4454 INSERT -35 2787 ome.model.core.PlaneInfo \N 292 4455 INSERT -35 2788 ome.model.core.PlaneInfo \N 292 4456 INSERT -35 2789 ome.model.core.PlaneInfo \N 292 4457 INSERT -35 2790 ome.model.core.PlaneInfo \N 292 4458 INSERT -35 2791 ome.model.core.PlaneInfo \N 292 4459 INSERT -35 2792 ome.model.core.PlaneInfo \N 292 4460 INSERT -35 2793 ome.model.core.PlaneInfo \N 292 4461 INSERT -35 2794 ome.model.core.PlaneInfo \N 292 4462 INSERT -35 2795 ome.model.core.PlaneInfo \N 292 4463 INSERT -35 2796 ome.model.core.PlaneInfo \N 292 4464 INSERT -35 2797 ome.model.core.PlaneInfo \N 292 4465 INSERT -35 33 ome.model.acquisition.Microscope \N 292 4466 INSERT -35 33 ome.model.acquisition.Instrument \N 292 4467 INSERT -35 82 ome.model.acquisition.Detector \N 292 4468 INSERT -35 83 ome.model.acquisition.Detector \N 292 4469 INSERT -35 97 ome.model.acquisition.TransmittanceRange \N 292 4470 INSERT -35 97 ome.model.acquisition.Filter \N 292 4471 INSERT -35 98 ome.model.acquisition.TransmittanceRange \N 292 4472 INSERT -35 98 ome.model.acquisition.Filter \N 292 4473 INSERT -35 99 ome.model.acquisition.TransmittanceRange \N 292 4474 INSERT -35 99 ome.model.acquisition.Filter \N 292 4475 INSERT -35 193 ome.model.acquisition.Laser \N 292 4476 INSERT -35 194 ome.model.acquisition.Laser \N 292 4477 INSERT -35 195 ome.model.acquisition.Laser \N 292 4478 INSERT -35 196 ome.model.acquisition.Laser \N 292 4479 INSERT -35 197 ome.model.acquisition.Laser \N 292 4480 INSERT -35 198 ome.model.acquisition.Laser \N 292 4481 INSERT -35 33 ome.model.acquisition.Objective \N 292 4482 INSERT -35 33 ome.model.acquisition.ObjectiveSettings \N 292 4483 INSERT -35 33 ome.model.core.Image \N 292 4484 INSERT -35 48 ome.model.core.OriginalFile \N 292 4485 INSERT -35 33 ome.model.annotations.FileAnnotation \N 292 4486 INSERT -35 33 ome.model.annotations.ImageAnnotationLink \N 292 4487 INSERT -35 33 ome.model.containers.DatasetImageLink \N 292 4488 INSERT -35 33 ome.model.core.Pixels \N 292 4489 INSERT -35 82 ome.model.acquisition.DetectorSettings \N 292 4490 INSERT -35 65 ome.model.acquisition.LightPath \N 292 4491 INSERT -35 65 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4492 INSERT -35 61 ome.model.acquisition.LightSettings \N 292 4493 INSERT -35 82 ome.model.core.LogicalChannel \N 292 4494 INSERT -35 82 ome.model.core.Channel \N 292 4495 INSERT -35 83 ome.model.acquisition.DetectorSettings \N 292 4496 INSERT -35 66 ome.model.acquisition.LightPath \N 292 4497 INSERT -35 66 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4498 INSERT -35 83 ome.model.core.LogicalChannel \N 292 4499 INSERT -35 83 ome.model.core.Channel \N 292 4500 INSERT -35 2798 ome.model.core.PlaneInfo \N 292 4501 INSERT -35 2799 ome.model.core.PlaneInfo \N 292 4502 INSERT -35 2800 ome.model.core.PlaneInfo \N 292 4503 INSERT -35 2801 ome.model.core.PlaneInfo \N 292 4504 INSERT -35 2802 ome.model.core.PlaneInfo \N 292 4505 INSERT -35 2803 ome.model.core.PlaneInfo \N 292 4506 INSERT -35 34 ome.model.acquisition.Microscope \N 292 4507 INSERT -35 34 ome.model.acquisition.Instrument \N 292 4508 INSERT -35 84 ome.model.acquisition.Detector \N 292 4509 INSERT -35 85 ome.model.acquisition.Detector \N 292 4510 INSERT -35 100 ome.model.acquisition.TransmittanceRange \N 292 4511 INSERT -35 100 ome.model.acquisition.Filter \N 292 4512 INSERT -35 101 ome.model.acquisition.TransmittanceRange \N 292 4513 INSERT -35 101 ome.model.acquisition.Filter \N 292 4514 INSERT -35 102 ome.model.acquisition.TransmittanceRange \N 292 4515 INSERT -35 102 ome.model.acquisition.Filter \N 292 4516 INSERT -35 199 ome.model.acquisition.Laser \N 292 4517 INSERT -35 200 ome.model.acquisition.Laser \N 292 4518 INSERT -35 201 ome.model.acquisition.Laser \N 292 4519 INSERT -35 202 ome.model.acquisition.Laser \N 292 4520 INSERT -35 203 ome.model.acquisition.Laser \N 292 4521 INSERT -35 204 ome.model.acquisition.Laser \N 292 4522 INSERT -35 34 ome.model.acquisition.Objective \N 292 4523 INSERT -35 34 ome.model.acquisition.ObjectiveSettings \N 292 4524 INSERT -35 34 ome.model.core.Image \N 292 4525 INSERT -35 49 ome.model.core.OriginalFile \N 292 4526 INSERT -35 34 ome.model.annotations.FileAnnotation \N 292 4527 INSERT -35 34 ome.model.annotations.ImageAnnotationLink \N 292 4528 INSERT -35 34 ome.model.containers.DatasetImageLink \N 292 4529 INSERT -35 34 ome.model.core.Pixels \N 292 4530 INSERT -35 84 ome.model.acquisition.DetectorSettings \N 292 4531 INSERT -35 67 ome.model.acquisition.LightPath \N 292 4532 INSERT -35 67 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4533 INSERT -35 62 ome.model.acquisition.LightSettings \N 292 4534 INSERT -35 84 ome.model.core.LogicalChannel \N 292 4535 INSERT -35 84 ome.model.core.Channel \N 292 4536 INSERT -35 85 ome.model.acquisition.DetectorSettings \N 292 4537 INSERT -35 68 ome.model.acquisition.LightPath \N 292 4538 INSERT -35 68 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4539 INSERT -35 63 ome.model.acquisition.LightSettings \N 292 4540 INSERT -35 85 ome.model.core.LogicalChannel \N 292 4541 INSERT -35 85 ome.model.core.Channel \N 292 4542 INSERT -35 2804 ome.model.core.PlaneInfo \N 292 4543 INSERT -35 2805 ome.model.core.PlaneInfo \N 292 4544 INSERT -35 2806 ome.model.core.PlaneInfo \N 292 4545 INSERT -35 2807 ome.model.core.PlaneInfo \N 292 4546 INSERT -35 2808 ome.model.core.PlaneInfo \N 292 4547 INSERT -35 2809 ome.model.core.PlaneInfo \N 292 4548 INSERT -35 2810 ome.model.core.PlaneInfo \N 292 4549 INSERT -35 2811 ome.model.core.PlaneInfo \N 292 4550 INSERT -35 2812 ome.model.core.PlaneInfo \N 292 4551 INSERT -35 2813 ome.model.core.PlaneInfo \N 292 4552 INSERT -35 2814 ome.model.core.PlaneInfo \N 292 4553 INSERT -35 2815 ome.model.core.PlaneInfo \N 292 4554 INSERT -35 2816 ome.model.core.PlaneInfo \N 292 4555 INSERT -35 2817 ome.model.core.PlaneInfo \N 292 4556 INSERT -35 2818 ome.model.core.PlaneInfo \N 292 4557 INSERT -35 2819 ome.model.core.PlaneInfo \N 292 4558 INSERT -35 2820 ome.model.core.PlaneInfo \N 292 4559 INSERT -35 2821 ome.model.core.PlaneInfo \N 292 4560 INSERT -35 2822 ome.model.core.PlaneInfo \N 292 4561 INSERT -35 2823 ome.model.core.PlaneInfo \N 292 4562 INSERT -35 2824 ome.model.core.PlaneInfo \N 292 4563 INSERT -35 2825 ome.model.core.PlaneInfo \N 292 4564 INSERT -35 2826 ome.model.core.PlaneInfo \N 292 4565 INSERT -35 2827 ome.model.core.PlaneInfo \N 292 4566 INSERT -35 2828 ome.model.core.PlaneInfo \N 292 4567 INSERT -35 2829 ome.model.core.PlaneInfo \N 292 4568 INSERT -35 2830 ome.model.core.PlaneInfo \N 292 4569 INSERT -35 2831 ome.model.core.PlaneInfo \N 292 4570 INSERT -35 2832 ome.model.core.PlaneInfo \N 292 4571 INSERT -35 2833 ome.model.core.PlaneInfo \N 292 4572 INSERT -35 2834 ome.model.core.PlaneInfo \N 292 4573 INSERT -35 2835 ome.model.core.PlaneInfo \N 292 4574 INSERT -35 2836 ome.model.core.PlaneInfo \N 292 4575 INSERT -35 2837 ome.model.core.PlaneInfo \N 292 4576 INSERT -35 2838 ome.model.core.PlaneInfo \N 292 4577 INSERT -35 2839 ome.model.core.PlaneInfo \N 292 4578 INSERT -35 2840 ome.model.core.PlaneInfo \N 292 4579 INSERT -35 2841 ome.model.core.PlaneInfo \N 292 4580 INSERT -35 2842 ome.model.core.PlaneInfo \N 292 4581 INSERT -35 2843 ome.model.core.PlaneInfo \N 292 4582 INSERT -35 2844 ome.model.core.PlaneInfo \N 292 4583 INSERT -35 2845 ome.model.core.PlaneInfo \N 292 4584 INSERT -35 2846 ome.model.core.PlaneInfo \N 292 4585 INSERT -35 2847 ome.model.core.PlaneInfo \N 292 4586 INSERT -35 2848 ome.model.core.PlaneInfo \N 292 4587 INSERT -35 2849 ome.model.core.PlaneInfo \N 292 4588 INSERT -35 2850 ome.model.core.PlaneInfo \N 292 4589 INSERT -35 2851 ome.model.core.PlaneInfo \N 292 4590 INSERT -35 2852 ome.model.core.PlaneInfo \N 292 4591 INSERT -35 2853 ome.model.core.PlaneInfo \N 292 4592 INSERT -35 2854 ome.model.core.PlaneInfo \N 292 4593 INSERT -35 2855 ome.model.core.PlaneInfo \N 292 4594 INSERT -35 2856 ome.model.core.PlaneInfo \N 292 4595 INSERT -35 2857 ome.model.core.PlaneInfo \N 292 4596 INSERT -35 2858 ome.model.core.PlaneInfo \N 292 4597 INSERT -35 2859 ome.model.core.PlaneInfo \N 292 4598 INSERT -35 2860 ome.model.core.PlaneInfo \N 292 4599 INSERT -35 2861 ome.model.core.PlaneInfo \N 292 4600 INSERT -35 2862 ome.model.core.PlaneInfo \N 292 4601 INSERT -35 2863 ome.model.core.PlaneInfo \N 292 4602 INSERT -35 2864 ome.model.core.PlaneInfo \N 292 4603 INSERT -35 2865 ome.model.core.PlaneInfo \N 292 4604 INSERT -35 2866 ome.model.core.PlaneInfo \N 292 4605 INSERT -35 2867 ome.model.core.PlaneInfo \N 292 4606 INSERT -35 2868 ome.model.core.PlaneInfo \N 292 4607 INSERT -35 2869 ome.model.core.PlaneInfo \N 292 4608 INSERT -35 2870 ome.model.core.PlaneInfo \N 292 4609 INSERT -35 2871 ome.model.core.PlaneInfo \N 292 4610 INSERT -35 2872 ome.model.core.PlaneInfo \N 292 4611 INSERT -35 2873 ome.model.core.PlaneInfo \N 292 4612 INSERT -35 2874 ome.model.core.PlaneInfo \N 292 4613 INSERT -35 2875 ome.model.core.PlaneInfo \N 292 4614 INSERT -35 2876 ome.model.core.PlaneInfo \N 292 4615 INSERT -35 2877 ome.model.core.PlaneInfo \N 292 4616 INSERT -35 2878 ome.model.core.PlaneInfo \N 292 4617 INSERT -35 2879 ome.model.core.PlaneInfo \N 292 4618 INSERT -35 2880 ome.model.core.PlaneInfo \N 292 4619 INSERT -35 2881 ome.model.core.PlaneInfo \N 292 4620 INSERT -35 2882 ome.model.core.PlaneInfo \N 292 4621 INSERT -35 2883 ome.model.core.PlaneInfo \N 292 4622 INSERT -35 2884 ome.model.core.PlaneInfo \N 292 4623 INSERT -35 2885 ome.model.core.PlaneInfo \N 292 4624 INSERT -35 2886 ome.model.core.PlaneInfo \N 292 4625 INSERT -35 2887 ome.model.core.PlaneInfo \N 292 4626 INSERT -35 2888 ome.model.core.PlaneInfo \N 292 4627 INSERT -35 2889 ome.model.core.PlaneInfo \N 292 4628 INSERT -35 2890 ome.model.core.PlaneInfo \N 292 4629 INSERT -35 2891 ome.model.core.PlaneInfo \N 292 4630 INSERT -35 2892 ome.model.core.PlaneInfo \N 292 4631 INSERT -35 2893 ome.model.core.PlaneInfo \N 292 4632 INSERT -35 2894 ome.model.core.PlaneInfo \N 292 4633 INSERT -35 2895 ome.model.core.PlaneInfo \N 292 4634 INSERT -35 35 ome.model.acquisition.Microscope \N 292 4635 INSERT -35 35 ome.model.acquisition.Instrument \N 292 4636 INSERT -35 86 ome.model.acquisition.Detector \N 292 4637 INSERT -35 87 ome.model.acquisition.Detector \N 292 4638 INSERT -35 103 ome.model.acquisition.TransmittanceRange \N 292 4639 INSERT -35 103 ome.model.acquisition.Filter \N 292 4640 INSERT -35 104 ome.model.acquisition.TransmittanceRange \N 292 4641 INSERT -35 104 ome.model.acquisition.Filter \N 292 4642 INSERT -35 105 ome.model.acquisition.TransmittanceRange \N 292 4643 INSERT -35 105 ome.model.acquisition.Filter \N 292 4644 INSERT -35 205 ome.model.acquisition.Laser \N 292 4645 INSERT -35 206 ome.model.acquisition.Laser \N 292 4646 INSERT -35 207 ome.model.acquisition.Laser \N 292 4647 INSERT -35 208 ome.model.acquisition.Laser \N 292 4648 INSERT -35 209 ome.model.acquisition.Laser \N 292 4649 INSERT -35 210 ome.model.acquisition.Laser \N 292 4650 INSERT -35 35 ome.model.acquisition.Objective \N 292 4651 INSERT -35 35 ome.model.acquisition.ObjectiveSettings \N 292 4652 INSERT -35 35 ome.model.core.Image \N 292 4653 INSERT -35 50 ome.model.core.OriginalFile \N 292 4654 INSERT -35 35 ome.model.annotations.FileAnnotation \N 292 4655 INSERT -35 35 ome.model.annotations.ImageAnnotationLink \N 292 4656 INSERT -35 35 ome.model.containers.DatasetImageLink \N 292 4657 INSERT -35 35 ome.model.core.Pixels \N 292 4658 INSERT -35 86 ome.model.acquisition.DetectorSettings \N 292 4659 INSERT -35 69 ome.model.acquisition.LightPath \N 292 4660 INSERT -35 69 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4661 INSERT -35 64 ome.model.acquisition.LightSettings \N 292 4662 INSERT -35 86 ome.model.core.LogicalChannel \N 292 4663 INSERT -35 86 ome.model.core.Channel \N 292 4664 INSERT -35 87 ome.model.acquisition.DetectorSettings \N 292 4665 INSERT -35 70 ome.model.acquisition.LightPath \N 292 4666 INSERT -35 70 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4667 INSERT -35 65 ome.model.acquisition.LightSettings \N 292 4668 INSERT -35 87 ome.model.core.LogicalChannel \N 292 4669 INSERT -35 87 ome.model.core.Channel \N 292 4670 INSERT -35 2896 ome.model.core.PlaneInfo \N 292 4671 INSERT -35 2897 ome.model.core.PlaneInfo \N 292 4672 INSERT -35 2898 ome.model.core.PlaneInfo \N 292 4673 INSERT -35 2899 ome.model.core.PlaneInfo \N 292 4674 INSERT -35 2900 ome.model.core.PlaneInfo \N 292 4675 INSERT -35 2901 ome.model.core.PlaneInfo \N 292 4676 INSERT -35 2902 ome.model.core.PlaneInfo \N 292 4677 INSERT -35 2903 ome.model.core.PlaneInfo \N 292 4678 INSERT -35 2904 ome.model.core.PlaneInfo \N 292 4679 INSERT -35 2905 ome.model.core.PlaneInfo \N 292 4680 INSERT -35 2906 ome.model.core.PlaneInfo \N 292 4681 INSERT -35 2907 ome.model.core.PlaneInfo \N 292 4682 INSERT -35 2908 ome.model.core.PlaneInfo \N 292 4683 INSERT -35 2909 ome.model.core.PlaneInfo \N 292 4684 INSERT -35 2910 ome.model.core.PlaneInfo \N 292 4685 INSERT -35 2911 ome.model.core.PlaneInfo \N 292 4686 INSERT -35 2912 ome.model.core.PlaneInfo \N 292 4687 INSERT -35 2913 ome.model.core.PlaneInfo \N 292 4688 INSERT -35 2914 ome.model.core.PlaneInfo \N 292 4689 INSERT -35 2915 ome.model.core.PlaneInfo \N 292 4690 INSERT -35 2916 ome.model.core.PlaneInfo \N 292 4691 INSERT -35 2917 ome.model.core.PlaneInfo \N 292 4692 INSERT -35 2918 ome.model.core.PlaneInfo \N 292 4693 INSERT -35 2919 ome.model.core.PlaneInfo \N 292 4694 INSERT -35 2920 ome.model.core.PlaneInfo \N 292 4695 INSERT -35 2921 ome.model.core.PlaneInfo \N 292 4696 INSERT -35 2922 ome.model.core.PlaneInfo \N 292 4697 INSERT -35 2923 ome.model.core.PlaneInfo \N 292 4698 INSERT -35 2924 ome.model.core.PlaneInfo \N 292 4699 INSERT -35 2925 ome.model.core.PlaneInfo \N 292 4700 INSERT -35 2926 ome.model.core.PlaneInfo \N 292 4701 INSERT -35 2927 ome.model.core.PlaneInfo \N 292 4702 INSERT -35 2928 ome.model.core.PlaneInfo \N 292 4703 INSERT -35 2929 ome.model.core.PlaneInfo \N 292 4704 INSERT -35 2930 ome.model.core.PlaneInfo \N 292 4705 INSERT -35 2931 ome.model.core.PlaneInfo \N 292 4706 INSERT -35 2932 ome.model.core.PlaneInfo \N 292 4707 INSERT -35 2933 ome.model.core.PlaneInfo \N 292 4708 INSERT -35 2934 ome.model.core.PlaneInfo \N 292 4709 INSERT -35 2935 ome.model.core.PlaneInfo \N 292 4710 INSERT -35 2936 ome.model.core.PlaneInfo \N 292 4711 INSERT -35 2937 ome.model.core.PlaneInfo \N 292 4712 INSERT -35 2938 ome.model.core.PlaneInfo \N 292 4713 INSERT -35 2939 ome.model.core.PlaneInfo \N 292 4714 INSERT -35 2940 ome.model.core.PlaneInfo \N 292 4715 INSERT -35 2941 ome.model.core.PlaneInfo \N 292 4716 INSERT -35 2942 ome.model.core.PlaneInfo \N 292 4717 INSERT -35 2943 ome.model.core.PlaneInfo \N 292 4718 INSERT -35 2944 ome.model.core.PlaneInfo \N 292 4719 INSERT -35 2945 ome.model.core.PlaneInfo \N 292 4720 INSERT -35 2946 ome.model.core.PlaneInfo \N 292 4721 INSERT -35 2947 ome.model.core.PlaneInfo \N 292 4722 INSERT -35 2948 ome.model.core.PlaneInfo \N 292 4723 INSERT -35 2949 ome.model.core.PlaneInfo \N 292 4724 INSERT -35 2950 ome.model.core.PlaneInfo \N 292 4725 INSERT -35 2951 ome.model.core.PlaneInfo \N 292 4726 INSERT -35 2952 ome.model.core.PlaneInfo \N 292 4727 INSERT -35 2953 ome.model.core.PlaneInfo \N 292 4728 INSERT -35 2954 ome.model.core.PlaneInfo \N 292 4729 INSERT -35 2955 ome.model.core.PlaneInfo \N 292 4730 INSERT -35 2956 ome.model.core.PlaneInfo \N 292 4731 INSERT -35 2957 ome.model.core.PlaneInfo \N 292 4732 INSERT -35 2958 ome.model.core.PlaneInfo \N 292 4733 INSERT -35 2959 ome.model.core.PlaneInfo \N 292 4734 INSERT -35 2960 ome.model.core.PlaneInfo \N 292 4735 INSERT -35 2961 ome.model.core.PlaneInfo \N 292 4736 INSERT -35 2962 ome.model.core.PlaneInfo \N 292 4737 INSERT -35 2963 ome.model.core.PlaneInfo \N 292 4738 INSERT -35 2964 ome.model.core.PlaneInfo \N 292 4739 INSERT -35 2965 ome.model.core.PlaneInfo \N 292 4740 INSERT -35 2966 ome.model.core.PlaneInfo \N 292 4741 INSERT -35 2967 ome.model.core.PlaneInfo \N 292 4742 INSERT -35 2968 ome.model.core.PlaneInfo \N 292 4743 INSERT -35 2969 ome.model.core.PlaneInfo \N 292 4744 INSERT -35 2970 ome.model.core.PlaneInfo \N 292 4745 INSERT -35 2971 ome.model.core.PlaneInfo \N 292 4746 INSERT -35 2972 ome.model.core.PlaneInfo \N 292 4747 INSERT -35 2973 ome.model.core.PlaneInfo \N 292 4748 INSERT -35 2974 ome.model.core.PlaneInfo \N 292 4749 INSERT -35 2975 ome.model.core.PlaneInfo \N 292 4750 INSERT -35 2976 ome.model.core.PlaneInfo \N 292 4751 INSERT -35 2977 ome.model.core.PlaneInfo \N 292 4752 INSERT -35 2978 ome.model.core.PlaneInfo \N 292 4753 INSERT -35 2979 ome.model.core.PlaneInfo \N 292 4754 INSERT -35 2980 ome.model.core.PlaneInfo \N 292 4755 INSERT -35 2981 ome.model.core.PlaneInfo \N 292 4756 INSERT -35 2982 ome.model.core.PlaneInfo \N 292 4757 INSERT -35 2983 ome.model.core.PlaneInfo \N 292 4758 INSERT -35 36 ome.model.acquisition.Microscope \N 292 4759 INSERT -35 36 ome.model.acquisition.Instrument \N 292 4760 INSERT -35 88 ome.model.acquisition.Detector \N 292 4761 INSERT -35 89 ome.model.acquisition.Detector \N 292 4762 INSERT -35 106 ome.model.acquisition.TransmittanceRange \N 292 4763 INSERT -35 106 ome.model.acquisition.Filter \N 292 4764 INSERT -35 107 ome.model.acquisition.TransmittanceRange \N 292 4765 INSERT -35 107 ome.model.acquisition.Filter \N 292 4766 INSERT -35 108 ome.model.acquisition.TransmittanceRange \N 292 4767 INSERT -35 108 ome.model.acquisition.Filter \N 292 4768 INSERT -35 211 ome.model.acquisition.Laser \N 292 4769 INSERT -35 212 ome.model.acquisition.Laser \N 292 4770 INSERT -35 213 ome.model.acquisition.Laser \N 292 4771 INSERT -35 214 ome.model.acquisition.Laser \N 292 4772 INSERT -35 215 ome.model.acquisition.Laser \N 292 4773 INSERT -35 216 ome.model.acquisition.Laser \N 292 4774 INSERT -35 36 ome.model.acquisition.Objective \N 292 4855 INSERT -35 3045 ome.model.core.PlaneInfo \N 292 4775 INSERT -35 36 ome.model.acquisition.ObjectiveSettings \N 292 4776 INSERT -35 36 ome.model.core.Image \N 292 4777 INSERT -35 51 ome.model.core.OriginalFile \N 292 4778 INSERT -35 36 ome.model.annotations.FileAnnotation \N 292 4779 INSERT -35 36 ome.model.annotations.ImageAnnotationLink \N 292 4780 INSERT -35 36 ome.model.containers.DatasetImageLink \N 292 4781 INSERT -35 36 ome.model.core.Pixels \N 292 4782 INSERT -35 88 ome.model.acquisition.DetectorSettings \N 292 4783 INSERT -35 71 ome.model.acquisition.LightPath \N 292 4784 INSERT -35 71 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4785 INSERT -35 66 ome.model.acquisition.LightSettings \N 292 4786 INSERT -35 88 ome.model.core.LogicalChannel \N 292 4787 INSERT -35 88 ome.model.core.Channel \N 292 4788 INSERT -35 89 ome.model.acquisition.DetectorSettings \N 292 4789 INSERT -35 72 ome.model.acquisition.LightPath \N 292 4790 INSERT -35 72 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4791 INSERT -35 67 ome.model.acquisition.LightSettings \N 292 4792 INSERT -35 89 ome.model.core.LogicalChannel \N 292 4793 INSERT -35 89 ome.model.core.Channel \N 292 4794 INSERT -35 2984 ome.model.core.PlaneInfo \N 292 4795 INSERT -35 2985 ome.model.core.PlaneInfo \N 292 4796 INSERT -35 2986 ome.model.core.PlaneInfo \N 292 4797 INSERT -35 2987 ome.model.core.PlaneInfo \N 292 4798 INSERT -35 2988 ome.model.core.PlaneInfo \N 292 4799 INSERT -35 2989 ome.model.core.PlaneInfo \N 292 4800 INSERT -35 2990 ome.model.core.PlaneInfo \N 292 4801 INSERT -35 2991 ome.model.core.PlaneInfo \N 292 4802 INSERT -35 2992 ome.model.core.PlaneInfo \N 292 4803 INSERT -35 2993 ome.model.core.PlaneInfo \N 292 4804 INSERT -35 2994 ome.model.core.PlaneInfo \N 292 4805 INSERT -35 2995 ome.model.core.PlaneInfo \N 292 4806 INSERT -35 2996 ome.model.core.PlaneInfo \N 292 4807 INSERT -35 2997 ome.model.core.PlaneInfo \N 292 4808 INSERT -35 2998 ome.model.core.PlaneInfo \N 292 4809 INSERT -35 2999 ome.model.core.PlaneInfo \N 292 4810 INSERT -35 3000 ome.model.core.PlaneInfo \N 292 4811 INSERT -35 3001 ome.model.core.PlaneInfo \N 292 4812 INSERT -35 3002 ome.model.core.PlaneInfo \N 292 4813 INSERT -35 3003 ome.model.core.PlaneInfo \N 292 4814 INSERT -35 3004 ome.model.core.PlaneInfo \N 292 4815 INSERT -35 3005 ome.model.core.PlaneInfo \N 292 4816 INSERT -35 3006 ome.model.core.PlaneInfo \N 292 4817 INSERT -35 3007 ome.model.core.PlaneInfo \N 292 4818 INSERT -35 3008 ome.model.core.PlaneInfo \N 292 4819 INSERT -35 3009 ome.model.core.PlaneInfo \N 292 4820 INSERT -35 3010 ome.model.core.PlaneInfo \N 292 4821 INSERT -35 3011 ome.model.core.PlaneInfo \N 292 4822 INSERT -35 3012 ome.model.core.PlaneInfo \N 292 4823 INSERT -35 3013 ome.model.core.PlaneInfo \N 292 4824 INSERT -35 3014 ome.model.core.PlaneInfo \N 292 4825 INSERT -35 3015 ome.model.core.PlaneInfo \N 292 4826 INSERT -35 3016 ome.model.core.PlaneInfo \N 292 4827 INSERT -35 3017 ome.model.core.PlaneInfo \N 292 4828 INSERT -35 3018 ome.model.core.PlaneInfo \N 292 4829 INSERT -35 3019 ome.model.core.PlaneInfo \N 292 4830 INSERT -35 3020 ome.model.core.PlaneInfo \N 292 4831 INSERT -35 3021 ome.model.core.PlaneInfo \N 292 4832 INSERT -35 3022 ome.model.core.PlaneInfo \N 292 4833 INSERT -35 3023 ome.model.core.PlaneInfo \N 292 4834 INSERT -35 3024 ome.model.core.PlaneInfo \N 292 4835 INSERT -35 3025 ome.model.core.PlaneInfo \N 292 4836 INSERT -35 3026 ome.model.core.PlaneInfo \N 292 4837 INSERT -35 3027 ome.model.core.PlaneInfo \N 292 4838 INSERT -35 3028 ome.model.core.PlaneInfo \N 292 4839 INSERT -35 3029 ome.model.core.PlaneInfo \N 292 4840 INSERT -35 3030 ome.model.core.PlaneInfo \N 292 4841 INSERT -35 3031 ome.model.core.PlaneInfo \N 292 4842 INSERT -35 3032 ome.model.core.PlaneInfo \N 292 4843 INSERT -35 3033 ome.model.core.PlaneInfo \N 292 4844 INSERT -35 3034 ome.model.core.PlaneInfo \N 292 4845 INSERT -35 3035 ome.model.core.PlaneInfo \N 292 4846 INSERT -35 3036 ome.model.core.PlaneInfo \N 292 4847 INSERT -35 3037 ome.model.core.PlaneInfo \N 292 4848 INSERT -35 3038 ome.model.core.PlaneInfo \N 292 4849 INSERT -35 3039 ome.model.core.PlaneInfo \N 292 4850 INSERT -35 3040 ome.model.core.PlaneInfo \N 292 4851 INSERT -35 3041 ome.model.core.PlaneInfo \N 292 4852 INSERT -35 3042 ome.model.core.PlaneInfo \N 292 4853 INSERT -35 3043 ome.model.core.PlaneInfo \N 292 4854 INSERT -35 3044 ome.model.core.PlaneInfo \N 292 4856 INSERT -35 3046 ome.model.core.PlaneInfo \N 292 4857 INSERT -35 3047 ome.model.core.PlaneInfo \N 292 4858 INSERT -35 3048 ome.model.core.PlaneInfo \N 292 4859 INSERT -35 3049 ome.model.core.PlaneInfo \N 292 4860 INSERT -35 3050 ome.model.core.PlaneInfo \N 292 4861 INSERT -35 3051 ome.model.core.PlaneInfo \N 292 4862 INSERT -35 3052 ome.model.core.PlaneInfo \N 292 4863 INSERT -35 3053 ome.model.core.PlaneInfo \N 292 4864 INSERT -35 3054 ome.model.core.PlaneInfo \N 292 4865 INSERT -35 3055 ome.model.core.PlaneInfo \N 292 4866 INSERT -35 3056 ome.model.core.PlaneInfo \N 292 4867 INSERT -35 3057 ome.model.core.PlaneInfo \N 292 4868 INSERT -35 3058 ome.model.core.PlaneInfo \N 292 4869 INSERT -35 3059 ome.model.core.PlaneInfo \N 292 4870 INSERT -35 3060 ome.model.core.PlaneInfo \N 292 4871 INSERT -35 3061 ome.model.core.PlaneInfo \N 292 4872 INSERT -35 3062 ome.model.core.PlaneInfo \N 292 4873 INSERT -35 3063 ome.model.core.PlaneInfo \N 292 4874 INSERT -35 3064 ome.model.core.PlaneInfo \N 292 4875 INSERT -35 3065 ome.model.core.PlaneInfo \N 292 4876 INSERT -35 3066 ome.model.core.PlaneInfo \N 292 4877 INSERT -35 3067 ome.model.core.PlaneInfo \N 292 4878 INSERT -35 3068 ome.model.core.PlaneInfo \N 292 4879 INSERT -35 3069 ome.model.core.PlaneInfo \N 292 4880 INSERT -35 37 ome.model.acquisition.Microscope \N 292 4881 INSERT -35 37 ome.model.acquisition.Instrument \N 292 4882 INSERT -35 90 ome.model.acquisition.Detector \N 292 4883 INSERT -35 91 ome.model.acquisition.Detector \N 292 4884 INSERT -35 109 ome.model.acquisition.TransmittanceRange \N 292 4885 INSERT -35 109 ome.model.acquisition.Filter \N 292 4886 INSERT -35 110 ome.model.acquisition.TransmittanceRange \N 292 4887 INSERT -35 110 ome.model.acquisition.Filter \N 292 4888 INSERT -35 111 ome.model.acquisition.TransmittanceRange \N 292 4889 INSERT -35 111 ome.model.acquisition.Filter \N 292 4890 INSERT -35 217 ome.model.acquisition.Laser \N 292 4891 INSERT -35 218 ome.model.acquisition.Laser \N 292 4892 INSERT -35 219 ome.model.acquisition.Laser \N 292 4893 INSERT -35 220 ome.model.acquisition.Laser \N 292 4894 INSERT -35 221 ome.model.acquisition.Laser \N 292 4895 INSERT -35 222 ome.model.acquisition.Laser \N 292 4896 INSERT -35 37 ome.model.acquisition.Objective \N 292 4897 INSERT -35 37 ome.model.acquisition.ObjectiveSettings \N 292 4898 INSERT -35 37 ome.model.core.Image \N 292 4899 INSERT -35 52 ome.model.core.OriginalFile \N 292 4900 INSERT -35 37 ome.model.annotations.FileAnnotation \N 292 4901 INSERT -35 37 ome.model.annotations.ImageAnnotationLink \N 292 4902 INSERT -35 37 ome.model.containers.DatasetImageLink \N 292 4903 INSERT -35 37 ome.model.core.Pixels \N 292 4904 INSERT -35 90 ome.model.acquisition.DetectorSettings \N 292 4905 INSERT -35 73 ome.model.acquisition.LightPath \N 292 4906 INSERT -35 73 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4907 INSERT -35 68 ome.model.acquisition.LightSettings \N 292 4908 INSERT -35 90 ome.model.core.LogicalChannel \N 292 4909 INSERT -35 90 ome.model.core.Channel \N 292 4910 INSERT -35 91 ome.model.acquisition.DetectorSettings \N 292 4911 INSERT -35 74 ome.model.acquisition.LightPath \N 292 4912 INSERT -35 74 ome.model.acquisition.LightPathEmissionFilterLink \N 292 4913 INSERT -35 69 ome.model.acquisition.LightSettings \N 292 4914 INSERT -35 91 ome.model.core.LogicalChannel \N 292 4915 INSERT -35 91 ome.model.core.Channel \N 292 4916 INSERT -35 3070 ome.model.core.PlaneInfo \N 292 4917 INSERT -35 3071 ome.model.core.PlaneInfo \N 292 4918 INSERT -35 3072 ome.model.core.PlaneInfo \N 292 4919 INSERT -35 3073 ome.model.core.PlaneInfo \N 292 4920 INSERT -35 3074 ome.model.core.PlaneInfo \N 292 4921 INSERT -35 3075 ome.model.core.PlaneInfo \N 292 4922 INSERT -35 3076 ome.model.core.PlaneInfo \N 292 4923 INSERT -35 3077 ome.model.core.PlaneInfo \N 292 4924 INSERT -35 3078 ome.model.core.PlaneInfo \N 292 4925 INSERT -35 3079 ome.model.core.PlaneInfo \N 292 4926 INSERT -35 3080 ome.model.core.PlaneInfo \N 292 4927 INSERT -35 3081 ome.model.core.PlaneInfo \N 292 4928 INSERT -35 3082 ome.model.core.PlaneInfo \N 292 4929 INSERT -35 3083 ome.model.core.PlaneInfo \N 292 4930 INSERT -35 3084 ome.model.core.PlaneInfo \N 292 4931 INSERT -35 3085 ome.model.core.PlaneInfo \N 292 4932 INSERT -35 3086 ome.model.core.PlaneInfo \N 292 4933 INSERT -35 3087 ome.model.core.PlaneInfo \N 292 4934 INSERT -35 3088 ome.model.core.PlaneInfo \N 292 4935 INSERT -35 3089 ome.model.core.PlaneInfo \N 292 4936 INSERT -35 3090 ome.model.core.PlaneInfo \N 292 4937 INSERT -35 3091 ome.model.core.PlaneInfo \N 292 4938 INSERT -35 3092 ome.model.core.PlaneInfo \N 292 4939 INSERT -35 3093 ome.model.core.PlaneInfo \N 292 4940 INSERT -35 3094 ome.model.core.PlaneInfo \N 292 4941 INSERT -35 3095 ome.model.core.PlaneInfo \N 292 4942 INSERT -35 3096 ome.model.core.PlaneInfo \N 292 4943 INSERT -35 3097 ome.model.core.PlaneInfo \N 292 4944 INSERT -35 3098 ome.model.core.PlaneInfo \N 292 4945 INSERT -35 3099 ome.model.core.PlaneInfo \N 292 4946 INSERT -35 3100 ome.model.core.PlaneInfo \N 292 4947 INSERT -35 3101 ome.model.core.PlaneInfo \N 292 4948 INSERT -35 3102 ome.model.core.PlaneInfo \N 292 4949 INSERT -35 3103 ome.model.core.PlaneInfo \N 292 4950 INSERT -35 3104 ome.model.core.PlaneInfo \N 292 4951 INSERT -35 3105 ome.model.core.PlaneInfo \N 292 4952 INSERT -35 3106 ome.model.core.PlaneInfo \N 292 4953 INSERT -35 3107 ome.model.core.PlaneInfo \N 292 4954 INSERT -35 3108 ome.model.core.PlaneInfo \N 292 4955 INSERT -35 3109 ome.model.core.PlaneInfo \N 292 4956 INSERT -35 3110 ome.model.core.PlaneInfo \N 292 4957 INSERT -35 3111 ome.model.core.PlaneInfo \N 292 4958 INSERT -35 3112 ome.model.core.PlaneInfo \N 292 4959 INSERT -35 3113 ome.model.core.PlaneInfo \N 292 4960 INSERT -35 3114 ome.model.core.PlaneInfo \N 292 4961 INSERT -35 3115 ome.model.core.PlaneInfo \N 292 4962 INSERT -35 3116 ome.model.core.PlaneInfo \N 292 4963 INSERT -35 3117 ome.model.core.PlaneInfo \N 292 4964 INSERT -35 3118 ome.model.core.PlaneInfo \N 292 4965 INSERT -35 3119 ome.model.core.PlaneInfo \N 292 4966 INSERT -35 3120 ome.model.core.PlaneInfo \N 292 4967 INSERT -35 3121 ome.model.core.PlaneInfo \N 292 4968 INSERT -35 3122 ome.model.core.PlaneInfo \N 292 4969 INSERT -35 3123 ome.model.core.PlaneInfo \N 292 4970 INSERT -35 3124 ome.model.core.PlaneInfo \N 292 4971 INSERT -35 3125 ome.model.core.PlaneInfo \N 292 4972 INSERT -35 3126 ome.model.core.PlaneInfo \N 292 4973 INSERT -35 3127 ome.model.core.PlaneInfo \N 292 4974 INSERT -35 3128 ome.model.core.PlaneInfo \N 292 4975 INSERT -35 3129 ome.model.core.PlaneInfo \N 292 4976 INSERT -35 3130 ome.model.core.PlaneInfo \N 292 4977 INSERT -35 3131 ome.model.core.PlaneInfo \N 292 4978 INSERT -35 3132 ome.model.core.PlaneInfo \N 292 4979 INSERT -35 3133 ome.model.core.PlaneInfo \N 292 4980 INSERT -35 3134 ome.model.core.PlaneInfo \N 292 4981 INSERT -35 3135 ome.model.core.PlaneInfo \N 292 4982 INSERT -35 3136 ome.model.core.PlaneInfo \N 292 4983 INSERT -35 3137 ome.model.core.PlaneInfo \N 292 4984 INSERT -35 3138 ome.model.core.PlaneInfo \N 292 4985 INSERT -35 3139 ome.model.core.PlaneInfo \N 292 4986 INSERT -35 3140 ome.model.core.PlaneInfo \N 292 4987 INSERT -35 3141 ome.model.core.PlaneInfo \N 292 4988 INSERT -35 3142 ome.model.core.PlaneInfo \N 292 4989 INSERT -35 3143 ome.model.core.PlaneInfo \N 292 4990 INSERT -35 3144 ome.model.core.PlaneInfo \N 292 4991 INSERT -35 3145 ome.model.core.PlaneInfo \N 292 4992 INSERT -35 3146 ome.model.core.PlaneInfo \N 292 4993 INSERT -35 3147 ome.model.core.PlaneInfo \N 292 4994 INSERT -35 3148 ome.model.core.PlaneInfo \N 292 4995 INSERT -35 3149 ome.model.core.PlaneInfo \N 292 4996 INSERT -35 3150 ome.model.core.PlaneInfo \N 292 4997 INSERT -35 3151 ome.model.core.PlaneInfo \N 292 4998 INSERT -35 29 ome.model.display.QuantumDef \N 306 4999 INSERT -35 29 ome.model.display.RenderingDef \N 306 5000 INSERT -35 71 ome.model.display.ChannelBinding \N 306 5001 INSERT -35 72 ome.model.display.ChannelBinding \N 306 5002 INSERT -35 73 ome.model.display.ChannelBinding \N 306 5003 UPDATE -35 37 ome.model.core.Pixels \N 430 5004 UPDATE -35 29 ome.model.core.Pixels \N 432 5005 UPDATE -35 30 ome.model.core.Pixels \N 432 5006 UPDATE -35 31 ome.model.core.Pixels \N 432 5007 UPDATE -35 32 ome.model.core.Pixels \N 432 5008 UPDATE -35 33 ome.model.core.Pixels \N 432 5009 UPDATE -35 34 ome.model.core.Pixels \N 432 5010 UPDATE -35 35 ome.model.core.Pixels \N 432 5011 UPDATE -35 36 ome.model.core.Pixels \N 432 5012 UPDATE -35 37 ome.model.core.Pixels \N 432 5013 INSERT -35 71 ome.model.stats.StatsInfo \N 434 5014 INSERT -35 72 ome.model.stats.StatsInfo \N 434 5015 INSERT -35 73 ome.model.stats.StatsInfo \N 434 5016 INSERT -35 74 ome.model.stats.StatsInfo \N 434 5017 INSERT -35 75 ome.model.stats.StatsInfo \N 434 5018 INSERT -35 76 ome.model.stats.StatsInfo \N 434 5019 INSERT -35 77 ome.model.stats.StatsInfo \N 434 5020 INSERT -35 78 ome.model.stats.StatsInfo \N 434 5021 INSERT -35 79 ome.model.stats.StatsInfo \N 434 5022 INSERT -35 80 ome.model.stats.StatsInfo \N 434 5023 INSERT -35 81 ome.model.stats.StatsInfo \N 434 5024 INSERT -35 82 ome.model.stats.StatsInfo \N 434 5025 INSERT -35 83 ome.model.stats.StatsInfo \N 434 5026 INSERT -35 84 ome.model.stats.StatsInfo \N 434 5027 INSERT -35 85 ome.model.stats.StatsInfo \N 434 5028 INSERT -35 86 ome.model.stats.StatsInfo \N 434 5029 INSERT -35 87 ome.model.stats.StatsInfo \N 434 5030 INSERT -35 88 ome.model.stats.StatsInfo \N 434 5031 INSERT -35 89 ome.model.stats.StatsInfo \N 434 5032 INSERT -35 90 ome.model.stats.StatsInfo \N 434 5033 INSERT -35 91 ome.model.stats.StatsInfo \N 434 5034 UPDATE -35 71 ome.model.core.Channel \N 434 5035 UPDATE -35 72 ome.model.core.Channel \N 434 5036 UPDATE -35 73 ome.model.core.Channel \N 434 5037 UPDATE -35 74 ome.model.core.Channel \N 434 5038 UPDATE -35 75 ome.model.core.Channel \N 434 5039 UPDATE -35 76 ome.model.core.Channel \N 434 5040 UPDATE -35 77 ome.model.core.Channel \N 434 5041 UPDATE -35 78 ome.model.core.Channel \N 434 5042 UPDATE -35 79 ome.model.core.Channel \N 434 5043 UPDATE -35 80 ome.model.core.Channel \N 434 5044 UPDATE -35 81 ome.model.core.Channel \N 434 5045 UPDATE -35 82 ome.model.core.Channel \N 434 5046 UPDATE -35 83 ome.model.core.Channel \N 434 5047 UPDATE -35 84 ome.model.core.Channel \N 434 5048 UPDATE -35 85 ome.model.core.Channel \N 434 5049 UPDATE -35 86 ome.model.core.Channel \N 434 5050 UPDATE -35 87 ome.model.core.Channel \N 434 5051 UPDATE -35 88 ome.model.core.Channel \N 434 5052 UPDATE -35 89 ome.model.core.Channel \N 434 5053 UPDATE -35 90 ome.model.core.Channel \N 434 5054 UPDATE -35 91 ome.model.core.Channel \N 434 5055 INSERT -35 30 ome.model.display.QuantumDef \N 436 5056 INSERT -35 30 ome.model.display.RenderingDef \N 436 5057 INSERT -35 74 ome.model.display.ChannelBinding \N 436 5058 INSERT -35 75 ome.model.display.ChannelBinding \N 436 5059 INSERT -35 76 ome.model.display.ChannelBinding \N 436 5060 INSERT -35 31 ome.model.display.QuantumDef \N 436 5061 INSERT -35 31 ome.model.display.RenderingDef \N 436 5062 INSERT -35 77 ome.model.display.ChannelBinding \N 436 5063 INSERT -35 78 ome.model.display.ChannelBinding \N 436 5064 INSERT -35 32 ome.model.display.QuantumDef \N 436 5065 INSERT -35 32 ome.model.display.RenderingDef \N 436 5066 INSERT -35 79 ome.model.display.ChannelBinding \N 436 5067 INSERT -35 80 ome.model.display.ChannelBinding \N 436 5068 INSERT -35 81 ome.model.display.ChannelBinding \N 436 5069 INSERT -35 33 ome.model.display.QuantumDef \N 436 5070 INSERT -35 33 ome.model.display.RenderingDef \N 436 5071 INSERT -35 82 ome.model.display.ChannelBinding \N 436 5072 INSERT -35 83 ome.model.display.ChannelBinding \N 436 5073 INSERT -35 34 ome.model.display.QuantumDef \N 436 5074 INSERT -35 34 ome.model.display.RenderingDef \N 436 5075 INSERT -35 84 ome.model.display.ChannelBinding \N 436 5076 INSERT -35 85 ome.model.display.ChannelBinding \N 436 5077 INSERT -35 35 ome.model.display.QuantumDef \N 436 5078 INSERT -35 35 ome.model.display.RenderingDef \N 436 5079 INSERT -35 86 ome.model.display.ChannelBinding \N 436 5080 INSERT -35 87 ome.model.display.ChannelBinding \N 436 5081 INSERT -35 36 ome.model.display.QuantumDef \N 436 5082 INSERT -35 36 ome.model.display.RenderingDef \N 436 5083 INSERT -35 88 ome.model.display.ChannelBinding \N 436 5084 INSERT -35 89 ome.model.display.ChannelBinding \N 436 5085 INSERT -35 37 ome.model.display.QuantumDef \N 436 5086 INSERT -35 37 ome.model.display.RenderingDef \N 436 5087 INSERT -35 90 ome.model.display.ChannelBinding \N 436 5088 INSERT -35 91 ome.model.display.ChannelBinding \N 436 5089 UPDATE -35 29 ome.model.display.RenderingDef \N 436 5090 UPDATE -35 71 ome.model.display.ChannelBinding \N 436 5091 UPDATE -35 72 ome.model.display.ChannelBinding \N 436 5092 UPDATE -35 73 ome.model.display.ChannelBinding \N 436 5093 INSERT -35 29 ome.model.display.Thumbnail \N 437 5094 INSERT -35 30 ome.model.display.Thumbnail \N 437 5095 INSERT -35 31 ome.model.display.Thumbnail \N 437 5096 INSERT -35 32 ome.model.display.Thumbnail \N 437 5097 INSERT -35 33 ome.model.display.Thumbnail \N 437 5098 INSERT -35 34 ome.model.display.Thumbnail \N 437 5099 INSERT -35 35 ome.model.display.Thumbnail \N 437 5100 INSERT -35 36 ome.model.display.Thumbnail \N 437 5101 INSERT -35 37 ome.model.display.Thumbnail \N 437 5102 UPDATE -35 52 ome.model.core.OriginalFile \N 439 5103 REINDEX -52 32 ome.model.core.Image \N 714 5104 REINDEX -52 33 ome.model.core.Image \N 715 5105 REINDEX -52 34 ome.model.core.Image \N 716 5106 REINDEX -52 35 ome.model.core.Image \N 718 5107 REINDEX -52 36 ome.model.core.Image \N 719 5108 REINDEX -52 37 ome.model.core.Image \N 720 5109 REINDEX -52 21 ome.model.core.Image \N 730 5110 REINDEX -52 22 ome.model.core.Image \N 731 5111 REINDEX -52 23 ome.model.core.Image \N 732 5112 REINDEX -52 24 ome.model.core.Image \N 733 5113 REINDEX -52 25 ome.model.core.Image \N 734 5114 REINDEX -52 26 ome.model.core.Image \N 735 5115 REINDEX -52 27 ome.model.core.Image \N 736 5116 REINDEX -52 28 ome.model.core.Image \N 737 5117 REINDEX -52 13 ome.model.core.Image \N 746 5118 REINDEX -52 14 ome.model.core.Image \N 747 5119 REINDEX -52 15 ome.model.core.Image \N 748 5120 REINDEX -52 16 ome.model.core.Image \N 749 5121 REINDEX -52 17 ome.model.core.Image \N 750 5122 REINDEX -52 18 ome.model.core.Image \N 752 5123 REINDEX -52 10 ome.model.core.Image \N 764 5124 REINDEX -52 9 ome.model.core.Image \N 765 5125 REINDEX -52 8 ome.model.core.Image \N 766 5126 REINDEX -52 7 ome.model.core.Image \N 767 5127 REINDEX -52 6 ome.model.core.Image \N 768 5128 REINDEX -52 5 ome.model.core.Image \N 769 5129 REINDEX -52 4 ome.model.core.Image \N 770 5130 REINDEX -52 3 ome.model.core.Image \N 771 5131 REINDEX -52 2 ome.model.core.Image \N 772 5132 REINDEX -52 1 ome.model.core.Image \N 773 5133 INSERT -35 164 ome.model.meta.Session \N 775 5134 INSERT -35 165 ome.model.meta.Session \N 777 5135 INSERT -35 166 ome.model.meta.Session \N 779 5136 INSERT -35 167 ome.model.meta.Session \N 781 5137 INSERT -35 168 ome.model.meta.Session \N 783 5138 INSERT -35 38 ome.model.display.QuantumDef \N 790 5139 INSERT -35 38 ome.model.display.RenderingDef \N 790 5140 INSERT -35 92 ome.model.display.ChannelBinding \N 790 5141 INSERT -35 93 ome.model.display.ChannelBinding \N 790 5142 INSERT -35 39 ome.model.display.QuantumDef \N 793 5143 INSERT -35 39 ome.model.display.RenderingDef \N 793 5144 INSERT -35 94 ome.model.display.ChannelBinding \N 793 5145 INSERT -35 95 ome.model.display.ChannelBinding \N 793 5150 INSERT -35 41 ome.model.display.QuantumDef \N 792 5146 INSERT -35 40 ome.model.display.QuantumDef \N 791 5151 INSERT -35 41 ome.model.display.RenderingDef \N 792 5152 INSERT -35 98 ome.model.display.ChannelBinding \N 792 5153 INSERT -35 99 ome.model.display.ChannelBinding \N 792 5154 INSERT -35 101 ome.model.display.ChannelBinding \N 792 5147 INSERT -35 40 ome.model.display.RenderingDef \N 791 5148 INSERT -35 96 ome.model.display.ChannelBinding \N 791 5149 INSERT -35 97 ome.model.display.ChannelBinding \N 791 5155 INSERT -35 42 ome.model.display.QuantumDef \N 794 5156 INSERT -35 42 ome.model.display.RenderingDef \N 794 5157 INSERT -35 100 ome.model.display.ChannelBinding \N 794 5158 INSERT -35 102 ome.model.display.ChannelBinding \N 794 5159 INSERT -35 103 ome.model.display.ChannelBinding \N 794 5160 INSERT -35 43 ome.model.display.QuantumDef \N 802 5161 INSERT -35 43 ome.model.display.RenderingDef \N 802 5162 INSERT -35 104 ome.model.display.ChannelBinding \N 802 5163 INSERT -35 105 ome.model.display.ChannelBinding \N 802 5164 INSERT -35 106 ome.model.display.ChannelBinding \N 802 5165 INSERT -35 44 ome.model.display.QuantumDef \N 803 5166 INSERT -35 44 ome.model.display.RenderingDef \N 803 5167 INSERT -35 107 ome.model.display.ChannelBinding \N 803 5168 INSERT -35 108 ome.model.display.ChannelBinding \N 803 5169 INSERT -35 38 ome.model.annotations.CommentAnnotation \N 811 5170 INSERT -35 38 ome.model.annotations.ImageAnnotationLink \N 812 5171 INSERT -35 169 ome.model.meta.Session \N 813 5172 UPDATE -35 12 ome.model.display.RenderingDef \N 826 5173 UPDATE -35 12 ome.model.display.QuantumDef \N 826 5174 UPDATE -35 29 ome.model.display.ChannelBinding \N 826 5175 UPDATE -35 30 ome.model.display.ChannelBinding \N 826 5176 UPDATE -35 14 ome.model.display.Thumbnail \N 828 5177 INSERT -35 170 ome.model.meta.Session \N 831 5178 INSERT -35 171 ome.model.meta.Session \N 833 5179 INSERT -35 3 ome.model.containers.Dataset \N 854 5180 INSERT -35 3 ome.model.containers.ProjectDatasetLink \N 854 5181 UPDATE -35 19 ome.model.containers.DatasetImageLink \N 858 5182 UPDATE -35 20 ome.model.containers.DatasetImageLink \N 859 5183 UPDATE -35 29 ome.model.containers.DatasetImageLink \N 860 5184 UPDATE -35 30 ome.model.containers.DatasetImageLink \N 861 5185 UPDATE -35 31 ome.model.containers.DatasetImageLink \N 862 5186 UPDATE -35 2 ome.model.containers.Dataset \N 864 5187 UPDATE -35 3 ome.model.containers.Dataset \N 867 5188 UPDATE -35 3 ome.model.containers.Dataset \N 870 5189 UPDATE -35 19 ome.model.core.Image \N 872 5190 UPDATE -35 20 ome.model.core.Image \N 874 5191 UPDATE -35 20 ome.model.core.Image \N 879 5192 UPDATE -35 20 ome.model.core.Image \N 882 5193 UPDATE -35 19 ome.model.core.Image \N 884 5194 INSERT -35 172 ome.model.meta.Session \N 893 5195 INSERT -35 173 ome.model.meta.Session \N 895 5196 INSERT -35 174 ome.model.meta.Session \N 897 5197 INSERT -35 175 ome.model.meta.Session \N 899 5198 INSERT -35 176 ome.model.meta.Session \N 901 5199 INSERT -35 177 ome.model.meta.Session \N 903 5200 INSERT -35 178 ome.model.meta.Session \N 904 5201 INSERT -35 179 ome.model.meta.Session \N 906 5202 INSERT -35 180 ome.model.meta.Session \N 908 5203 INSERT -35 181 ome.model.meta.Session \N 910 5204 INSERT -35 1 ome.model.jobs.ParseJob \N 978 5205 INSERT -35 1 ome.model.jobs.JobOriginalFileLink \N 978 5206 INSERT -35 182 ome.model.meta.Session \N 979 5207 UPDATE -35 182 ome.model.meta.Session \N 981 5208 UPDATE -35 1 ome.model.jobs.ParseJob \N 982 5209 UPDATE -35 1 ome.model.jobs.ParseJob \N 983 5210 INSERT -35 53 ome.model.core.OriginalFile \N 984 5211 INSERT -35 2 ome.model.jobs.JobOriginalFileLink \N 986 5212 UPDATE -35 1 ome.model.jobs.ParseJob \N 987 5213 INSERT -35 183 ome.model.meta.Session \N 996 5214 INSERT -35 184 ome.model.meta.Session \N 998 5215 INSERT -35 185 ome.model.meta.Session \N 1000 5216 INSERT -35 186 ome.model.meta.Session \N 1001 5217 INSERT -35 187 ome.model.meta.Session \N 1003 5218 INSERT -35 5 ome.model.meta.Experimenter \N 1019 5219 INSERT -35 10 ome.model.meta.GroupExperimenterMap \N 1019 5220 INSERT -35 11 ome.model.meta.GroupExperimenterMap \N 1019 5221 INSERT -35 188 ome.model.meta.Session \N 1031 5222 INSERT -35 189 ome.model.meta.Session \N 1033 5223 INSERT -35 190 ome.model.meta.Session \N 1035 5224 INSERT -35 191 ome.model.meta.Session \N 1038 5225 INSERT -35 192 ome.model.meta.Session \N 1040 5226 INSERT -35 193 ome.model.meta.Session \N 1042 5227 INSERT -35 2 ome.model.containers.Project \N 1045 5228 INSERT -35 4 ome.model.containers.Dataset \N 1046 5229 INSERT -35 4 ome.model.containers.ProjectDatasetLink \N 1046 5230 INSERT -35 5 ome.model.containers.Dataset \N 1047 5231 INSERT -35 5 ome.model.containers.ProjectDatasetLink \N 1047 5232 INSERT -35 6 ome.model.containers.Dataset \N 1048 5233 INSERT -35 6 ome.model.containers.ProjectDatasetLink \N 1048 5234 INSERT -35 38 ome.model.acquisition.Microscope \N 1055 5235 INSERT -35 38 ome.model.acquisition.Instrument \N 1055 5236 INSERT -35 92 ome.model.acquisition.Detector \N 1055 5237 INSERT -35 93 ome.model.acquisition.Detector \N 1055 5238 INSERT -35 112 ome.model.acquisition.TransmittanceRange \N 1055 5239 INSERT -35 112 ome.model.acquisition.Filter \N 1055 5240 INSERT -35 113 ome.model.acquisition.TransmittanceRange \N 1055 5241 INSERT -35 113 ome.model.acquisition.Filter \N 1055 5242 INSERT -35 114 ome.model.acquisition.TransmittanceRange \N 1055 5243 INSERT -35 114 ome.model.acquisition.Filter \N 1055 5244 INSERT -35 223 ome.model.acquisition.Laser \N 1055 5245 INSERT -35 224 ome.model.acquisition.Laser \N 1055 5246 INSERT -35 225 ome.model.acquisition.Laser \N 1055 5247 INSERT -35 226 ome.model.acquisition.Laser \N 1055 5248 INSERT -35 227 ome.model.acquisition.Laser \N 1055 5249 INSERT -35 228 ome.model.acquisition.Laser \N 1055 5250 INSERT -35 38 ome.model.acquisition.Objective \N 1055 5251 INSERT -35 38 ome.model.acquisition.ObjectiveSettings \N 1055 5252 INSERT -35 38 ome.model.core.Image \N 1055 5253 INSERT -35 54 ome.model.core.OriginalFile \N 1055 5254 INSERT -35 39 ome.model.annotations.FileAnnotation \N 1055 5255 INSERT -35 39 ome.model.annotations.ImageAnnotationLink \N 1055 5256 INSERT -35 38 ome.model.containers.DatasetImageLink \N 1055 5257 INSERT -35 38 ome.model.core.Pixels \N 1055 5258 INSERT -35 92 ome.model.acquisition.DetectorSettings \N 1055 5259 INSERT -35 75 ome.model.acquisition.LightPath \N 1055 5260 INSERT -35 75 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5261 INSERT -35 70 ome.model.acquisition.LightSettings \N 1055 5262 INSERT -35 92 ome.model.core.LogicalChannel \N 1055 5263 INSERT -35 92 ome.model.core.Channel \N 1055 5264 INSERT -35 93 ome.model.acquisition.DetectorSettings \N 1055 5265 INSERT -35 76 ome.model.acquisition.LightPath \N 1055 5266 INSERT -35 76 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5267 INSERT -35 71 ome.model.acquisition.LightSettings \N 1055 5268 INSERT -35 93 ome.model.core.LogicalChannel \N 1055 5269 INSERT -35 93 ome.model.core.Channel \N 1055 5270 INSERT -35 3152 ome.model.core.PlaneInfo \N 1055 5271 INSERT -35 3153 ome.model.core.PlaneInfo \N 1055 5272 INSERT -35 3154 ome.model.core.PlaneInfo \N 1055 5273 INSERT -35 3155 ome.model.core.PlaneInfo \N 1055 5274 INSERT -35 3156 ome.model.core.PlaneInfo \N 1055 5275 INSERT -35 3157 ome.model.core.PlaneInfo \N 1055 5276 INSERT -35 3158 ome.model.core.PlaneInfo \N 1055 5277 INSERT -35 3159 ome.model.core.PlaneInfo \N 1055 5278 INSERT -35 3160 ome.model.core.PlaneInfo \N 1055 5279 INSERT -35 3161 ome.model.core.PlaneInfo \N 1055 5280 INSERT -35 3162 ome.model.core.PlaneInfo \N 1055 5281 INSERT -35 3163 ome.model.core.PlaneInfo \N 1055 5282 INSERT -35 3164 ome.model.core.PlaneInfo \N 1055 5283 INSERT -35 3165 ome.model.core.PlaneInfo \N 1055 5284 INSERT -35 3166 ome.model.core.PlaneInfo \N 1055 5285 INSERT -35 3167 ome.model.core.PlaneInfo \N 1055 5286 INSERT -35 3168 ome.model.core.PlaneInfo \N 1055 5287 INSERT -35 3169 ome.model.core.PlaneInfo \N 1055 5288 INSERT -35 3170 ome.model.core.PlaneInfo \N 1055 5289 INSERT -35 3171 ome.model.core.PlaneInfo \N 1055 5290 INSERT -35 3172 ome.model.core.PlaneInfo \N 1055 5291 INSERT -35 3173 ome.model.core.PlaneInfo \N 1055 5292 INSERT -35 3174 ome.model.core.PlaneInfo \N 1055 5293 INSERT -35 3175 ome.model.core.PlaneInfo \N 1055 5294 INSERT -35 3176 ome.model.core.PlaneInfo \N 1055 5295 INSERT -35 3177 ome.model.core.PlaneInfo \N 1055 5296 INSERT -35 3178 ome.model.core.PlaneInfo \N 1055 5297 INSERT -35 3179 ome.model.core.PlaneInfo \N 1055 5298 INSERT -35 3180 ome.model.core.PlaneInfo \N 1055 5299 INSERT -35 3181 ome.model.core.PlaneInfo \N 1055 5300 INSERT -35 3182 ome.model.core.PlaneInfo \N 1055 5301 INSERT -35 3183 ome.model.core.PlaneInfo \N 1055 5302 INSERT -35 3184 ome.model.core.PlaneInfo \N 1055 5303 INSERT -35 3185 ome.model.core.PlaneInfo \N 1055 5304 INSERT -35 3186 ome.model.core.PlaneInfo \N 1055 5305 INSERT -35 3187 ome.model.core.PlaneInfo \N 1055 5306 INSERT -35 3188 ome.model.core.PlaneInfo \N 1055 5307 INSERT -35 3189 ome.model.core.PlaneInfo \N 1055 5308 INSERT -35 3190 ome.model.core.PlaneInfo \N 1055 5309 INSERT -35 3191 ome.model.core.PlaneInfo \N 1055 5310 INSERT -35 3192 ome.model.core.PlaneInfo \N 1055 5311 INSERT -35 3193 ome.model.core.PlaneInfo \N 1055 5312 INSERT -35 3194 ome.model.core.PlaneInfo \N 1055 5313 INSERT -35 3195 ome.model.core.PlaneInfo \N 1055 5314 INSERT -35 3196 ome.model.core.PlaneInfo \N 1055 5315 INSERT -35 3197 ome.model.core.PlaneInfo \N 1055 5316 INSERT -35 3198 ome.model.core.PlaneInfo \N 1055 5317 INSERT -35 3199 ome.model.core.PlaneInfo \N 1055 5318 INSERT -35 3200 ome.model.core.PlaneInfo \N 1055 5319 INSERT -35 3201 ome.model.core.PlaneInfo \N 1055 5320 INSERT -35 3202 ome.model.core.PlaneInfo \N 1055 5321 INSERT -35 3203 ome.model.core.PlaneInfo \N 1055 5322 INSERT -35 3204 ome.model.core.PlaneInfo \N 1055 5323 INSERT -35 3205 ome.model.core.PlaneInfo \N 1055 5324 INSERT -35 3206 ome.model.core.PlaneInfo \N 1055 5325 INSERT -35 3207 ome.model.core.PlaneInfo \N 1055 5326 INSERT -35 3208 ome.model.core.PlaneInfo \N 1055 5327 INSERT -35 3209 ome.model.core.PlaneInfo \N 1055 5328 INSERT -35 3210 ome.model.core.PlaneInfo \N 1055 5329 INSERT -35 3211 ome.model.core.PlaneInfo \N 1055 5330 INSERT -35 3212 ome.model.core.PlaneInfo \N 1055 5331 INSERT -35 3213 ome.model.core.PlaneInfo \N 1055 5332 INSERT -35 3214 ome.model.core.PlaneInfo \N 1055 5333 INSERT -35 3215 ome.model.core.PlaneInfo \N 1055 5334 INSERT -35 39 ome.model.acquisition.Microscope \N 1055 5335 INSERT -35 39 ome.model.acquisition.Instrument \N 1055 5336 INSERT -35 94 ome.model.acquisition.Detector \N 1055 5337 INSERT -35 95 ome.model.acquisition.Detector \N 1055 5338 INSERT -35 115 ome.model.acquisition.TransmittanceRange \N 1055 5339 INSERT -35 115 ome.model.acquisition.Filter \N 1055 5340 INSERT -35 116 ome.model.acquisition.TransmittanceRange \N 1055 5341 INSERT -35 116 ome.model.acquisition.Filter \N 1055 5342 INSERT -35 117 ome.model.acquisition.TransmittanceRange \N 1055 5343 INSERT -35 117 ome.model.acquisition.Filter \N 1055 5344 INSERT -35 229 ome.model.acquisition.Laser \N 1055 5345 INSERT -35 230 ome.model.acquisition.Laser \N 1055 5346 INSERT -35 231 ome.model.acquisition.Laser \N 1055 5347 INSERT -35 232 ome.model.acquisition.Laser \N 1055 5348 INSERT -35 233 ome.model.acquisition.Laser \N 1055 5349 INSERT -35 234 ome.model.acquisition.Laser \N 1055 5350 INSERT -35 39 ome.model.acquisition.Objective \N 1055 5351 INSERT -35 39 ome.model.acquisition.ObjectiveSettings \N 1055 5352 INSERT -35 39 ome.model.core.Image \N 1055 5353 INSERT -35 55 ome.model.core.OriginalFile \N 1055 5354 INSERT -35 40 ome.model.annotations.FileAnnotation \N 1055 5355 INSERT -35 40 ome.model.annotations.ImageAnnotationLink \N 1055 5356 INSERT -35 39 ome.model.containers.DatasetImageLink \N 1055 5357 INSERT -35 39 ome.model.core.Pixels \N 1055 5358 INSERT -35 94 ome.model.acquisition.DetectorSettings \N 1055 5359 INSERT -35 77 ome.model.acquisition.LightPath \N 1055 5360 INSERT -35 77 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5361 INSERT -35 72 ome.model.acquisition.LightSettings \N 1055 5362 INSERT -35 94 ome.model.core.LogicalChannel \N 1055 5363 INSERT -35 94 ome.model.core.Channel \N 1055 5364 INSERT -35 95 ome.model.acquisition.DetectorSettings \N 1055 5365 INSERT -35 78 ome.model.acquisition.LightPath \N 1055 5366 INSERT -35 78 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5367 INSERT -35 73 ome.model.acquisition.LightSettings \N 1055 5368 INSERT -35 95 ome.model.core.LogicalChannel \N 1055 5369 INSERT -35 95 ome.model.core.Channel \N 1055 5370 INSERT -35 3216 ome.model.core.PlaneInfo \N 1055 5371 INSERT -35 3217 ome.model.core.PlaneInfo \N 1055 5372 INSERT -35 3218 ome.model.core.PlaneInfo \N 1055 5373 INSERT -35 3219 ome.model.core.PlaneInfo \N 1055 5374 INSERT -35 3220 ome.model.core.PlaneInfo \N 1055 5375 INSERT -35 3221 ome.model.core.PlaneInfo \N 1055 5376 INSERT -35 3222 ome.model.core.PlaneInfo \N 1055 5377 INSERT -35 3223 ome.model.core.PlaneInfo \N 1055 5378 INSERT -35 3224 ome.model.core.PlaneInfo \N 1055 5379 INSERT -35 3225 ome.model.core.PlaneInfo \N 1055 5380 INSERT -35 3226 ome.model.core.PlaneInfo \N 1055 5381 INSERT -35 3227 ome.model.core.PlaneInfo \N 1055 5382 INSERT -35 3228 ome.model.core.PlaneInfo \N 1055 5383 INSERT -35 3229 ome.model.core.PlaneInfo \N 1055 5384 INSERT -35 3230 ome.model.core.PlaneInfo \N 1055 5385 INSERT -35 3231 ome.model.core.PlaneInfo \N 1055 5386 INSERT -35 3232 ome.model.core.PlaneInfo \N 1055 5387 INSERT -35 3233 ome.model.core.PlaneInfo \N 1055 5388 INSERT -35 3234 ome.model.core.PlaneInfo \N 1055 5389 INSERT -35 3235 ome.model.core.PlaneInfo \N 1055 5390 INSERT -35 3236 ome.model.core.PlaneInfo \N 1055 5391 INSERT -35 3237 ome.model.core.PlaneInfo \N 1055 5392 INSERT -35 3238 ome.model.core.PlaneInfo \N 1055 5393 INSERT -35 3239 ome.model.core.PlaneInfo \N 1055 5394 INSERT -35 3240 ome.model.core.PlaneInfo \N 1055 5395 INSERT -35 3241 ome.model.core.PlaneInfo \N 1055 5396 INSERT -35 3242 ome.model.core.PlaneInfo \N 1055 5397 INSERT -35 3243 ome.model.core.PlaneInfo \N 1055 5398 INSERT -35 3244 ome.model.core.PlaneInfo \N 1055 5399 INSERT -35 3245 ome.model.core.PlaneInfo \N 1055 5400 INSERT -35 3246 ome.model.core.PlaneInfo \N 1055 5401 INSERT -35 3247 ome.model.core.PlaneInfo \N 1055 5402 INSERT -35 3248 ome.model.core.PlaneInfo \N 1055 5403 INSERT -35 3249 ome.model.core.PlaneInfo \N 1055 5404 INSERT -35 3250 ome.model.core.PlaneInfo \N 1055 5405 INSERT -35 3251 ome.model.core.PlaneInfo \N 1055 5406 INSERT -35 3252 ome.model.core.PlaneInfo \N 1055 5407 INSERT -35 3253 ome.model.core.PlaneInfo \N 1055 5408 INSERT -35 3254 ome.model.core.PlaneInfo \N 1055 5409 INSERT -35 3255 ome.model.core.PlaneInfo \N 1055 5410 INSERT -35 3256 ome.model.core.PlaneInfo \N 1055 5411 INSERT -35 3257 ome.model.core.PlaneInfo \N 1055 5412 INSERT -35 3258 ome.model.core.PlaneInfo \N 1055 5413 INSERT -35 3259 ome.model.core.PlaneInfo \N 1055 5414 INSERT -35 3260 ome.model.core.PlaneInfo \N 1055 5415 INSERT -35 3261 ome.model.core.PlaneInfo \N 1055 5416 INSERT -35 3262 ome.model.core.PlaneInfo \N 1055 5417 INSERT -35 3263 ome.model.core.PlaneInfo \N 1055 5418 INSERT -35 3264 ome.model.core.PlaneInfo \N 1055 5419 INSERT -35 3265 ome.model.core.PlaneInfo \N 1055 5420 INSERT -35 3266 ome.model.core.PlaneInfo \N 1055 5421 INSERT -35 3267 ome.model.core.PlaneInfo \N 1055 5422 INSERT -35 3268 ome.model.core.PlaneInfo \N 1055 5423 INSERT -35 3269 ome.model.core.PlaneInfo \N 1055 5424 INSERT -35 3270 ome.model.core.PlaneInfo \N 1055 5425 INSERT -35 3271 ome.model.core.PlaneInfo \N 1055 5426 INSERT -35 3272 ome.model.core.PlaneInfo \N 1055 5427 INSERT -35 3273 ome.model.core.PlaneInfo \N 1055 5428 INSERT -35 3274 ome.model.core.PlaneInfo \N 1055 5429 INSERT -35 3275 ome.model.core.PlaneInfo \N 1055 5430 INSERT -35 3276 ome.model.core.PlaneInfo \N 1055 5431 INSERT -35 3277 ome.model.core.PlaneInfo \N 1055 5432 INSERT -35 3278 ome.model.core.PlaneInfo \N 1055 5433 INSERT -35 3279 ome.model.core.PlaneInfo \N 1055 5434 INSERT -35 3280 ome.model.core.PlaneInfo \N 1055 5435 INSERT -35 3281 ome.model.core.PlaneInfo \N 1055 5436 INSERT -35 40 ome.model.acquisition.Microscope \N 1055 5437 INSERT -35 40 ome.model.acquisition.Instrument \N 1055 5438 INSERT -35 96 ome.model.acquisition.Detector \N 1055 5439 INSERT -35 97 ome.model.acquisition.Detector \N 1055 5440 INSERT -35 118 ome.model.acquisition.TransmittanceRange \N 1055 5441 INSERT -35 118 ome.model.acquisition.Filter \N 1055 5442 INSERT -35 119 ome.model.acquisition.TransmittanceRange \N 1055 5443 INSERT -35 119 ome.model.acquisition.Filter \N 1055 5444 INSERT -35 120 ome.model.acquisition.TransmittanceRange \N 1055 5445 INSERT -35 120 ome.model.acquisition.Filter \N 1055 5446 INSERT -35 235 ome.model.acquisition.Laser \N 1055 5447 INSERT -35 236 ome.model.acquisition.Laser \N 1055 5448 INSERT -35 237 ome.model.acquisition.Laser \N 1055 5449 INSERT -35 238 ome.model.acquisition.Laser \N 1055 5450 INSERT -35 239 ome.model.acquisition.Laser \N 1055 5451 INSERT -35 240 ome.model.acquisition.Laser \N 1055 5452 INSERT -35 40 ome.model.acquisition.Objective \N 1055 5453 INSERT -35 40 ome.model.acquisition.ObjectiveSettings \N 1055 5454 INSERT -35 40 ome.model.core.Image \N 1055 5455 INSERT -35 56 ome.model.core.OriginalFile \N 1055 5456 INSERT -35 41 ome.model.annotations.FileAnnotation \N 1055 5457 INSERT -35 41 ome.model.annotations.ImageAnnotationLink \N 1055 5458 INSERT -35 40 ome.model.containers.DatasetImageLink \N 1055 5459 INSERT -35 40 ome.model.core.Pixels \N 1055 5460 INSERT -35 96 ome.model.acquisition.DetectorSettings \N 1055 5461 INSERT -35 79 ome.model.acquisition.LightPath \N 1055 5462 INSERT -35 79 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5463 INSERT -35 74 ome.model.acquisition.LightSettings \N 1055 5464 INSERT -35 96 ome.model.core.LogicalChannel \N 1055 5465 INSERT -35 96 ome.model.core.Channel \N 1055 5466 INSERT -35 97 ome.model.acquisition.DetectorSettings \N 1055 5467 INSERT -35 80 ome.model.acquisition.LightPath \N 1055 5468 INSERT -35 80 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5469 INSERT -35 75 ome.model.acquisition.LightSettings \N 1055 5470 INSERT -35 97 ome.model.core.LogicalChannel \N 1055 5471 INSERT -35 97 ome.model.core.Channel \N 1055 5472 INSERT -35 3282 ome.model.core.PlaneInfo \N 1055 5473 INSERT -35 3283 ome.model.core.PlaneInfo \N 1055 5474 INSERT -35 3284 ome.model.core.PlaneInfo \N 1055 5475 INSERT -35 3285 ome.model.core.PlaneInfo \N 1055 5476 INSERT -35 3286 ome.model.core.PlaneInfo \N 1055 5477 INSERT -35 3287 ome.model.core.PlaneInfo \N 1055 5478 INSERT -35 3288 ome.model.core.PlaneInfo \N 1055 5479 INSERT -35 3289 ome.model.core.PlaneInfo \N 1055 5480 INSERT -35 3290 ome.model.core.PlaneInfo \N 1055 5481 INSERT -35 3291 ome.model.core.PlaneInfo \N 1055 5482 INSERT -35 3292 ome.model.core.PlaneInfo \N 1055 5483 INSERT -35 3293 ome.model.core.PlaneInfo \N 1055 5484 INSERT -35 3294 ome.model.core.PlaneInfo \N 1055 5485 INSERT -35 3295 ome.model.core.PlaneInfo \N 1055 5486 INSERT -35 3296 ome.model.core.PlaneInfo \N 1055 5487 INSERT -35 3297 ome.model.core.PlaneInfo \N 1055 5488 INSERT -35 3298 ome.model.core.PlaneInfo \N 1055 5489 INSERT -35 3299 ome.model.core.PlaneInfo \N 1055 5490 INSERT -35 3300 ome.model.core.PlaneInfo \N 1055 5491 INSERT -35 3301 ome.model.core.PlaneInfo \N 1055 5492 INSERT -35 3302 ome.model.core.PlaneInfo \N 1055 5493 INSERT -35 3303 ome.model.core.PlaneInfo \N 1055 5494 INSERT -35 3304 ome.model.core.PlaneInfo \N 1055 5495 INSERT -35 3305 ome.model.core.PlaneInfo \N 1055 5496 INSERT -35 3306 ome.model.core.PlaneInfo \N 1055 5497 INSERT -35 3307 ome.model.core.PlaneInfo \N 1055 5498 INSERT -35 3308 ome.model.core.PlaneInfo \N 1055 5499 INSERT -35 3309 ome.model.core.PlaneInfo \N 1055 5500 INSERT -35 3310 ome.model.core.PlaneInfo \N 1055 5501 INSERT -35 3311 ome.model.core.PlaneInfo \N 1055 5502 INSERT -35 3312 ome.model.core.PlaneInfo \N 1055 5503 INSERT -35 3313 ome.model.core.PlaneInfo \N 1055 5504 INSERT -35 3314 ome.model.core.PlaneInfo \N 1055 5505 INSERT -35 3315 ome.model.core.PlaneInfo \N 1055 5506 INSERT -35 3316 ome.model.core.PlaneInfo \N 1055 5507 INSERT -35 3317 ome.model.core.PlaneInfo \N 1055 5508 INSERT -35 3318 ome.model.core.PlaneInfo \N 1055 5509 INSERT -35 3319 ome.model.core.PlaneInfo \N 1055 5510 INSERT -35 3320 ome.model.core.PlaneInfo \N 1055 5511 INSERT -35 3321 ome.model.core.PlaneInfo \N 1055 5512 INSERT -35 3322 ome.model.core.PlaneInfo \N 1055 5513 INSERT -35 3323 ome.model.core.PlaneInfo \N 1055 5514 INSERT -35 3324 ome.model.core.PlaneInfo \N 1055 5515 INSERT -35 3325 ome.model.core.PlaneInfo \N 1055 5516 INSERT -35 3326 ome.model.core.PlaneInfo \N 1055 5517 INSERT -35 3327 ome.model.core.PlaneInfo \N 1055 5518 INSERT -35 3328 ome.model.core.PlaneInfo \N 1055 5519 INSERT -35 3329 ome.model.core.PlaneInfo \N 1055 5520 INSERT -35 3330 ome.model.core.PlaneInfo \N 1055 5521 INSERT -35 3331 ome.model.core.PlaneInfo \N 1055 5522 INSERT -35 3332 ome.model.core.PlaneInfo \N 1055 5523 INSERT -35 3333 ome.model.core.PlaneInfo \N 1055 5524 INSERT -35 3334 ome.model.core.PlaneInfo \N 1055 5525 INSERT -35 3335 ome.model.core.PlaneInfo \N 1055 5526 INSERT -35 3336 ome.model.core.PlaneInfo \N 1055 5527 INSERT -35 3337 ome.model.core.PlaneInfo \N 1055 5528 INSERT -35 3338 ome.model.core.PlaneInfo \N 1055 5529 INSERT -35 3339 ome.model.core.PlaneInfo \N 1055 5530 INSERT -35 3340 ome.model.core.PlaneInfo \N 1055 5531 INSERT -35 3341 ome.model.core.PlaneInfo \N 1055 5532 INSERT -35 3342 ome.model.core.PlaneInfo \N 1055 5533 INSERT -35 3343 ome.model.core.PlaneInfo \N 1055 5534 INSERT -35 3344 ome.model.core.PlaneInfo \N 1055 5535 INSERT -35 3345 ome.model.core.PlaneInfo \N 1055 5536 INSERT -35 3346 ome.model.core.PlaneInfo \N 1055 5537 INSERT -35 3347 ome.model.core.PlaneInfo \N 1055 5538 INSERT -35 3348 ome.model.core.PlaneInfo \N 1055 5539 INSERT -35 3349 ome.model.core.PlaneInfo \N 1055 5540 INSERT -35 3350 ome.model.core.PlaneInfo \N 1055 5541 INSERT -35 3351 ome.model.core.PlaneInfo \N 1055 5542 INSERT -35 3352 ome.model.core.PlaneInfo \N 1055 5543 INSERT -35 3353 ome.model.core.PlaneInfo \N 1055 5544 INSERT -35 41 ome.model.acquisition.Microscope \N 1055 5545 INSERT -35 41 ome.model.acquisition.Instrument \N 1055 5546 INSERT -35 98 ome.model.acquisition.Detector \N 1055 5547 INSERT -35 99 ome.model.acquisition.Detector \N 1055 5548 INSERT -35 121 ome.model.acquisition.TransmittanceRange \N 1055 5549 INSERT -35 121 ome.model.acquisition.Filter \N 1055 5550 INSERT -35 122 ome.model.acquisition.TransmittanceRange \N 1055 5551 INSERT -35 122 ome.model.acquisition.Filter \N 1055 5552 INSERT -35 123 ome.model.acquisition.TransmittanceRange \N 1055 5553 INSERT -35 123 ome.model.acquisition.Filter \N 1055 5554 INSERT -35 241 ome.model.acquisition.Laser \N 1055 5555 INSERT -35 242 ome.model.acquisition.Laser \N 1055 5556 INSERT -35 243 ome.model.acquisition.Laser \N 1055 5557 INSERT -35 244 ome.model.acquisition.Laser \N 1055 5558 INSERT -35 245 ome.model.acquisition.Laser \N 1055 5559 INSERT -35 246 ome.model.acquisition.Laser \N 1055 5560 INSERT -35 41 ome.model.acquisition.Objective \N 1055 5561 INSERT -35 41 ome.model.acquisition.ObjectiveSettings \N 1055 5562 INSERT -35 41 ome.model.core.Image \N 1055 5563 INSERT -35 57 ome.model.core.OriginalFile \N 1055 5564 INSERT -35 42 ome.model.annotations.FileAnnotation \N 1055 5565 INSERT -35 42 ome.model.annotations.ImageAnnotationLink \N 1055 5566 INSERT -35 41 ome.model.containers.DatasetImageLink \N 1055 5567 INSERT -35 41 ome.model.core.Pixels \N 1055 5568 INSERT -35 98 ome.model.acquisition.DetectorSettings \N 1055 5569 INSERT -35 81 ome.model.acquisition.LightPath \N 1055 5570 INSERT -35 81 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5571 INSERT -35 76 ome.model.acquisition.LightSettings \N 1055 5572 INSERT -35 98 ome.model.core.LogicalChannel \N 1055 5573 INSERT -35 98 ome.model.core.Channel \N 1055 5574 INSERT -35 99 ome.model.acquisition.DetectorSettings \N 1055 5575 INSERT -35 82 ome.model.acquisition.LightPath \N 1055 5576 INSERT -35 82 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5577 INSERT -35 77 ome.model.acquisition.LightSettings \N 1055 5578 INSERT -35 99 ome.model.core.LogicalChannel \N 1055 5579 INSERT -35 99 ome.model.core.Channel \N 1055 5580 INSERT -35 3354 ome.model.core.PlaneInfo \N 1055 5581 INSERT -35 3355 ome.model.core.PlaneInfo \N 1055 5582 INSERT -35 3356 ome.model.core.PlaneInfo \N 1055 5583 INSERT -35 3357 ome.model.core.PlaneInfo \N 1055 5584 INSERT -35 3358 ome.model.core.PlaneInfo \N 1055 5585 INSERT -35 3359 ome.model.core.PlaneInfo \N 1055 5586 INSERT -35 3360 ome.model.core.PlaneInfo \N 1055 5587 INSERT -35 3361 ome.model.core.PlaneInfo \N 1055 5588 INSERT -35 3362 ome.model.core.PlaneInfo \N 1055 5589 INSERT -35 3363 ome.model.core.PlaneInfo \N 1055 5590 INSERT -35 3364 ome.model.core.PlaneInfo \N 1055 5591 INSERT -35 3365 ome.model.core.PlaneInfo \N 1055 5592 INSERT -35 3366 ome.model.core.PlaneInfo \N 1055 5593 INSERT -35 3367 ome.model.core.PlaneInfo \N 1055 5594 INSERT -35 3368 ome.model.core.PlaneInfo \N 1055 5595 INSERT -35 3369 ome.model.core.PlaneInfo \N 1055 5596 INSERT -35 3370 ome.model.core.PlaneInfo \N 1055 5597 INSERT -35 3371 ome.model.core.PlaneInfo \N 1055 5598 INSERT -35 3372 ome.model.core.PlaneInfo \N 1055 5599 INSERT -35 3373 ome.model.core.PlaneInfo \N 1055 5600 INSERT -35 3374 ome.model.core.PlaneInfo \N 1055 5601 INSERT -35 3375 ome.model.core.PlaneInfo \N 1055 5602 INSERT -35 3376 ome.model.core.PlaneInfo \N 1055 5603 INSERT -35 3377 ome.model.core.PlaneInfo \N 1055 5604 INSERT -35 3378 ome.model.core.PlaneInfo \N 1055 5605 INSERT -35 3379 ome.model.core.PlaneInfo \N 1055 5606 INSERT -35 3380 ome.model.core.PlaneInfo \N 1055 5607 INSERT -35 3381 ome.model.core.PlaneInfo \N 1055 5608 INSERT -35 3382 ome.model.core.PlaneInfo \N 1055 5609 INSERT -35 3383 ome.model.core.PlaneInfo \N 1055 5610 INSERT -35 3384 ome.model.core.PlaneInfo \N 1055 5611 INSERT -35 3385 ome.model.core.PlaneInfo \N 1055 5612 INSERT -35 3386 ome.model.core.PlaneInfo \N 1055 5613 INSERT -35 3387 ome.model.core.PlaneInfo \N 1055 5614 INSERT -35 3388 ome.model.core.PlaneInfo \N 1055 5615 INSERT -35 3389 ome.model.core.PlaneInfo \N 1055 5616 INSERT -35 3390 ome.model.core.PlaneInfo \N 1055 5617 INSERT -35 3391 ome.model.core.PlaneInfo \N 1055 5618 INSERT -35 3392 ome.model.core.PlaneInfo \N 1055 5619 INSERT -35 3393 ome.model.core.PlaneInfo \N 1055 5620 INSERT -35 3394 ome.model.core.PlaneInfo \N 1055 5621 INSERT -35 3395 ome.model.core.PlaneInfo \N 1055 5622 INSERT -35 3396 ome.model.core.PlaneInfo \N 1055 5623 INSERT -35 3397 ome.model.core.PlaneInfo \N 1055 5624 INSERT -35 3398 ome.model.core.PlaneInfo \N 1055 5625 INSERT -35 3399 ome.model.core.PlaneInfo \N 1055 5626 INSERT -35 3400 ome.model.core.PlaneInfo \N 1055 5627 INSERT -35 3401 ome.model.core.PlaneInfo \N 1055 5628 INSERT -35 3402 ome.model.core.PlaneInfo \N 1055 5629 INSERT -35 3403 ome.model.core.PlaneInfo \N 1055 5630 INSERT -35 3404 ome.model.core.PlaneInfo \N 1055 5631 INSERT -35 3405 ome.model.core.PlaneInfo \N 1055 5632 INSERT -35 3406 ome.model.core.PlaneInfo \N 1055 5633 INSERT -35 3407 ome.model.core.PlaneInfo \N 1055 5634 INSERT -35 3408 ome.model.core.PlaneInfo \N 1055 5635 INSERT -35 3409 ome.model.core.PlaneInfo \N 1055 5636 INSERT -35 3410 ome.model.core.PlaneInfo \N 1055 5637 INSERT -35 3411 ome.model.core.PlaneInfo \N 1055 5638 INSERT -35 3412 ome.model.core.PlaneInfo \N 1055 5639 INSERT -35 3413 ome.model.core.PlaneInfo \N 1055 5640 INSERT -35 3414 ome.model.core.PlaneInfo \N 1055 5641 INSERT -35 3415 ome.model.core.PlaneInfo \N 1055 5642 INSERT -35 3416 ome.model.core.PlaneInfo \N 1055 5643 INSERT -35 3417 ome.model.core.PlaneInfo \N 1055 5644 INSERT -35 3418 ome.model.core.PlaneInfo \N 1055 5645 INSERT -35 3419 ome.model.core.PlaneInfo \N 1055 5646 INSERT -35 3420 ome.model.core.PlaneInfo \N 1055 5647 INSERT -35 3421 ome.model.core.PlaneInfo \N 1055 5648 INSERT -35 3422 ome.model.core.PlaneInfo \N 1055 5649 INSERT -35 3423 ome.model.core.PlaneInfo \N 1055 5650 INSERT -35 3424 ome.model.core.PlaneInfo \N 1055 5651 INSERT -35 3425 ome.model.core.PlaneInfo \N 1055 5652 INSERT -35 3426 ome.model.core.PlaneInfo \N 1055 5653 INSERT -35 3427 ome.model.core.PlaneInfo \N 1055 5654 INSERT -35 3428 ome.model.core.PlaneInfo \N 1055 5655 INSERT -35 3429 ome.model.core.PlaneInfo \N 1055 5656 INSERT -35 3430 ome.model.core.PlaneInfo \N 1055 5657 INSERT -35 3431 ome.model.core.PlaneInfo \N 1055 5658 INSERT -35 3432 ome.model.core.PlaneInfo \N 1055 5659 INSERT -35 3433 ome.model.core.PlaneInfo \N 1055 5660 INSERT -35 42 ome.model.acquisition.Microscope \N 1055 5661 INSERT -35 42 ome.model.acquisition.Instrument \N 1055 5662 INSERT -35 100 ome.model.acquisition.Detector \N 1055 5663 INSERT -35 101 ome.model.acquisition.Detector \N 1055 5664 INSERT -35 124 ome.model.acquisition.TransmittanceRange \N 1055 5665 INSERT -35 124 ome.model.acquisition.Filter \N 1055 5666 INSERT -35 125 ome.model.acquisition.TransmittanceRange \N 1055 5667 INSERT -35 125 ome.model.acquisition.Filter \N 1055 5668 INSERT -35 126 ome.model.acquisition.TransmittanceRange \N 1055 5669 INSERT -35 126 ome.model.acquisition.Filter \N 1055 5670 INSERT -35 247 ome.model.acquisition.Laser \N 1055 5671 INSERT -35 248 ome.model.acquisition.Laser \N 1055 5672 INSERT -35 249 ome.model.acquisition.Laser \N 1055 5673 INSERT -35 250 ome.model.acquisition.Laser \N 1055 5674 INSERT -35 251 ome.model.acquisition.Laser \N 1055 5675 INSERT -35 252 ome.model.acquisition.Laser \N 1055 5676 INSERT -35 42 ome.model.acquisition.Objective \N 1055 5677 INSERT -35 42 ome.model.acquisition.ObjectiveSettings \N 1055 5678 INSERT -35 42 ome.model.core.Image \N 1055 5679 INSERT -35 58 ome.model.core.OriginalFile \N 1055 5680 INSERT -35 43 ome.model.annotations.FileAnnotation \N 1055 5681 INSERT -35 43 ome.model.annotations.ImageAnnotationLink \N 1055 5682 INSERT -35 42 ome.model.containers.DatasetImageLink \N 1055 5683 INSERT -35 42 ome.model.core.Pixels \N 1055 5684 INSERT -35 100 ome.model.acquisition.DetectorSettings \N 1055 5685 INSERT -35 83 ome.model.acquisition.LightPath \N 1055 5686 INSERT -35 83 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5687 INSERT -35 78 ome.model.acquisition.LightSettings \N 1055 5688 INSERT -35 100 ome.model.core.LogicalChannel \N 1055 5689 INSERT -35 100 ome.model.core.Channel \N 1055 5690 INSERT -35 101 ome.model.acquisition.DetectorSettings \N 1055 5691 INSERT -35 84 ome.model.acquisition.LightPath \N 1055 5692 INSERT -35 84 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5693 INSERT -35 79 ome.model.acquisition.LightSettings \N 1055 5694 INSERT -35 101 ome.model.core.LogicalChannel \N 1055 5695 INSERT -35 101 ome.model.core.Channel \N 1055 5696 INSERT -35 3434 ome.model.core.PlaneInfo \N 1055 5697 INSERT -35 3435 ome.model.core.PlaneInfo \N 1055 5698 INSERT -35 3436 ome.model.core.PlaneInfo \N 1055 5699 INSERT -35 3437 ome.model.core.PlaneInfo \N 1055 5700 INSERT -35 3438 ome.model.core.PlaneInfo \N 1055 5701 INSERT -35 3439 ome.model.core.PlaneInfo \N 1055 5702 INSERT -35 3440 ome.model.core.PlaneInfo \N 1055 5703 INSERT -35 3441 ome.model.core.PlaneInfo \N 1055 5704 INSERT -35 3442 ome.model.core.PlaneInfo \N 1055 5705 INSERT -35 3443 ome.model.core.PlaneInfo \N 1055 5706 INSERT -35 3444 ome.model.core.PlaneInfo \N 1055 5707 INSERT -35 3445 ome.model.core.PlaneInfo \N 1055 5708 INSERT -35 3446 ome.model.core.PlaneInfo \N 1055 5709 INSERT -35 3447 ome.model.core.PlaneInfo \N 1055 5710 INSERT -35 3448 ome.model.core.PlaneInfo \N 1055 5711 INSERT -35 3449 ome.model.core.PlaneInfo \N 1055 5712 INSERT -35 3450 ome.model.core.PlaneInfo \N 1055 5713 INSERT -35 3451 ome.model.core.PlaneInfo \N 1055 5714 INSERT -35 3452 ome.model.core.PlaneInfo \N 1055 5715 INSERT -35 3453 ome.model.core.PlaneInfo \N 1055 5716 INSERT -35 3454 ome.model.core.PlaneInfo \N 1055 5717 INSERT -35 3455 ome.model.core.PlaneInfo \N 1055 5718 INSERT -35 3456 ome.model.core.PlaneInfo \N 1055 5719 INSERT -35 3457 ome.model.core.PlaneInfo \N 1055 5720 INSERT -35 3458 ome.model.core.PlaneInfo \N 1055 5721 INSERT -35 3459 ome.model.core.PlaneInfo \N 1055 5722 INSERT -35 3460 ome.model.core.PlaneInfo \N 1055 5723 INSERT -35 3461 ome.model.core.PlaneInfo \N 1055 5724 INSERT -35 3462 ome.model.core.PlaneInfo \N 1055 5725 INSERT -35 3463 ome.model.core.PlaneInfo \N 1055 5726 INSERT -35 3464 ome.model.core.PlaneInfo \N 1055 5727 INSERT -35 3465 ome.model.core.PlaneInfo \N 1055 5728 INSERT -35 3466 ome.model.core.PlaneInfo \N 1055 5729 INSERT -35 3467 ome.model.core.PlaneInfo \N 1055 5730 INSERT -35 3468 ome.model.core.PlaneInfo \N 1055 5731 INSERT -35 3469 ome.model.core.PlaneInfo \N 1055 5732 INSERT -35 3470 ome.model.core.PlaneInfo \N 1055 5733 INSERT -35 3471 ome.model.core.PlaneInfo \N 1055 5734 INSERT -35 3472 ome.model.core.PlaneInfo \N 1055 5735 INSERT -35 3473 ome.model.core.PlaneInfo \N 1055 5736 INSERT -35 3474 ome.model.core.PlaneInfo \N 1055 5737 INSERT -35 3475 ome.model.core.PlaneInfo \N 1055 5738 INSERT -35 3476 ome.model.core.PlaneInfo \N 1055 5739 INSERT -35 3477 ome.model.core.PlaneInfo \N 1055 5740 INSERT -35 3478 ome.model.core.PlaneInfo \N 1055 5741 INSERT -35 3479 ome.model.core.PlaneInfo \N 1055 5742 INSERT -35 3480 ome.model.core.PlaneInfo \N 1055 5743 INSERT -35 3481 ome.model.core.PlaneInfo \N 1055 5744 INSERT -35 3482 ome.model.core.PlaneInfo \N 1055 5745 INSERT -35 3483 ome.model.core.PlaneInfo \N 1055 5746 INSERT -35 3484 ome.model.core.PlaneInfo \N 1055 5747 INSERT -35 3485 ome.model.core.PlaneInfo \N 1055 5748 INSERT -35 3486 ome.model.core.PlaneInfo \N 1055 5749 INSERT -35 3487 ome.model.core.PlaneInfo \N 1055 5750 INSERT -35 3488 ome.model.core.PlaneInfo \N 1055 5751 INSERT -35 3489 ome.model.core.PlaneInfo \N 1055 5752 INSERT -35 3490 ome.model.core.PlaneInfo \N 1055 5753 INSERT -35 3491 ome.model.core.PlaneInfo \N 1055 5754 INSERT -35 3492 ome.model.core.PlaneInfo \N 1055 5755 INSERT -35 3493 ome.model.core.PlaneInfo \N 1055 5756 INSERT -35 3494 ome.model.core.PlaneInfo \N 1055 5757 INSERT -35 3495 ome.model.core.PlaneInfo \N 1055 5758 INSERT -35 3496 ome.model.core.PlaneInfo \N 1055 5759 INSERT -35 3497 ome.model.core.PlaneInfo \N 1055 5760 INSERT -35 3498 ome.model.core.PlaneInfo \N 1055 5761 INSERT -35 3499 ome.model.core.PlaneInfo \N 1055 5762 INSERT -35 3500 ome.model.core.PlaneInfo \N 1055 5763 INSERT -35 3501 ome.model.core.PlaneInfo \N 1055 5764 INSERT -35 3502 ome.model.core.PlaneInfo \N 1055 5765 INSERT -35 3503 ome.model.core.PlaneInfo \N 1055 5766 INSERT -35 3504 ome.model.core.PlaneInfo \N 1055 5767 INSERT -35 3505 ome.model.core.PlaneInfo \N 1055 5768 INSERT -35 3506 ome.model.core.PlaneInfo \N 1055 5769 INSERT -35 3507 ome.model.core.PlaneInfo \N 1055 5770 INSERT -35 3508 ome.model.core.PlaneInfo \N 1055 5771 INSERT -35 3509 ome.model.core.PlaneInfo \N 1055 5772 INSERT -35 3510 ome.model.core.PlaneInfo \N 1055 5773 INSERT -35 3511 ome.model.core.PlaneInfo \N 1055 5774 INSERT -35 3512 ome.model.core.PlaneInfo \N 1055 5775 INSERT -35 3513 ome.model.core.PlaneInfo \N 1055 5776 INSERT -35 43 ome.model.acquisition.Microscope \N 1055 5777 INSERT -35 43 ome.model.acquisition.Instrument \N 1055 5778 INSERT -35 102 ome.model.acquisition.Detector \N 1055 5779 INSERT -35 103 ome.model.acquisition.Detector \N 1055 5780 INSERT -35 127 ome.model.acquisition.TransmittanceRange \N 1055 5781 INSERT -35 127 ome.model.acquisition.Filter \N 1055 5782 INSERT -35 128 ome.model.acquisition.TransmittanceRange \N 1055 5783 INSERT -35 128 ome.model.acquisition.Filter \N 1055 5784 INSERT -35 129 ome.model.acquisition.TransmittanceRange \N 1055 5785 INSERT -35 129 ome.model.acquisition.Filter \N 1055 5786 INSERT -35 253 ome.model.acquisition.Laser \N 1055 5787 INSERT -35 254 ome.model.acquisition.Laser \N 1055 5788 INSERT -35 255 ome.model.acquisition.Laser \N 1055 5789 INSERT -35 256 ome.model.acquisition.Laser \N 1055 5790 INSERT -35 257 ome.model.acquisition.Laser \N 1055 5791 INSERT -35 258 ome.model.acquisition.Laser \N 1055 5792 INSERT -35 43 ome.model.acquisition.Objective \N 1055 5793 INSERT -35 43 ome.model.acquisition.ObjectiveSettings \N 1055 5794 INSERT -35 43 ome.model.core.Image \N 1055 5795 INSERT -35 59 ome.model.core.OriginalFile \N 1055 5796 INSERT -35 44 ome.model.annotations.FileAnnotation \N 1055 5797 INSERT -35 44 ome.model.annotations.ImageAnnotationLink \N 1055 5798 INSERT -35 43 ome.model.containers.DatasetImageLink \N 1055 5799 INSERT -35 43 ome.model.core.Pixels \N 1055 5800 INSERT -35 102 ome.model.acquisition.DetectorSettings \N 1055 5801 INSERT -35 85 ome.model.acquisition.LightPath \N 1055 5802 INSERT -35 85 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5803 INSERT -35 80 ome.model.acquisition.LightSettings \N 1055 5804 INSERT -35 102 ome.model.core.LogicalChannel \N 1055 5805 INSERT -35 102 ome.model.core.Channel \N 1055 5806 INSERT -35 103 ome.model.acquisition.DetectorSettings \N 1055 5807 INSERT -35 86 ome.model.acquisition.LightPath \N 1055 5808 INSERT -35 86 ome.model.acquisition.LightPathEmissionFilterLink \N 1055 5809 INSERT -35 81 ome.model.acquisition.LightSettings \N 1055 5810 INSERT -35 103 ome.model.core.LogicalChannel \N 1055 5811 INSERT -35 103 ome.model.core.Channel \N 1055 5812 INSERT -35 3514 ome.model.core.PlaneInfo \N 1055 5813 INSERT -35 3515 ome.model.core.PlaneInfo \N 1055 5814 INSERT -35 3516 ome.model.core.PlaneInfo \N 1055 5815 INSERT -35 3517 ome.model.core.PlaneInfo \N 1055 5816 INSERT -35 3518 ome.model.core.PlaneInfo \N 1055 5817 INSERT -35 3519 ome.model.core.PlaneInfo \N 1055 5818 INSERT -35 3520 ome.model.core.PlaneInfo \N 1055 5819 INSERT -35 3521 ome.model.core.PlaneInfo \N 1055 5820 INSERT -35 3522 ome.model.core.PlaneInfo \N 1055 5821 INSERT -35 3523 ome.model.core.PlaneInfo \N 1055 5822 INSERT -35 3524 ome.model.core.PlaneInfo \N 1055 5823 INSERT -35 3525 ome.model.core.PlaneInfo \N 1055 5824 INSERT -35 3526 ome.model.core.PlaneInfo \N 1055 5825 INSERT -35 3527 ome.model.core.PlaneInfo \N 1055 5826 INSERT -35 3528 ome.model.core.PlaneInfo \N 1055 5827 INSERT -35 3529 ome.model.core.PlaneInfo \N 1055 5828 INSERT -35 3530 ome.model.core.PlaneInfo \N 1055 5829 INSERT -35 3531 ome.model.core.PlaneInfo \N 1055 5830 INSERT -35 3532 ome.model.core.PlaneInfo \N 1055 5831 INSERT -35 3533 ome.model.core.PlaneInfo \N 1055 5832 INSERT -35 3534 ome.model.core.PlaneInfo \N 1055 5833 INSERT -35 3535 ome.model.core.PlaneInfo \N 1055 5834 INSERT -35 3536 ome.model.core.PlaneInfo \N 1055 5835 INSERT -35 3537 ome.model.core.PlaneInfo \N 1055 5836 INSERT -35 3538 ome.model.core.PlaneInfo \N 1055 5837 INSERT -35 3539 ome.model.core.PlaneInfo \N 1055 5838 INSERT -35 3540 ome.model.core.PlaneInfo \N 1055 5839 INSERT -35 3541 ome.model.core.PlaneInfo \N 1055 5840 INSERT -35 3542 ome.model.core.PlaneInfo \N 1055 5841 INSERT -35 3543 ome.model.core.PlaneInfo \N 1055 5842 INSERT -35 3544 ome.model.core.PlaneInfo \N 1055 5843 INSERT -35 3545 ome.model.core.PlaneInfo \N 1055 5844 INSERT -35 3546 ome.model.core.PlaneInfo \N 1055 5845 INSERT -35 3547 ome.model.core.PlaneInfo \N 1055 5846 INSERT -35 3548 ome.model.core.PlaneInfo \N 1055 5847 INSERT -35 3549 ome.model.core.PlaneInfo \N 1055 5848 INSERT -35 3550 ome.model.core.PlaneInfo \N 1055 5849 INSERT -35 3551 ome.model.core.PlaneInfo \N 1055 5850 INSERT -35 3552 ome.model.core.PlaneInfo \N 1055 5851 INSERT -35 3553 ome.model.core.PlaneInfo \N 1055 5852 INSERT -35 3554 ome.model.core.PlaneInfo \N 1055 5853 INSERT -35 3555 ome.model.core.PlaneInfo \N 1055 5854 INSERT -35 3556 ome.model.core.PlaneInfo \N 1055 5855 INSERT -35 3557 ome.model.core.PlaneInfo \N 1055 5856 INSERT -35 3558 ome.model.core.PlaneInfo \N 1055 5857 INSERT -35 3559 ome.model.core.PlaneInfo \N 1055 5858 INSERT -35 3560 ome.model.core.PlaneInfo \N 1055 5859 INSERT -35 3561 ome.model.core.PlaneInfo \N 1055 5860 INSERT -35 3562 ome.model.core.PlaneInfo \N 1055 5861 INSERT -35 3563 ome.model.core.PlaneInfo \N 1055 5862 INSERT -35 3564 ome.model.core.PlaneInfo \N 1055 5863 INSERT -35 3565 ome.model.core.PlaneInfo \N 1055 5864 INSERT -35 3566 ome.model.core.PlaneInfo \N 1055 5865 INSERT -35 3567 ome.model.core.PlaneInfo \N 1055 5866 INSERT -35 3568 ome.model.core.PlaneInfo \N 1055 5867 INSERT -35 3569 ome.model.core.PlaneInfo \N 1055 5868 INSERT -35 3570 ome.model.core.PlaneInfo \N 1055 5869 INSERT -35 3571 ome.model.core.PlaneInfo \N 1055 5870 INSERT -35 3572 ome.model.core.PlaneInfo \N 1055 5871 INSERT -35 3573 ome.model.core.PlaneInfo \N 1055 5872 INSERT -35 3574 ome.model.core.PlaneInfo \N 1055 5873 INSERT -35 3575 ome.model.core.PlaneInfo \N 1055 5874 INSERT -35 3576 ome.model.core.PlaneInfo \N 1055 5875 INSERT -35 3577 ome.model.core.PlaneInfo \N 1055 5876 INSERT -35 3578 ome.model.core.PlaneInfo \N 1055 5877 INSERT -35 3579 ome.model.core.PlaneInfo \N 1055 5878 INSERT -35 3580 ome.model.core.PlaneInfo \N 1055 5879 INSERT -35 3581 ome.model.core.PlaneInfo \N 1055 5880 INSERT -35 3582 ome.model.core.PlaneInfo \N 1055 5881 INSERT -35 3583 ome.model.core.PlaneInfo \N 1055 5882 INSERT -35 3584 ome.model.core.PlaneInfo \N 1055 5883 INSERT -35 3585 ome.model.core.PlaneInfo \N 1055 5884 INSERT -35 3586 ome.model.core.PlaneInfo \N 1055 5885 INSERT -35 3587 ome.model.core.PlaneInfo \N 1055 5886 INSERT -35 3588 ome.model.core.PlaneInfo \N 1055 5887 INSERT -35 3589 ome.model.core.PlaneInfo \N 1055 5888 INSERT -35 3590 ome.model.core.PlaneInfo \N 1055 5889 INSERT -35 3591 ome.model.core.PlaneInfo \N 1055 5890 INSERT -35 3592 ome.model.core.PlaneInfo \N 1055 5891 INSERT -35 3593 ome.model.core.PlaneInfo \N 1055 5892 UPDATE -35 43 ome.model.core.Pixels \N 1056 5893 UPDATE -35 38 ome.model.core.Pixels \N 1057 5894 UPDATE -35 39 ome.model.core.Pixels \N 1057 5895 UPDATE -35 40 ome.model.core.Pixels \N 1057 5896 UPDATE -35 41 ome.model.core.Pixels \N 1057 5897 UPDATE -35 42 ome.model.core.Pixels \N 1057 5898 UPDATE -35 43 ome.model.core.Pixels \N 1057 5899 INSERT -35 92 ome.model.stats.StatsInfo \N 1058 5900 INSERT -35 93 ome.model.stats.StatsInfo \N 1058 5901 INSERT -35 94 ome.model.stats.StatsInfo \N 1058 5902 INSERT -35 95 ome.model.stats.StatsInfo \N 1058 5903 INSERT -35 96 ome.model.stats.StatsInfo \N 1058 5904 INSERT -35 97 ome.model.stats.StatsInfo \N 1058 5905 INSERT -35 98 ome.model.stats.StatsInfo \N 1058 5906 INSERT -35 99 ome.model.stats.StatsInfo \N 1058 5907 INSERT -35 100 ome.model.stats.StatsInfo \N 1058 5908 INSERT -35 101 ome.model.stats.StatsInfo \N 1058 5909 INSERT -35 102 ome.model.stats.StatsInfo \N 1058 5910 INSERT -35 103 ome.model.stats.StatsInfo \N 1058 5911 UPDATE -35 92 ome.model.core.Channel \N 1058 5912 UPDATE -35 93 ome.model.core.Channel \N 1058 5913 UPDATE -35 94 ome.model.core.Channel \N 1058 5914 UPDATE -35 95 ome.model.core.Channel \N 1058 5915 UPDATE -35 96 ome.model.core.Channel \N 1058 5916 UPDATE -35 97 ome.model.core.Channel \N 1058 5917 UPDATE -35 98 ome.model.core.Channel \N 1058 5918 UPDATE -35 99 ome.model.core.Channel \N 1058 5919 UPDATE -35 100 ome.model.core.Channel \N 1058 5920 UPDATE -35 101 ome.model.core.Channel \N 1058 5921 UPDATE -35 102 ome.model.core.Channel \N 1058 5922 UPDATE -35 103 ome.model.core.Channel \N 1058 5923 INSERT -35 45 ome.model.display.QuantumDef \N 1059 5924 INSERT -35 45 ome.model.display.RenderingDef \N 1059 5925 INSERT -35 109 ome.model.display.ChannelBinding \N 1059 5926 INSERT -35 110 ome.model.display.ChannelBinding \N 1059 5927 INSERT -35 46 ome.model.display.QuantumDef \N 1059 5928 INSERT -35 46 ome.model.display.RenderingDef \N 1059 5929 INSERT -35 111 ome.model.display.ChannelBinding \N 1059 5930 INSERT -35 112 ome.model.display.ChannelBinding \N 1059 5931 INSERT -35 47 ome.model.display.QuantumDef \N 1059 5932 INSERT -35 47 ome.model.display.RenderingDef \N 1059 5933 INSERT -35 113 ome.model.display.ChannelBinding \N 1059 5934 INSERT -35 114 ome.model.display.ChannelBinding \N 1059 5935 INSERT -35 48 ome.model.display.QuantumDef \N 1059 5936 INSERT -35 48 ome.model.display.RenderingDef \N 1059 5937 INSERT -35 115 ome.model.display.ChannelBinding \N 1059 5938 INSERT -35 116 ome.model.display.ChannelBinding \N 1059 5939 INSERT -35 49 ome.model.display.QuantumDef \N 1059 5940 INSERT -35 49 ome.model.display.RenderingDef \N 1059 5941 INSERT -35 117 ome.model.display.ChannelBinding \N 1059 5942 INSERT -35 118 ome.model.display.ChannelBinding \N 1059 5943 INSERT -35 50 ome.model.display.QuantumDef \N 1059 5944 INSERT -35 50 ome.model.display.RenderingDef \N 1059 5945 INSERT -35 119 ome.model.display.ChannelBinding \N 1059 5946 INSERT -35 120 ome.model.display.ChannelBinding \N 1059 5947 INSERT -35 38 ome.model.display.Thumbnail \N 1060 5948 INSERT -35 39 ome.model.display.Thumbnail \N 1060 5949 INSERT -35 40 ome.model.display.Thumbnail \N 1060 5950 INSERT -35 41 ome.model.display.Thumbnail \N 1060 5951 INSERT -35 42 ome.model.display.Thumbnail \N 1060 5952 INSERT -35 43 ome.model.display.Thumbnail \N 1060 5953 UPDATE -35 59 ome.model.core.OriginalFile \N 1061 5954 INSERT -35 44 ome.model.acquisition.Microscope \N 1118 5955 INSERT -35 44 ome.model.acquisition.Instrument \N 1118 5956 INSERT -35 104 ome.model.acquisition.Detector \N 1118 5957 INSERT -35 105 ome.model.acquisition.Detector \N 1118 5958 INSERT -35 130 ome.model.acquisition.TransmittanceRange \N 1118 5959 INSERT -35 130 ome.model.acquisition.Filter \N 1118 5960 INSERT -35 131 ome.model.acquisition.TransmittanceRange \N 1118 5961 INSERT -35 131 ome.model.acquisition.Filter \N 1118 5962 INSERT -35 132 ome.model.acquisition.TransmittanceRange \N 1118 5963 INSERT -35 132 ome.model.acquisition.Filter \N 1118 5964 INSERT -35 259 ome.model.acquisition.Laser \N 1118 5965 INSERT -35 260 ome.model.acquisition.Laser \N 1118 5966 INSERT -35 261 ome.model.acquisition.Laser \N 1118 5967 INSERT -35 262 ome.model.acquisition.Laser \N 1118 5968 INSERT -35 263 ome.model.acquisition.Laser \N 1118 5969 INSERT -35 264 ome.model.acquisition.Laser \N 1118 5970 INSERT -35 44 ome.model.acquisition.Objective \N 1118 5971 INSERT -35 44 ome.model.acquisition.ObjectiveSettings \N 1118 5972 INSERT -35 44 ome.model.core.Image \N 1118 5973 INSERT -35 60 ome.model.core.OriginalFile \N 1118 5974 INSERT -35 45 ome.model.annotations.FileAnnotation \N 1118 5975 INSERT -35 45 ome.model.annotations.ImageAnnotationLink \N 1118 5976 INSERT -35 44 ome.model.containers.DatasetImageLink \N 1118 5977 INSERT -35 44 ome.model.core.Pixels \N 1118 5978 INSERT -35 104 ome.model.acquisition.DetectorSettings \N 1118 5979 INSERT -35 87 ome.model.acquisition.LightPath \N 1118 5980 INSERT -35 87 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 5981 INSERT -35 82 ome.model.acquisition.LightSettings \N 1118 5982 INSERT -35 104 ome.model.core.LogicalChannel \N 1118 5983 INSERT -35 104 ome.model.core.Channel \N 1118 5984 INSERT -35 105 ome.model.acquisition.DetectorSettings \N 1118 5985 INSERT -35 88 ome.model.acquisition.LightPath \N 1118 5986 INSERT -35 88 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 5987 INSERT -35 83 ome.model.acquisition.LightSettings \N 1118 5988 INSERT -35 105 ome.model.core.LogicalChannel \N 1118 5989 INSERT -35 105 ome.model.core.Channel \N 1118 5990 INSERT -35 3594 ome.model.core.PlaneInfo \N 1118 5991 INSERT -35 3595 ome.model.core.PlaneInfo \N 1118 5992 INSERT -35 3596 ome.model.core.PlaneInfo \N 1118 5993 INSERT -35 3597 ome.model.core.PlaneInfo \N 1118 5994 INSERT -35 3598 ome.model.core.PlaneInfo \N 1118 5995 INSERT -35 3599 ome.model.core.PlaneInfo \N 1118 5996 INSERT -35 3600 ome.model.core.PlaneInfo \N 1118 5997 INSERT -35 3601 ome.model.core.PlaneInfo \N 1118 5998 INSERT -35 3602 ome.model.core.PlaneInfo \N 1118 5999 INSERT -35 3603 ome.model.core.PlaneInfo \N 1118 6000 INSERT -35 3604 ome.model.core.PlaneInfo \N 1118 6001 INSERT -35 3605 ome.model.core.PlaneInfo \N 1118 6002 INSERT -35 3606 ome.model.core.PlaneInfo \N 1118 6003 INSERT -35 3607 ome.model.core.PlaneInfo \N 1118 6004 INSERT -35 3608 ome.model.core.PlaneInfo \N 1118 6005 INSERT -35 3609 ome.model.core.PlaneInfo \N 1118 6006 INSERT -35 3610 ome.model.core.PlaneInfo \N 1118 6007 INSERT -35 3611 ome.model.core.PlaneInfo \N 1118 6008 INSERT -35 3612 ome.model.core.PlaneInfo \N 1118 6009 INSERT -35 3613 ome.model.core.PlaneInfo \N 1118 6010 INSERT -35 3614 ome.model.core.PlaneInfo \N 1118 6011 INSERT -35 3615 ome.model.core.PlaneInfo \N 1118 6012 INSERT -35 3616 ome.model.core.PlaneInfo \N 1118 6013 INSERT -35 3617 ome.model.core.PlaneInfo \N 1118 6014 INSERT -35 3618 ome.model.core.PlaneInfo \N 1118 6015 INSERT -35 3619 ome.model.core.PlaneInfo \N 1118 6016 INSERT -35 3620 ome.model.core.PlaneInfo \N 1118 6017 INSERT -35 3621 ome.model.core.PlaneInfo \N 1118 6018 INSERT -35 3622 ome.model.core.PlaneInfo \N 1118 6019 INSERT -35 3623 ome.model.core.PlaneInfo \N 1118 6020 INSERT -35 3624 ome.model.core.PlaneInfo \N 1118 6021 INSERT -35 3625 ome.model.core.PlaneInfo \N 1118 6022 INSERT -35 3626 ome.model.core.PlaneInfo \N 1118 6023 INSERT -35 3627 ome.model.core.PlaneInfo \N 1118 6024 INSERT -35 3628 ome.model.core.PlaneInfo \N 1118 6025 INSERT -35 3629 ome.model.core.PlaneInfo \N 1118 6026 INSERT -35 3630 ome.model.core.PlaneInfo \N 1118 6027 INSERT -35 3631 ome.model.core.PlaneInfo \N 1118 6028 INSERT -35 3632 ome.model.core.PlaneInfo \N 1118 6029 INSERT -35 3633 ome.model.core.PlaneInfo \N 1118 6030 INSERT -35 3634 ome.model.core.PlaneInfo \N 1118 6031 INSERT -35 3635 ome.model.core.PlaneInfo \N 1118 6032 INSERT -35 3636 ome.model.core.PlaneInfo \N 1118 6033 INSERT -35 3637 ome.model.core.PlaneInfo \N 1118 6034 INSERT -35 3638 ome.model.core.PlaneInfo \N 1118 6035 INSERT -35 3639 ome.model.core.PlaneInfo \N 1118 6036 INSERT -35 3640 ome.model.core.PlaneInfo \N 1118 6037 INSERT -35 3641 ome.model.core.PlaneInfo \N 1118 6038 INSERT -35 3642 ome.model.core.PlaneInfo \N 1118 6039 INSERT -35 3643 ome.model.core.PlaneInfo \N 1118 6040 INSERT -35 3644 ome.model.core.PlaneInfo \N 1118 6041 INSERT -35 3645 ome.model.core.PlaneInfo \N 1118 6042 INSERT -35 3646 ome.model.core.PlaneInfo \N 1118 6043 INSERT -35 3647 ome.model.core.PlaneInfo \N 1118 6044 INSERT -35 3648 ome.model.core.PlaneInfo \N 1118 6045 INSERT -35 3649 ome.model.core.PlaneInfo \N 1118 6046 INSERT -35 3650 ome.model.core.PlaneInfo \N 1118 6047 INSERT -35 3651 ome.model.core.PlaneInfo \N 1118 6048 INSERT -35 3652 ome.model.core.PlaneInfo \N 1118 6049 INSERT -35 3653 ome.model.core.PlaneInfo \N 1118 6050 INSERT -35 3654 ome.model.core.PlaneInfo \N 1118 6051 INSERT -35 3655 ome.model.core.PlaneInfo \N 1118 6052 INSERT -35 3656 ome.model.core.PlaneInfo \N 1118 6053 INSERT -35 3657 ome.model.core.PlaneInfo \N 1118 6054 INSERT -35 3658 ome.model.core.PlaneInfo \N 1118 6055 INSERT -35 3659 ome.model.core.PlaneInfo \N 1118 6056 INSERT -35 3660 ome.model.core.PlaneInfo \N 1118 6057 INSERT -35 3661 ome.model.core.PlaneInfo \N 1118 6058 INSERT -35 3662 ome.model.core.PlaneInfo \N 1118 6059 INSERT -35 3663 ome.model.core.PlaneInfo \N 1118 6060 INSERT -35 3664 ome.model.core.PlaneInfo \N 1118 6061 INSERT -35 3665 ome.model.core.PlaneInfo \N 1118 6062 INSERT -35 3666 ome.model.core.PlaneInfo \N 1118 6063 INSERT -35 3667 ome.model.core.PlaneInfo \N 1118 6064 INSERT -35 45 ome.model.acquisition.Microscope \N 1118 6065 INSERT -35 45 ome.model.acquisition.Instrument \N 1118 6066 INSERT -35 106 ome.model.acquisition.Detector \N 1118 6067 INSERT -35 107 ome.model.acquisition.Detector \N 1118 6068 INSERT -35 133 ome.model.acquisition.TransmittanceRange \N 1118 6069 INSERT -35 133 ome.model.acquisition.Filter \N 1118 6070 INSERT -35 134 ome.model.acquisition.TransmittanceRange \N 1118 6071 INSERT -35 134 ome.model.acquisition.Filter \N 1118 6072 INSERT -35 135 ome.model.acquisition.TransmittanceRange \N 1118 6073 INSERT -35 135 ome.model.acquisition.Filter \N 1118 6074 INSERT -35 265 ome.model.acquisition.Laser \N 1118 6075 INSERT -35 266 ome.model.acquisition.Laser \N 1118 6076 INSERT -35 267 ome.model.acquisition.Laser \N 1118 6077 INSERT -35 268 ome.model.acquisition.Laser \N 1118 6078 INSERT -35 269 ome.model.acquisition.Laser \N 1118 6079 INSERT -35 270 ome.model.acquisition.Laser \N 1118 6080 INSERT -35 45 ome.model.acquisition.Objective \N 1118 6081 INSERT -35 45 ome.model.acquisition.ObjectiveSettings \N 1118 6082 INSERT -35 45 ome.model.core.Image \N 1118 6083 INSERT -35 61 ome.model.core.OriginalFile \N 1118 6084 INSERT -35 46 ome.model.annotations.FileAnnotation \N 1118 6085 INSERT -35 46 ome.model.annotations.ImageAnnotationLink \N 1118 6086 INSERT -35 45 ome.model.containers.DatasetImageLink \N 1118 6087 INSERT -35 45 ome.model.core.Pixels \N 1118 6088 INSERT -35 106 ome.model.acquisition.DetectorSettings \N 1118 6089 INSERT -35 89 ome.model.acquisition.LightPath \N 1118 6090 INSERT -35 89 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6091 INSERT -35 84 ome.model.acquisition.LightSettings \N 1118 6092 INSERT -35 106 ome.model.core.LogicalChannel \N 1118 6093 INSERT -35 106 ome.model.core.Channel \N 1118 6094 INSERT -35 107 ome.model.acquisition.DetectorSettings \N 1118 6095 INSERT -35 90 ome.model.acquisition.LightPath \N 1118 6096 INSERT -35 90 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6097 INSERT -35 85 ome.model.acquisition.LightSettings \N 1118 6098 INSERT -35 107 ome.model.core.LogicalChannel \N 1118 6099 INSERT -35 107 ome.model.core.Channel \N 1118 6100 INSERT -35 3668 ome.model.core.PlaneInfo \N 1118 6101 INSERT -35 3669 ome.model.core.PlaneInfo \N 1118 6102 INSERT -35 3670 ome.model.core.PlaneInfo \N 1118 6103 INSERT -35 3671 ome.model.core.PlaneInfo \N 1118 6104 INSERT -35 3672 ome.model.core.PlaneInfo \N 1118 6105 INSERT -35 3673 ome.model.core.PlaneInfo \N 1118 6106 INSERT -35 3674 ome.model.core.PlaneInfo \N 1118 6107 INSERT -35 3675 ome.model.core.PlaneInfo \N 1118 6108 INSERT -35 3676 ome.model.core.PlaneInfo \N 1118 6109 INSERT -35 3677 ome.model.core.PlaneInfo \N 1118 6110 INSERT -35 3678 ome.model.core.PlaneInfo \N 1118 6111 INSERT -35 3679 ome.model.core.PlaneInfo \N 1118 6112 INSERT -35 3680 ome.model.core.PlaneInfo \N 1118 6113 INSERT -35 3681 ome.model.core.PlaneInfo \N 1118 6114 INSERT -35 3682 ome.model.core.PlaneInfo \N 1118 6115 INSERT -35 3683 ome.model.core.PlaneInfo \N 1118 6116 INSERT -35 3684 ome.model.core.PlaneInfo \N 1118 6117 INSERT -35 3685 ome.model.core.PlaneInfo \N 1118 6118 INSERT -35 3686 ome.model.core.PlaneInfo \N 1118 6119 INSERT -35 3687 ome.model.core.PlaneInfo \N 1118 6120 INSERT -35 3688 ome.model.core.PlaneInfo \N 1118 6121 INSERT -35 3689 ome.model.core.PlaneInfo \N 1118 6122 INSERT -35 3690 ome.model.core.PlaneInfo \N 1118 6123 INSERT -35 3691 ome.model.core.PlaneInfo \N 1118 6124 INSERT -35 3692 ome.model.core.PlaneInfo \N 1118 6125 INSERT -35 3693 ome.model.core.PlaneInfo \N 1118 6126 INSERT -35 3694 ome.model.core.PlaneInfo \N 1118 6127 INSERT -35 3695 ome.model.core.PlaneInfo \N 1118 6128 INSERT -35 3696 ome.model.core.PlaneInfo \N 1118 6129 INSERT -35 3697 ome.model.core.PlaneInfo \N 1118 6130 INSERT -35 3698 ome.model.core.PlaneInfo \N 1118 6131 INSERT -35 3699 ome.model.core.PlaneInfo \N 1118 6132 INSERT -35 3700 ome.model.core.PlaneInfo \N 1118 6133 INSERT -35 3701 ome.model.core.PlaneInfo \N 1118 6134 INSERT -35 3702 ome.model.core.PlaneInfo \N 1118 6135 INSERT -35 3703 ome.model.core.PlaneInfo \N 1118 6136 INSERT -35 3704 ome.model.core.PlaneInfo \N 1118 6137 INSERT -35 3705 ome.model.core.PlaneInfo \N 1118 6138 INSERT -35 3706 ome.model.core.PlaneInfo \N 1118 6139 INSERT -35 3707 ome.model.core.PlaneInfo \N 1118 6140 INSERT -35 3708 ome.model.core.PlaneInfo \N 1118 6141 INSERT -35 3709 ome.model.core.PlaneInfo \N 1118 6142 INSERT -35 3710 ome.model.core.PlaneInfo \N 1118 6143 INSERT -35 3711 ome.model.core.PlaneInfo \N 1118 6144 INSERT -35 3712 ome.model.core.PlaneInfo \N 1118 6145 INSERT -35 3713 ome.model.core.PlaneInfo \N 1118 6146 INSERT -35 3714 ome.model.core.PlaneInfo \N 1118 6147 INSERT -35 3715 ome.model.core.PlaneInfo \N 1118 6148 INSERT -35 3716 ome.model.core.PlaneInfo \N 1118 6149 INSERT -35 3717 ome.model.core.PlaneInfo \N 1118 6150 INSERT -35 3718 ome.model.core.PlaneInfo \N 1118 6151 INSERT -35 3719 ome.model.core.PlaneInfo \N 1118 6152 INSERT -35 3720 ome.model.core.PlaneInfo \N 1118 6153 INSERT -35 3721 ome.model.core.PlaneInfo \N 1118 6154 INSERT -35 3722 ome.model.core.PlaneInfo \N 1118 6155 INSERT -35 3723 ome.model.core.PlaneInfo \N 1118 6156 INSERT -35 3724 ome.model.core.PlaneInfo \N 1118 6157 INSERT -35 3725 ome.model.core.PlaneInfo \N 1118 6158 INSERT -35 3726 ome.model.core.PlaneInfo \N 1118 6159 INSERT -35 3727 ome.model.core.PlaneInfo \N 1118 6160 INSERT -35 3728 ome.model.core.PlaneInfo \N 1118 6161 INSERT -35 3729 ome.model.core.PlaneInfo \N 1118 6162 INSERT -35 3730 ome.model.core.PlaneInfo \N 1118 6163 INSERT -35 3731 ome.model.core.PlaneInfo \N 1118 6164 INSERT -35 3732 ome.model.core.PlaneInfo \N 1118 6165 INSERT -35 3733 ome.model.core.PlaneInfo \N 1118 6166 INSERT -35 3734 ome.model.core.PlaneInfo \N 1118 6167 INSERT -35 3735 ome.model.core.PlaneInfo \N 1118 6168 INSERT -35 3736 ome.model.core.PlaneInfo \N 1118 6169 INSERT -35 3737 ome.model.core.PlaneInfo \N 1118 6170 INSERT -35 3738 ome.model.core.PlaneInfo \N 1118 6171 INSERT -35 3739 ome.model.core.PlaneInfo \N 1118 6172 INSERT -35 3740 ome.model.core.PlaneInfo \N 1118 6173 INSERT -35 3741 ome.model.core.PlaneInfo \N 1118 6174 INSERT -35 3742 ome.model.core.PlaneInfo \N 1118 6175 INSERT -35 3743 ome.model.core.PlaneInfo \N 1118 6176 INSERT -35 3744 ome.model.core.PlaneInfo \N 1118 6177 INSERT -35 3745 ome.model.core.PlaneInfo \N 1118 6178 INSERT -35 3746 ome.model.core.PlaneInfo \N 1118 6179 INSERT -35 3747 ome.model.core.PlaneInfo \N 1118 6180 INSERT -35 3748 ome.model.core.PlaneInfo \N 1118 6181 INSERT -35 3749 ome.model.core.PlaneInfo \N 1118 6182 INSERT -35 3750 ome.model.core.PlaneInfo \N 1118 6183 INSERT -35 3751 ome.model.core.PlaneInfo \N 1118 6184 INSERT -35 46 ome.model.acquisition.Microscope \N 1118 6185 INSERT -35 46 ome.model.acquisition.Instrument \N 1118 6186 INSERT -35 108 ome.model.acquisition.Detector \N 1118 6187 INSERT -35 109 ome.model.acquisition.Detector \N 1118 6188 INSERT -35 136 ome.model.acquisition.TransmittanceRange \N 1118 6189 INSERT -35 136 ome.model.acquisition.Filter \N 1118 6190 INSERT -35 137 ome.model.acquisition.TransmittanceRange \N 1118 6191 INSERT -35 137 ome.model.acquisition.Filter \N 1118 6192 INSERT -35 138 ome.model.acquisition.TransmittanceRange \N 1118 6193 INSERT -35 138 ome.model.acquisition.Filter \N 1118 6194 INSERT -35 271 ome.model.acquisition.Laser \N 1118 6195 INSERT -35 272 ome.model.acquisition.Laser \N 1118 6196 INSERT -35 273 ome.model.acquisition.Laser \N 1118 6197 INSERT -35 274 ome.model.acquisition.Laser \N 1118 6198 INSERT -35 275 ome.model.acquisition.Laser \N 1118 6199 INSERT -35 276 ome.model.acquisition.Laser \N 1118 6200 INSERT -35 46 ome.model.acquisition.Objective \N 1118 6281 INSERT -35 3813 ome.model.core.PlaneInfo \N 1118 6201 INSERT -35 46 ome.model.acquisition.ObjectiveSettings \N 1118 6202 INSERT -35 46 ome.model.core.Image \N 1118 6203 INSERT -35 62 ome.model.core.OriginalFile \N 1118 6204 INSERT -35 47 ome.model.annotations.FileAnnotation \N 1118 6205 INSERT -35 47 ome.model.annotations.ImageAnnotationLink \N 1118 6206 INSERT -35 46 ome.model.containers.DatasetImageLink \N 1118 6207 INSERT -35 46 ome.model.core.Pixels \N 1118 6208 INSERT -35 108 ome.model.acquisition.DetectorSettings \N 1118 6209 INSERT -35 91 ome.model.acquisition.LightPath \N 1118 6210 INSERT -35 91 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6211 INSERT -35 86 ome.model.acquisition.LightSettings \N 1118 6212 INSERT -35 108 ome.model.core.LogicalChannel \N 1118 6213 INSERT -35 108 ome.model.core.Channel \N 1118 6214 INSERT -35 109 ome.model.acquisition.DetectorSettings \N 1118 6215 INSERT -35 92 ome.model.acquisition.LightPath \N 1118 6216 INSERT -35 92 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6217 INSERT -35 87 ome.model.acquisition.LightSettings \N 1118 6218 INSERT -35 109 ome.model.core.LogicalChannel \N 1118 6219 INSERT -35 109 ome.model.core.Channel \N 1118 6220 INSERT -35 3752 ome.model.core.PlaneInfo \N 1118 6221 INSERT -35 3753 ome.model.core.PlaneInfo \N 1118 6222 INSERT -35 3754 ome.model.core.PlaneInfo \N 1118 6223 INSERT -35 3755 ome.model.core.PlaneInfo \N 1118 6224 INSERT -35 3756 ome.model.core.PlaneInfo \N 1118 6225 INSERT -35 3757 ome.model.core.PlaneInfo \N 1118 6226 INSERT -35 3758 ome.model.core.PlaneInfo \N 1118 6227 INSERT -35 3759 ome.model.core.PlaneInfo \N 1118 6228 INSERT -35 3760 ome.model.core.PlaneInfo \N 1118 6229 INSERT -35 3761 ome.model.core.PlaneInfo \N 1118 6230 INSERT -35 3762 ome.model.core.PlaneInfo \N 1118 6231 INSERT -35 3763 ome.model.core.PlaneInfo \N 1118 6232 INSERT -35 3764 ome.model.core.PlaneInfo \N 1118 6233 INSERT -35 3765 ome.model.core.PlaneInfo \N 1118 6234 INSERT -35 3766 ome.model.core.PlaneInfo \N 1118 6235 INSERT -35 3767 ome.model.core.PlaneInfo \N 1118 6236 INSERT -35 3768 ome.model.core.PlaneInfo \N 1118 6237 INSERT -35 3769 ome.model.core.PlaneInfo \N 1118 6238 INSERT -35 3770 ome.model.core.PlaneInfo \N 1118 6239 INSERT -35 3771 ome.model.core.PlaneInfo \N 1118 6240 INSERT -35 3772 ome.model.core.PlaneInfo \N 1118 6241 INSERT -35 3773 ome.model.core.PlaneInfo \N 1118 6242 INSERT -35 3774 ome.model.core.PlaneInfo \N 1118 6243 INSERT -35 3775 ome.model.core.PlaneInfo \N 1118 6244 INSERT -35 3776 ome.model.core.PlaneInfo \N 1118 6245 INSERT -35 3777 ome.model.core.PlaneInfo \N 1118 6246 INSERT -35 3778 ome.model.core.PlaneInfo \N 1118 6247 INSERT -35 3779 ome.model.core.PlaneInfo \N 1118 6248 INSERT -35 3780 ome.model.core.PlaneInfo \N 1118 6249 INSERT -35 3781 ome.model.core.PlaneInfo \N 1118 6250 INSERT -35 3782 ome.model.core.PlaneInfo \N 1118 6251 INSERT -35 3783 ome.model.core.PlaneInfo \N 1118 6252 INSERT -35 3784 ome.model.core.PlaneInfo \N 1118 6253 INSERT -35 3785 ome.model.core.PlaneInfo \N 1118 6254 INSERT -35 3786 ome.model.core.PlaneInfo \N 1118 6255 INSERT -35 3787 ome.model.core.PlaneInfo \N 1118 6256 INSERT -35 3788 ome.model.core.PlaneInfo \N 1118 6257 INSERT -35 3789 ome.model.core.PlaneInfo \N 1118 6258 INSERT -35 3790 ome.model.core.PlaneInfo \N 1118 6259 INSERT -35 3791 ome.model.core.PlaneInfo \N 1118 6260 INSERT -35 3792 ome.model.core.PlaneInfo \N 1118 6261 INSERT -35 3793 ome.model.core.PlaneInfo \N 1118 6262 INSERT -35 3794 ome.model.core.PlaneInfo \N 1118 6263 INSERT -35 3795 ome.model.core.PlaneInfo \N 1118 6264 INSERT -35 3796 ome.model.core.PlaneInfo \N 1118 6265 INSERT -35 3797 ome.model.core.PlaneInfo \N 1118 6266 INSERT -35 3798 ome.model.core.PlaneInfo \N 1118 6267 INSERT -35 3799 ome.model.core.PlaneInfo \N 1118 6268 INSERT -35 3800 ome.model.core.PlaneInfo \N 1118 6269 INSERT -35 3801 ome.model.core.PlaneInfo \N 1118 6270 INSERT -35 3802 ome.model.core.PlaneInfo \N 1118 6271 INSERT -35 3803 ome.model.core.PlaneInfo \N 1118 6272 INSERT -35 3804 ome.model.core.PlaneInfo \N 1118 6273 INSERT -35 3805 ome.model.core.PlaneInfo \N 1118 6274 INSERT -35 3806 ome.model.core.PlaneInfo \N 1118 6275 INSERT -35 3807 ome.model.core.PlaneInfo \N 1118 6276 INSERT -35 3808 ome.model.core.PlaneInfo \N 1118 6277 INSERT -35 3809 ome.model.core.PlaneInfo \N 1118 6278 INSERT -35 3810 ome.model.core.PlaneInfo \N 1118 6279 INSERT -35 3811 ome.model.core.PlaneInfo \N 1118 6280 INSERT -35 3812 ome.model.core.PlaneInfo \N 1118 6282 INSERT -35 3814 ome.model.core.PlaneInfo \N 1118 6283 INSERT -35 3815 ome.model.core.PlaneInfo \N 1118 6284 INSERT -35 3816 ome.model.core.PlaneInfo \N 1118 6285 INSERT -35 3817 ome.model.core.PlaneInfo \N 1118 6286 INSERT -35 3818 ome.model.core.PlaneInfo \N 1118 6287 INSERT -35 3819 ome.model.core.PlaneInfo \N 1118 6288 INSERT -35 3820 ome.model.core.PlaneInfo \N 1118 6289 INSERT -35 3821 ome.model.core.PlaneInfo \N 1118 6290 INSERT -35 3822 ome.model.core.PlaneInfo \N 1118 6291 INSERT -35 3823 ome.model.core.PlaneInfo \N 1118 6292 INSERT -35 3824 ome.model.core.PlaneInfo \N 1118 6293 INSERT -35 3825 ome.model.core.PlaneInfo \N 1118 6294 INSERT -35 3826 ome.model.core.PlaneInfo \N 1118 6295 INSERT -35 3827 ome.model.core.PlaneInfo \N 1118 6296 INSERT -35 3828 ome.model.core.PlaneInfo \N 1118 6297 INSERT -35 3829 ome.model.core.PlaneInfo \N 1118 6298 INSERT -35 3830 ome.model.core.PlaneInfo \N 1118 6299 INSERT -35 3831 ome.model.core.PlaneInfo \N 1118 6300 INSERT -35 3832 ome.model.core.PlaneInfo \N 1118 6301 INSERT -35 3833 ome.model.core.PlaneInfo \N 1118 6302 INSERT -35 3834 ome.model.core.PlaneInfo \N 1118 6303 INSERT -35 3835 ome.model.core.PlaneInfo \N 1118 6304 INSERT -35 3836 ome.model.core.PlaneInfo \N 1118 6305 INSERT -35 3837 ome.model.core.PlaneInfo \N 1118 6306 INSERT -35 3838 ome.model.core.PlaneInfo \N 1118 6307 INSERT -35 3839 ome.model.core.PlaneInfo \N 1118 6308 INSERT -35 3840 ome.model.core.PlaneInfo \N 1118 6309 INSERT -35 3841 ome.model.core.PlaneInfo \N 1118 6310 INSERT -35 3842 ome.model.core.PlaneInfo \N 1118 6311 INSERT -35 3843 ome.model.core.PlaneInfo \N 1118 6312 INSERT -35 3844 ome.model.core.PlaneInfo \N 1118 6313 INSERT -35 3845 ome.model.core.PlaneInfo \N 1118 6314 INSERT -35 47 ome.model.acquisition.Microscope \N 1118 6315 INSERT -35 47 ome.model.acquisition.Instrument \N 1118 6316 INSERT -35 110 ome.model.acquisition.Detector \N 1118 6317 INSERT -35 111 ome.model.acquisition.Detector \N 1118 6318 INSERT -35 139 ome.model.acquisition.TransmittanceRange \N 1118 6319 INSERT -35 139 ome.model.acquisition.Filter \N 1118 6320 INSERT -35 140 ome.model.acquisition.TransmittanceRange \N 1118 6321 INSERT -35 140 ome.model.acquisition.Filter \N 1118 6322 INSERT -35 141 ome.model.acquisition.TransmittanceRange \N 1118 6323 INSERT -35 141 ome.model.acquisition.Filter \N 1118 6324 INSERT -35 277 ome.model.acquisition.Laser \N 1118 6325 INSERT -35 278 ome.model.acquisition.Laser \N 1118 6326 INSERT -35 279 ome.model.acquisition.Laser \N 1118 6327 INSERT -35 280 ome.model.acquisition.Laser \N 1118 6328 INSERT -35 281 ome.model.acquisition.Laser \N 1118 6329 INSERT -35 282 ome.model.acquisition.Laser \N 1118 6330 INSERT -35 47 ome.model.acquisition.Objective \N 1118 6331 INSERT -35 47 ome.model.acquisition.ObjectiveSettings \N 1118 6332 INSERT -35 47 ome.model.core.Image \N 1118 6333 INSERT -35 63 ome.model.core.OriginalFile \N 1118 6334 INSERT -35 48 ome.model.annotations.FileAnnotation \N 1118 6335 INSERT -35 48 ome.model.annotations.ImageAnnotationLink \N 1118 6336 INSERT -35 47 ome.model.containers.DatasetImageLink \N 1118 6337 INSERT -35 47 ome.model.core.Pixels \N 1118 6338 INSERT -35 110 ome.model.acquisition.DetectorSettings \N 1118 6339 INSERT -35 93 ome.model.acquisition.LightPath \N 1118 6340 INSERT -35 93 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6341 INSERT -35 88 ome.model.acquisition.LightSettings \N 1118 6342 INSERT -35 110 ome.model.core.LogicalChannel \N 1118 6343 INSERT -35 110 ome.model.core.Channel \N 1118 6344 INSERT -35 111 ome.model.acquisition.DetectorSettings \N 1118 6345 INSERT -35 94 ome.model.acquisition.LightPath \N 1118 6346 INSERT -35 94 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6347 INSERT -35 89 ome.model.acquisition.LightSettings \N 1118 6348 INSERT -35 111 ome.model.core.LogicalChannel \N 1118 6349 INSERT -35 111 ome.model.core.Channel \N 1118 6350 INSERT -35 3846 ome.model.core.PlaneInfo \N 1118 6351 INSERT -35 3847 ome.model.core.PlaneInfo \N 1118 6352 INSERT -35 3848 ome.model.core.PlaneInfo \N 1118 6353 INSERT -35 3849 ome.model.core.PlaneInfo \N 1118 6354 INSERT -35 3850 ome.model.core.PlaneInfo \N 1118 6355 INSERT -35 3851 ome.model.core.PlaneInfo \N 1118 6356 INSERT -35 3852 ome.model.core.PlaneInfo \N 1118 6357 INSERT -35 3853 ome.model.core.PlaneInfo \N 1118 6358 INSERT -35 3854 ome.model.core.PlaneInfo \N 1118 6359 INSERT -35 3855 ome.model.core.PlaneInfo \N 1118 6360 INSERT -35 3856 ome.model.core.PlaneInfo \N 1118 6361 INSERT -35 3857 ome.model.core.PlaneInfo \N 1118 6362 INSERT -35 3858 ome.model.core.PlaneInfo \N 1118 6363 INSERT -35 3859 ome.model.core.PlaneInfo \N 1118 6364 INSERT -35 3860 ome.model.core.PlaneInfo \N 1118 6365 INSERT -35 3861 ome.model.core.PlaneInfo \N 1118 6366 INSERT -35 3862 ome.model.core.PlaneInfo \N 1118 6367 INSERT -35 3863 ome.model.core.PlaneInfo \N 1118 6368 INSERT -35 3864 ome.model.core.PlaneInfo \N 1118 6369 INSERT -35 3865 ome.model.core.PlaneInfo \N 1118 6370 INSERT -35 3866 ome.model.core.PlaneInfo \N 1118 6371 INSERT -35 3867 ome.model.core.PlaneInfo \N 1118 6372 INSERT -35 3868 ome.model.core.PlaneInfo \N 1118 6373 INSERT -35 3869 ome.model.core.PlaneInfo \N 1118 6374 INSERT -35 3870 ome.model.core.PlaneInfo \N 1118 6375 INSERT -35 3871 ome.model.core.PlaneInfo \N 1118 6376 INSERT -35 3872 ome.model.core.PlaneInfo \N 1118 6377 INSERT -35 3873 ome.model.core.PlaneInfo \N 1118 6378 INSERT -35 3874 ome.model.core.PlaneInfo \N 1118 6379 INSERT -35 3875 ome.model.core.PlaneInfo \N 1118 6380 INSERT -35 3876 ome.model.core.PlaneInfo \N 1118 6381 INSERT -35 3877 ome.model.core.PlaneInfo \N 1118 6382 INSERT -35 3878 ome.model.core.PlaneInfo \N 1118 6383 INSERT -35 3879 ome.model.core.PlaneInfo \N 1118 6384 INSERT -35 3880 ome.model.core.PlaneInfo \N 1118 6385 INSERT -35 3881 ome.model.core.PlaneInfo \N 1118 6386 INSERT -35 3882 ome.model.core.PlaneInfo \N 1118 6387 INSERT -35 3883 ome.model.core.PlaneInfo \N 1118 6388 INSERT -35 3884 ome.model.core.PlaneInfo \N 1118 6389 INSERT -35 3885 ome.model.core.PlaneInfo \N 1118 6390 INSERT -35 3886 ome.model.core.PlaneInfo \N 1118 6391 INSERT -35 3887 ome.model.core.PlaneInfo \N 1118 6392 INSERT -35 3888 ome.model.core.PlaneInfo \N 1118 6393 INSERT -35 3889 ome.model.core.PlaneInfo \N 1118 6394 INSERT -35 3890 ome.model.core.PlaneInfo \N 1118 6395 INSERT -35 3891 ome.model.core.PlaneInfo \N 1118 6396 INSERT -35 3892 ome.model.core.PlaneInfo \N 1118 6397 INSERT -35 3893 ome.model.core.PlaneInfo \N 1118 6398 INSERT -35 3894 ome.model.core.PlaneInfo \N 1118 6399 INSERT -35 3895 ome.model.core.PlaneInfo \N 1118 6400 INSERT -35 3896 ome.model.core.PlaneInfo \N 1118 6401 INSERT -35 3897 ome.model.core.PlaneInfo \N 1118 6402 INSERT -35 3898 ome.model.core.PlaneInfo \N 1118 6403 INSERT -35 3899 ome.model.core.PlaneInfo \N 1118 6404 INSERT -35 3900 ome.model.core.PlaneInfo \N 1118 6405 INSERT -35 3901 ome.model.core.PlaneInfo \N 1118 6406 INSERT -35 3902 ome.model.core.PlaneInfo \N 1118 6407 INSERT -35 3903 ome.model.core.PlaneInfo \N 1118 6408 INSERT -35 3904 ome.model.core.PlaneInfo \N 1118 6409 INSERT -35 3905 ome.model.core.PlaneInfo \N 1118 6410 INSERT -35 3906 ome.model.core.PlaneInfo \N 1118 6411 INSERT -35 3907 ome.model.core.PlaneInfo \N 1118 6412 INSERT -35 3908 ome.model.core.PlaneInfo \N 1118 6413 INSERT -35 3909 ome.model.core.PlaneInfo \N 1118 6414 INSERT -35 3910 ome.model.core.PlaneInfo \N 1118 6415 INSERT -35 3911 ome.model.core.PlaneInfo \N 1118 6416 INSERT -35 3912 ome.model.core.PlaneInfo \N 1118 6417 INSERT -35 3913 ome.model.core.PlaneInfo \N 1118 6418 INSERT -35 3914 ome.model.core.PlaneInfo \N 1118 6419 INSERT -35 3915 ome.model.core.PlaneInfo \N 1118 6420 INSERT -35 3916 ome.model.core.PlaneInfo \N 1118 6421 INSERT -35 3917 ome.model.core.PlaneInfo \N 1118 6422 INSERT -35 3918 ome.model.core.PlaneInfo \N 1118 6423 INSERT -35 3919 ome.model.core.PlaneInfo \N 1118 6424 INSERT -35 3920 ome.model.core.PlaneInfo \N 1118 6425 INSERT -35 3921 ome.model.core.PlaneInfo \N 1118 6426 INSERT -35 3922 ome.model.core.PlaneInfo \N 1118 6427 INSERT -35 3923 ome.model.core.PlaneInfo \N 1118 6428 INSERT -35 3924 ome.model.core.PlaneInfo \N 1118 6429 INSERT -35 3925 ome.model.core.PlaneInfo \N 1118 6430 INSERT -35 3926 ome.model.core.PlaneInfo \N 1118 6431 INSERT -35 3927 ome.model.core.PlaneInfo \N 1118 6432 INSERT -35 3928 ome.model.core.PlaneInfo \N 1118 6433 INSERT -35 3929 ome.model.core.PlaneInfo \N 1118 6434 INSERT -35 3930 ome.model.core.PlaneInfo \N 1118 6435 INSERT -35 3931 ome.model.core.PlaneInfo \N 1118 6436 INSERT -35 3932 ome.model.core.PlaneInfo \N 1118 6437 INSERT -35 3933 ome.model.core.PlaneInfo \N 1118 6438 INSERT -35 3934 ome.model.core.PlaneInfo \N 1118 6439 INSERT -35 3935 ome.model.core.PlaneInfo \N 1118 6440 INSERT -35 3936 ome.model.core.PlaneInfo \N 1118 6441 INSERT -35 3937 ome.model.core.PlaneInfo \N 1118 6442 INSERT -35 48 ome.model.acquisition.Microscope \N 1118 6443 INSERT -35 48 ome.model.acquisition.Instrument \N 1118 6444 INSERT -35 112 ome.model.acquisition.Detector \N 1118 6445 INSERT -35 113 ome.model.acquisition.Detector \N 1118 6446 INSERT -35 142 ome.model.acquisition.TransmittanceRange \N 1118 6447 INSERT -35 142 ome.model.acquisition.Filter \N 1118 6448 INSERT -35 143 ome.model.acquisition.TransmittanceRange \N 1118 6449 INSERT -35 143 ome.model.acquisition.Filter \N 1118 6450 INSERT -35 144 ome.model.acquisition.TransmittanceRange \N 1118 6451 INSERT -35 144 ome.model.acquisition.Filter \N 1118 6452 INSERT -35 283 ome.model.acquisition.Laser \N 1118 6453 INSERT -35 284 ome.model.acquisition.Laser \N 1118 6454 INSERT -35 285 ome.model.acquisition.Laser \N 1118 6455 INSERT -35 286 ome.model.acquisition.Laser \N 1118 6456 INSERT -35 287 ome.model.acquisition.Laser \N 1118 6457 INSERT -35 288 ome.model.acquisition.Laser \N 1118 6458 INSERT -35 48 ome.model.acquisition.Objective \N 1118 6459 INSERT -35 48 ome.model.acquisition.ObjectiveSettings \N 1118 6460 INSERT -35 48 ome.model.core.Image \N 1118 6461 INSERT -35 64 ome.model.core.OriginalFile \N 1118 6462 INSERT -35 49 ome.model.annotations.FileAnnotation \N 1118 6463 INSERT -35 49 ome.model.annotations.ImageAnnotationLink \N 1118 6464 INSERT -35 48 ome.model.containers.DatasetImageLink \N 1118 6465 INSERT -35 48 ome.model.core.Pixels \N 1118 6466 INSERT -35 112 ome.model.acquisition.DetectorSettings \N 1118 6467 INSERT -35 95 ome.model.acquisition.LightPath \N 1118 6468 INSERT -35 95 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6469 INSERT -35 90 ome.model.acquisition.LightSettings \N 1118 6470 INSERT -35 112 ome.model.core.LogicalChannel \N 1118 6471 INSERT -35 112 ome.model.core.Channel \N 1118 6472 INSERT -35 113 ome.model.acquisition.DetectorSettings \N 1118 6473 INSERT -35 96 ome.model.acquisition.LightPath \N 1118 6474 INSERT -35 96 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6475 INSERT -35 91 ome.model.acquisition.LightSettings \N 1118 6476 INSERT -35 113 ome.model.core.LogicalChannel \N 1118 6477 INSERT -35 113 ome.model.core.Channel \N 1118 6478 INSERT -35 3938 ome.model.core.PlaneInfo \N 1118 6479 INSERT -35 3939 ome.model.core.PlaneInfo \N 1118 6480 INSERT -35 3940 ome.model.core.PlaneInfo \N 1118 6481 INSERT -35 3941 ome.model.core.PlaneInfo \N 1118 6482 INSERT -35 3942 ome.model.core.PlaneInfo \N 1118 6483 INSERT -35 3943 ome.model.core.PlaneInfo \N 1118 6484 INSERT -35 3944 ome.model.core.PlaneInfo \N 1118 6485 INSERT -35 3945 ome.model.core.PlaneInfo \N 1118 6486 INSERT -35 3946 ome.model.core.PlaneInfo \N 1118 6487 INSERT -35 3947 ome.model.core.PlaneInfo \N 1118 6488 INSERT -35 3948 ome.model.core.PlaneInfo \N 1118 6489 INSERT -35 3949 ome.model.core.PlaneInfo \N 1118 6490 INSERT -35 3950 ome.model.core.PlaneInfo \N 1118 6491 INSERT -35 3951 ome.model.core.PlaneInfo \N 1118 6492 INSERT -35 3952 ome.model.core.PlaneInfo \N 1118 6493 INSERT -35 3953 ome.model.core.PlaneInfo \N 1118 6494 INSERT -35 3954 ome.model.core.PlaneInfo \N 1118 6495 INSERT -35 3955 ome.model.core.PlaneInfo \N 1118 6496 INSERT -35 3956 ome.model.core.PlaneInfo \N 1118 6497 INSERT -35 3957 ome.model.core.PlaneInfo \N 1118 6498 INSERT -35 3958 ome.model.core.PlaneInfo \N 1118 6499 INSERT -35 3959 ome.model.core.PlaneInfo \N 1118 6500 INSERT -35 3960 ome.model.core.PlaneInfo \N 1118 6501 INSERT -35 3961 ome.model.core.PlaneInfo \N 1118 6502 INSERT -35 3962 ome.model.core.PlaneInfo \N 1118 6503 INSERT -35 3963 ome.model.core.PlaneInfo \N 1118 6504 INSERT -35 3964 ome.model.core.PlaneInfo \N 1118 6505 INSERT -35 3965 ome.model.core.PlaneInfo \N 1118 6506 INSERT -35 3966 ome.model.core.PlaneInfo \N 1118 6507 INSERT -35 3967 ome.model.core.PlaneInfo \N 1118 6508 INSERT -35 3968 ome.model.core.PlaneInfo \N 1118 6509 INSERT -35 3969 ome.model.core.PlaneInfo \N 1118 6510 INSERT -35 3970 ome.model.core.PlaneInfo \N 1118 6511 INSERT -35 3971 ome.model.core.PlaneInfo \N 1118 6512 INSERT -35 3972 ome.model.core.PlaneInfo \N 1118 6513 INSERT -35 3973 ome.model.core.PlaneInfo \N 1118 6514 INSERT -35 3974 ome.model.core.PlaneInfo \N 1118 6515 INSERT -35 3975 ome.model.core.PlaneInfo \N 1118 6516 INSERT -35 3976 ome.model.core.PlaneInfo \N 1118 6517 INSERT -35 3977 ome.model.core.PlaneInfo \N 1118 6518 INSERT -35 3978 ome.model.core.PlaneInfo \N 1118 6519 INSERT -35 3979 ome.model.core.PlaneInfo \N 1118 6520 INSERT -35 49 ome.model.acquisition.Microscope \N 1118 6521 INSERT -35 49 ome.model.acquisition.Instrument \N 1118 6522 INSERT -35 114 ome.model.acquisition.Detector \N 1118 6523 INSERT -35 115 ome.model.acquisition.Detector \N 1118 6524 INSERT -35 145 ome.model.acquisition.TransmittanceRange \N 1118 6525 INSERT -35 145 ome.model.acquisition.Filter \N 1118 6526 INSERT -35 146 ome.model.acquisition.TransmittanceRange \N 1118 6527 INSERT -35 146 ome.model.acquisition.Filter \N 1118 6528 INSERT -35 147 ome.model.acquisition.TransmittanceRange \N 1118 6529 INSERT -35 147 ome.model.acquisition.Filter \N 1118 6530 INSERT -35 289 ome.model.acquisition.Laser \N 1118 6531 INSERT -35 290 ome.model.acquisition.Laser \N 1118 6532 INSERT -35 291 ome.model.acquisition.Laser \N 1118 6533 INSERT -35 292 ome.model.acquisition.Laser \N 1118 6534 INSERT -35 293 ome.model.acquisition.Laser \N 1118 6535 INSERT -35 294 ome.model.acquisition.Laser \N 1118 6536 INSERT -35 49 ome.model.acquisition.Objective \N 1118 6537 INSERT -35 49 ome.model.acquisition.ObjectiveSettings \N 1118 6538 INSERT -35 49 ome.model.core.Image \N 1118 6539 INSERT -35 65 ome.model.core.OriginalFile \N 1118 6540 INSERT -35 50 ome.model.annotations.FileAnnotation \N 1118 6541 INSERT -35 50 ome.model.annotations.ImageAnnotationLink \N 1118 6542 INSERT -35 49 ome.model.containers.DatasetImageLink \N 1118 6543 INSERT -35 49 ome.model.core.Pixels \N 1118 6544 INSERT -35 114 ome.model.acquisition.DetectorSettings \N 1118 6545 INSERT -35 97 ome.model.acquisition.LightPath \N 1118 6546 INSERT -35 97 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6547 INSERT -35 92 ome.model.acquisition.LightSettings \N 1118 6548 INSERT -35 114 ome.model.core.LogicalChannel \N 1118 6549 INSERT -35 114 ome.model.core.Channel \N 1118 6550 INSERT -35 115 ome.model.acquisition.DetectorSettings \N 1118 6551 INSERT -35 98 ome.model.acquisition.LightPath \N 1118 6552 INSERT -35 98 ome.model.acquisition.LightPathEmissionFilterLink \N 1118 6553 INSERT -35 93 ome.model.acquisition.LightSettings \N 1118 6554 INSERT -35 115 ome.model.core.LogicalChannel \N 1118 6555 INSERT -35 115 ome.model.core.Channel \N 1118 6556 INSERT -35 3980 ome.model.core.PlaneInfo \N 1118 6557 INSERT -35 3981 ome.model.core.PlaneInfo \N 1118 6558 INSERT -35 3982 ome.model.core.PlaneInfo \N 1118 6559 INSERT -35 3983 ome.model.core.PlaneInfo \N 1118 6560 INSERT -35 3984 ome.model.core.PlaneInfo \N 1118 6561 INSERT -35 3985 ome.model.core.PlaneInfo \N 1118 6562 INSERT -35 3986 ome.model.core.PlaneInfo \N 1118 6563 INSERT -35 3987 ome.model.core.PlaneInfo \N 1118 6564 INSERT -35 3988 ome.model.core.PlaneInfo \N 1118 6565 INSERT -35 3989 ome.model.core.PlaneInfo \N 1118 6566 INSERT -35 3990 ome.model.core.PlaneInfo \N 1118 6567 INSERT -35 3991 ome.model.core.PlaneInfo \N 1118 6568 INSERT -35 3992 ome.model.core.PlaneInfo \N 1118 6569 INSERT -35 3993 ome.model.core.PlaneInfo \N 1118 6570 INSERT -35 3994 ome.model.core.PlaneInfo \N 1118 6571 INSERT -35 3995 ome.model.core.PlaneInfo \N 1118 6572 INSERT -35 3996 ome.model.core.PlaneInfo \N 1118 6573 INSERT -35 3997 ome.model.core.PlaneInfo \N 1118 6574 INSERT -35 3998 ome.model.core.PlaneInfo \N 1118 6575 INSERT -35 3999 ome.model.core.PlaneInfo \N 1118 6576 INSERT -35 4000 ome.model.core.PlaneInfo \N 1118 6577 INSERT -35 4001 ome.model.core.PlaneInfo \N 1118 6578 INSERT -35 4002 ome.model.core.PlaneInfo \N 1118 6579 INSERT -35 4003 ome.model.core.PlaneInfo \N 1118 6580 INSERT -35 4004 ome.model.core.PlaneInfo \N 1118 6581 INSERT -35 4005 ome.model.core.PlaneInfo \N 1118 6582 INSERT -35 4006 ome.model.core.PlaneInfo \N 1118 6583 INSERT -35 4007 ome.model.core.PlaneInfo \N 1118 6584 INSERT -35 4008 ome.model.core.PlaneInfo \N 1118 6585 INSERT -35 4009 ome.model.core.PlaneInfo \N 1118 6586 INSERT -35 4010 ome.model.core.PlaneInfo \N 1118 6587 INSERT -35 4011 ome.model.core.PlaneInfo \N 1118 6588 INSERT -35 4012 ome.model.core.PlaneInfo \N 1118 6589 INSERT -35 4013 ome.model.core.PlaneInfo \N 1118 6590 INSERT -35 4014 ome.model.core.PlaneInfo \N 1118 6591 INSERT -35 4015 ome.model.core.PlaneInfo \N 1118 6592 INSERT -35 4016 ome.model.core.PlaneInfo \N 1118 6593 INSERT -35 4017 ome.model.core.PlaneInfo \N 1118 6594 INSERT -35 4018 ome.model.core.PlaneInfo \N 1118 6595 INSERT -35 4019 ome.model.core.PlaneInfo \N 1118 6596 INSERT -35 4020 ome.model.core.PlaneInfo \N 1118 6597 INSERT -35 4021 ome.model.core.PlaneInfo \N 1118 6598 INSERT -35 4022 ome.model.core.PlaneInfo \N 1118 6599 INSERT -35 4023 ome.model.core.PlaneInfo \N 1118 6600 INSERT -35 4024 ome.model.core.PlaneInfo \N 1118 6601 INSERT -35 4025 ome.model.core.PlaneInfo \N 1118 6602 INSERT -35 4026 ome.model.core.PlaneInfo \N 1118 6603 INSERT -35 4027 ome.model.core.PlaneInfo \N 1118 6604 INSERT -35 4028 ome.model.core.PlaneInfo \N 1118 6605 INSERT -35 4029 ome.model.core.PlaneInfo \N 1118 6606 INSERT -35 4030 ome.model.core.PlaneInfo \N 1118 6607 INSERT -35 4031 ome.model.core.PlaneInfo \N 1118 6608 INSERT -35 4032 ome.model.core.PlaneInfo \N 1118 6609 INSERT -35 4033 ome.model.core.PlaneInfo \N 1118 6610 INSERT -35 4034 ome.model.core.PlaneInfo \N 1118 6611 INSERT -35 4035 ome.model.core.PlaneInfo \N 1118 6612 INSERT -35 4036 ome.model.core.PlaneInfo \N 1118 6613 INSERT -35 4037 ome.model.core.PlaneInfo \N 1118 6614 INSERT -35 4038 ome.model.core.PlaneInfo \N 1118 6615 INSERT -35 4039 ome.model.core.PlaneInfo \N 1118 6616 INSERT -35 4040 ome.model.core.PlaneInfo \N 1118 6617 INSERT -35 4041 ome.model.core.PlaneInfo \N 1118 6618 INSERT -35 4042 ome.model.core.PlaneInfo \N 1118 6619 INSERT -35 4043 ome.model.core.PlaneInfo \N 1118 6620 INSERT -35 4044 ome.model.core.PlaneInfo \N 1118 6621 INSERT -35 4045 ome.model.core.PlaneInfo \N 1118 6622 INSERT -35 4046 ome.model.core.PlaneInfo \N 1118 6623 INSERT -35 4047 ome.model.core.PlaneInfo \N 1118 6624 INSERT -35 4048 ome.model.core.PlaneInfo \N 1118 6625 INSERT -35 4049 ome.model.core.PlaneInfo \N 1118 6626 INSERT -35 4050 ome.model.core.PlaneInfo \N 1118 6627 INSERT -35 4051 ome.model.core.PlaneInfo \N 1118 6628 INSERT -35 4052 ome.model.core.PlaneInfo \N 1118 6629 INSERT -35 4053 ome.model.core.PlaneInfo \N 1118 6630 INSERT -35 4054 ome.model.core.PlaneInfo \N 1118 6631 INSERT -35 4055 ome.model.core.PlaneInfo \N 1118 6632 INSERT -35 4056 ome.model.core.PlaneInfo \N 1118 6633 INSERT -35 4057 ome.model.core.PlaneInfo \N 1118 6634 INSERT -35 4058 ome.model.core.PlaneInfo \N 1118 6635 INSERT -35 4059 ome.model.core.PlaneInfo \N 1118 6636 INSERT -35 4060 ome.model.core.PlaneInfo \N 1118 6637 INSERT -35 4061 ome.model.core.PlaneInfo \N 1118 6638 INSERT -35 4062 ome.model.core.PlaneInfo \N 1118 6639 INSERT -35 4063 ome.model.core.PlaneInfo \N 1118 6640 INSERT -35 4064 ome.model.core.PlaneInfo \N 1118 6641 INSERT -35 4065 ome.model.core.PlaneInfo \N 1118 6642 INSERT -35 4066 ome.model.core.PlaneInfo \N 1118 6643 INSERT -35 4067 ome.model.core.PlaneInfo \N 1118 6644 INSERT -35 4068 ome.model.core.PlaneInfo \N 1118 6645 INSERT -35 4069 ome.model.core.PlaneInfo \N 1118 6646 INSERT -35 4070 ome.model.core.PlaneInfo \N 1118 6647 INSERT -35 4071 ome.model.core.PlaneInfo \N 1118 6648 INSERT -35 4072 ome.model.core.PlaneInfo \N 1118 6649 INSERT -35 4073 ome.model.core.PlaneInfo \N 1118 6650 INSERT -35 4074 ome.model.core.PlaneInfo \N 1118 6651 INSERT -35 4075 ome.model.core.PlaneInfo \N 1118 6652 INSERT -35 4076 ome.model.core.PlaneInfo \N 1118 6653 INSERT -35 4077 ome.model.core.PlaneInfo \N 1118 6654 UPDATE -35 49 ome.model.core.Pixels \N 1120 6655 UPDATE -35 44 ome.model.core.Pixels \N 1121 6656 UPDATE -35 45 ome.model.core.Pixels \N 1121 6657 UPDATE -35 46 ome.model.core.Pixels \N 1121 6658 UPDATE -35 47 ome.model.core.Pixels \N 1121 6659 UPDATE -35 48 ome.model.core.Pixels \N 1121 6660 UPDATE -35 49 ome.model.core.Pixels \N 1121 6661 INSERT -35 104 ome.model.stats.StatsInfo \N 1122 6662 INSERT -35 105 ome.model.stats.StatsInfo \N 1122 6663 INSERT -35 106 ome.model.stats.StatsInfo \N 1122 6664 INSERT -35 107 ome.model.stats.StatsInfo \N 1122 6665 INSERT -35 108 ome.model.stats.StatsInfo \N 1122 6666 INSERT -35 109 ome.model.stats.StatsInfo \N 1122 6667 INSERT -35 110 ome.model.stats.StatsInfo \N 1122 6668 INSERT -35 111 ome.model.stats.StatsInfo \N 1122 6669 INSERT -35 112 ome.model.stats.StatsInfo \N 1122 6670 INSERT -35 113 ome.model.stats.StatsInfo \N 1122 6671 INSERT -35 114 ome.model.stats.StatsInfo \N 1122 6672 INSERT -35 115 ome.model.stats.StatsInfo \N 1122 6673 UPDATE -35 104 ome.model.core.Channel \N 1122 6674 UPDATE -35 105 ome.model.core.Channel \N 1122 6675 UPDATE -35 106 ome.model.core.Channel \N 1122 6676 UPDATE -35 107 ome.model.core.Channel \N 1122 6677 UPDATE -35 108 ome.model.core.Channel \N 1122 6678 UPDATE -35 109 ome.model.core.Channel \N 1122 6679 UPDATE -35 110 ome.model.core.Channel \N 1122 6680 UPDATE -35 111 ome.model.core.Channel \N 1122 6681 UPDATE -35 112 ome.model.core.Channel \N 1122 6682 UPDATE -35 113 ome.model.core.Channel \N 1122 6683 UPDATE -35 114 ome.model.core.Channel \N 1122 6684 UPDATE -35 115 ome.model.core.Channel \N 1122 6685 INSERT -35 51 ome.model.display.QuantumDef \N 1123 6686 INSERT -35 51 ome.model.display.RenderingDef \N 1123 6687 INSERT -35 121 ome.model.display.ChannelBinding \N 1123 6688 INSERT -35 122 ome.model.display.ChannelBinding \N 1123 6689 INSERT -35 52 ome.model.display.QuantumDef \N 1123 6690 INSERT -35 52 ome.model.display.RenderingDef \N 1123 6691 INSERT -35 123 ome.model.display.ChannelBinding \N 1123 6692 INSERT -35 124 ome.model.display.ChannelBinding \N 1123 6693 INSERT -35 53 ome.model.display.QuantumDef \N 1123 6694 INSERT -35 53 ome.model.display.RenderingDef \N 1123 6695 INSERT -35 125 ome.model.display.ChannelBinding \N 1123 6696 INSERT -35 126 ome.model.display.ChannelBinding \N 1123 6697 INSERT -35 54 ome.model.display.QuantumDef \N 1123 6698 INSERT -35 54 ome.model.display.RenderingDef \N 1123 6699 INSERT -35 127 ome.model.display.ChannelBinding \N 1123 6700 INSERT -35 128 ome.model.display.ChannelBinding \N 1123 6701 INSERT -35 55 ome.model.display.QuantumDef \N 1123 6702 INSERT -35 55 ome.model.display.RenderingDef \N 1123 6703 INSERT -35 129 ome.model.display.ChannelBinding \N 1123 6704 INSERT -35 130 ome.model.display.ChannelBinding \N 1123 6705 INSERT -35 56 ome.model.display.QuantumDef \N 1123 6706 INSERT -35 56 ome.model.display.RenderingDef \N 1123 6707 INSERT -35 131 ome.model.display.ChannelBinding \N 1123 6708 INSERT -35 132 ome.model.display.ChannelBinding \N 1123 6709 INSERT -35 44 ome.model.display.Thumbnail \N 1124 6710 INSERT -35 45 ome.model.display.Thumbnail \N 1124 6711 INSERT -35 46 ome.model.display.Thumbnail \N 1124 6712 INSERT -35 47 ome.model.display.Thumbnail \N 1124 6713 INSERT -35 48 ome.model.display.Thumbnail \N 1124 6714 INSERT -35 49 ome.model.display.Thumbnail \N 1124 6715 UPDATE -35 65 ome.model.core.OriginalFile \N 1125 6716 INSERT -35 50 ome.model.acquisition.Microscope \N 1143 6717 INSERT -35 50 ome.model.acquisition.Instrument \N 1143 6718 INSERT -35 116 ome.model.acquisition.Detector \N 1143 6719 INSERT -35 117 ome.model.acquisition.Detector \N 1143 6720 INSERT -35 118 ome.model.acquisition.Detector \N 1143 6721 INSERT -35 148 ome.model.acquisition.TransmittanceRange \N 1143 6722 INSERT -35 148 ome.model.acquisition.Filter \N 1143 6723 INSERT -35 149 ome.model.acquisition.TransmittanceRange \N 1143 6724 INSERT -35 149 ome.model.acquisition.Filter \N 1143 6725 INSERT -35 150 ome.model.acquisition.TransmittanceRange \N 1143 6726 INSERT -35 150 ome.model.acquisition.Filter \N 1143 6727 INSERT -35 295 ome.model.acquisition.Laser \N 1143 6728 INSERT -35 296 ome.model.acquisition.Laser \N 1143 6729 INSERT -35 297 ome.model.acquisition.Laser \N 1143 6730 INSERT -35 298 ome.model.acquisition.Laser \N 1143 6731 INSERT -35 299 ome.model.acquisition.Laser \N 1143 6732 INSERT -35 300 ome.model.acquisition.Laser \N 1143 6733 INSERT -35 50 ome.model.acquisition.Objective \N 1143 6734 INSERT -35 50 ome.model.acquisition.ObjectiveSettings \N 1143 6735 INSERT -35 50 ome.model.core.Image \N 1143 6736 INSERT -35 66 ome.model.core.OriginalFile \N 1143 6737 INSERT -35 51 ome.model.annotations.FileAnnotation \N 1143 6738 INSERT -35 51 ome.model.annotations.ImageAnnotationLink \N 1143 6739 INSERT -35 50 ome.model.containers.DatasetImageLink \N 1143 6740 INSERT -35 50 ome.model.core.Pixels \N 1143 6741 INSERT -35 116 ome.model.acquisition.DetectorSettings \N 1143 6742 INSERT -35 99 ome.model.acquisition.LightPath \N 1143 6743 INSERT -35 99 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 6744 INSERT -35 94 ome.model.acquisition.LightSettings \N 1143 6745 INSERT -35 116 ome.model.core.LogicalChannel \N 1143 6746 INSERT -35 116 ome.model.core.Channel \N 1143 6747 INSERT -35 117 ome.model.acquisition.DetectorSettings \N 1143 6748 INSERT -35 100 ome.model.acquisition.LightPath \N 1143 6749 INSERT -35 100 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 6750 INSERT -35 117 ome.model.core.LogicalChannel \N 1143 6751 INSERT -35 117 ome.model.core.Channel \N 1143 6752 INSERT -35 118 ome.model.acquisition.DetectorSettings \N 1143 6753 INSERT -35 118 ome.model.core.LogicalChannel \N 1143 6754 INSERT -35 118 ome.model.core.Channel \N 1143 6755 INSERT -35 4078 ome.model.core.PlaneInfo \N 1143 6756 INSERT -35 4079 ome.model.core.PlaneInfo \N 1143 6757 INSERT -35 4080 ome.model.core.PlaneInfo \N 1143 6758 INSERT -35 4081 ome.model.core.PlaneInfo \N 1143 6759 INSERT -35 4082 ome.model.core.PlaneInfo \N 1143 6760 INSERT -35 4083 ome.model.core.PlaneInfo \N 1143 6761 INSERT -35 4084 ome.model.core.PlaneInfo \N 1143 6762 INSERT -35 4085 ome.model.core.PlaneInfo \N 1143 6763 INSERT -35 4086 ome.model.core.PlaneInfo \N 1143 6764 INSERT -35 4087 ome.model.core.PlaneInfo \N 1143 6765 INSERT -35 4088 ome.model.core.PlaneInfo \N 1143 6766 INSERT -35 4089 ome.model.core.PlaneInfo \N 1143 6767 INSERT -35 4090 ome.model.core.PlaneInfo \N 1143 6768 INSERT -35 4091 ome.model.core.PlaneInfo \N 1143 6769 INSERT -35 4092 ome.model.core.PlaneInfo \N 1143 6770 INSERT -35 4093 ome.model.core.PlaneInfo \N 1143 6771 INSERT -35 4094 ome.model.core.PlaneInfo \N 1143 6772 INSERT -35 4095 ome.model.core.PlaneInfo \N 1143 6773 INSERT -35 4096 ome.model.core.PlaneInfo \N 1143 6774 INSERT -35 4097 ome.model.core.PlaneInfo \N 1143 6775 INSERT -35 4098 ome.model.core.PlaneInfo \N 1143 6776 INSERT -35 4099 ome.model.core.PlaneInfo \N 1143 6777 INSERT -35 4100 ome.model.core.PlaneInfo \N 1143 6778 INSERT -35 4101 ome.model.core.PlaneInfo \N 1143 6779 INSERT -35 4102 ome.model.core.PlaneInfo \N 1143 6780 INSERT -35 4103 ome.model.core.PlaneInfo \N 1143 6781 INSERT -35 4104 ome.model.core.PlaneInfo \N 1143 6782 INSERT -35 4105 ome.model.core.PlaneInfo \N 1143 6783 INSERT -35 4106 ome.model.core.PlaneInfo \N 1143 6784 INSERT -35 4107 ome.model.core.PlaneInfo \N 1143 6785 INSERT -35 4108 ome.model.core.PlaneInfo \N 1143 6786 INSERT -35 4109 ome.model.core.PlaneInfo \N 1143 6787 INSERT -35 4110 ome.model.core.PlaneInfo \N 1143 6788 INSERT -35 4111 ome.model.core.PlaneInfo \N 1143 6789 INSERT -35 4112 ome.model.core.PlaneInfo \N 1143 6790 INSERT -35 4113 ome.model.core.PlaneInfo \N 1143 6791 INSERT -35 4114 ome.model.core.PlaneInfo \N 1143 6792 INSERT -35 4115 ome.model.core.PlaneInfo \N 1143 6793 INSERT -35 4116 ome.model.core.PlaneInfo \N 1143 6794 INSERT -35 4117 ome.model.core.PlaneInfo \N 1143 6795 INSERT -35 4118 ome.model.core.PlaneInfo \N 1143 6796 INSERT -35 4119 ome.model.core.PlaneInfo \N 1143 6797 INSERT -35 4120 ome.model.core.PlaneInfo \N 1143 6798 INSERT -35 4121 ome.model.core.PlaneInfo \N 1143 6799 INSERT -35 4122 ome.model.core.PlaneInfo \N 1143 6800 INSERT -35 4123 ome.model.core.PlaneInfo \N 1143 6801 INSERT -35 4124 ome.model.core.PlaneInfo \N 1143 6802 INSERT -35 4125 ome.model.core.PlaneInfo \N 1143 6803 INSERT -35 4126 ome.model.core.PlaneInfo \N 1143 6804 INSERT -35 4127 ome.model.core.PlaneInfo \N 1143 6805 INSERT -35 4128 ome.model.core.PlaneInfo \N 1143 6806 INSERT -35 4129 ome.model.core.PlaneInfo \N 1143 6807 INSERT -35 4130 ome.model.core.PlaneInfo \N 1143 6808 INSERT -35 4131 ome.model.core.PlaneInfo \N 1143 6809 INSERT -35 4132 ome.model.core.PlaneInfo \N 1143 6810 INSERT -35 4133 ome.model.core.PlaneInfo \N 1143 6811 INSERT -35 4134 ome.model.core.PlaneInfo \N 1143 6812 INSERT -35 4135 ome.model.core.PlaneInfo \N 1143 6813 INSERT -35 4136 ome.model.core.PlaneInfo \N 1143 6814 INSERT -35 4137 ome.model.core.PlaneInfo \N 1143 6815 INSERT -35 4138 ome.model.core.PlaneInfo \N 1143 6816 INSERT -35 4139 ome.model.core.PlaneInfo \N 1143 6817 INSERT -35 4140 ome.model.core.PlaneInfo \N 1143 6818 INSERT -35 4141 ome.model.core.PlaneInfo \N 1143 6819 INSERT -35 4142 ome.model.core.PlaneInfo \N 1143 6820 INSERT -35 4143 ome.model.core.PlaneInfo \N 1143 6821 INSERT -35 4144 ome.model.core.PlaneInfo \N 1143 6822 INSERT -35 4145 ome.model.core.PlaneInfo \N 1143 6823 INSERT -35 4146 ome.model.core.PlaneInfo \N 1143 6824 INSERT -35 4147 ome.model.core.PlaneInfo \N 1143 6825 INSERT -35 4148 ome.model.core.PlaneInfo \N 1143 6826 INSERT -35 4149 ome.model.core.PlaneInfo \N 1143 6827 INSERT -35 4150 ome.model.core.PlaneInfo \N 1143 6828 INSERT -35 4151 ome.model.core.PlaneInfo \N 1143 6829 INSERT -35 4152 ome.model.core.PlaneInfo \N 1143 6830 INSERT -35 4153 ome.model.core.PlaneInfo \N 1143 6831 INSERT -35 4154 ome.model.core.PlaneInfo \N 1143 6832 INSERT -35 4155 ome.model.core.PlaneInfo \N 1143 6833 INSERT -35 4156 ome.model.core.PlaneInfo \N 1143 6834 INSERT -35 4157 ome.model.core.PlaneInfo \N 1143 6835 INSERT -35 4158 ome.model.core.PlaneInfo \N 1143 6836 INSERT -35 4159 ome.model.core.PlaneInfo \N 1143 6837 INSERT -35 4160 ome.model.core.PlaneInfo \N 1143 6838 INSERT -35 4161 ome.model.core.PlaneInfo \N 1143 6839 INSERT -35 4162 ome.model.core.PlaneInfo \N 1143 6840 INSERT -35 4163 ome.model.core.PlaneInfo \N 1143 6841 INSERT -35 4164 ome.model.core.PlaneInfo \N 1143 6842 INSERT -35 4165 ome.model.core.PlaneInfo \N 1143 6843 INSERT -35 4166 ome.model.core.PlaneInfo \N 1143 6844 INSERT -35 4167 ome.model.core.PlaneInfo \N 1143 6845 INSERT -35 4168 ome.model.core.PlaneInfo \N 1143 6846 INSERT -35 4169 ome.model.core.PlaneInfo \N 1143 6847 INSERT -35 4170 ome.model.core.PlaneInfo \N 1143 6848 INSERT -35 4171 ome.model.core.PlaneInfo \N 1143 6849 INSERT -35 4172 ome.model.core.PlaneInfo \N 1143 6850 INSERT -35 4173 ome.model.core.PlaneInfo \N 1143 6851 INSERT -35 4174 ome.model.core.PlaneInfo \N 1143 6852 INSERT -35 4175 ome.model.core.PlaneInfo \N 1143 6853 INSERT -35 4176 ome.model.core.PlaneInfo \N 1143 6854 INSERT -35 4177 ome.model.core.PlaneInfo \N 1143 6855 INSERT -35 4178 ome.model.core.PlaneInfo \N 1143 6856 INSERT -35 4179 ome.model.core.PlaneInfo \N 1143 6857 INSERT -35 4180 ome.model.core.PlaneInfo \N 1143 6858 INSERT -35 4181 ome.model.core.PlaneInfo \N 1143 6859 INSERT -35 4182 ome.model.core.PlaneInfo \N 1143 6860 INSERT -35 4183 ome.model.core.PlaneInfo \N 1143 6861 INSERT -35 4184 ome.model.core.PlaneInfo \N 1143 6862 INSERT -35 4185 ome.model.core.PlaneInfo \N 1143 6863 INSERT -35 4186 ome.model.core.PlaneInfo \N 1143 6864 INSERT -35 4187 ome.model.core.PlaneInfo \N 1143 6865 INSERT -35 4188 ome.model.core.PlaneInfo \N 1143 6866 INSERT -35 4189 ome.model.core.PlaneInfo \N 1143 6867 INSERT -35 4190 ome.model.core.PlaneInfo \N 1143 6868 INSERT -35 4191 ome.model.core.PlaneInfo \N 1143 6869 INSERT -35 51 ome.model.acquisition.Microscope \N 1143 6870 INSERT -35 51 ome.model.acquisition.Instrument \N 1143 6871 INSERT -35 119 ome.model.acquisition.Detector \N 1143 6872 INSERT -35 120 ome.model.acquisition.Detector \N 1143 6873 INSERT -35 121 ome.model.acquisition.Detector \N 1143 6874 INSERT -35 151 ome.model.acquisition.TransmittanceRange \N 1143 6875 INSERT -35 151 ome.model.acquisition.Filter \N 1143 6876 INSERT -35 152 ome.model.acquisition.TransmittanceRange \N 1143 6877 INSERT -35 152 ome.model.acquisition.Filter \N 1143 6878 INSERT -35 153 ome.model.acquisition.TransmittanceRange \N 1143 6879 INSERT -35 153 ome.model.acquisition.Filter \N 1143 6880 INSERT -35 301 ome.model.acquisition.Laser \N 1143 6881 INSERT -35 302 ome.model.acquisition.Laser \N 1143 6882 INSERT -35 303 ome.model.acquisition.Laser \N 1143 6883 INSERT -35 304 ome.model.acquisition.Laser \N 1143 6884 INSERT -35 305 ome.model.acquisition.Laser \N 1143 6885 INSERT -35 306 ome.model.acquisition.Laser \N 1143 6886 INSERT -35 51 ome.model.acquisition.Objective \N 1143 6887 INSERT -35 51 ome.model.acquisition.ObjectiveSettings \N 1143 6888 INSERT -35 51 ome.model.core.Image \N 1143 6889 INSERT -35 67 ome.model.core.OriginalFile \N 1143 6890 INSERT -35 52 ome.model.annotations.FileAnnotation \N 1143 6891 INSERT -35 52 ome.model.annotations.ImageAnnotationLink \N 1143 6892 INSERT -35 51 ome.model.containers.DatasetImageLink \N 1143 6893 INSERT -35 51 ome.model.core.Pixels \N 1143 6894 INSERT -35 119 ome.model.acquisition.DetectorSettings \N 1143 6895 INSERT -35 101 ome.model.acquisition.LightPath \N 1143 6896 INSERT -35 101 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 6897 INSERT -35 95 ome.model.acquisition.LightSettings \N 1143 6898 INSERT -35 119 ome.model.core.LogicalChannel \N 1143 6899 INSERT -35 119 ome.model.core.Channel \N 1143 6900 INSERT -35 120 ome.model.acquisition.DetectorSettings \N 1143 6901 INSERT -35 102 ome.model.acquisition.LightPath \N 1143 6902 INSERT -35 102 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 6903 INSERT -35 96 ome.model.acquisition.LightSettings \N 1143 6904 INSERT -35 120 ome.model.core.LogicalChannel \N 1143 6905 INSERT -35 120 ome.model.core.Channel \N 1143 6906 INSERT -35 121 ome.model.acquisition.DetectorSettings \N 1143 6907 INSERT -35 97 ome.model.acquisition.LightSettings \N 1143 6908 INSERT -35 121 ome.model.core.LogicalChannel \N 1143 6909 INSERT -35 121 ome.model.core.Channel \N 1143 6910 INSERT -35 4192 ome.model.core.PlaneInfo \N 1143 6911 INSERT -35 4193 ome.model.core.PlaneInfo \N 1143 6912 INSERT -35 4194 ome.model.core.PlaneInfo \N 1143 6913 INSERT -35 4195 ome.model.core.PlaneInfo \N 1143 6914 INSERT -35 4196 ome.model.core.PlaneInfo \N 1143 6915 INSERT -35 4197 ome.model.core.PlaneInfo \N 1143 6916 INSERT -35 4198 ome.model.core.PlaneInfo \N 1143 6917 INSERT -35 4199 ome.model.core.PlaneInfo \N 1143 6918 INSERT -35 4200 ome.model.core.PlaneInfo \N 1143 6919 INSERT -35 4201 ome.model.core.PlaneInfo \N 1143 6920 INSERT -35 4202 ome.model.core.PlaneInfo \N 1143 6921 INSERT -35 4203 ome.model.core.PlaneInfo \N 1143 6922 INSERT -35 4204 ome.model.core.PlaneInfo \N 1143 6923 INSERT -35 4205 ome.model.core.PlaneInfo \N 1143 6924 INSERT -35 4206 ome.model.core.PlaneInfo \N 1143 6925 INSERT -35 4207 ome.model.core.PlaneInfo \N 1143 6926 INSERT -35 4208 ome.model.core.PlaneInfo \N 1143 6927 INSERT -35 4209 ome.model.core.PlaneInfo \N 1143 6928 INSERT -35 4210 ome.model.core.PlaneInfo \N 1143 6929 INSERT -35 4211 ome.model.core.PlaneInfo \N 1143 6930 INSERT -35 4212 ome.model.core.PlaneInfo \N 1143 6931 INSERT -35 4213 ome.model.core.PlaneInfo \N 1143 6932 INSERT -35 4214 ome.model.core.PlaneInfo \N 1143 6933 INSERT -35 4215 ome.model.core.PlaneInfo \N 1143 6934 INSERT -35 4216 ome.model.core.PlaneInfo \N 1143 6935 INSERT -35 4217 ome.model.core.PlaneInfo \N 1143 6936 INSERT -35 4218 ome.model.core.PlaneInfo \N 1143 6937 INSERT -35 4219 ome.model.core.PlaneInfo \N 1143 6938 INSERT -35 4220 ome.model.core.PlaneInfo \N 1143 6939 INSERT -35 4221 ome.model.core.PlaneInfo \N 1143 6940 INSERT -35 4222 ome.model.core.PlaneInfo \N 1143 6941 INSERT -35 4223 ome.model.core.PlaneInfo \N 1143 6942 INSERT -35 4224 ome.model.core.PlaneInfo \N 1143 6943 INSERT -35 4225 ome.model.core.PlaneInfo \N 1143 6944 INSERT -35 4226 ome.model.core.PlaneInfo \N 1143 6945 INSERT -35 4227 ome.model.core.PlaneInfo \N 1143 6946 INSERT -35 4228 ome.model.core.PlaneInfo \N 1143 6947 INSERT -35 4229 ome.model.core.PlaneInfo \N 1143 6948 INSERT -35 4230 ome.model.core.PlaneInfo \N 1143 6949 INSERT -35 4231 ome.model.core.PlaneInfo \N 1143 6950 INSERT -35 4232 ome.model.core.PlaneInfo \N 1143 6951 INSERT -35 4233 ome.model.core.PlaneInfo \N 1143 6952 INSERT -35 4234 ome.model.core.PlaneInfo \N 1143 6953 INSERT -35 4235 ome.model.core.PlaneInfo \N 1143 6954 INSERT -35 4236 ome.model.core.PlaneInfo \N 1143 6955 INSERT -35 4237 ome.model.core.PlaneInfo \N 1143 6956 INSERT -35 4238 ome.model.core.PlaneInfo \N 1143 6957 INSERT -35 4239 ome.model.core.PlaneInfo \N 1143 6958 INSERT -35 4240 ome.model.core.PlaneInfo \N 1143 6959 INSERT -35 4241 ome.model.core.PlaneInfo \N 1143 6960 INSERT -35 4242 ome.model.core.PlaneInfo \N 1143 6961 INSERT -35 4243 ome.model.core.PlaneInfo \N 1143 6962 INSERT -35 4244 ome.model.core.PlaneInfo \N 1143 6963 INSERT -35 4245 ome.model.core.PlaneInfo \N 1143 6964 INSERT -35 4246 ome.model.core.PlaneInfo \N 1143 6965 INSERT -35 4247 ome.model.core.PlaneInfo \N 1143 6966 INSERT -35 4248 ome.model.core.PlaneInfo \N 1143 6967 INSERT -35 4249 ome.model.core.PlaneInfo \N 1143 6968 INSERT -35 4250 ome.model.core.PlaneInfo \N 1143 6969 INSERT -35 4251 ome.model.core.PlaneInfo \N 1143 6970 INSERT -35 4252 ome.model.core.PlaneInfo \N 1143 6971 INSERT -35 4253 ome.model.core.PlaneInfo \N 1143 6972 INSERT -35 4254 ome.model.core.PlaneInfo \N 1143 6973 INSERT -35 4255 ome.model.core.PlaneInfo \N 1143 6974 INSERT -35 4256 ome.model.core.PlaneInfo \N 1143 6975 INSERT -35 4257 ome.model.core.PlaneInfo \N 1143 6976 INSERT -35 4258 ome.model.core.PlaneInfo \N 1143 6977 INSERT -35 4259 ome.model.core.PlaneInfo \N 1143 6978 INSERT -35 4260 ome.model.core.PlaneInfo \N 1143 6979 INSERT -35 4261 ome.model.core.PlaneInfo \N 1143 6980 INSERT -35 4262 ome.model.core.PlaneInfo \N 1143 6981 INSERT -35 4263 ome.model.core.PlaneInfo \N 1143 6982 INSERT -35 4264 ome.model.core.PlaneInfo \N 1143 6983 INSERT -35 4265 ome.model.core.PlaneInfo \N 1143 6984 INSERT -35 4266 ome.model.core.PlaneInfo \N 1143 6985 INSERT -35 4267 ome.model.core.PlaneInfo \N 1143 6986 INSERT -35 4268 ome.model.core.PlaneInfo \N 1143 6987 INSERT -35 4269 ome.model.core.PlaneInfo \N 1143 6988 INSERT -35 4270 ome.model.core.PlaneInfo \N 1143 6989 INSERT -35 4271 ome.model.core.PlaneInfo \N 1143 6990 INSERT -35 4272 ome.model.core.PlaneInfo \N 1143 6991 INSERT -35 4273 ome.model.core.PlaneInfo \N 1143 6992 INSERT -35 4274 ome.model.core.PlaneInfo \N 1143 6993 INSERT -35 4275 ome.model.core.PlaneInfo \N 1143 6994 INSERT -35 4276 ome.model.core.PlaneInfo \N 1143 6995 INSERT -35 4277 ome.model.core.PlaneInfo \N 1143 6996 INSERT -35 4278 ome.model.core.PlaneInfo \N 1143 6997 INSERT -35 4279 ome.model.core.PlaneInfo \N 1143 6998 INSERT -35 4280 ome.model.core.PlaneInfo \N 1143 6999 INSERT -35 4281 ome.model.core.PlaneInfo \N 1143 7000 INSERT -35 4282 ome.model.core.PlaneInfo \N 1143 7001 INSERT -35 4283 ome.model.core.PlaneInfo \N 1143 7002 INSERT -35 4284 ome.model.core.PlaneInfo \N 1143 7003 INSERT -35 4285 ome.model.core.PlaneInfo \N 1143 7004 INSERT -35 4286 ome.model.core.PlaneInfo \N 1143 7005 INSERT -35 4287 ome.model.core.PlaneInfo \N 1143 7006 INSERT -35 4288 ome.model.core.PlaneInfo \N 1143 7007 INSERT -35 4289 ome.model.core.PlaneInfo \N 1143 7008 INSERT -35 4290 ome.model.core.PlaneInfo \N 1143 7009 INSERT -35 4291 ome.model.core.PlaneInfo \N 1143 7010 INSERT -35 4292 ome.model.core.PlaneInfo \N 1143 7011 INSERT -35 4293 ome.model.core.PlaneInfo \N 1143 7012 INSERT -35 4294 ome.model.core.PlaneInfo \N 1143 7013 INSERT -35 4295 ome.model.core.PlaneInfo \N 1143 7014 INSERT -35 4296 ome.model.core.PlaneInfo \N 1143 7015 INSERT -35 4297 ome.model.core.PlaneInfo \N 1143 7016 INSERT -35 4298 ome.model.core.PlaneInfo \N 1143 7017 INSERT -35 4299 ome.model.core.PlaneInfo \N 1143 7018 INSERT -35 52 ome.model.acquisition.Microscope \N 1143 7019 INSERT -35 52 ome.model.acquisition.Instrument \N 1143 7020 INSERT -35 122 ome.model.acquisition.Detector \N 1143 7021 INSERT -35 123 ome.model.acquisition.Detector \N 1143 7022 INSERT -35 154 ome.model.acquisition.TransmittanceRange \N 1143 7023 INSERT -35 154 ome.model.acquisition.Filter \N 1143 7024 INSERT -35 155 ome.model.acquisition.TransmittanceRange \N 1143 7025 INSERT -35 155 ome.model.acquisition.Filter \N 1143 7026 INSERT -35 156 ome.model.acquisition.TransmittanceRange \N 1143 7027 INSERT -35 156 ome.model.acquisition.Filter \N 1143 7028 INSERT -35 307 ome.model.acquisition.Laser \N 1143 7029 INSERT -35 308 ome.model.acquisition.Laser \N 1143 7030 INSERT -35 309 ome.model.acquisition.Laser \N 1143 7031 INSERT -35 310 ome.model.acquisition.Laser \N 1143 7032 INSERT -35 311 ome.model.acquisition.Laser \N 1143 7033 INSERT -35 312 ome.model.acquisition.Laser \N 1143 7034 INSERT -35 52 ome.model.acquisition.Objective \N 1143 7035 INSERT -35 52 ome.model.acquisition.ObjectiveSettings \N 1143 7036 INSERT -35 52 ome.model.core.Image \N 1143 7037 INSERT -35 68 ome.model.core.OriginalFile \N 1143 7038 INSERT -35 53 ome.model.annotations.FileAnnotation \N 1143 7039 INSERT -35 53 ome.model.annotations.ImageAnnotationLink \N 1143 7040 INSERT -35 52 ome.model.containers.DatasetImageLink \N 1143 7041 INSERT -35 52 ome.model.core.Pixels \N 1143 7042 INSERT -35 122 ome.model.acquisition.DetectorSettings \N 1143 7043 INSERT -35 103 ome.model.acquisition.LightPath \N 1143 7044 INSERT -35 103 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7045 INSERT -35 98 ome.model.acquisition.LightSettings \N 1143 7046 INSERT -35 122 ome.model.core.LogicalChannel \N 1143 7047 INSERT -35 122 ome.model.core.Channel \N 1143 7048 INSERT -35 123 ome.model.acquisition.DetectorSettings \N 1143 7049 INSERT -35 104 ome.model.acquisition.LightPath \N 1143 7050 INSERT -35 104 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7051 INSERT -35 123 ome.model.core.LogicalChannel \N 1143 7052 INSERT -35 123 ome.model.core.Channel \N 1143 7053 INSERT -35 4300 ome.model.core.PlaneInfo \N 1143 7054 INSERT -35 4301 ome.model.core.PlaneInfo \N 1143 7055 INSERT -35 4302 ome.model.core.PlaneInfo \N 1143 7056 INSERT -35 4303 ome.model.core.PlaneInfo \N 1143 7057 INSERT -35 4304 ome.model.core.PlaneInfo \N 1143 7058 INSERT -35 4305 ome.model.core.PlaneInfo \N 1143 7059 INSERT -35 4306 ome.model.core.PlaneInfo \N 1143 7060 INSERT -35 4307 ome.model.core.PlaneInfo \N 1143 7061 INSERT -35 4308 ome.model.core.PlaneInfo \N 1143 7062 INSERT -35 4309 ome.model.core.PlaneInfo \N 1143 7063 INSERT -35 4310 ome.model.core.PlaneInfo \N 1143 7064 INSERT -35 4311 ome.model.core.PlaneInfo \N 1143 7065 INSERT -35 4312 ome.model.core.PlaneInfo \N 1143 7066 INSERT -35 4313 ome.model.core.PlaneInfo \N 1143 7067 INSERT -35 4314 ome.model.core.PlaneInfo \N 1143 7068 INSERT -35 4315 ome.model.core.PlaneInfo \N 1143 7069 INSERT -35 4316 ome.model.core.PlaneInfo \N 1143 7070 INSERT -35 4317 ome.model.core.PlaneInfo \N 1143 7071 INSERT -35 4318 ome.model.core.PlaneInfo \N 1143 7072 INSERT -35 4319 ome.model.core.PlaneInfo \N 1143 7073 INSERT -35 4320 ome.model.core.PlaneInfo \N 1143 7074 INSERT -35 4321 ome.model.core.PlaneInfo \N 1143 7075 INSERT -35 4322 ome.model.core.PlaneInfo \N 1143 7076 INSERT -35 4323 ome.model.core.PlaneInfo \N 1143 7077 INSERT -35 4324 ome.model.core.PlaneInfo \N 1143 7078 INSERT -35 4325 ome.model.core.PlaneInfo \N 1143 7079 INSERT -35 4326 ome.model.core.PlaneInfo \N 1143 7080 INSERT -35 4327 ome.model.core.PlaneInfo \N 1143 7081 INSERT -35 4328 ome.model.core.PlaneInfo \N 1143 7082 INSERT -35 4329 ome.model.core.PlaneInfo \N 1143 7083 INSERT -35 4330 ome.model.core.PlaneInfo \N 1143 7084 INSERT -35 4331 ome.model.core.PlaneInfo \N 1143 7085 INSERT -35 4332 ome.model.core.PlaneInfo \N 1143 7086 INSERT -35 4333 ome.model.core.PlaneInfo \N 1143 7087 INSERT -35 4334 ome.model.core.PlaneInfo \N 1143 7088 INSERT -35 4335 ome.model.core.PlaneInfo \N 1143 7089 INSERT -35 4336 ome.model.core.PlaneInfo \N 1143 7090 INSERT -35 4337 ome.model.core.PlaneInfo \N 1143 7091 INSERT -35 4338 ome.model.core.PlaneInfo \N 1143 7092 INSERT -35 4339 ome.model.core.PlaneInfo \N 1143 7093 INSERT -35 4340 ome.model.core.PlaneInfo \N 1143 7094 INSERT -35 4341 ome.model.core.PlaneInfo \N 1143 7095 INSERT -35 4342 ome.model.core.PlaneInfo \N 1143 7096 INSERT -35 4343 ome.model.core.PlaneInfo \N 1143 7097 INSERT -35 4344 ome.model.core.PlaneInfo \N 1143 7098 INSERT -35 4345 ome.model.core.PlaneInfo \N 1143 7099 INSERT -35 4346 ome.model.core.PlaneInfo \N 1143 7100 INSERT -35 4347 ome.model.core.PlaneInfo \N 1143 7101 INSERT -35 4348 ome.model.core.PlaneInfo \N 1143 7102 INSERT -35 4349 ome.model.core.PlaneInfo \N 1143 7103 INSERT -35 4350 ome.model.core.PlaneInfo \N 1143 7104 INSERT -35 4351 ome.model.core.PlaneInfo \N 1143 7105 INSERT -35 4352 ome.model.core.PlaneInfo \N 1143 7106 INSERT -35 4353 ome.model.core.PlaneInfo \N 1143 7107 INSERT -35 4354 ome.model.core.PlaneInfo \N 1143 7108 INSERT -35 4355 ome.model.core.PlaneInfo \N 1143 7109 INSERT -35 4356 ome.model.core.PlaneInfo \N 1143 7110 INSERT -35 4357 ome.model.core.PlaneInfo \N 1143 7111 INSERT -35 4358 ome.model.core.PlaneInfo \N 1143 7112 INSERT -35 4359 ome.model.core.PlaneInfo \N 1143 7113 INSERT -35 4360 ome.model.core.PlaneInfo \N 1143 7114 INSERT -35 4361 ome.model.core.PlaneInfo \N 1143 7115 INSERT -35 4362 ome.model.core.PlaneInfo \N 1143 7116 INSERT -35 4363 ome.model.core.PlaneInfo \N 1143 7117 INSERT -35 4364 ome.model.core.PlaneInfo \N 1143 7118 INSERT -35 4365 ome.model.core.PlaneInfo \N 1143 7119 INSERT -35 4366 ome.model.core.PlaneInfo \N 1143 7120 INSERT -35 4367 ome.model.core.PlaneInfo \N 1143 7121 INSERT -35 4368 ome.model.core.PlaneInfo \N 1143 7122 INSERT -35 4369 ome.model.core.PlaneInfo \N 1143 7123 INSERT -35 4370 ome.model.core.PlaneInfo \N 1143 7124 INSERT -35 4371 ome.model.core.PlaneInfo \N 1143 7125 INSERT -35 53 ome.model.acquisition.Microscope \N 1143 7126 INSERT -35 53 ome.model.acquisition.Instrument \N 1143 7127 INSERT -35 124 ome.model.acquisition.Detector \N 1143 7128 INSERT -35 125 ome.model.acquisition.Detector \N 1143 7129 INSERT -35 157 ome.model.acquisition.TransmittanceRange \N 1143 7130 INSERT -35 157 ome.model.acquisition.Filter \N 1143 7131 INSERT -35 158 ome.model.acquisition.TransmittanceRange \N 1143 7132 INSERT -35 158 ome.model.acquisition.Filter \N 1143 7133 INSERT -35 159 ome.model.acquisition.TransmittanceRange \N 1143 7134 INSERT -35 159 ome.model.acquisition.Filter \N 1143 7135 INSERT -35 313 ome.model.acquisition.Laser \N 1143 7136 INSERT -35 314 ome.model.acquisition.Laser \N 1143 7137 INSERT -35 315 ome.model.acquisition.Laser \N 1143 7138 INSERT -35 316 ome.model.acquisition.Laser \N 1143 7139 INSERT -35 317 ome.model.acquisition.Laser \N 1143 7140 INSERT -35 318 ome.model.acquisition.Laser \N 1143 7141 INSERT -35 53 ome.model.acquisition.Objective \N 1143 7142 INSERT -35 53 ome.model.acquisition.ObjectiveSettings \N 1143 7143 INSERT -35 53 ome.model.core.Image \N 1143 7144 INSERT -35 69 ome.model.core.OriginalFile \N 1143 7145 INSERT -35 54 ome.model.annotations.FileAnnotation \N 1143 7146 INSERT -35 54 ome.model.annotations.ImageAnnotationLink \N 1143 7147 INSERT -35 53 ome.model.containers.DatasetImageLink \N 1143 7148 INSERT -35 53 ome.model.core.Pixels \N 1143 7149 INSERT -35 124 ome.model.acquisition.DetectorSettings \N 1143 7150 INSERT -35 105 ome.model.acquisition.LightPath \N 1143 7151 INSERT -35 105 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7152 INSERT -35 99 ome.model.acquisition.LightSettings \N 1143 7153 INSERT -35 124 ome.model.core.LogicalChannel \N 1143 7154 INSERT -35 124 ome.model.core.Channel \N 1143 7155 INSERT -35 125 ome.model.acquisition.DetectorSettings \N 1143 7156 INSERT -35 106 ome.model.acquisition.LightPath \N 1143 7157 INSERT -35 106 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7158 INSERT -35 125 ome.model.core.LogicalChannel \N 1143 7159 INSERT -35 125 ome.model.core.Channel \N 1143 7160 INSERT -35 4372 ome.model.core.PlaneInfo \N 1143 7161 INSERT -35 4373 ome.model.core.PlaneInfo \N 1143 7162 INSERT -35 4374 ome.model.core.PlaneInfo \N 1143 7163 INSERT -35 4375 ome.model.core.PlaneInfo \N 1143 7164 INSERT -35 4376 ome.model.core.PlaneInfo \N 1143 7165 INSERT -35 4377 ome.model.core.PlaneInfo \N 1143 7166 INSERT -35 4378 ome.model.core.PlaneInfo \N 1143 7167 INSERT -35 4379 ome.model.core.PlaneInfo \N 1143 7168 INSERT -35 4380 ome.model.core.PlaneInfo \N 1143 7169 INSERT -35 4381 ome.model.core.PlaneInfo \N 1143 7170 INSERT -35 4382 ome.model.core.PlaneInfo \N 1143 7171 INSERT -35 4383 ome.model.core.PlaneInfo \N 1143 7172 INSERT -35 4384 ome.model.core.PlaneInfo \N 1143 7173 INSERT -35 4385 ome.model.core.PlaneInfo \N 1143 7174 INSERT -35 4386 ome.model.core.PlaneInfo \N 1143 7175 INSERT -35 4387 ome.model.core.PlaneInfo \N 1143 7176 INSERT -35 4388 ome.model.core.PlaneInfo \N 1143 7177 INSERT -35 4389 ome.model.core.PlaneInfo \N 1143 7178 INSERT -35 4390 ome.model.core.PlaneInfo \N 1143 7179 INSERT -35 4391 ome.model.core.PlaneInfo \N 1143 7180 INSERT -35 4392 ome.model.core.PlaneInfo \N 1143 7181 INSERT -35 4393 ome.model.core.PlaneInfo \N 1143 7182 INSERT -35 4394 ome.model.core.PlaneInfo \N 1143 7183 INSERT -35 4395 ome.model.core.PlaneInfo \N 1143 7184 INSERT -35 4396 ome.model.core.PlaneInfo \N 1143 7185 INSERT -35 4397 ome.model.core.PlaneInfo \N 1143 7186 INSERT -35 4398 ome.model.core.PlaneInfo \N 1143 7187 INSERT -35 4399 ome.model.core.PlaneInfo \N 1143 7188 INSERT -35 4400 ome.model.core.PlaneInfo \N 1143 7189 INSERT -35 4401 ome.model.core.PlaneInfo \N 1143 7190 INSERT -35 4402 ome.model.core.PlaneInfo \N 1143 7191 INSERT -35 4403 ome.model.core.PlaneInfo \N 1143 7192 INSERT -35 4404 ome.model.core.PlaneInfo \N 1143 7193 INSERT -35 4405 ome.model.core.PlaneInfo \N 1143 7194 INSERT -35 4406 ome.model.core.PlaneInfo \N 1143 7195 INSERT -35 4407 ome.model.core.PlaneInfo \N 1143 7196 INSERT -35 4408 ome.model.core.PlaneInfo \N 1143 7197 INSERT -35 4409 ome.model.core.PlaneInfo \N 1143 7198 INSERT -35 4410 ome.model.core.PlaneInfo \N 1143 7199 INSERT -35 4411 ome.model.core.PlaneInfo \N 1143 7200 INSERT -35 4412 ome.model.core.PlaneInfo \N 1143 7201 INSERT -35 4413 ome.model.core.PlaneInfo \N 1143 7202 INSERT -35 4414 ome.model.core.PlaneInfo \N 1143 7203 INSERT -35 4415 ome.model.core.PlaneInfo \N 1143 7204 INSERT -35 4416 ome.model.core.PlaneInfo \N 1143 7205 INSERT -35 4417 ome.model.core.PlaneInfo \N 1143 7206 INSERT -35 4418 ome.model.core.PlaneInfo \N 1143 7207 INSERT -35 4419 ome.model.core.PlaneInfo \N 1143 7208 INSERT -35 4420 ome.model.core.PlaneInfo \N 1143 7209 INSERT -35 4421 ome.model.core.PlaneInfo \N 1143 7210 INSERT -35 4422 ome.model.core.PlaneInfo \N 1143 7211 INSERT -35 4423 ome.model.core.PlaneInfo \N 1143 7212 INSERT -35 4424 ome.model.core.PlaneInfo \N 1143 7213 INSERT -35 4425 ome.model.core.PlaneInfo \N 1143 7214 INSERT -35 4426 ome.model.core.PlaneInfo \N 1143 7215 INSERT -35 4427 ome.model.core.PlaneInfo \N 1143 7216 INSERT -35 4428 ome.model.core.PlaneInfo \N 1143 7217 INSERT -35 4429 ome.model.core.PlaneInfo \N 1143 7218 INSERT -35 4430 ome.model.core.PlaneInfo \N 1143 7219 INSERT -35 4431 ome.model.core.PlaneInfo \N 1143 7220 INSERT -35 4432 ome.model.core.PlaneInfo \N 1143 7221 INSERT -35 4433 ome.model.core.PlaneInfo \N 1143 7222 INSERT -35 4434 ome.model.core.PlaneInfo \N 1143 7223 INSERT -35 4435 ome.model.core.PlaneInfo \N 1143 7224 INSERT -35 4436 ome.model.core.PlaneInfo \N 1143 7225 INSERT -35 4437 ome.model.core.PlaneInfo \N 1143 7226 INSERT -35 4438 ome.model.core.PlaneInfo \N 1143 7227 INSERT -35 4439 ome.model.core.PlaneInfo \N 1143 7228 INSERT -35 4440 ome.model.core.PlaneInfo \N 1143 7229 INSERT -35 4441 ome.model.core.PlaneInfo \N 1143 7230 INSERT -35 4442 ome.model.core.PlaneInfo \N 1143 7231 INSERT -35 4443 ome.model.core.PlaneInfo \N 1143 7232 INSERT -35 4444 ome.model.core.PlaneInfo \N 1143 7233 INSERT -35 4445 ome.model.core.PlaneInfo \N 1143 7234 INSERT -35 4446 ome.model.core.PlaneInfo \N 1143 7235 INSERT -35 4447 ome.model.core.PlaneInfo \N 1143 7236 INSERT -35 4448 ome.model.core.PlaneInfo \N 1143 7237 INSERT -35 4449 ome.model.core.PlaneInfo \N 1143 7238 INSERT -35 54 ome.model.acquisition.Microscope \N 1143 7239 INSERT -35 54 ome.model.acquisition.Instrument \N 1143 7240 INSERT -35 126 ome.model.acquisition.Detector \N 1143 7241 INSERT -35 127 ome.model.acquisition.Detector \N 1143 7242 INSERT -35 160 ome.model.acquisition.TransmittanceRange \N 1143 7243 INSERT -35 160 ome.model.acquisition.Filter \N 1143 7244 INSERT -35 161 ome.model.acquisition.TransmittanceRange \N 1143 7245 INSERT -35 161 ome.model.acquisition.Filter \N 1143 7246 INSERT -35 162 ome.model.acquisition.TransmittanceRange \N 1143 7247 INSERT -35 162 ome.model.acquisition.Filter \N 1143 7248 INSERT -35 319 ome.model.acquisition.Laser \N 1143 7249 INSERT -35 320 ome.model.acquisition.Laser \N 1143 7250 INSERT -35 321 ome.model.acquisition.Laser \N 1143 7251 INSERT -35 322 ome.model.acquisition.Laser \N 1143 7252 INSERT -35 323 ome.model.acquisition.Laser \N 1143 7253 INSERT -35 324 ome.model.acquisition.Laser \N 1143 7254 INSERT -35 54 ome.model.acquisition.Objective \N 1143 7255 INSERT -35 54 ome.model.acquisition.ObjectiveSettings \N 1143 7256 INSERT -35 54 ome.model.core.Image \N 1143 7257 INSERT -35 70 ome.model.core.OriginalFile \N 1143 7258 INSERT -35 55 ome.model.annotations.FileAnnotation \N 1143 7259 INSERT -35 55 ome.model.annotations.ImageAnnotationLink \N 1143 7260 INSERT -35 54 ome.model.containers.DatasetImageLink \N 1143 7261 INSERT -35 54 ome.model.core.Pixels \N 1143 7262 INSERT -35 126 ome.model.acquisition.DetectorSettings \N 1143 7263 INSERT -35 107 ome.model.acquisition.LightPath \N 1143 7264 INSERT -35 107 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7265 INSERT -35 100 ome.model.acquisition.LightSettings \N 1143 7266 INSERT -35 126 ome.model.core.LogicalChannel \N 1143 7267 INSERT -35 126 ome.model.core.Channel \N 1143 7268 INSERT -35 127 ome.model.acquisition.DetectorSettings \N 1143 7269 INSERT -35 108 ome.model.acquisition.LightPath \N 1143 7270 INSERT -35 108 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7271 INSERT -35 101 ome.model.acquisition.LightSettings \N 1143 7272 INSERT -35 127 ome.model.core.LogicalChannel \N 1143 7273 INSERT -35 127 ome.model.core.Channel \N 1143 7274 INSERT -35 4450 ome.model.core.PlaneInfo \N 1143 7275 INSERT -35 4451 ome.model.core.PlaneInfo \N 1143 7276 INSERT -35 4452 ome.model.core.PlaneInfo \N 1143 7277 INSERT -35 4453 ome.model.core.PlaneInfo \N 1143 7278 INSERT -35 4454 ome.model.core.PlaneInfo \N 1143 7279 INSERT -35 4455 ome.model.core.PlaneInfo \N 1143 7280 INSERT -35 4456 ome.model.core.PlaneInfo \N 1143 7281 INSERT -35 4457 ome.model.core.PlaneInfo \N 1143 7282 INSERT -35 4458 ome.model.core.PlaneInfo \N 1143 7283 INSERT -35 4459 ome.model.core.PlaneInfo \N 1143 7284 INSERT -35 4460 ome.model.core.PlaneInfo \N 1143 7285 INSERT -35 4461 ome.model.core.PlaneInfo \N 1143 7286 INSERT -35 4462 ome.model.core.PlaneInfo \N 1143 7287 INSERT -35 4463 ome.model.core.PlaneInfo \N 1143 7288 INSERT -35 4464 ome.model.core.PlaneInfo \N 1143 7289 INSERT -35 4465 ome.model.core.PlaneInfo \N 1143 7290 INSERT -35 4466 ome.model.core.PlaneInfo \N 1143 7291 INSERT -35 4467 ome.model.core.PlaneInfo \N 1143 7292 INSERT -35 4468 ome.model.core.PlaneInfo \N 1143 7293 INSERT -35 4469 ome.model.core.PlaneInfo \N 1143 7294 INSERT -35 4470 ome.model.core.PlaneInfo \N 1143 7295 INSERT -35 4471 ome.model.core.PlaneInfo \N 1143 7296 INSERT -35 4472 ome.model.core.PlaneInfo \N 1143 7297 INSERT -35 4473 ome.model.core.PlaneInfo \N 1143 7298 INSERT -35 4474 ome.model.core.PlaneInfo \N 1143 7299 INSERT -35 4475 ome.model.core.PlaneInfo \N 1143 7300 INSERT -35 4476 ome.model.core.PlaneInfo \N 1143 7301 INSERT -35 4477 ome.model.core.PlaneInfo \N 1143 7302 INSERT -35 4478 ome.model.core.PlaneInfo \N 1143 7303 INSERT -35 4479 ome.model.core.PlaneInfo \N 1143 7304 INSERT -35 4480 ome.model.core.PlaneInfo \N 1143 7305 INSERT -35 4481 ome.model.core.PlaneInfo \N 1143 7306 INSERT -35 4482 ome.model.core.PlaneInfo \N 1143 7307 INSERT -35 4483 ome.model.core.PlaneInfo \N 1143 7308 INSERT -35 4484 ome.model.core.PlaneInfo \N 1143 7309 INSERT -35 4485 ome.model.core.PlaneInfo \N 1143 7310 INSERT -35 4486 ome.model.core.PlaneInfo \N 1143 7311 INSERT -35 4487 ome.model.core.PlaneInfo \N 1143 7312 INSERT -35 4488 ome.model.core.PlaneInfo \N 1143 7313 INSERT -35 4489 ome.model.core.PlaneInfo \N 1143 7314 INSERT -35 4490 ome.model.core.PlaneInfo \N 1143 7315 INSERT -35 4491 ome.model.core.PlaneInfo \N 1143 7316 INSERT -35 4492 ome.model.core.PlaneInfo \N 1143 7317 INSERT -35 4493 ome.model.core.PlaneInfo \N 1143 7318 INSERT -35 4494 ome.model.core.PlaneInfo \N 1143 7319 INSERT -35 4495 ome.model.core.PlaneInfo \N 1143 7320 INSERT -35 4496 ome.model.core.PlaneInfo \N 1143 7321 INSERT -35 4497 ome.model.core.PlaneInfo \N 1143 7322 INSERT -35 4498 ome.model.core.PlaneInfo \N 1143 7323 INSERT -35 4499 ome.model.core.PlaneInfo \N 1143 7324 INSERT -35 4500 ome.model.core.PlaneInfo \N 1143 7325 INSERT -35 4501 ome.model.core.PlaneInfo \N 1143 7326 INSERT -35 4502 ome.model.core.PlaneInfo \N 1143 7327 INSERT -35 4503 ome.model.core.PlaneInfo \N 1143 7328 INSERT -35 4504 ome.model.core.PlaneInfo \N 1143 7329 INSERT -35 4505 ome.model.core.PlaneInfo \N 1143 7330 INSERT -35 4506 ome.model.core.PlaneInfo \N 1143 7331 INSERT -35 4507 ome.model.core.PlaneInfo \N 1143 7332 INSERT -35 4508 ome.model.core.PlaneInfo \N 1143 7333 INSERT -35 4509 ome.model.core.PlaneInfo \N 1143 7334 INSERT -35 4510 ome.model.core.PlaneInfo \N 1143 7335 INSERT -35 4511 ome.model.core.PlaneInfo \N 1143 7336 INSERT -35 4512 ome.model.core.PlaneInfo \N 1143 7337 INSERT -35 4513 ome.model.core.PlaneInfo \N 1143 7338 INSERT -35 4514 ome.model.core.PlaneInfo \N 1143 7339 INSERT -35 4515 ome.model.core.PlaneInfo \N 1143 7340 INSERT -35 4516 ome.model.core.PlaneInfo \N 1143 7341 INSERT -35 4517 ome.model.core.PlaneInfo \N 1143 7342 INSERT -35 55 ome.model.acquisition.Microscope \N 1143 7343 INSERT -35 55 ome.model.acquisition.Instrument \N 1143 7344 INSERT -35 128 ome.model.acquisition.Detector \N 1143 7345 INSERT -35 129 ome.model.acquisition.Detector \N 1143 7346 INSERT -35 163 ome.model.acquisition.TransmittanceRange \N 1143 7347 INSERT -35 163 ome.model.acquisition.Filter \N 1143 7348 INSERT -35 164 ome.model.acquisition.TransmittanceRange \N 1143 7349 INSERT -35 164 ome.model.acquisition.Filter \N 1143 7350 INSERT -35 165 ome.model.acquisition.TransmittanceRange \N 1143 7351 INSERT -35 165 ome.model.acquisition.Filter \N 1143 7352 INSERT -35 325 ome.model.acquisition.Laser \N 1143 7353 INSERT -35 326 ome.model.acquisition.Laser \N 1143 7354 INSERT -35 327 ome.model.acquisition.Laser \N 1143 7355 INSERT -35 328 ome.model.acquisition.Laser \N 1143 7356 INSERT -35 329 ome.model.acquisition.Laser \N 1143 7357 INSERT -35 330 ome.model.acquisition.Laser \N 1143 7358 INSERT -35 55 ome.model.acquisition.Objective \N 1143 7359 INSERT -35 55 ome.model.acquisition.ObjectiveSettings \N 1143 7360 INSERT -35 55 ome.model.core.Image \N 1143 7361 INSERT -35 71 ome.model.core.OriginalFile \N 1143 7362 INSERT -35 56 ome.model.annotations.FileAnnotation \N 1143 7363 INSERT -35 56 ome.model.annotations.ImageAnnotationLink \N 1143 7364 INSERT -35 55 ome.model.containers.DatasetImageLink \N 1143 7365 INSERT -35 55 ome.model.core.Pixels \N 1143 7366 INSERT -35 128 ome.model.acquisition.DetectorSettings \N 1143 7367 INSERT -35 109 ome.model.acquisition.LightPath \N 1143 7368 INSERT -35 109 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7369 INSERT -35 102 ome.model.acquisition.LightSettings \N 1143 7370 INSERT -35 128 ome.model.core.LogicalChannel \N 1143 7371 INSERT -35 128 ome.model.core.Channel \N 1143 7372 INSERT -35 129 ome.model.acquisition.DetectorSettings \N 1143 7373 INSERT -35 110 ome.model.acquisition.LightPath \N 1143 7374 INSERT -35 110 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7375 INSERT -35 103 ome.model.acquisition.LightSettings \N 1143 7376 INSERT -35 129 ome.model.core.LogicalChannel \N 1143 7377 INSERT -35 129 ome.model.core.Channel \N 1143 7378 INSERT -35 4518 ome.model.core.PlaneInfo \N 1143 7379 INSERT -35 4519 ome.model.core.PlaneInfo \N 1143 7380 INSERT -35 4520 ome.model.core.PlaneInfo \N 1143 7381 INSERT -35 4521 ome.model.core.PlaneInfo \N 1143 7382 INSERT -35 4522 ome.model.core.PlaneInfo \N 1143 7383 INSERT -35 4523 ome.model.core.PlaneInfo \N 1143 7384 INSERT -35 4524 ome.model.core.PlaneInfo \N 1143 7385 INSERT -35 4525 ome.model.core.PlaneInfo \N 1143 7386 INSERT -35 4526 ome.model.core.PlaneInfo \N 1143 7387 INSERT -35 4527 ome.model.core.PlaneInfo \N 1143 7388 INSERT -35 4528 ome.model.core.PlaneInfo \N 1143 7389 INSERT -35 4529 ome.model.core.PlaneInfo \N 1143 7390 INSERT -35 4530 ome.model.core.PlaneInfo \N 1143 7391 INSERT -35 4531 ome.model.core.PlaneInfo \N 1143 7392 INSERT -35 4532 ome.model.core.PlaneInfo \N 1143 7393 INSERT -35 4533 ome.model.core.PlaneInfo \N 1143 7394 INSERT -35 4534 ome.model.core.PlaneInfo \N 1143 7395 INSERT -35 4535 ome.model.core.PlaneInfo \N 1143 7396 INSERT -35 4536 ome.model.core.PlaneInfo \N 1143 7397 INSERT -35 4537 ome.model.core.PlaneInfo \N 1143 7398 INSERT -35 4538 ome.model.core.PlaneInfo \N 1143 7399 INSERT -35 4539 ome.model.core.PlaneInfo \N 1143 7400 INSERT -35 4540 ome.model.core.PlaneInfo \N 1143 7401 INSERT -35 4541 ome.model.core.PlaneInfo \N 1143 7402 INSERT -35 4542 ome.model.core.PlaneInfo \N 1143 7403 INSERT -35 4543 ome.model.core.PlaneInfo \N 1143 7404 INSERT -35 4544 ome.model.core.PlaneInfo \N 1143 7405 INSERT -35 4545 ome.model.core.PlaneInfo \N 1143 7406 INSERT -35 4546 ome.model.core.PlaneInfo \N 1143 7407 INSERT -35 4547 ome.model.core.PlaneInfo \N 1143 7408 INSERT -35 4548 ome.model.core.PlaneInfo \N 1143 7409 INSERT -35 4549 ome.model.core.PlaneInfo \N 1143 7410 INSERT -35 4550 ome.model.core.PlaneInfo \N 1143 7411 INSERT -35 4551 ome.model.core.PlaneInfo \N 1143 7412 INSERT -35 4552 ome.model.core.PlaneInfo \N 1143 7413 INSERT -35 4553 ome.model.core.PlaneInfo \N 1143 7414 INSERT -35 4554 ome.model.core.PlaneInfo \N 1143 7415 INSERT -35 4555 ome.model.core.PlaneInfo \N 1143 7416 INSERT -35 4556 ome.model.core.PlaneInfo \N 1143 7417 INSERT -35 4557 ome.model.core.PlaneInfo \N 1143 7418 INSERT -35 4558 ome.model.core.PlaneInfo \N 1143 7419 INSERT -35 4559 ome.model.core.PlaneInfo \N 1143 7420 INSERT -35 4560 ome.model.core.PlaneInfo \N 1143 7421 INSERT -35 4561 ome.model.core.PlaneInfo \N 1143 7422 INSERT -35 4562 ome.model.core.PlaneInfo \N 1143 7423 INSERT -35 4563 ome.model.core.PlaneInfo \N 1143 7424 INSERT -35 4564 ome.model.core.PlaneInfo \N 1143 7425 INSERT -35 4565 ome.model.core.PlaneInfo \N 1143 7426 INSERT -35 4566 ome.model.core.PlaneInfo \N 1143 7427 INSERT -35 4567 ome.model.core.PlaneInfo \N 1143 7428 INSERT -35 4568 ome.model.core.PlaneInfo \N 1143 7429 INSERT -35 4569 ome.model.core.PlaneInfo \N 1143 7430 INSERT -35 4570 ome.model.core.PlaneInfo \N 1143 7431 INSERT -35 4571 ome.model.core.PlaneInfo \N 1143 7432 INSERT -35 4572 ome.model.core.PlaneInfo \N 1143 7433 INSERT -35 4573 ome.model.core.PlaneInfo \N 1143 7434 INSERT -35 4574 ome.model.core.PlaneInfo \N 1143 7435 INSERT -35 4575 ome.model.core.PlaneInfo \N 1143 7436 INSERT -35 4576 ome.model.core.PlaneInfo \N 1143 7437 INSERT -35 4577 ome.model.core.PlaneInfo \N 1143 7438 INSERT -35 4578 ome.model.core.PlaneInfo \N 1143 7439 INSERT -35 4579 ome.model.core.PlaneInfo \N 1143 7440 INSERT -35 4580 ome.model.core.PlaneInfo \N 1143 7441 INSERT -35 4581 ome.model.core.PlaneInfo \N 1143 7442 INSERT -35 56 ome.model.acquisition.Microscope \N 1143 7443 INSERT -35 56 ome.model.acquisition.Instrument \N 1143 7444 INSERT -35 130 ome.model.acquisition.Detector \N 1143 7445 INSERT -35 131 ome.model.acquisition.Detector \N 1143 7446 INSERT -35 166 ome.model.acquisition.TransmittanceRange \N 1143 7447 INSERT -35 166 ome.model.acquisition.Filter \N 1143 7448 INSERT -35 167 ome.model.acquisition.TransmittanceRange \N 1143 7449 INSERT -35 167 ome.model.acquisition.Filter \N 1143 7450 INSERT -35 168 ome.model.acquisition.TransmittanceRange \N 1143 7451 INSERT -35 168 ome.model.acquisition.Filter \N 1143 7452 INSERT -35 331 ome.model.acquisition.Laser \N 1143 7453 INSERT -35 332 ome.model.acquisition.Laser \N 1143 7454 INSERT -35 333 ome.model.acquisition.Laser \N 1143 7455 INSERT -35 334 ome.model.acquisition.Laser \N 1143 7456 INSERT -35 335 ome.model.acquisition.Laser \N 1143 7457 INSERT -35 336 ome.model.acquisition.Laser \N 1143 7458 INSERT -35 56 ome.model.acquisition.Objective \N 1143 7459 INSERT -35 56 ome.model.acquisition.ObjectiveSettings \N 1143 7460 INSERT -35 56 ome.model.core.Image \N 1143 7461 INSERT -35 72 ome.model.core.OriginalFile \N 1143 7462 INSERT -35 57 ome.model.annotations.FileAnnotation \N 1143 7463 INSERT -35 57 ome.model.annotations.ImageAnnotationLink \N 1143 7464 INSERT -35 56 ome.model.containers.DatasetImageLink \N 1143 7465 INSERT -35 56 ome.model.core.Pixels \N 1143 7466 INSERT -35 130 ome.model.acquisition.DetectorSettings \N 1143 7467 INSERT -35 111 ome.model.acquisition.LightPath \N 1143 7468 INSERT -35 111 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7469 INSERT -35 104 ome.model.acquisition.LightSettings \N 1143 7470 INSERT -35 130 ome.model.core.LogicalChannel \N 1143 7471 INSERT -35 130 ome.model.core.Channel \N 1143 7472 INSERT -35 131 ome.model.acquisition.DetectorSettings \N 1143 7473 INSERT -35 112 ome.model.acquisition.LightPath \N 1143 7474 INSERT -35 112 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7475 INSERT -35 105 ome.model.acquisition.LightSettings \N 1143 7476 INSERT -35 131 ome.model.core.LogicalChannel \N 1143 7477 INSERT -35 131 ome.model.core.Channel \N 1143 7478 INSERT -35 4582 ome.model.core.PlaneInfo \N 1143 7479 INSERT -35 4583 ome.model.core.PlaneInfo \N 1143 7480 INSERT -35 4584 ome.model.core.PlaneInfo \N 1143 7481 INSERT -35 4585 ome.model.core.PlaneInfo \N 1143 7482 INSERT -35 4586 ome.model.core.PlaneInfo \N 1143 7483 INSERT -35 4587 ome.model.core.PlaneInfo \N 1143 7484 INSERT -35 4588 ome.model.core.PlaneInfo \N 1143 7485 INSERT -35 4589 ome.model.core.PlaneInfo \N 1143 7486 INSERT -35 4590 ome.model.core.PlaneInfo \N 1143 7487 INSERT -35 4591 ome.model.core.PlaneInfo \N 1143 7488 INSERT -35 4592 ome.model.core.PlaneInfo \N 1143 7489 INSERT -35 4593 ome.model.core.PlaneInfo \N 1143 7490 INSERT -35 4594 ome.model.core.PlaneInfo \N 1143 7491 INSERT -35 4595 ome.model.core.PlaneInfo \N 1143 7492 INSERT -35 4596 ome.model.core.PlaneInfo \N 1143 7493 INSERT -35 4597 ome.model.core.PlaneInfo \N 1143 7494 INSERT -35 4598 ome.model.core.PlaneInfo \N 1143 7495 INSERT -35 4599 ome.model.core.PlaneInfo \N 1143 7496 INSERT -35 4600 ome.model.core.PlaneInfo \N 1143 7497 INSERT -35 4601 ome.model.core.PlaneInfo \N 1143 7498 INSERT -35 4602 ome.model.core.PlaneInfo \N 1143 7499 INSERT -35 4603 ome.model.core.PlaneInfo \N 1143 7500 INSERT -35 4604 ome.model.core.PlaneInfo \N 1143 7501 INSERT -35 4605 ome.model.core.PlaneInfo \N 1143 7502 INSERT -35 4606 ome.model.core.PlaneInfo \N 1143 7503 INSERT -35 4607 ome.model.core.PlaneInfo \N 1143 7504 INSERT -35 4608 ome.model.core.PlaneInfo \N 1143 7505 INSERT -35 4609 ome.model.core.PlaneInfo \N 1143 7506 INSERT -35 4610 ome.model.core.PlaneInfo \N 1143 7507 INSERT -35 4611 ome.model.core.PlaneInfo \N 1143 7508 INSERT -35 4612 ome.model.core.PlaneInfo \N 1143 7509 INSERT -35 4613 ome.model.core.PlaneInfo \N 1143 7510 INSERT -35 4614 ome.model.core.PlaneInfo \N 1143 7511 INSERT -35 4615 ome.model.core.PlaneInfo \N 1143 7512 INSERT -35 4616 ome.model.core.PlaneInfo \N 1143 7513 INSERT -35 4617 ome.model.core.PlaneInfo \N 1143 7514 INSERT -35 4618 ome.model.core.PlaneInfo \N 1143 7515 INSERT -35 4619 ome.model.core.PlaneInfo \N 1143 7516 INSERT -35 4620 ome.model.core.PlaneInfo \N 1143 7517 INSERT -35 4621 ome.model.core.PlaneInfo \N 1143 7518 INSERT -35 4622 ome.model.core.PlaneInfo \N 1143 7519 INSERT -35 4623 ome.model.core.PlaneInfo \N 1143 7520 INSERT -35 4624 ome.model.core.PlaneInfo \N 1143 7521 INSERT -35 4625 ome.model.core.PlaneInfo \N 1143 7522 INSERT -35 4626 ome.model.core.PlaneInfo \N 1143 7523 INSERT -35 4627 ome.model.core.PlaneInfo \N 1143 7524 INSERT -35 4628 ome.model.core.PlaneInfo \N 1143 7525 INSERT -35 4629 ome.model.core.PlaneInfo \N 1143 7526 INSERT -35 4630 ome.model.core.PlaneInfo \N 1143 7527 INSERT -35 4631 ome.model.core.PlaneInfo \N 1143 7528 INSERT -35 4632 ome.model.core.PlaneInfo \N 1143 7529 INSERT -35 4633 ome.model.core.PlaneInfo \N 1143 7530 INSERT -35 4634 ome.model.core.PlaneInfo \N 1143 7531 INSERT -35 4635 ome.model.core.PlaneInfo \N 1143 7532 INSERT -35 4636 ome.model.core.PlaneInfo \N 1143 7533 INSERT -35 4637 ome.model.core.PlaneInfo \N 1143 7534 INSERT -35 4638 ome.model.core.PlaneInfo \N 1143 7535 INSERT -35 4639 ome.model.core.PlaneInfo \N 1143 7536 INSERT -35 4640 ome.model.core.PlaneInfo \N 1143 7537 INSERT -35 4641 ome.model.core.PlaneInfo \N 1143 7538 INSERT -35 4642 ome.model.core.PlaneInfo \N 1143 7539 INSERT -35 4643 ome.model.core.PlaneInfo \N 1143 7540 INSERT -35 4644 ome.model.core.PlaneInfo \N 1143 7541 INSERT -35 4645 ome.model.core.PlaneInfo \N 1143 7542 INSERT -35 4646 ome.model.core.PlaneInfo \N 1143 7543 INSERT -35 4647 ome.model.core.PlaneInfo \N 1143 7544 INSERT -35 4648 ome.model.core.PlaneInfo \N 1143 7545 INSERT -35 4649 ome.model.core.PlaneInfo \N 1143 7546 INSERT -35 4650 ome.model.core.PlaneInfo \N 1143 7547 INSERT -35 4651 ome.model.core.PlaneInfo \N 1143 7548 INSERT -35 57 ome.model.acquisition.Microscope \N 1143 7549 INSERT -35 57 ome.model.acquisition.Instrument \N 1143 7550 INSERT -35 132 ome.model.acquisition.Detector \N 1143 7551 INSERT -35 133 ome.model.acquisition.Detector \N 1143 7552 INSERT -35 169 ome.model.acquisition.TransmittanceRange \N 1143 7553 INSERT -35 169 ome.model.acquisition.Filter \N 1143 7554 INSERT -35 170 ome.model.acquisition.TransmittanceRange \N 1143 7555 INSERT -35 170 ome.model.acquisition.Filter \N 1143 7556 INSERT -35 171 ome.model.acquisition.TransmittanceRange \N 1143 7557 INSERT -35 171 ome.model.acquisition.Filter \N 1143 7558 INSERT -35 337 ome.model.acquisition.Laser \N 1143 7559 INSERT -35 338 ome.model.acquisition.Laser \N 1143 7560 INSERT -35 339 ome.model.acquisition.Laser \N 1143 7561 INSERT -35 340 ome.model.acquisition.Laser \N 1143 7562 INSERT -35 341 ome.model.acquisition.Laser \N 1143 7563 INSERT -35 342 ome.model.acquisition.Laser \N 1143 7564 INSERT -35 57 ome.model.acquisition.Objective \N 1143 7565 INSERT -35 57 ome.model.acquisition.ObjectiveSettings \N 1143 7566 INSERT -35 57 ome.model.core.Image \N 1143 7567 INSERT -35 73 ome.model.core.OriginalFile \N 1143 7728 INSERT -35 4760 ome.model.core.PlaneInfo \N 1143 7568 INSERT -35 58 ome.model.annotations.FileAnnotation \N 1143 7569 INSERT -35 58 ome.model.annotations.ImageAnnotationLink \N 1143 7570 INSERT -35 57 ome.model.containers.DatasetImageLink \N 1143 7571 INSERT -35 57 ome.model.core.Pixels \N 1143 7572 INSERT -35 132 ome.model.acquisition.DetectorSettings \N 1143 7573 INSERT -35 113 ome.model.acquisition.LightPath \N 1143 7574 INSERT -35 113 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7575 INSERT -35 106 ome.model.acquisition.LightSettings \N 1143 7576 INSERT -35 132 ome.model.core.LogicalChannel \N 1143 7577 INSERT -35 132 ome.model.core.Channel \N 1143 7578 INSERT -35 133 ome.model.acquisition.DetectorSettings \N 1143 7579 INSERT -35 114 ome.model.acquisition.LightPath \N 1143 7580 INSERT -35 114 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7581 INSERT -35 107 ome.model.acquisition.LightSettings \N 1143 7582 INSERT -35 133 ome.model.core.LogicalChannel \N 1143 7583 INSERT -35 133 ome.model.core.Channel \N 1143 7584 INSERT -35 4652 ome.model.core.PlaneInfo \N 1143 7585 INSERT -35 4653 ome.model.core.PlaneInfo \N 1143 7586 INSERT -35 4654 ome.model.core.PlaneInfo \N 1143 7587 INSERT -35 4655 ome.model.core.PlaneInfo \N 1143 7588 INSERT -35 4656 ome.model.core.PlaneInfo \N 1143 7589 INSERT -35 4657 ome.model.core.PlaneInfo \N 1143 7590 INSERT -35 4658 ome.model.core.PlaneInfo \N 1143 7591 INSERT -35 4659 ome.model.core.PlaneInfo \N 1143 7592 INSERT -35 4660 ome.model.core.PlaneInfo \N 1143 7593 INSERT -35 4661 ome.model.core.PlaneInfo \N 1143 7594 INSERT -35 4662 ome.model.core.PlaneInfo \N 1143 7595 INSERT -35 4663 ome.model.core.PlaneInfo \N 1143 7596 INSERT -35 4664 ome.model.core.PlaneInfo \N 1143 7597 INSERT -35 4665 ome.model.core.PlaneInfo \N 1143 7598 INSERT -35 4666 ome.model.core.PlaneInfo \N 1143 7599 INSERT -35 4667 ome.model.core.PlaneInfo \N 1143 7600 INSERT -35 4668 ome.model.core.PlaneInfo \N 1143 7601 INSERT -35 4669 ome.model.core.PlaneInfo \N 1143 7602 INSERT -35 4670 ome.model.core.PlaneInfo \N 1143 7603 INSERT -35 4671 ome.model.core.PlaneInfo \N 1143 7604 INSERT -35 4672 ome.model.core.PlaneInfo \N 1143 7605 INSERT -35 4673 ome.model.core.PlaneInfo \N 1143 7606 INSERT -35 4674 ome.model.core.PlaneInfo \N 1143 7607 INSERT -35 4675 ome.model.core.PlaneInfo \N 1143 7608 INSERT -35 4676 ome.model.core.PlaneInfo \N 1143 7609 INSERT -35 4677 ome.model.core.PlaneInfo \N 1143 7610 INSERT -35 4678 ome.model.core.PlaneInfo \N 1143 7611 INSERT -35 4679 ome.model.core.PlaneInfo \N 1143 7612 INSERT -35 4680 ome.model.core.PlaneInfo \N 1143 7613 INSERT -35 4681 ome.model.core.PlaneInfo \N 1143 7614 INSERT -35 4682 ome.model.core.PlaneInfo \N 1143 7615 INSERT -35 4683 ome.model.core.PlaneInfo \N 1143 7616 INSERT -35 4684 ome.model.core.PlaneInfo \N 1143 7617 INSERT -35 4685 ome.model.core.PlaneInfo \N 1143 7618 INSERT -35 4686 ome.model.core.PlaneInfo \N 1143 7619 INSERT -35 4687 ome.model.core.PlaneInfo \N 1143 7620 INSERT -35 4688 ome.model.core.PlaneInfo \N 1143 7621 INSERT -35 4689 ome.model.core.PlaneInfo \N 1143 7622 INSERT -35 4690 ome.model.core.PlaneInfo \N 1143 7623 INSERT -35 4691 ome.model.core.PlaneInfo \N 1143 7624 INSERT -35 4692 ome.model.core.PlaneInfo \N 1143 7625 INSERT -35 4693 ome.model.core.PlaneInfo \N 1143 7626 INSERT -35 4694 ome.model.core.PlaneInfo \N 1143 7627 INSERT -35 4695 ome.model.core.PlaneInfo \N 1143 7628 INSERT -35 4696 ome.model.core.PlaneInfo \N 1143 7629 INSERT -35 4697 ome.model.core.PlaneInfo \N 1143 7630 INSERT -35 4698 ome.model.core.PlaneInfo \N 1143 7631 INSERT -35 4699 ome.model.core.PlaneInfo \N 1143 7632 INSERT -35 4700 ome.model.core.PlaneInfo \N 1143 7633 INSERT -35 4701 ome.model.core.PlaneInfo \N 1143 7634 INSERT -35 4702 ome.model.core.PlaneInfo \N 1143 7635 INSERT -35 4703 ome.model.core.PlaneInfo \N 1143 7636 INSERT -35 4704 ome.model.core.PlaneInfo \N 1143 7637 INSERT -35 4705 ome.model.core.PlaneInfo \N 1143 7638 INSERT -35 4706 ome.model.core.PlaneInfo \N 1143 7639 INSERT -35 4707 ome.model.core.PlaneInfo \N 1143 7640 INSERT -35 4708 ome.model.core.PlaneInfo \N 1143 7641 INSERT -35 4709 ome.model.core.PlaneInfo \N 1143 7642 INSERT -35 4710 ome.model.core.PlaneInfo \N 1143 7643 INSERT -35 4711 ome.model.core.PlaneInfo \N 1143 7644 INSERT -35 4712 ome.model.core.PlaneInfo \N 1143 7645 INSERT -35 4713 ome.model.core.PlaneInfo \N 1143 7646 INSERT -35 4714 ome.model.core.PlaneInfo \N 1143 7647 INSERT -35 4715 ome.model.core.PlaneInfo \N 1143 7648 INSERT -35 58 ome.model.acquisition.Microscope \N 1143 7649 INSERT -35 58 ome.model.acquisition.Instrument \N 1143 7650 INSERT -35 134 ome.model.acquisition.Detector \N 1143 7651 INSERT -35 135 ome.model.acquisition.Detector \N 1143 7652 INSERT -35 172 ome.model.acquisition.TransmittanceRange \N 1143 7653 INSERT -35 172 ome.model.acquisition.Filter \N 1143 7654 INSERT -35 173 ome.model.acquisition.TransmittanceRange \N 1143 7655 INSERT -35 173 ome.model.acquisition.Filter \N 1143 7656 INSERT -35 174 ome.model.acquisition.TransmittanceRange \N 1143 7657 INSERT -35 174 ome.model.acquisition.Filter \N 1143 7658 INSERT -35 343 ome.model.acquisition.Laser \N 1143 7659 INSERT -35 344 ome.model.acquisition.Laser \N 1143 7660 INSERT -35 345 ome.model.acquisition.Laser \N 1143 7661 INSERT -35 346 ome.model.acquisition.Laser \N 1143 7662 INSERT -35 347 ome.model.acquisition.Laser \N 1143 7663 INSERT -35 348 ome.model.acquisition.Laser \N 1143 7664 INSERT -35 58 ome.model.acquisition.Objective \N 1143 7665 INSERT -35 58 ome.model.acquisition.ObjectiveSettings \N 1143 7666 INSERT -35 58 ome.model.core.Image \N 1143 7667 INSERT -35 74 ome.model.core.OriginalFile \N 1143 7668 INSERT -35 59 ome.model.annotations.FileAnnotation \N 1143 7669 INSERT -35 59 ome.model.annotations.ImageAnnotationLink \N 1143 7670 INSERT -35 58 ome.model.containers.DatasetImageLink \N 1143 7671 INSERT -35 58 ome.model.core.Pixels \N 1143 7672 INSERT -35 134 ome.model.acquisition.DetectorSettings \N 1143 7673 INSERT -35 115 ome.model.acquisition.LightPath \N 1143 7674 INSERT -35 115 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7675 INSERT -35 108 ome.model.acquisition.LightSettings \N 1143 7676 INSERT -35 134 ome.model.core.LogicalChannel \N 1143 7677 INSERT -35 134 ome.model.core.Channel \N 1143 7678 INSERT -35 135 ome.model.acquisition.DetectorSettings \N 1143 7679 INSERT -35 116 ome.model.acquisition.LightPath \N 1143 7680 INSERT -35 116 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7681 INSERT -35 109 ome.model.acquisition.LightSettings \N 1143 7682 INSERT -35 135 ome.model.core.LogicalChannel \N 1143 7683 INSERT -35 135 ome.model.core.Channel \N 1143 7684 INSERT -35 4716 ome.model.core.PlaneInfo \N 1143 7685 INSERT -35 4717 ome.model.core.PlaneInfo \N 1143 7686 INSERT -35 4718 ome.model.core.PlaneInfo \N 1143 7687 INSERT -35 4719 ome.model.core.PlaneInfo \N 1143 7688 INSERT -35 4720 ome.model.core.PlaneInfo \N 1143 7689 INSERT -35 4721 ome.model.core.PlaneInfo \N 1143 7690 INSERT -35 4722 ome.model.core.PlaneInfo \N 1143 7691 INSERT -35 4723 ome.model.core.PlaneInfo \N 1143 7692 INSERT -35 4724 ome.model.core.PlaneInfo \N 1143 7693 INSERT -35 4725 ome.model.core.PlaneInfo \N 1143 7694 INSERT -35 4726 ome.model.core.PlaneInfo \N 1143 7695 INSERT -35 4727 ome.model.core.PlaneInfo \N 1143 7696 INSERT -35 4728 ome.model.core.PlaneInfo \N 1143 7697 INSERT -35 4729 ome.model.core.PlaneInfo \N 1143 7698 INSERT -35 4730 ome.model.core.PlaneInfo \N 1143 7699 INSERT -35 4731 ome.model.core.PlaneInfo \N 1143 7700 INSERT -35 4732 ome.model.core.PlaneInfo \N 1143 7701 INSERT -35 4733 ome.model.core.PlaneInfo \N 1143 7702 INSERT -35 4734 ome.model.core.PlaneInfo \N 1143 7703 INSERT -35 4735 ome.model.core.PlaneInfo \N 1143 7704 INSERT -35 4736 ome.model.core.PlaneInfo \N 1143 7705 INSERT -35 4737 ome.model.core.PlaneInfo \N 1143 7706 INSERT -35 4738 ome.model.core.PlaneInfo \N 1143 7707 INSERT -35 4739 ome.model.core.PlaneInfo \N 1143 7708 INSERT -35 4740 ome.model.core.PlaneInfo \N 1143 7709 INSERT -35 4741 ome.model.core.PlaneInfo \N 1143 7710 INSERT -35 4742 ome.model.core.PlaneInfo \N 1143 7711 INSERT -35 4743 ome.model.core.PlaneInfo \N 1143 7712 INSERT -35 4744 ome.model.core.PlaneInfo \N 1143 7713 INSERT -35 4745 ome.model.core.PlaneInfo \N 1143 7714 INSERT -35 4746 ome.model.core.PlaneInfo \N 1143 7715 INSERT -35 4747 ome.model.core.PlaneInfo \N 1143 7716 INSERT -35 4748 ome.model.core.PlaneInfo \N 1143 7717 INSERT -35 4749 ome.model.core.PlaneInfo \N 1143 7718 INSERT -35 4750 ome.model.core.PlaneInfo \N 1143 7719 INSERT -35 4751 ome.model.core.PlaneInfo \N 1143 7720 INSERT -35 4752 ome.model.core.PlaneInfo \N 1143 7721 INSERT -35 4753 ome.model.core.PlaneInfo \N 1143 7722 INSERT -35 4754 ome.model.core.PlaneInfo \N 1143 7723 INSERT -35 4755 ome.model.core.PlaneInfo \N 1143 7724 INSERT -35 4756 ome.model.core.PlaneInfo \N 1143 7725 INSERT -35 4757 ome.model.core.PlaneInfo \N 1143 7726 INSERT -35 4758 ome.model.core.PlaneInfo \N 1143 7727 INSERT -35 4759 ome.model.core.PlaneInfo \N 1143 7729 INSERT -35 4761 ome.model.core.PlaneInfo \N 1143 7730 INSERT -35 4762 ome.model.core.PlaneInfo \N 1143 7731 INSERT -35 4763 ome.model.core.PlaneInfo \N 1143 7732 INSERT -35 4764 ome.model.core.PlaneInfo \N 1143 7733 INSERT -35 4765 ome.model.core.PlaneInfo \N 1143 7734 INSERT -35 4766 ome.model.core.PlaneInfo \N 1143 7735 INSERT -35 4767 ome.model.core.PlaneInfo \N 1143 7736 INSERT -35 4768 ome.model.core.PlaneInfo \N 1143 7737 INSERT -35 4769 ome.model.core.PlaneInfo \N 1143 7738 INSERT -35 4770 ome.model.core.PlaneInfo \N 1143 7739 INSERT -35 4771 ome.model.core.PlaneInfo \N 1143 7740 INSERT -35 4772 ome.model.core.PlaneInfo \N 1143 7741 INSERT -35 4773 ome.model.core.PlaneInfo \N 1143 7742 INSERT -35 4774 ome.model.core.PlaneInfo \N 1143 7743 INSERT -35 4775 ome.model.core.PlaneInfo \N 1143 7744 INSERT -35 4776 ome.model.core.PlaneInfo \N 1143 7745 INSERT -35 4777 ome.model.core.PlaneInfo \N 1143 7746 INSERT -35 4778 ome.model.core.PlaneInfo \N 1143 7747 INSERT -35 4779 ome.model.core.PlaneInfo \N 1143 7748 INSERT -35 4780 ome.model.core.PlaneInfo \N 1143 7749 INSERT -35 4781 ome.model.core.PlaneInfo \N 1143 7750 INSERT -35 4782 ome.model.core.PlaneInfo \N 1143 7751 INSERT -35 4783 ome.model.core.PlaneInfo \N 1143 7752 INSERT -35 4784 ome.model.core.PlaneInfo \N 1143 7753 INSERT -35 4785 ome.model.core.PlaneInfo \N 1143 7754 INSERT -35 4786 ome.model.core.PlaneInfo \N 1143 7755 INSERT -35 4787 ome.model.core.PlaneInfo \N 1143 7756 INSERT -35 4788 ome.model.core.PlaneInfo \N 1143 7757 INSERT -35 4789 ome.model.core.PlaneInfo \N 1143 7758 INSERT -35 4790 ome.model.core.PlaneInfo \N 1143 7759 INSERT -35 4791 ome.model.core.PlaneInfo \N 1143 7760 INSERT -35 4792 ome.model.core.PlaneInfo \N 1143 7761 INSERT -35 4793 ome.model.core.PlaneInfo \N 1143 7762 INSERT -35 59 ome.model.acquisition.Microscope \N 1143 7763 INSERT -35 59 ome.model.acquisition.Instrument \N 1143 7764 INSERT -35 136 ome.model.acquisition.Detector \N 1143 7765 INSERT -35 137 ome.model.acquisition.Detector \N 1143 7766 INSERT -35 175 ome.model.acquisition.TransmittanceRange \N 1143 7767 INSERT -35 175 ome.model.acquisition.Filter \N 1143 7768 INSERT -35 176 ome.model.acquisition.TransmittanceRange \N 1143 7769 INSERT -35 176 ome.model.acquisition.Filter \N 1143 7770 INSERT -35 177 ome.model.acquisition.TransmittanceRange \N 1143 7771 INSERT -35 177 ome.model.acquisition.Filter \N 1143 7772 INSERT -35 349 ome.model.acquisition.Laser \N 1143 7773 INSERT -35 350 ome.model.acquisition.Laser \N 1143 7774 INSERT -35 351 ome.model.acquisition.Laser \N 1143 7775 INSERT -35 352 ome.model.acquisition.Laser \N 1143 7776 INSERT -35 353 ome.model.acquisition.Laser \N 1143 7777 INSERT -35 354 ome.model.acquisition.Laser \N 1143 7778 INSERT -35 59 ome.model.acquisition.Objective \N 1143 7779 INSERT -35 59 ome.model.acquisition.ObjectiveSettings \N 1143 7780 INSERT -35 59 ome.model.core.Image \N 1143 7781 INSERT -35 75 ome.model.core.OriginalFile \N 1143 7782 INSERT -35 60 ome.model.annotations.FileAnnotation \N 1143 7783 INSERT -35 60 ome.model.annotations.ImageAnnotationLink \N 1143 7784 INSERT -35 59 ome.model.containers.DatasetImageLink \N 1143 7785 INSERT -35 59 ome.model.core.Pixels \N 1143 7786 INSERT -35 136 ome.model.acquisition.DetectorSettings \N 1143 7787 INSERT -35 117 ome.model.acquisition.LightPath \N 1143 7788 INSERT -35 117 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7789 INSERT -35 110 ome.model.acquisition.LightSettings \N 1143 7790 INSERT -35 136 ome.model.core.LogicalChannel \N 1143 7791 INSERT -35 136 ome.model.core.Channel \N 1143 7792 INSERT -35 137 ome.model.acquisition.DetectorSettings \N 1143 7793 INSERT -35 118 ome.model.acquisition.LightPath \N 1143 7794 INSERT -35 118 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7795 INSERT -35 111 ome.model.acquisition.LightSettings \N 1143 7796 INSERT -35 137 ome.model.core.LogicalChannel \N 1143 7797 INSERT -35 137 ome.model.core.Channel \N 1143 7798 INSERT -35 4794 ome.model.core.PlaneInfo \N 1143 7799 INSERT -35 4795 ome.model.core.PlaneInfo \N 1143 7800 INSERT -35 4796 ome.model.core.PlaneInfo \N 1143 7801 INSERT -35 4797 ome.model.core.PlaneInfo \N 1143 7802 INSERT -35 4798 ome.model.core.PlaneInfo \N 1143 7803 INSERT -35 4799 ome.model.core.PlaneInfo \N 1143 7804 INSERT -35 4800 ome.model.core.PlaneInfo \N 1143 7805 INSERT -35 4801 ome.model.core.PlaneInfo \N 1143 7806 INSERT -35 4802 ome.model.core.PlaneInfo \N 1143 7807 INSERT -35 4803 ome.model.core.PlaneInfo \N 1143 7808 INSERT -35 4804 ome.model.core.PlaneInfo \N 1143 7809 INSERT -35 4805 ome.model.core.PlaneInfo \N 1143 7810 INSERT -35 4806 ome.model.core.PlaneInfo \N 1143 7811 INSERT -35 4807 ome.model.core.PlaneInfo \N 1143 7812 INSERT -35 4808 ome.model.core.PlaneInfo \N 1143 7813 INSERT -35 4809 ome.model.core.PlaneInfo \N 1143 7814 INSERT -35 4810 ome.model.core.PlaneInfo \N 1143 7815 INSERT -35 4811 ome.model.core.PlaneInfo \N 1143 7816 INSERT -35 4812 ome.model.core.PlaneInfo \N 1143 7817 INSERT -35 4813 ome.model.core.PlaneInfo \N 1143 7818 INSERT -35 4814 ome.model.core.PlaneInfo \N 1143 7819 INSERT -35 4815 ome.model.core.PlaneInfo \N 1143 7820 INSERT -35 4816 ome.model.core.PlaneInfo \N 1143 7821 INSERT -35 4817 ome.model.core.PlaneInfo \N 1143 7822 INSERT -35 4818 ome.model.core.PlaneInfo \N 1143 7823 INSERT -35 4819 ome.model.core.PlaneInfo \N 1143 7824 INSERT -35 4820 ome.model.core.PlaneInfo \N 1143 7825 INSERT -35 4821 ome.model.core.PlaneInfo \N 1143 7826 INSERT -35 4822 ome.model.core.PlaneInfo \N 1143 7827 INSERT -35 4823 ome.model.core.PlaneInfo \N 1143 7828 INSERT -35 4824 ome.model.core.PlaneInfo \N 1143 7829 INSERT -35 4825 ome.model.core.PlaneInfo \N 1143 7830 INSERT -35 4826 ome.model.core.PlaneInfo \N 1143 7831 INSERT -35 4827 ome.model.core.PlaneInfo \N 1143 7832 INSERT -35 4828 ome.model.core.PlaneInfo \N 1143 7833 INSERT -35 4829 ome.model.core.PlaneInfo \N 1143 7834 INSERT -35 4830 ome.model.core.PlaneInfo \N 1143 7835 INSERT -35 4831 ome.model.core.PlaneInfo \N 1143 7836 INSERT -35 4832 ome.model.core.PlaneInfo \N 1143 7837 INSERT -35 4833 ome.model.core.PlaneInfo \N 1143 7838 INSERT -35 4834 ome.model.core.PlaneInfo \N 1143 7839 INSERT -35 4835 ome.model.core.PlaneInfo \N 1143 7840 INSERT -35 4836 ome.model.core.PlaneInfo \N 1143 7841 INSERT -35 4837 ome.model.core.PlaneInfo \N 1143 7842 INSERT -35 4838 ome.model.core.PlaneInfo \N 1143 7843 INSERT -35 4839 ome.model.core.PlaneInfo \N 1143 7844 INSERT -35 4840 ome.model.core.PlaneInfo \N 1143 7845 INSERT -35 4841 ome.model.core.PlaneInfo \N 1143 7846 INSERT -35 4842 ome.model.core.PlaneInfo \N 1143 7847 INSERT -35 4843 ome.model.core.PlaneInfo \N 1143 7848 INSERT -35 4844 ome.model.core.PlaneInfo \N 1143 7849 INSERT -35 4845 ome.model.core.PlaneInfo \N 1143 7850 INSERT -35 4846 ome.model.core.PlaneInfo \N 1143 7851 INSERT -35 4847 ome.model.core.PlaneInfo \N 1143 7852 INSERT -35 4848 ome.model.core.PlaneInfo \N 1143 7853 INSERT -35 4849 ome.model.core.PlaneInfo \N 1143 7854 INSERT -35 4850 ome.model.core.PlaneInfo \N 1143 7855 INSERT -35 4851 ome.model.core.PlaneInfo \N 1143 7856 INSERT -35 4852 ome.model.core.PlaneInfo \N 1143 7857 INSERT -35 4853 ome.model.core.PlaneInfo \N 1143 7858 INSERT -35 4854 ome.model.core.PlaneInfo \N 1143 7859 INSERT -35 4855 ome.model.core.PlaneInfo \N 1143 7860 INSERT -35 4856 ome.model.core.PlaneInfo \N 1143 7861 INSERT -35 4857 ome.model.core.PlaneInfo \N 1143 7862 INSERT -35 4858 ome.model.core.PlaneInfo \N 1143 7863 INSERT -35 4859 ome.model.core.PlaneInfo \N 1143 7864 INSERT -35 4860 ome.model.core.PlaneInfo \N 1143 7865 INSERT -35 4861 ome.model.core.PlaneInfo \N 1143 7866 INSERT -35 4862 ome.model.core.PlaneInfo \N 1143 7867 INSERT -35 4863 ome.model.core.PlaneInfo \N 1143 7868 INSERT -35 60 ome.model.acquisition.Microscope \N 1143 7869 INSERT -35 60 ome.model.acquisition.Instrument \N 1143 7870 INSERT -35 138 ome.model.acquisition.Detector \N 1143 7871 INSERT -35 139 ome.model.acquisition.Detector \N 1143 7872 INSERT -35 178 ome.model.acquisition.TransmittanceRange \N 1143 7873 INSERT -35 178 ome.model.acquisition.Filter \N 1143 7874 INSERT -35 179 ome.model.acquisition.TransmittanceRange \N 1143 7875 INSERT -35 179 ome.model.acquisition.Filter \N 1143 7876 INSERT -35 180 ome.model.acquisition.TransmittanceRange \N 1143 7877 INSERT -35 180 ome.model.acquisition.Filter \N 1143 7878 INSERT -35 355 ome.model.acquisition.Laser \N 1143 7879 INSERT -35 356 ome.model.acquisition.Laser \N 1143 7880 INSERT -35 357 ome.model.acquisition.Laser \N 1143 7881 INSERT -35 358 ome.model.acquisition.Laser \N 1143 7882 INSERT -35 359 ome.model.acquisition.Laser \N 1143 7883 INSERT -35 360 ome.model.acquisition.Laser \N 1143 7884 INSERT -35 60 ome.model.acquisition.Objective \N 1143 7885 INSERT -35 60 ome.model.acquisition.ObjectiveSettings \N 1143 7886 INSERT -35 60 ome.model.core.Image \N 1143 7887 INSERT -35 76 ome.model.core.OriginalFile \N 1143 7888 INSERT -35 61 ome.model.annotations.FileAnnotation \N 1143 7889 INSERT -35 61 ome.model.annotations.ImageAnnotationLink \N 1143 7890 INSERT -35 60 ome.model.containers.DatasetImageLink \N 1143 7891 INSERT -35 60 ome.model.core.Pixels \N 1143 7892 INSERT -35 138 ome.model.acquisition.DetectorSettings \N 1143 7893 INSERT -35 119 ome.model.acquisition.LightPath \N 1143 7894 INSERT -35 119 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7895 INSERT -35 112 ome.model.acquisition.LightSettings \N 1143 7896 INSERT -35 138 ome.model.core.LogicalChannel \N 1143 7897 INSERT -35 138 ome.model.core.Channel \N 1143 7898 INSERT -35 139 ome.model.acquisition.DetectorSettings \N 1143 7899 INSERT -35 120 ome.model.acquisition.LightPath \N 1143 7900 INSERT -35 120 ome.model.acquisition.LightPathEmissionFilterLink \N 1143 7901 INSERT -35 113 ome.model.acquisition.LightSettings \N 1143 7902 INSERT -35 139 ome.model.core.LogicalChannel \N 1143 7903 INSERT -35 139 ome.model.core.Channel \N 1143 7904 INSERT -35 4864 ome.model.core.PlaneInfo \N 1143 7905 INSERT -35 4865 ome.model.core.PlaneInfo \N 1143 7906 INSERT -35 4866 ome.model.core.PlaneInfo \N 1143 7907 INSERT -35 4867 ome.model.core.PlaneInfo \N 1143 7908 INSERT -35 4868 ome.model.core.PlaneInfo \N 1143 7909 INSERT -35 4869 ome.model.core.PlaneInfo \N 1143 7910 INSERT -35 4870 ome.model.core.PlaneInfo \N 1143 7911 INSERT -35 4871 ome.model.core.PlaneInfo \N 1143 7912 INSERT -35 4872 ome.model.core.PlaneInfo \N 1143 7913 INSERT -35 4873 ome.model.core.PlaneInfo \N 1143 7914 INSERT -35 4874 ome.model.core.PlaneInfo \N 1143 7915 INSERT -35 4875 ome.model.core.PlaneInfo \N 1143 7916 INSERT -35 4876 ome.model.core.PlaneInfo \N 1143 7917 INSERT -35 4877 ome.model.core.PlaneInfo \N 1143 7918 INSERT -35 4878 ome.model.core.PlaneInfo \N 1143 7919 INSERT -35 4879 ome.model.core.PlaneInfo \N 1143 7920 INSERT -35 4880 ome.model.core.PlaneInfo \N 1143 7921 INSERT -35 4881 ome.model.core.PlaneInfo \N 1143 7922 INSERT -35 4882 ome.model.core.PlaneInfo \N 1143 7923 INSERT -35 4883 ome.model.core.PlaneInfo \N 1143 7924 INSERT -35 4884 ome.model.core.PlaneInfo \N 1143 7925 INSERT -35 4885 ome.model.core.PlaneInfo \N 1143 7926 INSERT -35 4886 ome.model.core.PlaneInfo \N 1143 7927 INSERT -35 4887 ome.model.core.PlaneInfo \N 1143 7928 INSERT -35 4888 ome.model.core.PlaneInfo \N 1143 7929 INSERT -35 4889 ome.model.core.PlaneInfo \N 1143 7930 INSERT -35 4890 ome.model.core.PlaneInfo \N 1143 7931 INSERT -35 4891 ome.model.core.PlaneInfo \N 1143 7932 INSERT -35 4892 ome.model.core.PlaneInfo \N 1143 7933 INSERT -35 4893 ome.model.core.PlaneInfo \N 1143 7934 INSERT -35 4894 ome.model.core.PlaneInfo \N 1143 7935 INSERT -35 4895 ome.model.core.PlaneInfo \N 1143 7936 INSERT -35 4896 ome.model.core.PlaneInfo \N 1143 7937 INSERT -35 4897 ome.model.core.PlaneInfo \N 1143 7938 INSERT -35 4898 ome.model.core.PlaneInfo \N 1143 7939 INSERT -35 4899 ome.model.core.PlaneInfo \N 1143 7940 INSERT -35 4900 ome.model.core.PlaneInfo \N 1143 7941 INSERT -35 4901 ome.model.core.PlaneInfo \N 1143 7942 INSERT -35 4902 ome.model.core.PlaneInfo \N 1143 7943 INSERT -35 4903 ome.model.core.PlaneInfo \N 1143 7944 INSERT -35 4904 ome.model.core.PlaneInfo \N 1143 7945 INSERT -35 4905 ome.model.core.PlaneInfo \N 1143 7946 INSERT -35 4906 ome.model.core.PlaneInfo \N 1143 7947 INSERT -35 4907 ome.model.core.PlaneInfo \N 1143 7948 INSERT -35 4908 ome.model.core.PlaneInfo \N 1143 7949 INSERT -35 4909 ome.model.core.PlaneInfo \N 1143 7950 INSERT -35 4910 ome.model.core.PlaneInfo \N 1143 7951 INSERT -35 4911 ome.model.core.PlaneInfo \N 1143 7952 INSERT -35 4912 ome.model.core.PlaneInfo \N 1143 7953 INSERT -35 4913 ome.model.core.PlaneInfo \N 1143 7954 INSERT -35 4914 ome.model.core.PlaneInfo \N 1143 7955 INSERT -35 4915 ome.model.core.PlaneInfo \N 1143 7956 INSERT -35 4916 ome.model.core.PlaneInfo \N 1143 7957 INSERT -35 4917 ome.model.core.PlaneInfo \N 1143 7958 INSERT -35 4918 ome.model.core.PlaneInfo \N 1143 7959 INSERT -35 4919 ome.model.core.PlaneInfo \N 1143 7960 INSERT -35 4920 ome.model.core.PlaneInfo \N 1143 7961 INSERT -35 4921 ome.model.core.PlaneInfo \N 1143 7962 INSERT -35 4922 ome.model.core.PlaneInfo \N 1143 7963 INSERT -35 4923 ome.model.core.PlaneInfo \N 1143 7964 INSERT -35 4924 ome.model.core.PlaneInfo \N 1143 7965 INSERT -35 4925 ome.model.core.PlaneInfo \N 1143 7966 INSERT -35 4926 ome.model.core.PlaneInfo \N 1143 7967 INSERT -35 4927 ome.model.core.PlaneInfo \N 1143 7968 INSERT -35 4928 ome.model.core.PlaneInfo \N 1143 7969 INSERT -35 4929 ome.model.core.PlaneInfo \N 1143 7970 INSERT -35 4930 ome.model.core.PlaneInfo \N 1143 7971 INSERT -35 4931 ome.model.core.PlaneInfo \N 1143 7972 INSERT -35 4932 ome.model.core.PlaneInfo \N 1143 7973 INSERT -35 4933 ome.model.core.PlaneInfo \N 1143 7974 INSERT -35 4934 ome.model.core.PlaneInfo \N 1143 7975 INSERT -35 4935 ome.model.core.PlaneInfo \N 1143 7976 INSERT -35 4936 ome.model.core.PlaneInfo \N 1143 7977 INSERT -35 4937 ome.model.core.PlaneInfo \N 1143 7978 INSERT -35 4938 ome.model.core.PlaneInfo \N 1143 7979 INSERT -35 4939 ome.model.core.PlaneInfo \N 1143 7980 INSERT -35 4940 ome.model.core.PlaneInfo \N 1143 7981 INSERT -35 4941 ome.model.core.PlaneInfo \N 1143 7982 INSERT -35 4942 ome.model.core.PlaneInfo \N 1143 7983 INSERT -35 4943 ome.model.core.PlaneInfo \N 1143 7984 INSERT -35 4944 ome.model.core.PlaneInfo \N 1143 7985 INSERT -35 4945 ome.model.core.PlaneInfo \N 1143 7986 INSERT -35 4946 ome.model.core.PlaneInfo \N 1143 7987 INSERT -35 4947 ome.model.core.PlaneInfo \N 1143 7988 INSERT -35 4948 ome.model.core.PlaneInfo \N 1143 7989 INSERT -35 4949 ome.model.core.PlaneInfo \N 1143 7990 INSERT -35 4950 ome.model.core.PlaneInfo \N 1143 7991 INSERT -35 4951 ome.model.core.PlaneInfo \N 1143 7992 INSERT -35 4952 ome.model.core.PlaneInfo \N 1143 7993 INSERT -35 4953 ome.model.core.PlaneInfo \N 1143 7994 INSERT -35 57 ome.model.display.QuantumDef \N 1145 7995 INSERT -35 57 ome.model.display.RenderingDef \N 1145 7996 INSERT -35 133 ome.model.display.ChannelBinding \N 1145 7997 INSERT -35 134 ome.model.display.ChannelBinding \N 1145 7998 INSERT -35 58 ome.model.display.QuantumDef \N 1145 7999 INSERT -35 58 ome.model.display.RenderingDef \N 1145 8000 INSERT -35 135 ome.model.display.ChannelBinding \N 1145 8001 INSERT -35 136 ome.model.display.ChannelBinding \N 1145 8002 INSERT -35 137 ome.model.display.ChannelBinding \N 1145 8003 INSERT -35 59 ome.model.display.QuantumDef \N 1145 8004 INSERT -35 59 ome.model.display.RenderingDef \N 1145 8005 INSERT -35 138 ome.model.display.ChannelBinding \N 1145 8006 INSERT -35 139 ome.model.display.ChannelBinding \N 1145 8007 INSERT -35 140 ome.model.display.ChannelBinding \N 1145 8008 INSERT -35 50 ome.model.display.Thumbnail \N 1145 8009 INSERT -35 51 ome.model.display.Thumbnail \N 1145 8010 INSERT -35 52 ome.model.display.Thumbnail \N 1145 8011 INSERT -35 53 ome.model.display.Thumbnail \N 1145 8012 INSERT -35 54 ome.model.display.Thumbnail \N 1145 8013 INSERT -35 55 ome.model.display.Thumbnail \N 1145 8014 INSERT -35 56 ome.model.display.Thumbnail \N 1145 8015 INSERT -35 57 ome.model.display.Thumbnail \N 1145 8016 INSERT -35 58 ome.model.display.Thumbnail \N 1145 8017 INSERT -35 59 ome.model.display.Thumbnail \N 1145 8018 INSERT -35 60 ome.model.display.Thumbnail \N 1145 8019 UPDATE -35 60 ome.model.core.Pixels \N 1146 8020 UPDATE -35 50 ome.model.core.Pixels \N 1147 8021 UPDATE -35 51 ome.model.core.Pixels \N 1147 8022 UPDATE -35 52 ome.model.core.Pixels \N 1147 8023 UPDATE -35 53 ome.model.core.Pixels \N 1147 8024 UPDATE -35 54 ome.model.core.Pixels \N 1147 8025 UPDATE -35 55 ome.model.core.Pixels \N 1147 8026 UPDATE -35 56 ome.model.core.Pixels \N 1147 8027 UPDATE -35 57 ome.model.core.Pixels \N 1147 8028 UPDATE -35 58 ome.model.core.Pixels \N 1147 8029 UPDATE -35 59 ome.model.core.Pixels \N 1147 8030 UPDATE -35 60 ome.model.core.Pixels \N 1147 8031 INSERT -35 116 ome.model.stats.StatsInfo \N 1148 8032 INSERT -35 117 ome.model.stats.StatsInfo \N 1148 8033 INSERT -35 118 ome.model.stats.StatsInfo \N 1148 8034 INSERT -35 119 ome.model.stats.StatsInfo \N 1148 8035 INSERT -35 120 ome.model.stats.StatsInfo \N 1148 8036 INSERT -35 121 ome.model.stats.StatsInfo \N 1148 8037 INSERT -35 122 ome.model.stats.StatsInfo \N 1148 8038 INSERT -35 123 ome.model.stats.StatsInfo \N 1148 8039 INSERT -35 124 ome.model.stats.StatsInfo \N 1148 8040 INSERT -35 125 ome.model.stats.StatsInfo \N 1148 8041 INSERT -35 126 ome.model.stats.StatsInfo \N 1148 8042 INSERT -35 127 ome.model.stats.StatsInfo \N 1148 8043 INSERT -35 128 ome.model.stats.StatsInfo \N 1148 8044 INSERT -35 129 ome.model.stats.StatsInfo \N 1148 8045 INSERT -35 130 ome.model.stats.StatsInfo \N 1148 8046 INSERT -35 131 ome.model.stats.StatsInfo \N 1148 8047 INSERT -35 132 ome.model.stats.StatsInfo \N 1148 8048 INSERT -35 133 ome.model.stats.StatsInfo \N 1148 8049 INSERT -35 134 ome.model.stats.StatsInfo \N 1148 8050 INSERT -35 135 ome.model.stats.StatsInfo \N 1148 8051 INSERT -35 136 ome.model.stats.StatsInfo \N 1148 8052 INSERT -35 137 ome.model.stats.StatsInfo \N 1148 8053 INSERT -35 138 ome.model.stats.StatsInfo \N 1148 8054 INSERT -35 139 ome.model.stats.StatsInfo \N 1148 8055 UPDATE -35 116 ome.model.core.Channel \N 1148 8056 UPDATE -35 117 ome.model.core.Channel \N 1148 8057 UPDATE -35 118 ome.model.core.Channel \N 1148 8058 UPDATE -35 119 ome.model.core.Channel \N 1148 8059 UPDATE -35 120 ome.model.core.Channel \N 1148 8060 UPDATE -35 121 ome.model.core.Channel \N 1148 8061 UPDATE -35 122 ome.model.core.Channel \N 1148 8062 UPDATE -35 123 ome.model.core.Channel \N 1148 8063 UPDATE -35 124 ome.model.core.Channel \N 1148 8064 UPDATE -35 125 ome.model.core.Channel \N 1148 8065 UPDATE -35 126 ome.model.core.Channel \N 1148 8066 UPDATE -35 127 ome.model.core.Channel \N 1148 8067 UPDATE -35 128 ome.model.core.Channel \N 1148 8068 UPDATE -35 129 ome.model.core.Channel \N 1148 8069 UPDATE -35 130 ome.model.core.Channel \N 1148 8070 UPDATE -35 131 ome.model.core.Channel \N 1148 8071 UPDATE -35 132 ome.model.core.Channel \N 1148 8072 UPDATE -35 133 ome.model.core.Channel \N 1148 8073 UPDATE -35 134 ome.model.core.Channel \N 1148 8074 UPDATE -35 135 ome.model.core.Channel \N 1148 8075 UPDATE -35 136 ome.model.core.Channel \N 1148 8076 UPDATE -35 137 ome.model.core.Channel \N 1148 8077 UPDATE -35 138 ome.model.core.Channel \N 1148 8078 UPDATE -35 139 ome.model.core.Channel \N 1148 8079 INSERT -35 60 ome.model.display.QuantumDef \N 1149 8080 INSERT -35 60 ome.model.display.RenderingDef \N 1149 8081 INSERT -35 141 ome.model.display.ChannelBinding \N 1149 8082 INSERT -35 142 ome.model.display.ChannelBinding \N 1149 8083 INSERT -35 61 ome.model.display.QuantumDef \N 1149 8084 INSERT -35 61 ome.model.display.RenderingDef \N 1149 8085 INSERT -35 143 ome.model.display.ChannelBinding \N 1149 8086 INSERT -35 144 ome.model.display.ChannelBinding \N 1149 8087 INSERT -35 62 ome.model.display.QuantumDef \N 1149 8088 INSERT -35 62 ome.model.display.RenderingDef \N 1149 8089 INSERT -35 145 ome.model.display.ChannelBinding \N 1149 8090 INSERT -35 146 ome.model.display.ChannelBinding \N 1149 8091 INSERT -35 63 ome.model.display.QuantumDef \N 1149 8092 INSERT -35 63 ome.model.display.RenderingDef \N 1149 8093 INSERT -35 147 ome.model.display.ChannelBinding \N 1149 8094 INSERT -35 148 ome.model.display.ChannelBinding \N 1149 8095 INSERT -35 64 ome.model.display.QuantumDef \N 1149 8096 INSERT -35 64 ome.model.display.RenderingDef \N 1149 8097 INSERT -35 149 ome.model.display.ChannelBinding \N 1149 8098 INSERT -35 150 ome.model.display.ChannelBinding \N 1149 8099 INSERT -35 65 ome.model.display.QuantumDef \N 1149 8100 INSERT -35 65 ome.model.display.RenderingDef \N 1149 8101 INSERT -35 151 ome.model.display.ChannelBinding \N 1149 8102 INSERT -35 152 ome.model.display.ChannelBinding \N 1149 8103 INSERT -35 66 ome.model.display.QuantumDef \N 1149 8104 INSERT -35 66 ome.model.display.RenderingDef \N 1149 8105 INSERT -35 153 ome.model.display.ChannelBinding \N 1149 8106 INSERT -35 154 ome.model.display.ChannelBinding \N 1149 8107 INSERT -35 67 ome.model.display.QuantumDef \N 1149 8108 INSERT -35 67 ome.model.display.RenderingDef \N 1149 8109 INSERT -35 155 ome.model.display.ChannelBinding \N 1149 8110 INSERT -35 156 ome.model.display.ChannelBinding \N 1149 8111 UPDATE -35 57 ome.model.display.RenderingDef \N 1149 8112 UPDATE -35 133 ome.model.display.ChannelBinding \N 1149 8113 UPDATE -35 134 ome.model.display.ChannelBinding \N 1149 8114 UPDATE -35 58 ome.model.display.RenderingDef \N 1149 8115 UPDATE -35 135 ome.model.display.ChannelBinding \N 1149 8116 UPDATE -35 136 ome.model.display.ChannelBinding \N 1149 8117 UPDATE -35 137 ome.model.display.ChannelBinding \N 1149 8118 UPDATE -35 59 ome.model.display.RenderingDef \N 1149 8119 UPDATE -35 138 ome.model.display.ChannelBinding \N 1149 8120 UPDATE -35 139 ome.model.display.ChannelBinding \N 1149 8121 UPDATE -35 140 ome.model.display.ChannelBinding \N 1149 8122 UPDATE -35 51 ome.model.display.Thumbnail \N 1150 8123 UPDATE -35 50 ome.model.display.Thumbnail \N 1150 8124 UPDATE -35 55 ome.model.display.Thumbnail \N 1150 8125 UPDATE -35 54 ome.model.display.Thumbnail \N 1150 8126 UPDATE -35 53 ome.model.display.Thumbnail \N 1150 8127 UPDATE -35 52 ome.model.display.Thumbnail \N 1150 8128 UPDATE -35 59 ome.model.display.Thumbnail \N 1150 8129 UPDATE -35 58 ome.model.display.Thumbnail \N 1150 8130 UPDATE -35 57 ome.model.display.Thumbnail \N 1150 8131 UPDATE -35 56 ome.model.display.Thumbnail \N 1150 8132 UPDATE -35 60 ome.model.display.Thumbnail \N 1150 8133 UPDATE -35 76 ome.model.core.OriginalFile \N 1151 8134 INSERT -35 68 ome.model.display.QuantumDef \N 1282 8135 INSERT -35 68 ome.model.display.RenderingDef \N 1282 8136 INSERT -35 157 ome.model.display.ChannelBinding \N 1282 8137 INSERT -35 158 ome.model.display.ChannelBinding \N 1282 8138 INSERT -35 69 ome.model.display.QuantumDef \N 1283 8139 INSERT -35 69 ome.model.display.RenderingDef \N 1283 8140 INSERT -35 159 ome.model.display.ChannelBinding \N 1283 8141 INSERT -35 160 ome.model.display.ChannelBinding \N 1283 8142 INSERT -35 70 ome.model.display.QuantumDef \N 1284 8143 INSERT -35 70 ome.model.display.RenderingDef \N 1284 8144 INSERT -35 161 ome.model.display.ChannelBinding \N 1284 8145 INSERT -35 162 ome.model.display.ChannelBinding \N 1284 8146 INSERT -35 71 ome.model.display.QuantumDef \N 1285 8147 INSERT -35 71 ome.model.display.RenderingDef \N 1285 8148 INSERT -35 163 ome.model.display.ChannelBinding \N 1285 8149 INSERT -35 164 ome.model.display.ChannelBinding \N 1285 8150 INSERT -35 72 ome.model.display.QuantumDef \N 1286 8151 INSERT -35 72 ome.model.display.RenderingDef \N 1286 8152 INSERT -35 165 ome.model.display.ChannelBinding \N 1286 8153 INSERT -35 166 ome.model.display.ChannelBinding \N 1286 8154 INSERT -35 73 ome.model.display.QuantumDef \N 1293 8155 INSERT -35 73 ome.model.display.RenderingDef \N 1293 8158 INSERT -35 74 ome.model.display.QuantumDef \N 1300 8156 INSERT -35 167 ome.model.display.ChannelBinding \N 1293 8157 INSERT -35 168 ome.model.display.ChannelBinding \N 1293 8170 INSERT -35 77 ome.model.display.QuantumDef \N 1301 8171 INSERT -35 76 ome.model.display.RenderingDef \N 1301 8172 INSERT -35 172 ome.model.display.ChannelBinding \N 1301 8173 INSERT -35 176 ome.model.display.ChannelBinding \N 1301 8178 INSERT -35 79 ome.model.display.QuantumDef \N 1311 8179 INSERT -35 79 ome.model.display.RenderingDef \N 1311 8180 INSERT -35 179 ome.model.display.ChannelBinding \N 1311 8181 INSERT -35 180 ome.model.display.ChannelBinding \N 1311 8200 INSERT -35 84 ome.model.display.QuantumDef \N 1319 8201 INSERT -35 84 ome.model.display.RenderingDef \N 1319 8202 INSERT -35 191 ome.model.display.ChannelBinding \N 1319 8203 INSERT -35 192 ome.model.display.ChannelBinding \N 1319 8224 INSERT -35 90 ome.model.display.QuantumDef \N 1344 8225 INSERT -35 90 ome.model.display.RenderingDef \N 1344 8226 INSERT -35 203 ome.model.display.ChannelBinding \N 1344 8227 INSERT -35 204 ome.model.display.ChannelBinding \N 1344 8228 INSERT -35 3 ome.model.containers.Project \N 1466 8229 INSERT -35 7 ome.model.containers.Dataset \N 1467 8230 INSERT -35 7 ome.model.containers.ProjectDatasetLink \N 1467 8231 UPDATE -35 3 ome.model.containers.Project \N 1468 8232 INSERT -35 62 ome.model.annotations.TagAnnotation \N 1469 8233 INSERT -35 1 ome.model.annotations.ProjectAnnotationLink \N 1470 8159 INSERT -35 74 ome.model.display.RenderingDef \N 1300 8160 INSERT -35 169 ome.model.display.ChannelBinding \N 1300 8161 INSERT -35 170 ome.model.display.ChannelBinding \N 1300 8187 INSERT -35 81 ome.model.display.QuantumDef \N 1320 8188 INSERT -35 81 ome.model.display.RenderingDef \N 1320 8189 INSERT -35 184 ome.model.display.ChannelBinding \N 1320 8190 INSERT -35 185 ome.model.display.ChannelBinding \N 1320 8212 INSERT -35 87 ome.model.display.QuantumDef \N 1335 8213 INSERT -35 88 ome.model.display.RenderingDef \N 1335 8214 INSERT -35 198 ome.model.display.ChannelBinding \N 1335 8215 INSERT -35 199 ome.model.display.ChannelBinding \N 1335 8162 INSERT -35 76 ome.model.display.QuantumDef \N 1302 8163 INSERT -35 77 ome.model.display.RenderingDef \N 1302 8164 INSERT -35 173 ome.model.display.ChannelBinding \N 1302 8165 INSERT -35 175 ome.model.display.ChannelBinding \N 1302 8191 INSERT -35 82 ome.model.display.QuantumDef \N 1321 8192 INSERT -35 82 ome.model.display.RenderingDef \N 1321 8193 INSERT -35 186 ome.model.display.ChannelBinding \N 1321 8194 INSERT -35 187 ome.model.display.ChannelBinding \N 1321 8204 INSERT -35 85 ome.model.display.QuantumDef \N 1329 8205 INSERT -35 85 ome.model.display.RenderingDef \N 1329 8206 INSERT -35 193 ome.model.display.ChannelBinding \N 1329 8207 INSERT -35 194 ome.model.display.ChannelBinding \N 1329 8216 INSERT -35 88 ome.model.display.QuantumDef \N 1336 8217 INSERT -35 87 ome.model.display.RenderingDef \N 1336 8218 INSERT -35 197 ome.model.display.ChannelBinding \N 1336 8219 INSERT -35 200 ome.model.display.ChannelBinding \N 1336 8166 INSERT -35 75 ome.model.display.QuantumDef \N 1304 8167 INSERT -35 75 ome.model.display.RenderingDef \N 1304 8168 INSERT -35 171 ome.model.display.ChannelBinding \N 1304 8169 INSERT -35 174 ome.model.display.ChannelBinding \N 1304 8182 INSERT -35 80 ome.model.display.QuantumDef \N 1318 8183 INSERT -35 80 ome.model.display.RenderingDef \N 1318 8184 INSERT -35 181 ome.model.display.ChannelBinding \N 1318 8185 INSERT -35 182 ome.model.display.ChannelBinding \N 1318 8186 INSERT -35 183 ome.model.display.ChannelBinding \N 1318 8208 INSERT -35 86 ome.model.display.QuantumDef \N 1334 8209 INSERT -35 86 ome.model.display.RenderingDef \N 1334 8210 INSERT -35 195 ome.model.display.ChannelBinding \N 1334 8211 INSERT -35 196 ome.model.display.ChannelBinding \N 1334 8174 INSERT -35 78 ome.model.display.QuantumDef \N 1303 8175 INSERT -35 78 ome.model.display.RenderingDef \N 1303 8176 INSERT -35 177 ome.model.display.ChannelBinding \N 1303 8177 INSERT -35 178 ome.model.display.ChannelBinding \N 1303 8195 INSERT -35 83 ome.model.display.QuantumDef \N 1322 8196 INSERT -35 83 ome.model.display.RenderingDef \N 1322 8197 INSERT -35 188 ome.model.display.ChannelBinding \N 1322 8198 INSERT -35 189 ome.model.display.ChannelBinding \N 1322 8199 INSERT -35 190 ome.model.display.ChannelBinding \N 1322 8220 INSERT -35 89 ome.model.display.QuantumDef \N 1338 8221 INSERT -35 89 ome.model.display.RenderingDef \N 1338 8222 INSERT -35 201 ome.model.display.ChannelBinding \N 1338 8223 INSERT -35 202 ome.model.display.ChannelBinding \N 1338 8234 INSERT -35 194 ome.model.meta.Session \N 1474 8235 INSERT -35 195 ome.model.meta.Session \N 1476 8236 INSERT -35 196 ome.model.meta.Session \N 1599 8237 REINDEX -52 11 ome.model.core.Image \N 1604 8238 REINDEX -52 12 ome.model.core.Image \N 1604 8239 REINDEX -52 19 ome.model.core.Image \N 1604 8240 REINDEX -52 20 ome.model.core.Image \N 1604 8241 REINDEX -52 20 ome.model.core.Image \N 1604 8242 REINDEX -52 29 ome.model.core.Image \N 1604 8243 REINDEX -52 30 ome.model.core.Image \N 1604 8244 REINDEX -52 31 ome.model.core.Image \N 1604 8245 INSERT -35 4 ome.model.containers.Project \N 1605 8246 INSERT -35 8 ome.model.containers.Dataset \N 1607 8247 INSERT -35 8 ome.model.containers.ProjectDatasetLink \N 1608 8248 INSERT -35 61 ome.model.acquisition.Microscope \N 1614 8249 INSERT -35 61 ome.model.acquisition.Instrument \N 1614 8250 INSERT -35 140 ome.model.acquisition.Detector \N 1614 8251 INSERT -35 141 ome.model.acquisition.Detector \N 1614 8252 INSERT -35 181 ome.model.acquisition.TransmittanceRange \N 1614 8253 INSERT -35 181 ome.model.acquisition.Filter \N 1614 8254 INSERT -35 182 ome.model.acquisition.TransmittanceRange \N 1614 8255 INSERT -35 182 ome.model.acquisition.Filter \N 1614 8256 INSERT -35 183 ome.model.acquisition.TransmittanceRange \N 1614 8257 INSERT -35 183 ome.model.acquisition.Filter \N 1614 8258 INSERT -35 361 ome.model.acquisition.Laser \N 1614 8259 INSERT -35 362 ome.model.acquisition.Laser \N 1614 8260 INSERT -35 363 ome.model.acquisition.Laser \N 1614 8261 INSERT -35 364 ome.model.acquisition.Laser \N 1614 8262 INSERT -35 365 ome.model.acquisition.Laser \N 1614 8263 INSERT -35 366 ome.model.acquisition.Laser \N 1614 8264 INSERT -35 61 ome.model.acquisition.Objective \N 1614 8265 INSERT -35 61 ome.model.acquisition.ObjectiveSettings \N 1614 8266 INSERT -35 61 ome.model.core.Image \N 1614 8267 INSERT -35 77 ome.model.core.OriginalFile \N 1614 8268 INSERT -35 63 ome.model.annotations.FileAnnotation \N 1614 8269 INSERT -35 62 ome.model.annotations.ImageAnnotationLink \N 1614 8270 INSERT -35 61 ome.model.containers.DatasetImageLink \N 1614 8271 INSERT -35 61 ome.model.core.Pixels \N 1614 8272 INSERT -35 140 ome.model.acquisition.DetectorSettings \N 1614 8273 INSERT -35 121 ome.model.acquisition.LightPath \N 1614 8274 INSERT -35 121 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8275 INSERT -35 114 ome.model.acquisition.LightSettings \N 1614 8276 INSERT -35 140 ome.model.core.LogicalChannel \N 1614 8277 INSERT -35 140 ome.model.core.Channel \N 1614 8278 INSERT -35 141 ome.model.acquisition.DetectorSettings \N 1614 8279 INSERT -35 122 ome.model.acquisition.LightPath \N 1614 8280 INSERT -35 122 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8281 INSERT -35 115 ome.model.acquisition.LightSettings \N 1614 8282 INSERT -35 141 ome.model.core.LogicalChannel \N 1614 8283 INSERT -35 141 ome.model.core.Channel \N 1614 8284 INSERT -35 4954 ome.model.core.PlaneInfo \N 1614 8285 INSERT -35 4955 ome.model.core.PlaneInfo \N 1614 8286 INSERT -35 4956 ome.model.core.PlaneInfo \N 1614 8287 INSERT -35 4957 ome.model.core.PlaneInfo \N 1614 8288 INSERT -35 4958 ome.model.core.PlaneInfo \N 1614 8289 INSERT -35 4959 ome.model.core.PlaneInfo \N 1614 8290 INSERT -35 4960 ome.model.core.PlaneInfo \N 1614 8291 INSERT -35 4961 ome.model.core.PlaneInfo \N 1614 8292 INSERT -35 4962 ome.model.core.PlaneInfo \N 1614 8293 INSERT -35 4963 ome.model.core.PlaneInfo \N 1614 8294 INSERT -35 4964 ome.model.core.PlaneInfo \N 1614 8295 INSERT -35 4965 ome.model.core.PlaneInfo \N 1614 8296 INSERT -35 4966 ome.model.core.PlaneInfo \N 1614 8297 INSERT -35 4967 ome.model.core.PlaneInfo \N 1614 8298 INSERT -35 4968 ome.model.core.PlaneInfo \N 1614 8299 INSERT -35 4969 ome.model.core.PlaneInfo \N 1614 8300 INSERT -35 4970 ome.model.core.PlaneInfo \N 1614 8301 INSERT -35 4971 ome.model.core.PlaneInfo \N 1614 8302 INSERT -35 4972 ome.model.core.PlaneInfo \N 1614 8303 INSERT -35 4973 ome.model.core.PlaneInfo \N 1614 8304 INSERT -35 4974 ome.model.core.PlaneInfo \N 1614 8305 INSERT -35 4975 ome.model.core.PlaneInfo \N 1614 8306 INSERT -35 4976 ome.model.core.PlaneInfo \N 1614 8307 INSERT -35 4977 ome.model.core.PlaneInfo \N 1614 8308 INSERT -35 4978 ome.model.core.PlaneInfo \N 1614 8309 INSERT -35 4979 ome.model.core.PlaneInfo \N 1614 8310 INSERT -35 4980 ome.model.core.PlaneInfo \N 1614 8311 INSERT -35 4981 ome.model.core.PlaneInfo \N 1614 8312 INSERT -35 4982 ome.model.core.PlaneInfo \N 1614 8313 INSERT -35 4983 ome.model.core.PlaneInfo \N 1614 8314 INSERT -35 4984 ome.model.core.PlaneInfo \N 1614 8315 INSERT -35 4985 ome.model.core.PlaneInfo \N 1614 8316 INSERT -35 4986 ome.model.core.PlaneInfo \N 1614 8317 INSERT -35 4987 ome.model.core.PlaneInfo \N 1614 8318 INSERT -35 4988 ome.model.core.PlaneInfo \N 1614 8319 INSERT -35 4989 ome.model.core.PlaneInfo \N 1614 8320 INSERT -35 4990 ome.model.core.PlaneInfo \N 1614 8321 INSERT -35 4991 ome.model.core.PlaneInfo \N 1614 8322 INSERT -35 4992 ome.model.core.PlaneInfo \N 1614 8323 INSERT -35 4993 ome.model.core.PlaneInfo \N 1614 8324 INSERT -35 4994 ome.model.core.PlaneInfo \N 1614 8325 INSERT -35 4995 ome.model.core.PlaneInfo \N 1614 8326 INSERT -35 4996 ome.model.core.PlaneInfo \N 1614 8327 INSERT -35 4997 ome.model.core.PlaneInfo \N 1614 8328 INSERT -35 4998 ome.model.core.PlaneInfo \N 1614 8329 INSERT -35 4999 ome.model.core.PlaneInfo \N 1614 8330 INSERT -35 5000 ome.model.core.PlaneInfo \N 1614 8331 INSERT -35 5001 ome.model.core.PlaneInfo \N 1614 8332 INSERT -35 5002 ome.model.core.PlaneInfo \N 1614 8333 INSERT -35 5003 ome.model.core.PlaneInfo \N 1614 8334 INSERT -35 5004 ome.model.core.PlaneInfo \N 1614 8335 INSERT -35 5005 ome.model.core.PlaneInfo \N 1614 8336 INSERT -35 5006 ome.model.core.PlaneInfo \N 1614 8337 INSERT -35 5007 ome.model.core.PlaneInfo \N 1614 8338 INSERT -35 5008 ome.model.core.PlaneInfo \N 1614 8339 INSERT -35 5009 ome.model.core.PlaneInfo \N 1614 8340 INSERT -35 5010 ome.model.core.PlaneInfo \N 1614 8341 INSERT -35 5011 ome.model.core.PlaneInfo \N 1614 8342 INSERT -35 5012 ome.model.core.PlaneInfo \N 1614 8343 INSERT -35 5013 ome.model.core.PlaneInfo \N 1614 8344 INSERT -35 5014 ome.model.core.PlaneInfo \N 1614 8345 INSERT -35 5015 ome.model.core.PlaneInfo \N 1614 8346 INSERT -35 5016 ome.model.core.PlaneInfo \N 1614 8347 INSERT -35 5017 ome.model.core.PlaneInfo \N 1614 8348 INSERT -35 5018 ome.model.core.PlaneInfo \N 1614 8349 INSERT -35 5019 ome.model.core.PlaneInfo \N 1614 8350 INSERT -35 5020 ome.model.core.PlaneInfo \N 1614 8351 INSERT -35 5021 ome.model.core.PlaneInfo \N 1614 8352 INSERT -35 5022 ome.model.core.PlaneInfo \N 1614 8353 INSERT -35 5023 ome.model.core.PlaneInfo \N 1614 8354 INSERT -35 5024 ome.model.core.PlaneInfo \N 1614 8355 INSERT -35 5025 ome.model.core.PlaneInfo \N 1614 8356 INSERT -35 5026 ome.model.core.PlaneInfo \N 1614 8357 INSERT -35 5027 ome.model.core.PlaneInfo \N 1614 8358 INSERT -35 5028 ome.model.core.PlaneInfo \N 1614 8359 INSERT -35 5029 ome.model.core.PlaneInfo \N 1614 8360 INSERT -35 5030 ome.model.core.PlaneInfo \N 1614 8361 INSERT -35 5031 ome.model.core.PlaneInfo \N 1614 8362 INSERT -35 62 ome.model.acquisition.Microscope \N 1614 8363 INSERT -35 62 ome.model.acquisition.Instrument \N 1614 8364 INSERT -35 142 ome.model.acquisition.Detector \N 1614 8365 INSERT -35 143 ome.model.acquisition.Detector \N 1614 8366 INSERT -35 184 ome.model.acquisition.TransmittanceRange \N 1614 8367 INSERT -35 184 ome.model.acquisition.Filter \N 1614 8368 INSERT -35 185 ome.model.acquisition.TransmittanceRange \N 1614 8369 INSERT -35 185 ome.model.acquisition.Filter \N 1614 8370 INSERT -35 186 ome.model.acquisition.TransmittanceRange \N 1614 8371 INSERT -35 186 ome.model.acquisition.Filter \N 1614 8372 INSERT -35 367 ome.model.acquisition.Laser \N 1614 8373 INSERT -35 368 ome.model.acquisition.Laser \N 1614 8374 INSERT -35 369 ome.model.acquisition.Laser \N 1614 8375 INSERT -35 370 ome.model.acquisition.Laser \N 1614 8376 INSERT -35 371 ome.model.acquisition.Laser \N 1614 8377 INSERT -35 372 ome.model.acquisition.Laser \N 1614 8378 INSERT -35 62 ome.model.acquisition.Objective \N 1614 8379 INSERT -35 62 ome.model.acquisition.ObjectiveSettings \N 1614 8380 INSERT -35 62 ome.model.core.Image \N 1614 8381 INSERT -35 78 ome.model.core.OriginalFile \N 1614 8382 INSERT -35 64 ome.model.annotations.FileAnnotation \N 1614 8383 INSERT -35 63 ome.model.annotations.ImageAnnotationLink \N 1614 8384 INSERT -35 62 ome.model.containers.DatasetImageLink \N 1614 8385 INSERT -35 62 ome.model.core.Pixels \N 1614 8386 INSERT -35 142 ome.model.acquisition.DetectorSettings \N 1614 8387 INSERT -35 123 ome.model.acquisition.LightPath \N 1614 8388 INSERT -35 123 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8389 INSERT -35 116 ome.model.acquisition.LightSettings \N 1614 8390 INSERT -35 142 ome.model.core.LogicalChannel \N 1614 8391 INSERT -35 142 ome.model.core.Channel \N 1614 8392 INSERT -35 143 ome.model.acquisition.DetectorSettings \N 1614 8393 INSERT -35 124 ome.model.acquisition.LightPath \N 1614 8394 INSERT -35 124 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8395 INSERT -35 117 ome.model.acquisition.LightSettings \N 1614 8396 INSERT -35 143 ome.model.core.LogicalChannel \N 1614 8397 INSERT -35 143 ome.model.core.Channel \N 1614 8398 INSERT -35 5032 ome.model.core.PlaneInfo \N 1614 8399 INSERT -35 5033 ome.model.core.PlaneInfo \N 1614 8400 INSERT -35 5034 ome.model.core.PlaneInfo \N 1614 8401 INSERT -35 5035 ome.model.core.PlaneInfo \N 1614 8402 INSERT -35 5036 ome.model.core.PlaneInfo \N 1614 8403 INSERT -35 5037 ome.model.core.PlaneInfo \N 1614 8404 INSERT -35 5038 ome.model.core.PlaneInfo \N 1614 8405 INSERT -35 5039 ome.model.core.PlaneInfo \N 1614 8406 INSERT -35 5040 ome.model.core.PlaneInfo \N 1614 8407 INSERT -35 5041 ome.model.core.PlaneInfo \N 1614 8408 INSERT -35 5042 ome.model.core.PlaneInfo \N 1614 8409 INSERT -35 5043 ome.model.core.PlaneInfo \N 1614 8410 INSERT -35 5044 ome.model.core.PlaneInfo \N 1614 8411 INSERT -35 5045 ome.model.core.PlaneInfo \N 1614 8412 INSERT -35 5046 ome.model.core.PlaneInfo \N 1614 8413 INSERT -35 5047 ome.model.core.PlaneInfo \N 1614 8414 INSERT -35 5048 ome.model.core.PlaneInfo \N 1614 8415 INSERT -35 5049 ome.model.core.PlaneInfo \N 1614 8416 INSERT -35 5050 ome.model.core.PlaneInfo \N 1614 8417 INSERT -35 5051 ome.model.core.PlaneInfo \N 1614 8418 INSERT -35 5052 ome.model.core.PlaneInfo \N 1614 8419 INSERT -35 5053 ome.model.core.PlaneInfo \N 1614 8420 INSERT -35 5054 ome.model.core.PlaneInfo \N 1614 8421 INSERT -35 5055 ome.model.core.PlaneInfo \N 1614 8422 INSERT -35 5056 ome.model.core.PlaneInfo \N 1614 8423 INSERT -35 5057 ome.model.core.PlaneInfo \N 1614 8424 INSERT -35 5058 ome.model.core.PlaneInfo \N 1614 8425 INSERT -35 5059 ome.model.core.PlaneInfo \N 1614 8426 INSERT -35 5060 ome.model.core.PlaneInfo \N 1614 8427 INSERT -35 5061 ome.model.core.PlaneInfo \N 1614 8428 INSERT -35 5062 ome.model.core.PlaneInfo \N 1614 8429 INSERT -35 5063 ome.model.core.PlaneInfo \N 1614 8430 INSERT -35 5064 ome.model.core.PlaneInfo \N 1614 8431 INSERT -35 5065 ome.model.core.PlaneInfo \N 1614 8432 INSERT -35 5066 ome.model.core.PlaneInfo \N 1614 8433 INSERT -35 5067 ome.model.core.PlaneInfo \N 1614 8434 INSERT -35 5068 ome.model.core.PlaneInfo \N 1614 8435 INSERT -35 5069 ome.model.core.PlaneInfo \N 1614 8436 INSERT -35 5070 ome.model.core.PlaneInfo \N 1614 8437 INSERT -35 5071 ome.model.core.PlaneInfo \N 1614 8438 INSERT -35 5072 ome.model.core.PlaneInfo \N 1614 8439 INSERT -35 5073 ome.model.core.PlaneInfo \N 1614 8440 INSERT -35 5074 ome.model.core.PlaneInfo \N 1614 8441 INSERT -35 5075 ome.model.core.PlaneInfo \N 1614 8442 INSERT -35 5076 ome.model.core.PlaneInfo \N 1614 8443 INSERT -35 5077 ome.model.core.PlaneInfo \N 1614 8444 INSERT -35 5078 ome.model.core.PlaneInfo \N 1614 8445 INSERT -35 5079 ome.model.core.PlaneInfo \N 1614 8446 INSERT -35 5080 ome.model.core.PlaneInfo \N 1614 8447 INSERT -35 5081 ome.model.core.PlaneInfo \N 1614 8448 INSERT -35 5082 ome.model.core.PlaneInfo \N 1614 8449 INSERT -35 5083 ome.model.core.PlaneInfo \N 1614 8450 INSERT -35 5084 ome.model.core.PlaneInfo \N 1614 8451 INSERT -35 5085 ome.model.core.PlaneInfo \N 1614 8452 INSERT -35 5086 ome.model.core.PlaneInfo \N 1614 8453 INSERT -35 5087 ome.model.core.PlaneInfo \N 1614 8454 INSERT -35 5088 ome.model.core.PlaneInfo \N 1614 8455 INSERT -35 5089 ome.model.core.PlaneInfo \N 1614 8456 INSERT -35 5090 ome.model.core.PlaneInfo \N 1614 8457 INSERT -35 5091 ome.model.core.PlaneInfo \N 1614 8458 INSERT -35 5092 ome.model.core.PlaneInfo \N 1614 8459 INSERT -35 5093 ome.model.core.PlaneInfo \N 1614 8460 INSERT -35 5094 ome.model.core.PlaneInfo \N 1614 8461 INSERT -35 5095 ome.model.core.PlaneInfo \N 1614 8462 INSERT -35 63 ome.model.acquisition.Microscope \N 1614 8463 INSERT -35 63 ome.model.acquisition.Instrument \N 1614 8464 INSERT -35 144 ome.model.acquisition.Detector \N 1614 8465 INSERT -35 145 ome.model.acquisition.Detector \N 1614 8466 INSERT -35 187 ome.model.acquisition.TransmittanceRange \N 1614 8467 INSERT -35 187 ome.model.acquisition.Filter \N 1614 8468 INSERT -35 188 ome.model.acquisition.TransmittanceRange \N 1614 8469 INSERT -35 188 ome.model.acquisition.Filter \N 1614 8470 INSERT -35 189 ome.model.acquisition.TransmittanceRange \N 1614 8471 INSERT -35 189 ome.model.acquisition.Filter \N 1614 8472 INSERT -35 373 ome.model.acquisition.Laser \N 1614 8473 INSERT -35 374 ome.model.acquisition.Laser \N 1614 8474 INSERT -35 375 ome.model.acquisition.Laser \N 1614 8475 INSERT -35 376 ome.model.acquisition.Laser \N 1614 8476 INSERT -35 377 ome.model.acquisition.Laser \N 1614 8477 INSERT -35 378 ome.model.acquisition.Laser \N 1614 8478 INSERT -35 63 ome.model.acquisition.Objective \N 1614 8479 INSERT -35 63 ome.model.acquisition.ObjectiveSettings \N 1614 8480 INSERT -35 63 ome.model.core.Image \N 1614 8481 INSERT -35 79 ome.model.core.OriginalFile \N 1614 8482 INSERT -35 65 ome.model.annotations.FileAnnotation \N 1614 8483 INSERT -35 64 ome.model.annotations.ImageAnnotationLink \N 1614 8484 INSERT -35 63 ome.model.containers.DatasetImageLink \N 1614 8485 INSERT -35 63 ome.model.core.Pixels \N 1614 8486 INSERT -35 144 ome.model.acquisition.DetectorSettings \N 1614 8487 INSERT -35 125 ome.model.acquisition.LightPath \N 1614 8488 INSERT -35 125 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8489 INSERT -35 118 ome.model.acquisition.LightSettings \N 1614 8490 INSERT -35 144 ome.model.core.LogicalChannel \N 1614 8491 INSERT -35 144 ome.model.core.Channel \N 1614 8492 INSERT -35 145 ome.model.acquisition.DetectorSettings \N 1614 8493 INSERT -35 126 ome.model.acquisition.LightPath \N 1614 8494 INSERT -35 126 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8495 INSERT -35 119 ome.model.acquisition.LightSettings \N 1614 8496 INSERT -35 145 ome.model.core.LogicalChannel \N 1614 8497 INSERT -35 145 ome.model.core.Channel \N 1614 8498 INSERT -35 5096 ome.model.core.PlaneInfo \N 1614 8499 INSERT -35 5097 ome.model.core.PlaneInfo \N 1614 8500 INSERT -35 5098 ome.model.core.PlaneInfo \N 1614 8501 INSERT -35 5099 ome.model.core.PlaneInfo \N 1614 8502 INSERT -35 5100 ome.model.core.PlaneInfo \N 1614 8503 INSERT -35 5101 ome.model.core.PlaneInfo \N 1614 8504 INSERT -35 5102 ome.model.core.PlaneInfo \N 1614 8505 INSERT -35 5103 ome.model.core.PlaneInfo \N 1614 8506 INSERT -35 5104 ome.model.core.PlaneInfo \N 1614 8507 INSERT -35 5105 ome.model.core.PlaneInfo \N 1614 8508 INSERT -35 5106 ome.model.core.PlaneInfo \N 1614 8509 INSERT -35 5107 ome.model.core.PlaneInfo \N 1614 8510 INSERT -35 5108 ome.model.core.PlaneInfo \N 1614 8511 INSERT -35 5109 ome.model.core.PlaneInfo \N 1614 8512 INSERT -35 5110 ome.model.core.PlaneInfo \N 1614 8513 INSERT -35 5111 ome.model.core.PlaneInfo \N 1614 8514 INSERT -35 5112 ome.model.core.PlaneInfo \N 1614 8515 INSERT -35 5113 ome.model.core.PlaneInfo \N 1614 8516 INSERT -35 5114 ome.model.core.PlaneInfo \N 1614 8517 INSERT -35 5115 ome.model.core.PlaneInfo \N 1614 8518 INSERT -35 5116 ome.model.core.PlaneInfo \N 1614 8519 INSERT -35 5117 ome.model.core.PlaneInfo \N 1614 8520 INSERT -35 5118 ome.model.core.PlaneInfo \N 1614 8521 INSERT -35 5119 ome.model.core.PlaneInfo \N 1614 8522 INSERT -35 5120 ome.model.core.PlaneInfo \N 1614 8523 INSERT -35 5121 ome.model.core.PlaneInfo \N 1614 8524 INSERT -35 5122 ome.model.core.PlaneInfo \N 1614 8525 INSERT -35 5123 ome.model.core.PlaneInfo \N 1614 8526 INSERT -35 5124 ome.model.core.PlaneInfo \N 1614 8527 INSERT -35 5125 ome.model.core.PlaneInfo \N 1614 8528 INSERT -35 5126 ome.model.core.PlaneInfo \N 1614 8529 INSERT -35 5127 ome.model.core.PlaneInfo \N 1614 8530 INSERT -35 5128 ome.model.core.PlaneInfo \N 1614 8531 INSERT -35 5129 ome.model.core.PlaneInfo \N 1614 8532 INSERT -35 5130 ome.model.core.PlaneInfo \N 1614 8533 INSERT -35 5131 ome.model.core.PlaneInfo \N 1614 8534 INSERT -35 5132 ome.model.core.PlaneInfo \N 1614 8535 INSERT -35 5133 ome.model.core.PlaneInfo \N 1614 8536 INSERT -35 5134 ome.model.core.PlaneInfo \N 1614 8537 INSERT -35 5135 ome.model.core.PlaneInfo \N 1614 8538 INSERT -35 5136 ome.model.core.PlaneInfo \N 1614 8539 INSERT -35 5137 ome.model.core.PlaneInfo \N 1614 8540 INSERT -35 5138 ome.model.core.PlaneInfo \N 1614 8541 INSERT -35 5139 ome.model.core.PlaneInfo \N 1614 8542 INSERT -35 5140 ome.model.core.PlaneInfo \N 1614 8543 INSERT -35 5141 ome.model.core.PlaneInfo \N 1614 8544 INSERT -35 5142 ome.model.core.PlaneInfo \N 1614 8545 INSERT -35 5143 ome.model.core.PlaneInfo \N 1614 8546 INSERT -35 5144 ome.model.core.PlaneInfo \N 1614 8547 INSERT -35 5145 ome.model.core.PlaneInfo \N 1614 8548 INSERT -35 5146 ome.model.core.PlaneInfo \N 1614 8549 INSERT -35 5147 ome.model.core.PlaneInfo \N 1614 8550 INSERT -35 5148 ome.model.core.PlaneInfo \N 1614 8551 INSERT -35 5149 ome.model.core.PlaneInfo \N 1614 8552 INSERT -35 5150 ome.model.core.PlaneInfo \N 1614 8553 INSERT -35 5151 ome.model.core.PlaneInfo \N 1614 8554 INSERT -35 5152 ome.model.core.PlaneInfo \N 1614 8555 INSERT -35 5153 ome.model.core.PlaneInfo \N 1614 8556 INSERT -35 5154 ome.model.core.PlaneInfo \N 1614 8557 INSERT -35 5155 ome.model.core.PlaneInfo \N 1614 8558 INSERT -35 5156 ome.model.core.PlaneInfo \N 1614 8559 INSERT -35 5157 ome.model.core.PlaneInfo \N 1614 8560 INSERT -35 5158 ome.model.core.PlaneInfo \N 1614 8561 INSERT -35 5159 ome.model.core.PlaneInfo \N 1614 8562 INSERT -35 5160 ome.model.core.PlaneInfo \N 1614 8563 INSERT -35 5161 ome.model.core.PlaneInfo \N 1614 8564 INSERT -35 5162 ome.model.core.PlaneInfo \N 1614 8565 INSERT -35 5163 ome.model.core.PlaneInfo \N 1614 8566 INSERT -35 5164 ome.model.core.PlaneInfo \N 1614 8567 INSERT -35 5165 ome.model.core.PlaneInfo \N 1614 8568 INSERT -35 5166 ome.model.core.PlaneInfo \N 1614 8569 INSERT -35 5167 ome.model.core.PlaneInfo \N 1614 8570 INSERT -35 5168 ome.model.core.PlaneInfo \N 1614 8571 INSERT -35 5169 ome.model.core.PlaneInfo \N 1614 8572 INSERT -35 64 ome.model.acquisition.Microscope \N 1614 8573 INSERT -35 64 ome.model.acquisition.Instrument \N 1614 8574 INSERT -35 146 ome.model.acquisition.Detector \N 1614 8575 INSERT -35 147 ome.model.acquisition.Detector \N 1614 8576 INSERT -35 190 ome.model.acquisition.TransmittanceRange \N 1614 8577 INSERT -35 190 ome.model.acquisition.Filter \N 1614 8578 INSERT -35 191 ome.model.acquisition.TransmittanceRange \N 1614 8579 INSERT -35 191 ome.model.acquisition.Filter \N 1614 8580 INSERT -35 192 ome.model.acquisition.TransmittanceRange \N 1614 8581 INSERT -35 192 ome.model.acquisition.Filter \N 1614 8582 INSERT -35 379 ome.model.acquisition.Laser \N 1614 8583 INSERT -35 380 ome.model.acquisition.Laser \N 1614 8584 INSERT -35 381 ome.model.acquisition.Laser \N 1614 8585 INSERT -35 382 ome.model.acquisition.Laser \N 1614 8586 INSERT -35 383 ome.model.acquisition.Laser \N 1614 8587 INSERT -35 384 ome.model.acquisition.Laser \N 1614 8588 INSERT -35 64 ome.model.acquisition.Objective \N 1614 8589 INSERT -35 64 ome.model.acquisition.ObjectiveSettings \N 1614 8590 INSERT -35 64 ome.model.core.Image \N 1614 8591 INSERT -35 80 ome.model.core.OriginalFile \N 1614 8592 INSERT -35 66 ome.model.annotations.FileAnnotation \N 1614 8593 INSERT -35 65 ome.model.annotations.ImageAnnotationLink \N 1614 8594 INSERT -35 64 ome.model.containers.DatasetImageLink \N 1614 8595 INSERT -35 64 ome.model.core.Pixels \N 1614 8596 INSERT -35 146 ome.model.acquisition.DetectorSettings \N 1614 8597 INSERT -35 127 ome.model.acquisition.LightPath \N 1614 8598 INSERT -35 127 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8599 INSERT -35 120 ome.model.acquisition.LightSettings \N 1614 8600 INSERT -35 146 ome.model.core.LogicalChannel \N 1614 8601 INSERT -35 146 ome.model.core.Channel \N 1614 8602 INSERT -35 147 ome.model.acquisition.DetectorSettings \N 1614 8603 INSERT -35 128 ome.model.acquisition.LightPath \N 1614 8604 INSERT -35 128 ome.model.acquisition.LightPathEmissionFilterLink \N 1614 8605 INSERT -35 121 ome.model.acquisition.LightSettings \N 1614 8606 INSERT -35 147 ome.model.core.LogicalChannel \N 1614 8607 INSERT -35 147 ome.model.core.Channel \N 1614 8608 INSERT -35 5170 ome.model.core.PlaneInfo \N 1614 8609 INSERT -35 5171 ome.model.core.PlaneInfo \N 1614 8610 INSERT -35 5172 ome.model.core.PlaneInfo \N 1614 8611 INSERT -35 5173 ome.model.core.PlaneInfo \N 1614 8612 INSERT -35 5174 ome.model.core.PlaneInfo \N 1614 8613 INSERT -35 5175 ome.model.core.PlaneInfo \N 1614 8614 INSERT -35 5176 ome.model.core.PlaneInfo \N 1614 8615 INSERT -35 5177 ome.model.core.PlaneInfo \N 1614 8616 INSERT -35 5178 ome.model.core.PlaneInfo \N 1614 8617 INSERT -35 5179 ome.model.core.PlaneInfo \N 1614 8618 INSERT -35 5180 ome.model.core.PlaneInfo \N 1614 8619 INSERT -35 5181 ome.model.core.PlaneInfo \N 1614 8620 INSERT -35 5182 ome.model.core.PlaneInfo \N 1614 8621 INSERT -35 5183 ome.model.core.PlaneInfo \N 1614 8622 INSERT -35 5184 ome.model.core.PlaneInfo \N 1614 8623 INSERT -35 5185 ome.model.core.PlaneInfo \N 1614 8624 INSERT -35 5186 ome.model.core.PlaneInfo \N 1614 8625 INSERT -35 5187 ome.model.core.PlaneInfo \N 1614 8626 INSERT -35 5188 ome.model.core.PlaneInfo \N 1614 8627 INSERT -35 5189 ome.model.core.PlaneInfo \N 1614 8628 INSERT -35 5190 ome.model.core.PlaneInfo \N 1614 8629 INSERT -35 5191 ome.model.core.PlaneInfo \N 1614 8630 INSERT -35 5192 ome.model.core.PlaneInfo \N 1614 8631 INSERT -35 5193 ome.model.core.PlaneInfo \N 1614 8632 INSERT -35 5194 ome.model.core.PlaneInfo \N 1614 8633 INSERT -35 5195 ome.model.core.PlaneInfo \N 1614 8634 INSERT -35 5196 ome.model.core.PlaneInfo \N 1614 8635 INSERT -35 5197 ome.model.core.PlaneInfo \N 1614 8636 INSERT -35 5198 ome.model.core.PlaneInfo \N 1614 8637 INSERT -35 5199 ome.model.core.PlaneInfo \N 1614 8638 INSERT -35 5200 ome.model.core.PlaneInfo \N 1614 8639 INSERT -35 5201 ome.model.core.PlaneInfo \N 1614 8640 INSERT -35 5202 ome.model.core.PlaneInfo \N 1614 8641 INSERT -35 5203 ome.model.core.PlaneInfo \N 1614 8642 INSERT -35 5204 ome.model.core.PlaneInfo \N 1614 8643 INSERT -35 5205 ome.model.core.PlaneInfo \N 1614 8644 INSERT -35 5206 ome.model.core.PlaneInfo \N 1614 8645 INSERT -35 5207 ome.model.core.PlaneInfo \N 1614 8646 INSERT -35 5208 ome.model.core.PlaneInfo \N 1614 8647 INSERT -35 5209 ome.model.core.PlaneInfo \N 1614 8648 INSERT -35 5210 ome.model.core.PlaneInfo \N 1614 8649 INSERT -35 5211 ome.model.core.PlaneInfo \N 1614 8650 INSERT -35 5212 ome.model.core.PlaneInfo \N 1614 8651 INSERT -35 5213 ome.model.core.PlaneInfo \N 1614 8652 INSERT -35 5214 ome.model.core.PlaneInfo \N 1614 8653 INSERT -35 5215 ome.model.core.PlaneInfo \N 1614 8654 INSERT -35 5216 ome.model.core.PlaneInfo \N 1614 8655 INSERT -35 5217 ome.model.core.PlaneInfo \N 1614 8656 INSERT -35 5218 ome.model.core.PlaneInfo \N 1614 8657 INSERT -35 5219 ome.model.core.PlaneInfo \N 1614 8658 INSERT -35 5220 ome.model.core.PlaneInfo \N 1614 8659 INSERT -35 5221 ome.model.core.PlaneInfo \N 1614 8660 INSERT -35 5222 ome.model.core.PlaneInfo \N 1614 8661 INSERT -35 5223 ome.model.core.PlaneInfo \N 1614 8662 INSERT -35 5224 ome.model.core.PlaneInfo \N 1614 8663 INSERT -35 5225 ome.model.core.PlaneInfo \N 1614 8664 INSERT -35 5226 ome.model.core.PlaneInfo \N 1614 8665 INSERT -35 5227 ome.model.core.PlaneInfo \N 1614 8666 INSERT -35 5228 ome.model.core.PlaneInfo \N 1614 8667 INSERT -35 5229 ome.model.core.PlaneInfo \N 1614 8668 INSERT -35 5230 ome.model.core.PlaneInfo \N 1614 8669 INSERT -35 5231 ome.model.core.PlaneInfo \N 1614 8670 INSERT -35 5232 ome.model.core.PlaneInfo \N 1614 8671 INSERT -35 5233 ome.model.core.PlaneInfo \N 1614 8672 INSERT -35 5234 ome.model.core.PlaneInfo \N 1614 8673 INSERT -35 5235 ome.model.core.PlaneInfo \N 1614 8674 INSERT -35 5236 ome.model.core.PlaneInfo \N 1614 8675 INSERT -35 5237 ome.model.core.PlaneInfo \N 1614 8676 INSERT -35 5238 ome.model.core.PlaneInfo \N 1614 8677 INSERT -35 5239 ome.model.core.PlaneInfo \N 1614 8678 INSERT -35 5240 ome.model.core.PlaneInfo \N 1614 8679 INSERT -35 5241 ome.model.core.PlaneInfo \N 1614 8680 INSERT -35 5242 ome.model.core.PlaneInfo \N 1614 8681 INSERT -35 5243 ome.model.core.PlaneInfo \N 1614 8682 INSERT -35 5244 ome.model.core.PlaneInfo \N 1614 8683 INSERT -35 5245 ome.model.core.PlaneInfo \N 1614 8684 INSERT -35 5246 ome.model.core.PlaneInfo \N 1614 8685 INSERT -35 5247 ome.model.core.PlaneInfo \N 1614 8686 INSERT -35 5248 ome.model.core.PlaneInfo \N 1614 8687 INSERT -35 5249 ome.model.core.PlaneInfo \N 1614 8688 INSERT -35 5250 ome.model.core.PlaneInfo \N 1614 8689 INSERT -35 5251 ome.model.core.PlaneInfo \N 1614 8690 INSERT -35 5252 ome.model.core.PlaneInfo \N 1614 8691 INSERT -35 5253 ome.model.core.PlaneInfo \N 1614 8692 UPDATE -35 64 ome.model.core.Pixels \N 1615 8693 UPDATE -35 61 ome.model.core.Pixels \N 1616 8694 UPDATE -35 62 ome.model.core.Pixels \N 1616 8695 UPDATE -35 63 ome.model.core.Pixels \N 1616 8696 UPDATE -35 64 ome.model.core.Pixels \N 1616 8697 INSERT -35 140 ome.model.stats.StatsInfo \N 1617 8698 INSERT -35 141 ome.model.stats.StatsInfo \N 1617 8699 INSERT -35 142 ome.model.stats.StatsInfo \N 1617 8700 INSERT -35 143 ome.model.stats.StatsInfo \N 1617 8701 INSERT -35 144 ome.model.stats.StatsInfo \N 1617 8702 INSERT -35 145 ome.model.stats.StatsInfo \N 1617 8703 INSERT -35 146 ome.model.stats.StatsInfo \N 1617 8704 INSERT -35 147 ome.model.stats.StatsInfo \N 1617 8705 UPDATE -35 140 ome.model.core.Channel \N 1617 8706 UPDATE -35 141 ome.model.core.Channel \N 1617 8707 UPDATE -35 142 ome.model.core.Channel \N 1617 8708 UPDATE -35 143 ome.model.core.Channel \N 1617 8709 UPDATE -35 144 ome.model.core.Channel \N 1617 8710 UPDATE -35 145 ome.model.core.Channel \N 1617 8711 UPDATE -35 146 ome.model.core.Channel \N 1617 8712 UPDATE -35 147 ome.model.core.Channel \N 1617 8713 INSERT -35 91 ome.model.display.QuantumDef \N 1618 8714 INSERT -35 91 ome.model.display.RenderingDef \N 1618 8715 INSERT -35 205 ome.model.display.ChannelBinding \N 1618 8716 INSERT -35 206 ome.model.display.ChannelBinding \N 1618 8717 INSERT -35 92 ome.model.display.QuantumDef \N 1618 8718 INSERT -35 92 ome.model.display.RenderingDef \N 1618 8719 INSERT -35 207 ome.model.display.ChannelBinding \N 1618 8720 INSERT -35 208 ome.model.display.ChannelBinding \N 1618 8721 INSERT -35 93 ome.model.display.QuantumDef \N 1618 8722 INSERT -35 93 ome.model.display.RenderingDef \N 1618 8723 INSERT -35 209 ome.model.display.ChannelBinding \N 1618 8724 INSERT -35 210 ome.model.display.ChannelBinding \N 1618 8725 INSERT -35 94 ome.model.display.QuantumDef \N 1618 8726 INSERT -35 94 ome.model.display.RenderingDef \N 1618 8727 INSERT -35 211 ome.model.display.ChannelBinding \N 1618 8728 INSERT -35 212 ome.model.display.ChannelBinding \N 1618 8729 INSERT -35 61 ome.model.display.Thumbnail \N 1619 8730 INSERT -35 62 ome.model.display.Thumbnail \N 1619 8731 INSERT -35 63 ome.model.display.Thumbnail \N 1619 8732 INSERT -35 64 ome.model.display.Thumbnail \N 1619 8733 UPDATE -35 80 ome.model.core.OriginalFile \N 1620 8734 INSERT -35 197 ome.model.meta.Session \N 1633 8735 INSERT -35 198 ome.model.meta.Session \N 1635 8736 UPDATE -35 8 ome.model.containers.Dataset \N 1637 8737 INSERT -35 199 ome.model.meta.Session \N 1723 8738 INSERT -35 200 ome.model.meta.Session \N 1725 8739 INSERT -35 201 ome.model.meta.Session \N 1740 8740 INSERT -35 202 ome.model.meta.Session \N 1843 8741 INSERT -35 203 ome.model.meta.Session \N 1899 8742 INSERT -35 9 ome.model.containers.Dataset \N 1902 8743 INSERT -35 9 ome.model.containers.ProjectDatasetLink \N 1902 8744 INSERT -35 65 ome.model.acquisition.Instrument \N 1909 8745 INSERT -35 65 ome.model.acquisition.Objective \N 1909 8746 INSERT -35 65 ome.model.acquisition.ObjectiveSettings \N 1909 8747 INSERT -35 65 ome.model.core.Image \N 1909 8748 INSERT -35 81 ome.model.core.OriginalFile \N 1909 8749 INSERT -35 67 ome.model.annotations.FileAnnotation \N 1909 8750 INSERT -35 66 ome.model.annotations.ImageAnnotationLink \N 1909 8751 INSERT -35 65 ome.model.core.Pixels \N 1909 8752 INSERT -35 148 ome.model.core.LogicalChannel \N 1909 8753 INSERT -35 148 ome.model.core.Channel \N 1909 8754 INSERT -35 149 ome.model.core.LogicalChannel \N 1909 8755 INSERT -35 149 ome.model.core.Channel \N 1909 8756 UPDATE -35 65 ome.model.core.Pixels \N 1910 8757 UPDATE -35 65 ome.model.core.Pixels \N 1911 8758 INSERT -35 148 ome.model.stats.StatsInfo \N 1912 8759 INSERT -35 149 ome.model.stats.StatsInfo \N 1912 8760 UPDATE -35 148 ome.model.core.Channel \N 1912 8761 UPDATE -35 149 ome.model.core.Channel \N 1912 8762 INSERT -35 95 ome.model.display.QuantumDef \N 1913 8763 INSERT -35 95 ome.model.display.RenderingDef \N 1913 8764 INSERT -35 213 ome.model.display.ChannelBinding \N 1913 8765 INSERT -35 214 ome.model.display.ChannelBinding \N 1913 8766 INSERT -35 65 ome.model.display.Thumbnail \N 1914 8767 UPDATE -35 81 ome.model.core.OriginalFile \N 1915 8768 INSERT -35 66 ome.model.acquisition.Instrument \N 1925 8769 INSERT -35 66 ome.model.acquisition.Objective \N 1925 8770 INSERT -35 66 ome.model.acquisition.ObjectiveSettings \N 1925 8771 INSERT -35 66 ome.model.core.Image \N 1925 8772 INSERT -35 82 ome.model.core.OriginalFile \N 1925 8773 INSERT -35 68 ome.model.annotations.FileAnnotation \N 1925 8774 INSERT -35 67 ome.model.annotations.ImageAnnotationLink \N 1925 8775 INSERT -35 66 ome.model.core.Pixels \N 1925 8776 INSERT -35 150 ome.model.core.LogicalChannel \N 1925 8777 INSERT -35 150 ome.model.core.Channel \N 1925 8778 INSERT -35 151 ome.model.core.LogicalChannel \N 1925 8779 INSERT -35 151 ome.model.core.Channel \N 1925 8780 UPDATE -35 66 ome.model.core.Pixels \N 1926 8781 UPDATE -35 66 ome.model.core.Pixels \N 1927 8782 INSERT -35 150 ome.model.stats.StatsInfo \N 1928 8783 INSERT -35 151 ome.model.stats.StatsInfo \N 1928 8784 UPDATE -35 150 ome.model.core.Channel \N 1928 8785 UPDATE -35 151 ome.model.core.Channel \N 1928 8786 INSERT -35 96 ome.model.display.QuantumDef \N 1929 8787 INSERT -35 96 ome.model.display.RenderingDef \N 1929 8788 INSERT -35 215 ome.model.display.ChannelBinding \N 1929 8789 INSERT -35 216 ome.model.display.ChannelBinding \N 1929 8790 INSERT -35 66 ome.model.display.Thumbnail \N 1930 8791 UPDATE -35 82 ome.model.core.OriginalFile \N 1931 8792 INSERT -35 67 ome.model.acquisition.Instrument \N 1941 8793 INSERT -35 67 ome.model.acquisition.Objective \N 1941 8794 INSERT -35 67 ome.model.acquisition.ObjectiveSettings \N 1941 8795 INSERT -35 67 ome.model.core.Image \N 1941 8796 INSERT -35 83 ome.model.core.OriginalFile \N 1941 8797 INSERT -35 69 ome.model.annotations.FileAnnotation \N 1941 8798 INSERT -35 68 ome.model.annotations.ImageAnnotationLink \N 1941 8799 INSERT -35 67 ome.model.core.Pixels \N 1941 8800 INSERT -35 152 ome.model.core.LogicalChannel \N 1941 8801 INSERT -35 152 ome.model.core.Channel \N 1941 8802 INSERT -35 153 ome.model.core.LogicalChannel \N 1941 8803 INSERT -35 153 ome.model.core.Channel \N 1941 8804 UPDATE -35 67 ome.model.core.Pixels \N 1942 8805 UPDATE -35 67 ome.model.core.Pixels \N 1943 8806 INSERT -35 152 ome.model.stats.StatsInfo \N 1944 8807 INSERT -35 153 ome.model.stats.StatsInfo \N 1944 8808 UPDATE -35 152 ome.model.core.Channel \N 1944 8809 UPDATE -35 153 ome.model.core.Channel \N 1944 8810 INSERT -35 97 ome.model.display.QuantumDef \N 1945 8811 INSERT -35 97 ome.model.display.RenderingDef \N 1945 8812 INSERT -35 217 ome.model.display.ChannelBinding \N 1945 8813 INSERT -35 218 ome.model.display.ChannelBinding \N 1945 8814 INSERT -35 67 ome.model.display.Thumbnail \N 1946 8815 UPDATE -35 83 ome.model.core.OriginalFile \N 1947 8816 INSERT -35 68 ome.model.acquisition.Instrument \N 1957 8817 INSERT -35 68 ome.model.acquisition.Objective \N 1957 8818 INSERT -35 68 ome.model.acquisition.ObjectiveSettings \N 1957 8819 INSERT -35 68 ome.model.core.Image \N 1957 8820 INSERT -35 84 ome.model.core.OriginalFile \N 1957 8821 INSERT -35 70 ome.model.annotations.FileAnnotation \N 1957 8822 INSERT -35 69 ome.model.annotations.ImageAnnotationLink \N 1957 8823 INSERT -35 68 ome.model.core.Pixels \N 1957 8824 INSERT -35 154 ome.model.core.LogicalChannel \N 1957 8825 INSERT -35 154 ome.model.core.Channel \N 1957 8826 INSERT -35 155 ome.model.core.LogicalChannel \N 1957 8827 INSERT -35 155 ome.model.core.Channel \N 1957 8828 UPDATE -35 68 ome.model.core.Pixels \N 2005 8829 UPDATE -35 68 ome.model.core.Pixels \N 2006 8830 INSERT -35 154 ome.model.stats.StatsInfo \N 2007 8831 INSERT -35 155 ome.model.stats.StatsInfo \N 2007 8832 UPDATE -35 154 ome.model.core.Channel \N 2007 8833 UPDATE -35 155 ome.model.core.Channel \N 2007 8834 INSERT -35 98 ome.model.display.QuantumDef \N 2008 8835 INSERT -35 98 ome.model.display.RenderingDef \N 2008 8836 INSERT -35 219 ome.model.display.ChannelBinding \N 2008 8837 INSERT -35 220 ome.model.display.ChannelBinding \N 2008 8838 INSERT -35 68 ome.model.display.Thumbnail \N 2009 8839 UPDATE -35 84 ome.model.core.OriginalFile \N 2010 8840 INSERT -35 65 ome.model.containers.DatasetImageLink \N 2024 8841 INSERT -35 66 ome.model.containers.DatasetImageLink \N 2025 8842 INSERT -35 67 ome.model.containers.DatasetImageLink \N 2026 8843 INSERT -35 68 ome.model.containers.DatasetImageLink \N 2027 8844 REINDEX -52 68 ome.model.core.Image \N 2051 8845 REINDEX -52 65 ome.model.core.Image \N 2052 8846 REINDEX -52 66 ome.model.core.Image \N 2053 8847 REINDEX -52 67 ome.model.core.Image \N 2054 8848 INSERT -35 69 ome.model.core.Image \N 2061 8849 INSERT -35 69 ome.model.containers.DatasetImageLink \N 2061 8850 INSERT -35 69 ome.model.core.Pixels \N 2061 8851 INSERT -35 156 ome.model.core.LogicalChannel \N 2061 8852 INSERT -35 156 ome.model.core.Channel \N 2061 8853 INSERT -35 157 ome.model.core.LogicalChannel \N 2061 8854 INSERT -35 157 ome.model.core.Channel \N 2061 8855 UPDATE -35 69 ome.model.core.Pixels \N 2062 8856 UPDATE -35 69 ome.model.core.Pixels \N 2063 8857 INSERT -35 156 ome.model.stats.StatsInfo \N 2064 8858 INSERT -35 157 ome.model.stats.StatsInfo \N 2064 8859 UPDATE -35 156 ome.model.core.Channel \N 2064 8860 UPDATE -35 157 ome.model.core.Channel \N 2064 8861 INSERT -35 99 ome.model.display.QuantumDef \N 2065 8862 INSERT -35 99 ome.model.display.RenderingDef \N 2065 8863 INSERT -35 221 ome.model.display.ChannelBinding \N 2065 8864 INSERT -35 222 ome.model.display.ChannelBinding \N 2065 8865 INSERT -35 69 ome.model.display.Thumbnail \N 2066 8866 INSERT -35 70 ome.model.core.Image \N 2079 8867 INSERT -35 70 ome.model.containers.DatasetImageLink \N 2079 8868 INSERT -35 70 ome.model.core.Pixels \N 2079 8869 INSERT -35 158 ome.model.core.LogicalChannel \N 2079 8870 INSERT -35 158 ome.model.core.Channel \N 2079 8871 INSERT -35 159 ome.model.core.LogicalChannel \N 2079 8872 INSERT -35 159 ome.model.core.Channel \N 2079 8873 UPDATE -35 70 ome.model.core.Pixels \N 2080 8874 UPDATE -35 70 ome.model.core.Pixels \N 2081 8875 INSERT -35 158 ome.model.stats.StatsInfo \N 2082 8876 INSERT -35 159 ome.model.stats.StatsInfo \N 2082 8877 UPDATE -35 158 ome.model.core.Channel \N 2082 8878 UPDATE -35 159 ome.model.core.Channel \N 2082 8879 INSERT -35 100 ome.model.display.QuantumDef \N 2083 8880 INSERT -35 100 ome.model.display.RenderingDef \N 2083 8881 INSERT -35 223 ome.model.display.ChannelBinding \N 2083 8882 INSERT -35 224 ome.model.display.ChannelBinding \N 2083 8883 INSERT -35 70 ome.model.display.Thumbnail \N 2084 8884 INSERT -35 71 ome.model.core.Image \N 2097 8885 INSERT -35 71 ome.model.containers.DatasetImageLink \N 2097 8886 INSERT -35 71 ome.model.core.Pixels \N 2097 8887 INSERT -35 160 ome.model.core.LogicalChannel \N 2097 8888 INSERT -35 160 ome.model.core.Channel \N 2097 8889 INSERT -35 161 ome.model.core.LogicalChannel \N 2097 8890 INSERT -35 161 ome.model.core.Channel \N 2097 8891 UPDATE -35 71 ome.model.core.Pixels \N 2098 8892 UPDATE -35 71 ome.model.core.Pixels \N 2099 8893 INSERT -35 160 ome.model.stats.StatsInfo \N 2100 8894 INSERT -35 161 ome.model.stats.StatsInfo \N 2100 8895 UPDATE -35 160 ome.model.core.Channel \N 2100 8896 UPDATE -35 161 ome.model.core.Channel \N 2100 8897 INSERT -35 101 ome.model.display.QuantumDef \N 2101 8898 INSERT -35 101 ome.model.display.RenderingDef \N 2101 8899 INSERT -35 225 ome.model.display.ChannelBinding \N 2101 8900 INSERT -35 226 ome.model.display.ChannelBinding \N 2101 8901 INSERT -35 71 ome.model.display.Thumbnail \N 2102 8902 UPDATE -35 101 ome.model.display.RenderingDef \N 2142 8903 UPDATE -35 101 ome.model.display.QuantumDef \N 2142 8904 UPDATE -35 225 ome.model.display.ChannelBinding \N 2142 8905 UPDATE -35 226 ome.model.display.ChannelBinding \N 2142 8906 UPDATE -35 100 ome.model.display.RenderingDef \N 2161 8907 UPDATE -35 100 ome.model.display.QuantumDef \N 2161 8908 UPDATE -35 223 ome.model.display.ChannelBinding \N 2161 8909 UPDATE -35 224 ome.model.display.ChannelBinding \N 2161 8910 UPDATE -35 99 ome.model.display.RenderingDef \N 2171 8911 UPDATE -35 99 ome.model.display.QuantumDef \N 2171 8912 UPDATE -35 221 ome.model.display.ChannelBinding \N 2171 8913 UPDATE -35 222 ome.model.display.ChannelBinding \N 2171 8914 INSERT -35 204 ome.model.meta.Session \N 2240 8915 INSERT -35 72 ome.model.core.Image \N 2249 8916 INSERT -35 72 ome.model.containers.DatasetImageLink \N 2249 8917 INSERT -35 72 ome.model.core.Pixels \N 2249 8918 INSERT -35 162 ome.model.core.LogicalChannel \N 2249 8919 INSERT -35 162 ome.model.core.Channel \N 2249 8920 INSERT -35 163 ome.model.core.LogicalChannel \N 2249 8921 INSERT -35 163 ome.model.core.Channel \N 2249 8922 INSERT -35 102 ome.model.display.QuantumDef \N 2252 8923 INSERT -35 102 ome.model.display.RenderingDef \N 2252 8924 INSERT -35 227 ome.model.display.ChannelBinding \N 2252 8925 INSERT -35 228 ome.model.display.ChannelBinding \N 2252 8926 UPDATE -35 72 ome.model.core.Pixels \N 2255 8927 UPDATE -35 72 ome.model.core.Pixels \N 2257 8928 INSERT -35 162 ome.model.stats.StatsInfo \N 2258 8929 INSERT -35 163 ome.model.stats.StatsInfo \N 2258 8930 UPDATE -35 162 ome.model.core.Channel \N 2258 8931 UPDATE -35 163 ome.model.core.Channel \N 2258 8932 UPDATE -35 102 ome.model.display.RenderingDef \N 2259 8933 UPDATE -35 227 ome.model.display.ChannelBinding \N 2259 8934 UPDATE -35 228 ome.model.display.ChannelBinding \N 2259 8935 INSERT -35 72 ome.model.display.Thumbnail \N 2260 8936 UPDATE -35 102 ome.model.display.RenderingDef \N 2276 8937 UPDATE -35 102 ome.model.display.QuantumDef \N 2276 8938 UPDATE -35 227 ome.model.display.ChannelBinding \N 2276 8939 UPDATE -35 228 ome.model.display.ChannelBinding \N 2276 8940 UPDATE -35 9 ome.model.containers.Dataset \N 2282 8941 UPDATE -35 8 ome.model.containers.Dataset \N 2287 8942 UPDATE -35 72 ome.model.display.Thumbnail \N 2288 8943 UPDATE -35 69 ome.model.display.Thumbnail \N 2288 8944 UPDATE -35 70 ome.model.display.Thumbnail \N 2288 8945 UPDATE -35 71 ome.model.display.Thumbnail \N 2288 8946 INSERT -35 205 ome.model.meta.Session \N 2289 8947 INSERT -35 206 ome.model.meta.Session \N 2291 8948 INSERT -35 207 ome.model.meta.Session \N 2379 8949 INSERT -35 208 ome.model.meta.Session \N 2381 8950 INSERT -35 209 ome.model.meta.Session \N 2383 8951 INSERT -35 210 ome.model.meta.Session \N 2386 8952 INSERT -35 211 ome.model.meta.Session \N 2389 8953 INSERT -35 212 ome.model.meta.Session \N 2392 8954 INSERT -35 213 ome.model.meta.Session \N 2394 8955 INSERT -35 214 ome.model.meta.Session \N 2396 8956 INSERT -35 215 ome.model.meta.Session \N 2399 8957 INSERT -35 216 ome.model.meta.Session \N 2402 8958 INSERT -35 217 ome.model.meta.Session \N 2405 8959 INSERT -35 218 ome.model.meta.Session \N 2408 8960 INSERT -35 219 ome.model.meta.Session \N 2411 8961 INSERT -35 220 ome.model.meta.Session \N 2415 8962 INSERT -35 221 ome.model.meta.Session \N 2417 8963 INSERT -35 222 ome.model.meta.Session \N 2419 8964 INSERT -35 223 ome.model.meta.Session \N 2421 8965 INSERT -35 224 ome.model.meta.Session \N 2423 8966 INSERT -35 225 ome.model.meta.Session \N 2425 8967 INSERT -35 6 ome.model.meta.Experimenter \N 2427 8968 INSERT -35 12 ome.model.meta.GroupExperimenterMap \N 2427 8969 INSERT -35 13 ome.model.meta.GroupExperimenterMap \N 2427 8970 INSERT -35 14 ome.model.meta.GroupExperimenterMap \N 2429 8971 UPDATE -35 5 ome.model.meta.Experimenter \N 2431 8972 INSERT -35 15 ome.model.meta.GroupExperimenterMap \N 2432 8973 INSERT -35 226 ome.model.meta.Session \N 2434 8974 INSERT -35 227 ome.model.meta.Session \N 2436 8975 INSERT -35 228 ome.model.meta.Session \N 2438 8976 INSERT -35 229 ome.model.meta.Session \N 2440 8977 INSERT -35 71 ome.model.annotations.TagAnnotation \N 2447 8978 INSERT -35 70 ome.model.annotations.ImageAnnotationLink \N 2448 8979 INSERT -35 71 ome.model.annotations.ImageAnnotationLink \N 2451 8980 INSERT -35 72 ome.model.annotations.ImageAnnotationLink \N 2453 8981 INSERT -35 73 ome.model.annotations.ImageAnnotationLink \N 2455 8982 INSERT -35 72 ome.model.annotations.TagAnnotation \N 2465 8983 INSERT -35 74 ome.model.annotations.ImageAnnotationLink \N 2466 8984 INSERT -35 75 ome.model.annotations.ImageAnnotationLink \N 2468 8985 INSERT -35 76 ome.model.annotations.ImageAnnotationLink \N 2470 8986 INSERT -35 77 ome.model.annotations.ImageAnnotationLink \N 2472 8987 INSERT -35 78 ome.model.annotations.ImageAnnotationLink \N 2480 8988 INSERT -35 79 ome.model.annotations.ImageAnnotationLink \N 2480 8989 INSERT -35 80 ome.model.annotations.ImageAnnotationLink \N 2480 8990 INSERT -35 81 ome.model.annotations.ImageAnnotationLink \N 2480 8991 INSERT -35 82 ome.model.annotations.ImageAnnotationLink \N 2480 8992 INSERT -35 83 ome.model.annotations.ImageAnnotationLink \N 2480 8993 INSERT -35 1 ome.model.annotations.DatasetAnnotationLink \N 2489 8994 REINDEX -52 5 ome.model.containers.Dataset \N 2491 8995 DELETE -35 1 ome.model.annotations.DatasetAnnotationLink \N 2491 8996 INSERT -35 84 ome.model.annotations.ImageAnnotationLink \N 2493 8997 INSERT -35 85 ome.model.annotations.ImageAnnotationLink \N 2493 8998 INSERT -35 86 ome.model.annotations.ImageAnnotationLink \N 2493 8999 INSERT -35 87 ome.model.annotations.ImageAnnotationLink \N 2493 9000 INSERT -35 88 ome.model.annotations.ImageAnnotationLink \N 2493 9001 INSERT -35 89 ome.model.annotations.ImageAnnotationLink \N 2493 9002 INSERT -35 90 ome.model.annotations.ImageAnnotationLink \N 2506 9003 INSERT -35 91 ome.model.annotations.ImageAnnotationLink \N 2506 9004 INSERT -35 92 ome.model.annotations.ImageAnnotationLink \N 2506 9005 INSERT -35 93 ome.model.annotations.ImageAnnotationLink \N 2506 9006 INSERT -35 94 ome.model.annotations.ImageAnnotationLink \N 2506 9007 INSERT -35 95 ome.model.annotations.ImageAnnotationLink \N 2506 9008 INSERT -35 96 ome.model.annotations.ImageAnnotationLink \N 2506 9009 INSERT -35 97 ome.model.annotations.ImageAnnotationLink \N 2506 9010 INSERT -35 98 ome.model.annotations.ImageAnnotationLink \N 2506 9011 INSERT -35 99 ome.model.annotations.ImageAnnotationLink \N 2506 9012 INSERT -35 100 ome.model.annotations.ImageAnnotationLink \N 2506 9013 INSERT -35 230 ome.model.meta.Session \N 2590 9014 INSERT -35 231 ome.model.meta.Session \N 2592 9015 INSERT -35 232 ome.model.meta.Session \N 2594 9016 INSERT -35 233 ome.model.meta.Session \N 2596 9017 INSERT -35 234 ome.model.meta.Session \N 2609 9018 INSERT -35 235 ome.model.meta.Session \N 2611 9019 INSERT -35 236 ome.model.meta.Session \N 2613 9020 INSERT -35 237 ome.model.meta.Session \N 2616 9021 INSERT -35 238 ome.model.meta.Session \N 2618 9022 INSERT -35 51 ome.model.meta.Node \N 2704 9023 INSERT -35 256 ome.model.meta.Session \N 2708 9024 INSERT -35 257 ome.model.meta.Session \N 2710 9025 INSERT -35 258 ome.model.meta.Session \N 2711 9026 INSERT -35 259 ome.model.meta.Session \N 2713 9027 INSERT -35 260 ome.model.meta.Session \N 2715 9028 INSERT -35 261 ome.model.meta.Session \N 2718 9029 INSERT -35 262 ome.model.meta.Session \N 2720 9030 INSERT -35 263 ome.model.meta.Session \N 2785 9031 UPDATE -35 46 ome.model.display.RenderingDef \N 2797 9032 UPDATE -35 46 ome.model.display.QuantumDef \N 2797 9033 UPDATE -35 111 ome.model.display.ChannelBinding \N 2797 9034 UPDATE -35 112 ome.model.display.ChannelBinding \N 2797 9035 UPDATE -35 40 ome.model.display.Thumbnail \N 2799 9036 INSERT -35 51 ome.model.containers.Dataset \N 2828 9037 INSERT -35 51 ome.model.containers.ProjectDatasetLink \N 2828 9038 INSERT -35 51 ome.model.annotations.DatasetAnnotationLink \N 2829 9039 INSERT -35 52 ome.model.annotations.DatasetAnnotationLink \N 2830 9040 INSERT -35 101 ome.model.acquisition.Instrument \N 2837 9041 INSERT -35 101 ome.model.acquisition.Objective \N 2837 9042 INSERT -35 101 ome.model.acquisition.ObjectiveSettings \N 2837 9043 INSERT -35 101 ome.model.core.Image \N 2837 9044 INSERT -35 101 ome.model.core.OriginalFile \N 2837 9045 INSERT -35 101 ome.model.annotations.FileAnnotation \N 2837 9046 INSERT -35 101 ome.model.annotations.ImageAnnotationLink \N 2837 9047 INSERT -35 101 ome.model.core.Pixels \N 2837 9048 INSERT -35 201 ome.model.core.LogicalChannel \N 2837 9049 INSERT -35 201 ome.model.core.Channel \N 2837 9050 INSERT -35 202 ome.model.core.LogicalChannel \N 2837 9051 INSERT -35 202 ome.model.core.Channel \N 2837 9052 UPDATE -35 101 ome.model.core.Pixels \N 2838 9053 UPDATE -35 101 ome.model.core.Pixels \N 2839 9054 INSERT -35 201 ome.model.stats.StatsInfo \N 2840 9055 INSERT -35 202 ome.model.stats.StatsInfo \N 2840 9056 UPDATE -35 201 ome.model.core.Channel \N 2840 9057 UPDATE -35 202 ome.model.core.Channel \N 2840 9058 INSERT -35 151 ome.model.display.QuantumDef \N 2841 9059 INSERT -35 151 ome.model.display.RenderingDef \N 2841 9060 INSERT -35 251 ome.model.display.ChannelBinding \N 2841 9061 INSERT -35 252 ome.model.display.ChannelBinding \N 2841 9062 INSERT -35 101 ome.model.display.Thumbnail \N 2842 9063 UPDATE -35 101 ome.model.core.OriginalFile \N 2843 9064 INSERT -35 102 ome.model.acquisition.Instrument \N 2853 9065 INSERT -35 102 ome.model.acquisition.Objective \N 2853 9066 INSERT -35 102 ome.model.acquisition.ObjectiveSettings \N 2853 9067 INSERT -35 102 ome.model.core.Image \N 2853 9068 INSERT -35 102 ome.model.core.OriginalFile \N 2853 9069 INSERT -35 102 ome.model.annotations.FileAnnotation \N 2853 9070 INSERT -35 102 ome.model.annotations.ImageAnnotationLink \N 2853 9071 INSERT -35 102 ome.model.core.Pixels \N 2853 9072 INSERT -35 203 ome.model.core.LogicalChannel \N 2853 9073 INSERT -35 203 ome.model.core.Channel \N 2853 9074 INSERT -35 204 ome.model.core.LogicalChannel \N 2853 9075 INSERT -35 204 ome.model.core.Channel \N 2853 9076 UPDATE -35 102 ome.model.core.Pixels \N 2854 9077 UPDATE -35 102 ome.model.core.Pixels \N 2855 9078 INSERT -35 203 ome.model.stats.StatsInfo \N 2856 9079 INSERT -35 204 ome.model.stats.StatsInfo \N 2856 9080 UPDATE -35 203 ome.model.core.Channel \N 2856 9081 UPDATE -35 204 ome.model.core.Channel \N 2856 9082 INSERT -35 152 ome.model.display.QuantumDef \N 2857 9083 INSERT -35 152 ome.model.display.RenderingDef \N 2857 9084 INSERT -35 253 ome.model.display.ChannelBinding \N 2857 9085 INSERT -35 254 ome.model.display.ChannelBinding \N 2857 9086 INSERT -35 102 ome.model.display.Thumbnail \N 2858 9087 UPDATE -35 102 ome.model.core.OriginalFile \N 2859 9088 INSERT -35 103 ome.model.acquisition.Instrument \N 2869 9089 INSERT -35 103 ome.model.acquisition.Objective \N 2869 9090 INSERT -35 103 ome.model.acquisition.ObjectiveSettings \N 2869 9091 INSERT -35 103 ome.model.core.Image \N 2869 9092 INSERT -35 103 ome.model.core.OriginalFile \N 2869 9093 INSERT -35 103 ome.model.annotations.FileAnnotation \N 2869 9094 INSERT -35 103 ome.model.annotations.ImageAnnotationLink \N 2869 9095 INSERT -35 103 ome.model.core.Pixels \N 2869 9096 INSERT -35 205 ome.model.core.LogicalChannel \N 2869 9097 INSERT -35 205 ome.model.core.Channel \N 2869 9098 INSERT -35 206 ome.model.core.LogicalChannel \N 2869 9099 INSERT -35 206 ome.model.core.Channel \N 2869 9100 UPDATE -35 103 ome.model.core.Pixels \N 2870 9101 UPDATE -35 103 ome.model.core.Pixels \N 2871 9102 INSERT -35 205 ome.model.stats.StatsInfo \N 2872 9103 INSERT -35 206 ome.model.stats.StatsInfo \N 2872 9104 UPDATE -35 205 ome.model.core.Channel \N 2872 9105 UPDATE -35 206 ome.model.core.Channel \N 2872 9106 INSERT -35 153 ome.model.display.QuantumDef \N 2873 9107 INSERT -35 153 ome.model.display.RenderingDef \N 2873 9108 INSERT -35 255 ome.model.display.ChannelBinding \N 2873 9109 INSERT -35 256 ome.model.display.ChannelBinding \N 2873 9110 INSERT -35 103 ome.model.display.Thumbnail \N 2874 9111 UPDATE -35 103 ome.model.core.OriginalFile \N 2875 9112 INSERT -35 104 ome.model.acquisition.Instrument \N 2885 9113 INSERT -35 104 ome.model.acquisition.Objective \N 2885 9114 INSERT -35 104 ome.model.acquisition.ObjectiveSettings \N 2885 9115 INSERT -35 104 ome.model.core.Image \N 2885 9116 INSERT -35 104 ome.model.core.OriginalFile \N 2885 9117 INSERT -35 104 ome.model.annotations.FileAnnotation \N 2885 9118 INSERT -35 104 ome.model.annotations.ImageAnnotationLink \N 2885 9119 INSERT -35 104 ome.model.core.Pixels \N 2885 9120 INSERT -35 207 ome.model.core.LogicalChannel \N 2885 9121 INSERT -35 207 ome.model.core.Channel \N 2885 9122 INSERT -35 208 ome.model.core.LogicalChannel \N 2885 9123 INSERT -35 208 ome.model.core.Channel \N 2885 9124 UPDATE -35 104 ome.model.core.Pixels \N 2886 9125 UPDATE -35 104 ome.model.core.Pixels \N 2887 9126 INSERT -35 207 ome.model.stats.StatsInfo \N 2888 9127 INSERT -35 208 ome.model.stats.StatsInfo \N 2888 9128 UPDATE -35 207 ome.model.core.Channel \N 2888 9129 UPDATE -35 208 ome.model.core.Channel \N 2888 9130 INSERT -35 154 ome.model.display.QuantumDef \N 2889 9131 INSERT -35 154 ome.model.display.RenderingDef \N 2889 9132 INSERT -35 257 ome.model.display.ChannelBinding \N 2889 9133 INSERT -35 258 ome.model.display.ChannelBinding \N 2889 9134 INSERT -35 104 ome.model.display.Thumbnail \N 2890 9135 UPDATE -35 104 ome.model.core.OriginalFile \N 2891 9136 INSERT -35 105 ome.model.acquisition.Instrument \N 2901 9137 INSERT -35 105 ome.model.acquisition.Objective \N 2901 9138 INSERT -35 105 ome.model.acquisition.ObjectiveSettings \N 2901 9139 INSERT -35 105 ome.model.core.Image \N 2901 9140 INSERT -35 105 ome.model.core.OriginalFile \N 2901 9141 INSERT -35 105 ome.model.annotations.FileAnnotation \N 2901 9142 INSERT -35 105 ome.model.annotations.ImageAnnotationLink \N 2901 9143 INSERT -35 105 ome.model.core.Pixels \N 2901 9144 INSERT -35 209 ome.model.core.LogicalChannel \N 2901 9145 INSERT -35 209 ome.model.core.Channel \N 2901 9146 INSERT -35 210 ome.model.core.LogicalChannel \N 2901 9147 INSERT -35 210 ome.model.core.Channel \N 2901 9148 UPDATE -35 105 ome.model.core.Pixels \N 2902 9149 UPDATE -35 105 ome.model.core.Pixels \N 2903 9150 INSERT -35 209 ome.model.stats.StatsInfo \N 2904 9151 INSERT -35 210 ome.model.stats.StatsInfo \N 2904 9152 UPDATE -35 209 ome.model.core.Channel \N 2904 9153 UPDATE -35 210 ome.model.core.Channel \N 2904 9154 INSERT -35 155 ome.model.display.QuantumDef \N 2905 9155 INSERT -35 155 ome.model.display.RenderingDef \N 2905 9156 INSERT -35 259 ome.model.display.ChannelBinding \N 2905 9157 INSERT -35 260 ome.model.display.ChannelBinding \N 2905 9158 INSERT -35 105 ome.model.display.Thumbnail \N 2906 9159 UPDATE -35 105 ome.model.core.OriginalFile \N 2907 9160 INSERT -35 106 ome.model.acquisition.Instrument \N 2917 9161 INSERT -35 106 ome.model.acquisition.Objective \N 2917 9162 INSERT -35 106 ome.model.acquisition.ObjectiveSettings \N 2917 9163 INSERT -35 106 ome.model.core.Image \N 2917 9164 INSERT -35 106 ome.model.core.OriginalFile \N 2917 9165 INSERT -35 106 ome.model.annotations.FileAnnotation \N 2917 9166 INSERT -35 106 ome.model.annotations.ImageAnnotationLink \N 2917 9167 INSERT -35 106 ome.model.core.Pixels \N 2917 9168 INSERT -35 211 ome.model.core.LogicalChannel \N 2917 9169 INSERT -35 211 ome.model.core.Channel \N 2917 9170 INSERT -35 212 ome.model.core.LogicalChannel \N 2917 9171 INSERT -35 212 ome.model.core.Channel \N 2917 9172 UPDATE -35 106 ome.model.core.Pixels \N 2918 9173 UPDATE -35 106 ome.model.core.Pixels \N 2919 9174 INSERT -35 211 ome.model.stats.StatsInfo \N 2920 9175 INSERT -35 212 ome.model.stats.StatsInfo \N 2920 9176 UPDATE -35 211 ome.model.core.Channel \N 2920 9177 UPDATE -35 212 ome.model.core.Channel \N 2920 9178 INSERT -35 156 ome.model.display.QuantumDef \N 2921 9179 INSERT -35 156 ome.model.display.RenderingDef \N 2921 9180 INSERT -35 261 ome.model.display.ChannelBinding \N 2921 9181 INSERT -35 262 ome.model.display.ChannelBinding \N 2921 9182 INSERT -35 106 ome.model.display.Thumbnail \N 2922 9183 UPDATE -35 106 ome.model.core.OriginalFile \N 2923 9184 INSERT -35 264 ome.model.meta.Session \N 2930 9185 INSERT -35 265 ome.model.meta.Session \N 2932 9186 UPDATE -35 152 ome.model.display.RenderingDef \N 2954 9187 UPDATE -35 152 ome.model.display.QuantumDef \N 2954 9188 UPDATE -35 253 ome.model.display.ChannelBinding \N 2954 9189 UPDATE -35 254 ome.model.display.ChannelBinding \N 2954 9190 UPDATE -35 152 ome.model.display.RenderingDef \N 2972 9191 UPDATE -35 152 ome.model.display.QuantumDef \N 2972 9192 UPDATE -35 253 ome.model.display.ChannelBinding \N 2972 9193 UPDATE -35 254 ome.model.display.ChannelBinding \N 2972 9194 UPDATE -35 151 ome.model.display.RenderingDef \N 2993 9195 UPDATE -35 151 ome.model.display.QuantumDef \N 2993 9196 UPDATE -35 251 ome.model.display.ChannelBinding \N 2993 9197 UPDATE -35 252 ome.model.display.ChannelBinding \N 2993 9198 UPDATE -35 153 ome.model.display.RenderingDef \N 3003 9199 UPDATE -35 153 ome.model.display.QuantumDef \N 3003 9200 UPDATE -35 255 ome.model.display.ChannelBinding \N 3003 9201 UPDATE -35 256 ome.model.display.ChannelBinding \N 3003 9202 UPDATE -35 154 ome.model.display.RenderingDef \N 3057 9203 UPDATE -35 154 ome.model.display.QuantumDef \N 3057 9204 UPDATE -35 257 ome.model.display.ChannelBinding \N 3057 9205 UPDATE -35 258 ome.model.display.ChannelBinding \N 3057 9206 UPDATE -35 155 ome.model.display.RenderingDef \N 3067 9207 UPDATE -35 155 ome.model.display.QuantumDef \N 3067 9208 UPDATE -35 259 ome.model.display.ChannelBinding \N 3067 9209 UPDATE -35 260 ome.model.display.ChannelBinding \N 3067 9210 UPDATE -35 156 ome.model.display.RenderingDef \N 3077 9211 UPDATE -35 156 ome.model.display.QuantumDef \N 3077 9212 UPDATE -35 261 ome.model.display.ChannelBinding \N 3077 9213 UPDATE -35 262 ome.model.display.ChannelBinding \N 3077 9214 INSERT -35 107 ome.model.annotations.ImageAnnotationLink \N 3087 9215 INSERT -35 108 ome.model.annotations.ImageAnnotationLink \N 3087 9216 INSERT -35 109 ome.model.annotations.ImageAnnotationLink \N 3087 9217 INSERT -35 110 ome.model.annotations.ImageAnnotationLink \N 3087 9218 INSERT -35 111 ome.model.annotations.ImageAnnotationLink \N 3087 9219 INSERT -35 112 ome.model.annotations.ImageAnnotationLink \N 3087 9220 INSERT -35 101 ome.model.containers.DatasetImageLink \N 3088 9221 INSERT -35 102 ome.model.containers.DatasetImageLink \N 3089 9222 INSERT -35 103 ome.model.containers.DatasetImageLink \N 3090 9223 INSERT -35 104 ome.model.containers.DatasetImageLink \N 3091 9224 INSERT -35 105 ome.model.containers.DatasetImageLink \N 3092 9225 INSERT -35 106 ome.model.containers.DatasetImageLink \N 3093 9226 UPDATE -35 106 ome.model.display.Thumbnail \N 3094 9227 UPDATE -35 101 ome.model.display.Thumbnail \N 3094 9228 UPDATE -35 102 ome.model.display.Thumbnail \N 3094 9229 UPDATE -35 103 ome.model.display.Thumbnail \N 3094 9230 UPDATE -35 104 ome.model.display.Thumbnail \N 3094 9231 UPDATE -35 105 ome.model.display.Thumbnail \N 3094 9232 UPDATE -35 51 ome.model.containers.Dataset \N 3132 9233 INSERT -35 52 ome.model.containers.Dataset \N 3133 9234 INSERT -35 52 ome.model.containers.ProjectDatasetLink \N 3133 9235 UPDATE -35 52 ome.model.containers.Dataset \N 3134 9236 INSERT -35 53 ome.model.annotations.DatasetAnnotationLink \N 3135 9237 UPDATE -35 4 ome.model.containers.Dataset \N 3142 9238 UPDATE -35 5 ome.model.containers.Dataset \N 3149 9239 INSERT -35 54 ome.model.annotations.DatasetAnnotationLink \N 3150 9240 INSERT -35 107 ome.model.annotations.TagAnnotation \N 3151 9241 INSERT -35 55 ome.model.annotations.DatasetAnnotationLink \N 3152 9242 INSERT -35 108 ome.model.annotations.TagAnnotation \N 3159 9243 INSERT -35 56 ome.model.annotations.DatasetAnnotationLink \N 3160 9244 INSERT -35 57 ome.model.annotations.DatasetAnnotationLink \N 3161 9245 INSERT -35 58 ome.model.annotations.DatasetAnnotationLink \N 3162 9246 INSERT -35 109 ome.model.annotations.TagAnnotation \N 3174 9247 INSERT -35 59 ome.model.annotations.DatasetAnnotationLink \N 3175 9248 INSERT -35 60 ome.model.annotations.DatasetAnnotationLink \N 3180 9249 INSERT -35 61 ome.model.annotations.DatasetAnnotationLink \N 3181 9250 INSERT -35 113 ome.model.annotations.ImageAnnotationLink \N 3184 9251 INSERT -35 114 ome.model.annotations.ImageAnnotationLink \N 3184 9252 INSERT -35 115 ome.model.annotations.ImageAnnotationLink \N 3184 9253 INSERT -35 116 ome.model.annotations.ImageAnnotationLink \N 3184 9254 INSERT -35 117 ome.model.annotations.ImageAnnotationLink \N 3192 9255 INSERT -35 118 ome.model.annotations.ImageAnnotationLink \N 3192 9256 INSERT -35 119 ome.model.annotations.ImageAnnotationLink \N 3192 9257 INSERT -35 120 ome.model.annotations.ImageAnnotationLink \N 3192 9258 INSERT -35 62 ome.model.annotations.DatasetAnnotationLink \N 3193 9259 INSERT -35 63 ome.model.annotations.DatasetAnnotationLink \N 3194 9260 INSERT -35 121 ome.model.annotations.ImageAnnotationLink \N 3207 9261 INSERT -35 122 ome.model.annotations.ImageAnnotationLink \N 3207 9262 INSERT -35 123 ome.model.annotations.ImageAnnotationLink \N 3207 9263 INSERT -35 124 ome.model.annotations.ImageAnnotationLink \N 3207 9264 INSERT -35 125 ome.model.annotations.ImageAnnotationLink \N 3207 9265 INSERT -35 126 ome.model.annotations.ImageAnnotationLink \N 3207 9266 INSERT -35 127 ome.model.annotations.ImageAnnotationLink \N 3218 9267 INSERT -35 128 ome.model.annotations.ImageAnnotationLink \N 3218 9268 INSERT -35 129 ome.model.annotations.ImageAnnotationLink \N 3218 9269 INSERT -35 130 ome.model.annotations.ImageAnnotationLink \N 3218 9270 INSERT -35 131 ome.model.annotations.ImageAnnotationLink \N 3218 9271 INSERT -35 132 ome.model.annotations.ImageAnnotationLink \N 3218 9272 INSERT -35 133 ome.model.annotations.ImageAnnotationLink \N 3229 9273 INSERT -35 134 ome.model.annotations.ImageAnnotationLink \N 3229 9274 INSERT -35 135 ome.model.annotations.ImageAnnotationLink \N 3229 9275 INSERT -35 136 ome.model.annotations.ImageAnnotationLink \N 3229 9276 INSERT -35 137 ome.model.annotations.ImageAnnotationLink \N 3229 9277 INSERT -35 138 ome.model.annotations.ImageAnnotationLink \N 3229 9278 INSERT -35 64 ome.model.annotations.DatasetAnnotationLink \N 3242 9279 INSERT -35 139 ome.model.annotations.ImageAnnotationLink \N 3245 9280 INSERT -35 140 ome.model.annotations.ImageAnnotationLink \N 3245 9281 INSERT -35 141 ome.model.annotations.ImageAnnotationLink \N 3245 9282 INSERT -35 142 ome.model.annotations.ImageAnnotationLink \N 3245 9283 INSERT -35 143 ome.model.annotations.ImageAnnotationLink \N 3245 9284 INSERT -35 144 ome.model.annotations.ImageAnnotationLink \N 3245 9285 INSERT -35 145 ome.model.annotations.ImageAnnotationLink \N 3245 9286 INSERT -35 146 ome.model.annotations.ImageAnnotationLink \N 3245 9287 INSERT -35 147 ome.model.annotations.ImageAnnotationLink \N 3245 9288 INSERT -35 148 ome.model.annotations.ImageAnnotationLink \N 3245 9289 INSERT -35 149 ome.model.annotations.ImageAnnotationLink \N 3245 9290 INSERT -35 107 ome.model.acquisition.Instrument \N 3284 9291 INSERT -35 107 ome.model.acquisition.Objective \N 3284 9292 INSERT -35 107 ome.model.acquisition.ObjectiveSettings \N 3284 9293 INSERT -35 107 ome.model.core.Image \N 3284 9294 INSERT -35 107 ome.model.core.OriginalFile \N 3284 9295 INSERT -35 110 ome.model.annotations.FileAnnotation \N 3284 9296 INSERT -35 150 ome.model.annotations.ImageAnnotationLink \N 3284 9297 INSERT -35 107 ome.model.core.Pixels \N 3284 9298 INSERT -35 213 ome.model.core.LogicalChannel \N 3284 9299 INSERT -35 213 ome.model.core.Channel \N 3284 9300 INSERT -35 214 ome.model.core.LogicalChannel \N 3284 9301 INSERT -35 214 ome.model.core.Channel \N 3284 9302 INSERT -35 53 ome.model.containers.Dataset \N 3285 9303 INSERT -35 53 ome.model.containers.ProjectDatasetLink \N 3285 9304 INSERT -35 65 ome.model.annotations.DatasetAnnotationLink \N 3286 9305 INSERT -35 66 ome.model.annotations.DatasetAnnotationLink \N 3287 9306 UPDATE -35 107 ome.model.core.Pixels \N 3288 9307 UPDATE -35 107 ome.model.core.Pixels \N 3289 9308 INSERT -35 213 ome.model.stats.StatsInfo \N 3290 9309 INSERT -35 214 ome.model.stats.StatsInfo \N 3290 9310 UPDATE -35 213 ome.model.core.Channel \N 3290 9311 UPDATE -35 214 ome.model.core.Channel \N 3290 9312 INSERT -35 157 ome.model.display.QuantumDef \N 3291 9313 INSERT -35 157 ome.model.display.RenderingDef \N 3291 9314 INSERT -35 263 ome.model.display.ChannelBinding \N 3291 9315 INSERT -35 264 ome.model.display.ChannelBinding \N 3291 9316 INSERT -35 107 ome.model.display.Thumbnail \N 3292 9317 UPDATE -35 107 ome.model.core.OriginalFile \N 3293 9318 INSERT -35 108 ome.model.acquisition.Instrument \N 3303 9319 INSERT -35 108 ome.model.acquisition.Objective \N 3303 9320 INSERT -35 108 ome.model.acquisition.ObjectiveSettings \N 3303 9321 INSERT -35 108 ome.model.core.Image \N 3303 9322 INSERT -35 108 ome.model.core.OriginalFile \N 3303 9323 INSERT -35 111 ome.model.annotations.FileAnnotation \N 3303 9324 INSERT -35 151 ome.model.annotations.ImageAnnotationLink \N 3303 9325 INSERT -35 108 ome.model.core.Pixels \N 3303 9326 INSERT -35 215 ome.model.core.LogicalChannel \N 3303 9327 INSERT -35 215 ome.model.core.Channel \N 3303 9328 INSERT -35 216 ome.model.core.LogicalChannel \N 3303 9329 INSERT -35 216 ome.model.core.Channel \N 3303 9330 UPDATE -35 108 ome.model.core.Pixels \N 3311 9331 UPDATE -35 108 ome.model.core.Pixels \N 3312 9332 INSERT -35 215 ome.model.stats.StatsInfo \N 3313 9333 INSERT -35 216 ome.model.stats.StatsInfo \N 3313 9334 UPDATE -35 215 ome.model.core.Channel \N 3313 9335 UPDATE -35 216 ome.model.core.Channel \N 3313 9336 INSERT -35 158 ome.model.display.QuantumDef \N 3314 9337 INSERT -35 158 ome.model.display.RenderingDef \N 3314 9338 INSERT -35 265 ome.model.display.ChannelBinding \N 3314 9339 INSERT -35 266 ome.model.display.ChannelBinding \N 3314 9340 INSERT -35 108 ome.model.display.Thumbnail \N 3315 9341 UPDATE -35 108 ome.model.core.OriginalFile \N 3316 9342 INSERT -35 109 ome.model.acquisition.Instrument \N 3327 9343 INSERT -35 109 ome.model.acquisition.Objective \N 3327 9344 INSERT -35 109 ome.model.acquisition.ObjectiveSettings \N 3327 9345 INSERT -35 109 ome.model.core.Image \N 3327 9346 INSERT -35 109 ome.model.core.OriginalFile \N 3327 9347 INSERT -35 112 ome.model.annotations.FileAnnotation \N 3327 9348 INSERT -35 152 ome.model.annotations.ImageAnnotationLink \N 3327 9349 INSERT -35 109 ome.model.core.Pixels \N 3327 9350 INSERT -35 217 ome.model.core.LogicalChannel \N 3327 9351 INSERT -35 217 ome.model.core.Channel \N 3327 9352 INSERT -35 218 ome.model.core.LogicalChannel \N 3327 9353 INSERT -35 218 ome.model.core.Channel \N 3327 9354 UPDATE -35 109 ome.model.core.Pixels \N 3332 9355 UPDATE -35 109 ome.model.core.Pixels \N 3333 9356 INSERT -35 217 ome.model.stats.StatsInfo \N 3334 9357 INSERT -35 218 ome.model.stats.StatsInfo \N 3334 9358 UPDATE -35 217 ome.model.core.Channel \N 3334 9359 UPDATE -35 218 ome.model.core.Channel \N 3334 9360 INSERT -35 159 ome.model.display.QuantumDef \N 3335 9361 INSERT -35 159 ome.model.display.RenderingDef \N 3335 9362 INSERT -35 267 ome.model.display.ChannelBinding \N 3335 9363 INSERT -35 268 ome.model.display.ChannelBinding \N 3335 9364 INSERT -35 109 ome.model.display.Thumbnail \N 3336 9365 UPDATE -35 109 ome.model.core.OriginalFile \N 3337 9366 INSERT -35 110 ome.model.acquisition.Instrument \N 3347 9367 INSERT -35 110 ome.model.acquisition.Objective \N 3347 9368 INSERT -35 110 ome.model.acquisition.ObjectiveSettings \N 3347 9369 INSERT -35 110 ome.model.core.Image \N 3347 9370 INSERT -35 110 ome.model.core.OriginalFile \N 3347 9371 INSERT -35 113 ome.model.annotations.FileAnnotation \N 3347 9372 INSERT -35 153 ome.model.annotations.ImageAnnotationLink \N 3347 9373 INSERT -35 110 ome.model.core.Pixels \N 3347 9374 INSERT -35 219 ome.model.core.LogicalChannel \N 3347 9375 INSERT -35 219 ome.model.core.Channel \N 3347 9376 INSERT -35 220 ome.model.core.LogicalChannel \N 3347 9377 INSERT -35 220 ome.model.core.Channel \N 3347 9378 UPDATE -35 110 ome.model.core.Pixels \N 3349 9379 UPDATE -35 110 ome.model.core.Pixels \N 3350 9380 INSERT -35 219 ome.model.stats.StatsInfo \N 3351 9381 INSERT -35 220 ome.model.stats.StatsInfo \N 3351 9382 UPDATE -35 219 ome.model.core.Channel \N 3351 9383 UPDATE -35 220 ome.model.core.Channel \N 3351 9384 INSERT -35 160 ome.model.display.QuantumDef \N 3352 9385 INSERT -35 160 ome.model.display.RenderingDef \N 3352 9386 INSERT -35 269 ome.model.display.ChannelBinding \N 3352 9387 INSERT -35 270 ome.model.display.ChannelBinding \N 3352 9388 INSERT -35 110 ome.model.display.Thumbnail \N 3353 9389 UPDATE -35 110 ome.model.core.OriginalFile \N 3354 9390 INSERT -35 111 ome.model.acquisition.Instrument \N 3364 9391 INSERT -35 111 ome.model.acquisition.Objective \N 3364 9392 INSERT -35 111 ome.model.acquisition.ObjectiveSettings \N 3364 9393 INSERT -35 111 ome.model.core.Image \N 3364 9394 INSERT -35 111 ome.model.core.OriginalFile \N 3364 9395 INSERT -35 114 ome.model.annotations.FileAnnotation \N 3364 9396 INSERT -35 154 ome.model.annotations.ImageAnnotationLink \N 3364 9397 INSERT -35 111 ome.model.core.Pixels \N 3364 9398 INSERT -35 221 ome.model.core.LogicalChannel \N 3364 9399 INSERT -35 221 ome.model.core.Channel \N 3364 9400 INSERT -35 222 ome.model.core.LogicalChannel \N 3364 9401 INSERT -35 222 ome.model.core.Channel \N 3364 9402 INSERT -35 161 ome.model.display.QuantumDef \N 3370 9403 INSERT -35 161 ome.model.display.RenderingDef \N 3370 9404 INSERT -35 271 ome.model.display.ChannelBinding \N 3370 9405 INSERT -35 272 ome.model.display.ChannelBinding \N 3370 9406 UPDATE -35 157 ome.model.display.RenderingDef \N 3403 9407 UPDATE -35 157 ome.model.display.QuantumDef \N 3403 9408 UPDATE -35 263 ome.model.display.ChannelBinding \N 3403 9409 UPDATE -35 264 ome.model.display.ChannelBinding \N 3403 9410 UPDATE -35 157 ome.model.display.RenderingDef \N 3407 9411 UPDATE -35 157 ome.model.display.QuantumDef \N 3407 9412 UPDATE -35 263 ome.model.display.ChannelBinding \N 3407 9413 UPDATE -35 264 ome.model.display.ChannelBinding \N 3407 9414 UPDATE -35 158 ome.model.display.RenderingDef \N 3418 9415 UPDATE -35 158 ome.model.display.QuantumDef \N 3418 9416 UPDATE -35 265 ome.model.display.ChannelBinding \N 3418 9417 UPDATE -35 266 ome.model.display.ChannelBinding \N 3418 9418 UPDATE -35 159 ome.model.display.RenderingDef \N 3428 9419 UPDATE -35 159 ome.model.display.QuantumDef \N 3428 9420 UPDATE -35 267 ome.model.display.ChannelBinding \N 3428 9421 UPDATE -35 268 ome.model.display.ChannelBinding \N 3428 9422 UPDATE -35 160 ome.model.display.RenderingDef \N 3438 9423 UPDATE -35 160 ome.model.display.QuantumDef \N 3438 9424 UPDATE -35 269 ome.model.display.ChannelBinding \N 3438 9425 UPDATE -35 270 ome.model.display.ChannelBinding \N 3438 9426 INSERT -35 266 ome.model.meta.Session \N 3452 9427 INSERT -35 112 ome.model.acquisition.Instrument \N 3461 9428 INSERT -35 112 ome.model.acquisition.Objective \N 3461 9429 INSERT -35 112 ome.model.acquisition.ObjectiveSettings \N 3461 9430 INSERT -35 112 ome.model.core.Image \N 3461 9431 INSERT -35 112 ome.model.core.OriginalFile \N 3461 9432 INSERT -35 115 ome.model.annotations.FileAnnotation \N 3461 9433 INSERT -35 155 ome.model.annotations.ImageAnnotationLink \N 3461 9434 INSERT -35 112 ome.model.core.Pixels \N 3461 9435 INSERT -35 223 ome.model.core.LogicalChannel \N 3461 9436 INSERT -35 223 ome.model.core.Channel \N 3461 9437 INSERT -35 224 ome.model.core.LogicalChannel \N 3461 9438 INSERT -35 224 ome.model.core.Channel \N 3461 9439 REINDEX -52 111 ome.model.core.Image \N 3466 9444 UPDATE -35 112 ome.model.core.Pixels \N 3473 9445 UPDATE -35 112 ome.model.core.Pixels \N 3474 9446 INSERT -35 221 ome.model.stats.StatsInfo \N 3475 9447 INSERT -35 222 ome.model.stats.StatsInfo \N 3475 9448 UPDATE -35 223 ome.model.core.Channel \N 3475 9449 UPDATE -35 224 ome.model.core.Channel \N 3475 9450 UPDATE -35 162 ome.model.display.RenderingDef \N 3476 9451 UPDATE -35 273 ome.model.display.ChannelBinding \N 3476 9452 UPDATE -35 274 ome.model.display.ChannelBinding \N 3476 9453 INSERT -35 111 ome.model.display.Thumbnail \N 3477 9454 UPDATE -35 112 ome.model.core.OriginalFile \N 3478 9455 INSERT -35 113 ome.model.acquisition.Instrument \N 3488 9456 INSERT -35 113 ome.model.acquisition.Objective \N 3488 9457 INSERT -35 113 ome.model.acquisition.ObjectiveSettings \N 3488 9458 INSERT -35 113 ome.model.core.Image \N 3488 9459 INSERT -35 113 ome.model.core.OriginalFile \N 3488 9460 INSERT -35 116 ome.model.annotations.FileAnnotation \N 3488 9461 INSERT -35 156 ome.model.annotations.ImageAnnotationLink \N 3488 9462 INSERT -35 113 ome.model.core.Pixels \N 3488 9463 INSERT -35 225 ome.model.core.LogicalChannel \N 3488 9464 INSERT -35 225 ome.model.core.Channel \N 3488 9465 INSERT -35 226 ome.model.core.LogicalChannel \N 3488 9466 INSERT -35 226 ome.model.core.Channel \N 3488 9467 UPDATE -35 113 ome.model.core.Pixels \N 3489 9468 UPDATE -35 113 ome.model.core.Pixels \N 3490 9469 INSERT -35 223 ome.model.stats.StatsInfo \N 3491 9470 INSERT -35 224 ome.model.stats.StatsInfo \N 3491 9471 UPDATE -35 225 ome.model.core.Channel \N 3491 9472 UPDATE -35 226 ome.model.core.Channel \N 3491 9473 INSERT -35 163 ome.model.display.QuantumDef \N 3492 9474 INSERT -35 163 ome.model.display.RenderingDef \N 3492 9475 INSERT -35 275 ome.model.display.ChannelBinding \N 3492 9476 INSERT -35 276 ome.model.display.ChannelBinding \N 3492 9477 INSERT -35 112 ome.model.display.Thumbnail \N 3493 9478 UPDATE -35 113 ome.model.core.OriginalFile \N 3494 9479 UPDATE -35 162 ome.model.display.RenderingDef \N 3510 9480 UPDATE -35 162 ome.model.display.QuantumDef \N 3510 9481 UPDATE -35 273 ome.model.display.ChannelBinding \N 3510 9482 UPDATE -35 274 ome.model.display.ChannelBinding \N 3510 9483 UPDATE -35 163 ome.model.display.RenderingDef \N 3611 9484 UPDATE -35 163 ome.model.display.QuantumDef \N 3611 9485 UPDATE -35 275 ome.model.display.ChannelBinding \N 3611 9486 UPDATE -35 276 ome.model.display.ChannelBinding \N 3611 9487 INSERT -35 107 ome.model.containers.DatasetImageLink \N 3621 9488 INSERT -35 108 ome.model.containers.DatasetImageLink \N 3622 9489 INSERT -35 109 ome.model.containers.DatasetImageLink \N 3623 9490 INSERT -35 110 ome.model.containers.DatasetImageLink \N 3624 9491 INSERT -35 111 ome.model.containers.DatasetImageLink \N 3625 9492 INSERT -35 112 ome.model.containers.DatasetImageLink \N 3626 9493 INSERT -35 157 ome.model.annotations.ImageAnnotationLink \N 3628 9494 INSERT -35 158 ome.model.annotations.ImageAnnotationLink \N 3628 9495 INSERT -35 159 ome.model.annotations.ImageAnnotationLink \N 3628 9496 INSERT -35 160 ome.model.annotations.ImageAnnotationLink \N 3628 9497 INSERT -35 161 ome.model.annotations.ImageAnnotationLink \N 3628 9498 INSERT -35 162 ome.model.annotations.ImageAnnotationLink \N 3628 9499 INSERT -35 163 ome.model.annotations.ImageAnnotationLink \N 3629 9500 INSERT -35 164 ome.model.annotations.ImageAnnotationLink \N 3629 9501 INSERT -35 165 ome.model.annotations.ImageAnnotationLink \N 3629 9502 INSERT -35 166 ome.model.annotations.ImageAnnotationLink \N 3629 9503 INSERT -35 167 ome.model.annotations.ImageAnnotationLink \N 3629 9504 INSERT -35 168 ome.model.annotations.ImageAnnotationLink \N 3629 9440 INSERT -35 162 ome.model.display.QuantumDef \N 3465 9441 INSERT -35 162 ome.model.display.RenderingDef \N 3465 9442 INSERT -35 273 ome.model.display.ChannelBinding \N 3465 9443 INSERT -35 274 ome.model.display.ChannelBinding \N 3465 9505 UPDATE -35 53 ome.model.containers.Dataset \N 3630 9506 UPDATE -35 6 ome.model.containers.Dataset \N 3642 9507 INSERT -35 114 ome.model.acquisition.Instrument \N 3670 9508 INSERT -35 114 ome.model.acquisition.Objective \N 3670 9509 INSERT -35 114 ome.model.acquisition.ObjectiveSettings \N 3670 9510 INSERT -35 114 ome.model.core.Image \N 3670 9511 INSERT -35 114 ome.model.core.OriginalFile \N 3670 9512 INSERT -35 117 ome.model.annotations.FileAnnotation \N 3670 9513 INSERT -35 169 ome.model.annotations.ImageAnnotationLink \N 3670 9514 INSERT -35 114 ome.model.core.Pixels \N 3670 9515 INSERT -35 227 ome.model.core.LogicalChannel \N 3670 9516 INSERT -35 227 ome.model.core.Channel \N 3670 9517 INSERT -35 228 ome.model.core.LogicalChannel \N 3670 9518 INSERT -35 228 ome.model.core.Channel \N 3670 9519 UPDATE -35 114 ome.model.core.Pixels \N 3671 9520 UPDATE -35 114 ome.model.core.Pixels \N 3672 9521 INSERT -35 225 ome.model.stats.StatsInfo \N 3673 9522 INSERT -35 226 ome.model.stats.StatsInfo \N 3673 9523 UPDATE -35 227 ome.model.core.Channel \N 3673 9524 UPDATE -35 228 ome.model.core.Channel \N 3673 9525 INSERT -35 164 ome.model.display.QuantumDef \N 3674 9526 INSERT -35 164 ome.model.display.RenderingDef \N 3674 9527 INSERT -35 277 ome.model.display.ChannelBinding \N 3674 9528 INSERT -35 278 ome.model.display.ChannelBinding \N 3674 9529 INSERT -35 113 ome.model.display.Thumbnail \N 3675 9530 UPDATE -35 114 ome.model.core.OriginalFile \N 3676 9531 INSERT -35 115 ome.model.acquisition.Instrument \N 3686 9532 INSERT -35 115 ome.model.acquisition.Objective \N 3686 9533 INSERT -35 115 ome.model.acquisition.ObjectiveSettings \N 3686 9534 INSERT -35 115 ome.model.core.Image \N 3686 9535 INSERT -35 115 ome.model.core.OriginalFile \N 3686 9536 INSERT -35 118 ome.model.annotations.FileAnnotation \N 3686 9537 INSERT -35 170 ome.model.annotations.ImageAnnotationLink \N 3686 9538 INSERT -35 115 ome.model.core.Pixels \N 3686 9539 INSERT -35 229 ome.model.core.LogicalChannel \N 3686 9540 INSERT -35 229 ome.model.core.Channel \N 3686 9541 INSERT -35 230 ome.model.core.LogicalChannel \N 3686 9542 INSERT -35 230 ome.model.core.Channel \N 3686 9543 UPDATE -35 115 ome.model.core.Pixels \N 3687 9544 UPDATE -35 115 ome.model.core.Pixels \N 3688 9545 INSERT -35 227 ome.model.stats.StatsInfo \N 3689 9546 INSERT -35 228 ome.model.stats.StatsInfo \N 3689 9547 UPDATE -35 229 ome.model.core.Channel \N 3689 9548 UPDATE -35 230 ome.model.core.Channel \N 3689 9549 INSERT -35 165 ome.model.display.QuantumDef \N 3690 9550 INSERT -35 165 ome.model.display.RenderingDef \N 3690 9551 INSERT -35 279 ome.model.display.ChannelBinding \N 3690 9552 INSERT -35 280 ome.model.display.ChannelBinding \N 3690 9553 INSERT -35 114 ome.model.display.Thumbnail \N 3691 9554 UPDATE -35 115 ome.model.core.OriginalFile \N 3692 9555 INSERT -35 116 ome.model.acquisition.Instrument \N 3702 9556 INSERT -35 116 ome.model.acquisition.Objective \N 3702 9557 INSERT -35 116 ome.model.acquisition.ObjectiveSettings \N 3702 9558 INSERT -35 116 ome.model.core.Image \N 3702 9559 INSERT -35 116 ome.model.core.OriginalFile \N 3702 9560 INSERT -35 119 ome.model.annotations.FileAnnotation \N 3702 9561 INSERT -35 171 ome.model.annotations.ImageAnnotationLink \N 3702 9562 INSERT -35 116 ome.model.core.Pixels \N 3702 9563 INSERT -35 231 ome.model.core.LogicalChannel \N 3702 9564 INSERT -35 231 ome.model.core.Channel \N 3702 9565 INSERT -35 232 ome.model.core.LogicalChannel \N 3702 9566 INSERT -35 232 ome.model.core.Channel \N 3702 9567 UPDATE -35 116 ome.model.core.Pixels \N 3703 9568 UPDATE -35 116 ome.model.core.Pixels \N 3704 9569 INSERT -35 229 ome.model.stats.StatsInfo \N 3705 9570 INSERT -35 230 ome.model.stats.StatsInfo \N 3705 9571 UPDATE -35 231 ome.model.core.Channel \N 3705 9572 UPDATE -35 232 ome.model.core.Channel \N 3705 9573 INSERT -35 166 ome.model.display.QuantumDef \N 3706 9574 INSERT -35 166 ome.model.display.RenderingDef \N 3706 9575 INSERT -35 281 ome.model.display.ChannelBinding \N 3706 9576 INSERT -35 282 ome.model.display.ChannelBinding \N 3706 9577 INSERT -35 115 ome.model.display.Thumbnail \N 3707 9578 UPDATE -35 116 ome.model.core.OriginalFile \N 3708 9579 INSERT -35 117 ome.model.acquisition.Instrument \N 3718 9580 INSERT -35 117 ome.model.acquisition.Objective \N 3718 9581 INSERT -35 117 ome.model.acquisition.ObjectiveSettings \N 3718 9582 INSERT -35 117 ome.model.core.Image \N 3718 9583 INSERT -35 117 ome.model.core.OriginalFile \N 3718 9584 INSERT -35 120 ome.model.annotations.FileAnnotation \N 3718 9585 INSERT -35 172 ome.model.annotations.ImageAnnotationLink \N 3718 9586 INSERT -35 117 ome.model.core.Pixels \N 3718 9587 INSERT -35 233 ome.model.core.LogicalChannel \N 3718 9588 INSERT -35 233 ome.model.core.Channel \N 3718 9589 INSERT -35 234 ome.model.core.LogicalChannel \N 3718 9590 INSERT -35 234 ome.model.core.Channel \N 3718 9591 UPDATE -35 117 ome.model.core.Pixels \N 3719 9592 UPDATE -35 117 ome.model.core.Pixels \N 3720 9593 INSERT -35 231 ome.model.stats.StatsInfo \N 3721 9594 INSERT -35 232 ome.model.stats.StatsInfo \N 3721 9595 UPDATE -35 233 ome.model.core.Channel \N 3721 9596 UPDATE -35 234 ome.model.core.Channel \N 3721 9597 INSERT -35 167 ome.model.display.QuantumDef \N 3722 9598 INSERT -35 167 ome.model.display.RenderingDef \N 3722 9599 INSERT -35 283 ome.model.display.ChannelBinding \N 3722 9600 INSERT -35 284 ome.model.display.ChannelBinding \N 3722 9601 INSERT -35 116 ome.model.display.Thumbnail \N 3723 9602 UPDATE -35 117 ome.model.core.OriginalFile \N 3724 9603 INSERT -35 118 ome.model.acquisition.Instrument \N 3734 9604 INSERT -35 118 ome.model.acquisition.Objective \N 3734 9605 INSERT -35 118 ome.model.acquisition.ObjectiveSettings \N 3734 9606 INSERT -35 118 ome.model.core.Image \N 3734 9607 INSERT -35 118 ome.model.core.OriginalFile \N 3734 9608 INSERT -35 121 ome.model.annotations.FileAnnotation \N 3734 9609 INSERT -35 173 ome.model.annotations.ImageAnnotationLink \N 3734 9610 INSERT -35 118 ome.model.core.Pixels \N 3734 9611 INSERT -35 235 ome.model.core.LogicalChannel \N 3734 9612 INSERT -35 235 ome.model.core.Channel \N 3734 9613 INSERT -35 236 ome.model.core.LogicalChannel \N 3734 9614 INSERT -35 236 ome.model.core.Channel \N 3734 9615 UPDATE -35 118 ome.model.core.Pixels \N 3735 9616 UPDATE -35 118 ome.model.core.Pixels \N 3736 9617 INSERT -35 233 ome.model.stats.StatsInfo \N 3737 9618 INSERT -35 234 ome.model.stats.StatsInfo \N 3737 9619 UPDATE -35 235 ome.model.core.Channel \N 3737 9620 UPDATE -35 236 ome.model.core.Channel \N 3737 9621 INSERT -35 168 ome.model.display.QuantumDef \N 3738 9622 INSERT -35 168 ome.model.display.RenderingDef \N 3738 9623 INSERT -35 285 ome.model.display.ChannelBinding \N 3738 9624 INSERT -35 286 ome.model.display.ChannelBinding \N 3738 9625 INSERT -35 117 ome.model.display.Thumbnail \N 3739 9626 UPDATE -35 118 ome.model.core.OriginalFile \N 3740 9627 INSERT -35 119 ome.model.acquisition.Instrument \N 3750 9628 INSERT -35 119 ome.model.acquisition.Objective \N 3750 9629 INSERT -35 119 ome.model.acquisition.ObjectiveSettings \N 3750 9630 INSERT -35 119 ome.model.core.Image \N 3750 9631 INSERT -35 119 ome.model.core.OriginalFile \N 3750 9632 INSERT -35 122 ome.model.annotations.FileAnnotation \N 3750 9633 INSERT -35 174 ome.model.annotations.ImageAnnotationLink \N 3750 9634 INSERT -35 119 ome.model.core.Pixels \N 3750 9635 INSERT -35 237 ome.model.core.LogicalChannel \N 3750 9636 INSERT -35 237 ome.model.core.Channel \N 3750 9637 INSERT -35 238 ome.model.core.LogicalChannel \N 3750 9638 INSERT -35 238 ome.model.core.Channel \N 3750 9639 UPDATE -35 119 ome.model.core.Pixels \N 3751 9640 UPDATE -35 119 ome.model.core.Pixels \N 3752 9641 INSERT -35 235 ome.model.stats.StatsInfo \N 3753 9642 INSERT -35 236 ome.model.stats.StatsInfo \N 3753 9643 UPDATE -35 237 ome.model.core.Channel \N 3753 9644 UPDATE -35 238 ome.model.core.Channel \N 3753 9645 INSERT -35 169 ome.model.display.QuantumDef \N 3754 9646 INSERT -35 169 ome.model.display.RenderingDef \N 3754 9647 INSERT -35 287 ome.model.display.ChannelBinding \N 3754 9648 INSERT -35 288 ome.model.display.ChannelBinding \N 3754 9649 INSERT -35 118 ome.model.display.Thumbnail \N 3755 9650 UPDATE -35 119 ome.model.core.OriginalFile \N 3756 9651 INSERT -35 120 ome.model.acquisition.Instrument \N 3766 9652 INSERT -35 120 ome.model.acquisition.Objective \N 3766 9653 INSERT -35 120 ome.model.acquisition.ObjectiveSettings \N 3766 9654 INSERT -35 120 ome.model.core.Image \N 3766 9655 INSERT -35 120 ome.model.core.OriginalFile \N 3766 9656 INSERT -35 123 ome.model.annotations.FileAnnotation \N 3766 9657 INSERT -35 175 ome.model.annotations.ImageAnnotationLink \N 3766 9658 INSERT -35 120 ome.model.core.Pixels \N 3766 9659 INSERT -35 239 ome.model.core.LogicalChannel \N 3766 9660 INSERT -35 239 ome.model.core.Channel \N 3766 9661 INSERT -35 240 ome.model.core.LogicalChannel \N 3766 9662 INSERT -35 240 ome.model.core.Channel \N 3766 9663 UPDATE -35 120 ome.model.core.Pixels \N 3767 9664 UPDATE -35 120 ome.model.core.Pixels \N 3768 9665 INSERT -35 237 ome.model.stats.StatsInfo \N 3769 9666 INSERT -35 238 ome.model.stats.StatsInfo \N 3769 9667 UPDATE -35 239 ome.model.core.Channel \N 3769 9668 UPDATE -35 240 ome.model.core.Channel \N 3769 9669 INSERT -35 170 ome.model.display.QuantumDef \N 3770 9670 INSERT -35 170 ome.model.display.RenderingDef \N 3770 9671 INSERT -35 289 ome.model.display.ChannelBinding \N 3770 9672 INSERT -35 290 ome.model.display.ChannelBinding \N 3770 9673 INSERT -35 119 ome.model.display.Thumbnail \N 3771 9674 UPDATE -35 120 ome.model.core.OriginalFile \N 3772 9675 INSERT -35 121 ome.model.acquisition.Instrument \N 3782 9676 INSERT -35 121 ome.model.acquisition.Objective \N 3782 9677 INSERT -35 121 ome.model.acquisition.ObjectiveSettings \N 3782 9678 INSERT -35 121 ome.model.core.Image \N 3782 9679 INSERT -35 121 ome.model.core.OriginalFile \N 3782 9680 INSERT -35 124 ome.model.annotations.FileAnnotation \N 3782 9681 INSERT -35 176 ome.model.annotations.ImageAnnotationLink \N 3782 9682 INSERT -35 121 ome.model.core.Pixels \N 3782 9683 INSERT -35 241 ome.model.core.LogicalChannel \N 3782 9684 INSERT -35 241 ome.model.core.Channel \N 3782 9685 INSERT -35 242 ome.model.core.LogicalChannel \N 3782 9686 INSERT -35 242 ome.model.core.Channel \N 3782 9687 UPDATE -35 121 ome.model.core.Pixels \N 3783 9688 UPDATE -35 121 ome.model.core.Pixels \N 3784 9689 INSERT -35 239 ome.model.stats.StatsInfo \N 3785 9690 INSERT -35 240 ome.model.stats.StatsInfo \N 3785 9691 UPDATE -35 241 ome.model.core.Channel \N 3785 9692 UPDATE -35 242 ome.model.core.Channel \N 3785 9693 INSERT -35 171 ome.model.display.QuantumDef \N 3786 9694 INSERT -35 171 ome.model.display.RenderingDef \N 3786 9695 INSERT -35 291 ome.model.display.ChannelBinding \N 3786 9696 INSERT -35 292 ome.model.display.ChannelBinding \N 3786 9697 INSERT -35 120 ome.model.display.Thumbnail \N 3787 9698 UPDATE -35 121 ome.model.core.OriginalFile \N 3788 9699 INSERT -35 122 ome.model.acquisition.Instrument \N 3798 9700 INSERT -35 122 ome.model.acquisition.Objective \N 3798 9701 INSERT -35 122 ome.model.acquisition.ObjectiveSettings \N 3798 9702 INSERT -35 122 ome.model.core.Image \N 3798 9703 INSERT -35 122 ome.model.core.OriginalFile \N 3798 9704 INSERT -35 125 ome.model.annotations.FileAnnotation \N 3798 9705 INSERT -35 177 ome.model.annotations.ImageAnnotationLink \N 3798 9706 INSERT -35 122 ome.model.core.Pixels \N 3798 9707 INSERT -35 243 ome.model.core.LogicalChannel \N 3798 9708 INSERT -35 243 ome.model.core.Channel \N 3798 9709 INSERT -35 244 ome.model.core.LogicalChannel \N 3798 9710 INSERT -35 244 ome.model.core.Channel \N 3798 9711 INSERT -35 172 ome.model.display.QuantumDef \N 3809 9712 INSERT -35 172 ome.model.display.RenderingDef \N 3809 9713 INSERT -35 293 ome.model.display.ChannelBinding \N 3809 9714 INSERT -35 294 ome.model.display.ChannelBinding \N 3809 9715 UPDATE -35 164 ome.model.display.RenderingDef \N 3818 9716 UPDATE -35 164 ome.model.display.QuantumDef \N 3818 9717 UPDATE -35 277 ome.model.display.ChannelBinding \N 3818 9718 UPDATE -35 278 ome.model.display.ChannelBinding \N 3818 9719 UPDATE -35 165 ome.model.display.RenderingDef \N 3828 9720 UPDATE -35 165 ome.model.display.QuantumDef \N 3828 9721 UPDATE -35 279 ome.model.display.ChannelBinding \N 3828 9722 UPDATE -35 280 ome.model.display.ChannelBinding \N 3828 9723 UPDATE -35 166 ome.model.display.RenderingDef \N 3838 9724 UPDATE -35 166 ome.model.display.QuantumDef \N 3838 9725 UPDATE -35 281 ome.model.display.ChannelBinding \N 3838 9726 UPDATE -35 282 ome.model.display.ChannelBinding \N 3838 9727 UPDATE -35 122 ome.model.core.Pixels \N 3846 9728 UPDATE -35 122 ome.model.core.Pixels \N 3847 9729 INSERT -35 241 ome.model.stats.StatsInfo \N 3848 9730 INSERT -35 242 ome.model.stats.StatsInfo \N 3848 9731 UPDATE -35 243 ome.model.core.Channel \N 3848 9732 UPDATE -35 244 ome.model.core.Channel \N 3848 9733 UPDATE -35 172 ome.model.display.RenderingDef \N 3849 9734 UPDATE -35 293 ome.model.display.ChannelBinding \N 3849 9735 UPDATE -35 294 ome.model.display.ChannelBinding \N 3849 9736 INSERT -35 121 ome.model.display.Thumbnail \N 3850 9737 UPDATE -35 122 ome.model.core.OriginalFile \N 3851 9738 UPDATE -35 167 ome.model.display.RenderingDef \N 3860 9739 UPDATE -35 167 ome.model.display.QuantumDef \N 3860 9740 UPDATE -35 283 ome.model.display.ChannelBinding \N 3860 9741 UPDATE -35 284 ome.model.display.ChannelBinding \N 3860 9742 UPDATE -35 168 ome.model.display.RenderingDef \N 3870 9743 UPDATE -35 168 ome.model.display.QuantumDef \N 3870 9744 UPDATE -35 285 ome.model.display.ChannelBinding \N 3870 9745 UPDATE -35 286 ome.model.display.ChannelBinding \N 3870 9746 UPDATE -35 169 ome.model.display.RenderingDef \N 4006 9747 UPDATE -35 169 ome.model.display.QuantumDef \N 4006 9748 UPDATE -35 287 ome.model.display.ChannelBinding \N 4006 9749 UPDATE -35 288 ome.model.display.ChannelBinding \N 4006 9750 UPDATE -35 170 ome.model.display.RenderingDef \N 4016 9751 UPDATE -35 170 ome.model.display.QuantumDef \N 4016 9752 UPDATE -35 289 ome.model.display.ChannelBinding \N 4016 9753 UPDATE -35 290 ome.model.display.ChannelBinding \N 4016 9754 UPDATE -35 171 ome.model.display.RenderingDef \N 4028 9755 UPDATE -35 171 ome.model.display.QuantumDef \N 4028 9756 UPDATE -35 291 ome.model.display.ChannelBinding \N 4028 9757 UPDATE -35 292 ome.model.display.ChannelBinding \N 4028 9758 UPDATE -35 172 ome.model.display.RenderingDef \N 4039 9759 UPDATE -35 172 ome.model.display.QuantumDef \N 4039 9760 UPDATE -35 293 ome.model.display.ChannelBinding \N 4039 9761 UPDATE -35 294 ome.model.display.ChannelBinding \N 4039 9762 INSERT -35 113 ome.model.containers.DatasetImageLink \N 4081 9763 INSERT -35 114 ome.model.containers.DatasetImageLink \N 4082 9764 INSERT -35 115 ome.model.containers.DatasetImageLink \N 4083 9765 INSERT -35 116 ome.model.containers.DatasetImageLink \N 4084 9766 INSERT -35 117 ome.model.containers.DatasetImageLink \N 4085 9767 INSERT -35 118 ome.model.containers.DatasetImageLink \N 4086 9768 INSERT -35 119 ome.model.containers.DatasetImageLink \N 4087 9769 INSERT -35 120 ome.model.containers.DatasetImageLink \N 4088 9770 INSERT -35 121 ome.model.containers.DatasetImageLink \N 4089 9771 INSERT -35 178 ome.model.annotations.ImageAnnotationLink \N 4091 9772 INSERT -35 179 ome.model.annotations.ImageAnnotationLink \N 4091 9773 INSERT -35 180 ome.model.annotations.ImageAnnotationLink \N 4091 9774 INSERT -35 181 ome.model.annotations.ImageAnnotationLink \N 4091 9775 INSERT -35 182 ome.model.annotations.ImageAnnotationLink \N 4091 9776 INSERT -35 183 ome.model.annotations.ImageAnnotationLink \N 4091 9777 INSERT -35 184 ome.model.annotations.ImageAnnotationLink \N 4091 9778 INSERT -35 185 ome.model.annotations.ImageAnnotationLink \N 4091 9779 INSERT -35 186 ome.model.annotations.ImageAnnotationLink \N 4091 9780 INSERT -35 187 ome.model.annotations.ImageAnnotationLink \N 4092 9781 INSERT -35 188 ome.model.annotations.ImageAnnotationLink \N 4092 9782 INSERT -35 189 ome.model.annotations.ImageAnnotationLink \N 4092 9783 INSERT -35 190 ome.model.annotations.ImageAnnotationLink \N 4092 9784 INSERT -35 191 ome.model.annotations.ImageAnnotationLink \N 4092 9785 INSERT -35 192 ome.model.annotations.ImageAnnotationLink \N 4092 9786 INSERT -35 193 ome.model.annotations.ImageAnnotationLink \N 4092 9787 INSERT -35 194 ome.model.annotations.ImageAnnotationLink \N 4092 9788 INSERT -35 195 ome.model.annotations.ImageAnnotationLink \N 4092 9789 INSERT -35 123 ome.model.acquisition.Instrument \N 4112 9790 INSERT -35 123 ome.model.acquisition.Objective \N 4112 9791 INSERT -35 123 ome.model.acquisition.ObjectiveSettings \N 4112 9792 INSERT -35 123 ome.model.core.Image \N 4112 9793 INSERT -35 123 ome.model.core.OriginalFile \N 4112 9794 INSERT -35 126 ome.model.annotations.FileAnnotation \N 4112 9795 INSERT -35 196 ome.model.annotations.ImageAnnotationLink \N 4112 9796 INSERT -35 123 ome.model.core.Pixels \N 4112 9797 INSERT -35 245 ome.model.core.LogicalChannel \N 4112 9798 INSERT -35 245 ome.model.core.Channel \N 4112 9799 INSERT -35 246 ome.model.core.LogicalChannel \N 4112 9800 INSERT -35 246 ome.model.core.Channel \N 4112 9801 UPDATE -35 123 ome.model.core.Pixels \N 4113 9802 UPDATE -35 123 ome.model.core.Pixels \N 4114 9803 INSERT -35 243 ome.model.stats.StatsInfo \N 4115 9804 INSERT -35 244 ome.model.stats.StatsInfo \N 4115 9805 UPDATE -35 245 ome.model.core.Channel \N 4115 9806 UPDATE -35 246 ome.model.core.Channel \N 4115 9807 INSERT -35 173 ome.model.display.QuantumDef \N 4116 9808 INSERT -35 173 ome.model.display.RenderingDef \N 4116 9809 INSERT -35 295 ome.model.display.ChannelBinding \N 4116 9810 INSERT -35 296 ome.model.display.ChannelBinding \N 4116 9811 INSERT -35 122 ome.model.display.Thumbnail \N 4117 9812 UPDATE -35 123 ome.model.core.OriginalFile \N 4118 9813 INSERT -35 124 ome.model.acquisition.Instrument \N 4128 9814 INSERT -35 124 ome.model.acquisition.Objective \N 4128 9815 INSERT -35 124 ome.model.acquisition.ObjectiveSettings \N 4128 9816 INSERT -35 124 ome.model.core.Image \N 4128 9817 INSERT -35 124 ome.model.core.OriginalFile \N 4128 9818 INSERT -35 127 ome.model.annotations.FileAnnotation \N 4128 9819 INSERT -35 197 ome.model.annotations.ImageAnnotationLink \N 4128 9820 INSERT -35 124 ome.model.core.Pixels \N 4128 9821 INSERT -35 247 ome.model.core.LogicalChannel \N 4128 9822 INSERT -35 247 ome.model.core.Channel \N 4128 9823 INSERT -35 248 ome.model.core.LogicalChannel \N 4128 9824 INSERT -35 248 ome.model.core.Channel \N 4128 9825 UPDATE -35 124 ome.model.core.Pixels \N 4129 9826 UPDATE -35 124 ome.model.core.Pixels \N 4130 9827 INSERT -35 245 ome.model.stats.StatsInfo \N 4131 9828 INSERT -35 246 ome.model.stats.StatsInfo \N 4131 9829 UPDATE -35 247 ome.model.core.Channel \N 4131 9830 UPDATE -35 248 ome.model.core.Channel \N 4131 9831 INSERT -35 174 ome.model.display.QuantumDef \N 4132 9832 INSERT -35 174 ome.model.display.RenderingDef \N 4132 9833 INSERT -35 297 ome.model.display.ChannelBinding \N 4132 9834 INSERT -35 298 ome.model.display.ChannelBinding \N 4132 9835 INSERT -35 123 ome.model.display.Thumbnail \N 4133 9836 UPDATE -35 124 ome.model.core.OriginalFile \N 4134 9837 UPDATE -35 173 ome.model.display.RenderingDef \N 4256 9838 UPDATE -35 173 ome.model.display.QuantumDef \N 4256 9839 UPDATE -35 295 ome.model.display.ChannelBinding \N 4256 9840 UPDATE -35 296 ome.model.display.ChannelBinding \N 4256 9841 UPDATE -35 174 ome.model.display.RenderingDef \N 4282 9842 UPDATE -35 174 ome.model.display.QuantumDef \N 4282 9843 UPDATE -35 297 ome.model.display.ChannelBinding \N 4282 9844 UPDATE -35 298 ome.model.display.ChannelBinding \N 4282 9845 INSERT -35 122 ome.model.containers.DatasetImageLink \N 4285 9846 INSERT -35 123 ome.model.containers.DatasetImageLink \N 4286 9847 INSERT -35 198 ome.model.annotations.ImageAnnotationLink \N 4297 9848 INSERT -35 199 ome.model.annotations.ImageAnnotationLink \N 4297 9849 INSERT -35 200 ome.model.annotations.ImageAnnotationLink \N 4298 9850 INSERT -35 201 ome.model.annotations.ImageAnnotationLink \N 4298 9851 INSERT -35 267 ome.model.meta.Session \N 4310 9852 INSERT -35 268 ome.model.meta.Session \N 4312 9853 INSERT -35 269 ome.model.meta.Session \N 4689 9854 INSERT -35 270 ome.model.meta.Session \N 4691 9855 INSERT -35 271 ome.model.meta.Session \N 4753 9856 INSERT -35 272 ome.model.meta.Session \N 4755 9857 INSERT -35 273 ome.model.meta.Session \N 4757 9858 INSERT -35 274 ome.model.meta.Session \N 4759 9859 INSERT -35 275 ome.model.meta.Session \N 4906 9860 INSERT -35 276 ome.model.meta.Session \N 4908 9861 INSERT -35 101 ome.model.meta.Node \N 4954 9862 INSERT -35 151 ome.model.core.OriginalFile \N 4957 9863 UPDATE -35 151 ome.model.core.OriginalFile \N 4957 9864 INSERT -35 409 ome.model.meta.Session \N 4958 9865 INSERT -35 410 ome.model.meta.Session \N 4960 9866 INSERT -35 411 ome.model.meta.Session \N 4961 9867 INSERT -35 412 ome.model.meta.Session \N 4963 9868 INSERT -35 413 ome.model.meta.Session \N 4965 9869 INSERT -35 414 ome.model.meta.Session \N 4967 9870 INSERT -35 415 ome.model.meta.Session \N 4969 9871 INSERT -35 416 ome.model.meta.Session \N 4971 9872 INSERT -35 417 ome.model.meta.Session \N 4973 9873 INSERT -35 418 ome.model.meta.Session \N 4975 9874 INSERT -35 419 ome.model.meta.Session \N 4977 9875 INSERT -35 420 ome.model.meta.Session \N 4979 9876 INSERT -35 421 ome.model.meta.Session \N 4981 9877 INSERT -35 422 ome.model.meta.Session \N 4983 9878 INSERT -35 423 ome.model.meta.Session \N 4985 9879 INSERT -35 424 ome.model.meta.Session \N 5006 9880 INSERT -35 425 ome.model.meta.Session \N 5008 9881 INSERT -35 426 ome.model.meta.Session \N 5010 9882 INSERT -35 427 ome.model.meta.Session \N 5012 9883 INSERT -35 52 ome.model.meta.Experimenter \N 5019 9884 INSERT -35 53 ome.model.meta.GroupExperimenterMap \N 5019 9885 INSERT -35 54 ome.model.meta.GroupExperimenterMap \N 5019 9886 REINDEX -52 2 ome.model.meta.Experimenter \N 5020 9887 REINDEX -52 2 ome.model.meta.Experimenter \N 5020 9888 INSERT -35 152 ome.model.core.OriginalFile \N 5020 9889 INSERT -35 151 ome.model.annotations.FileAnnotation \N 5020 9890 INSERT -35 1 ome.model.annotations.ExperimenterAnnotationLink \N 5020 9891 UPDATE -35 152 ome.model.core.OriginalFile \N 5020 9892 UPDATE -35 151 ome.model.annotations.FileAnnotation \N 5020 9893 UPDATE -35 1 ome.model.annotations.ExperimenterAnnotationLink \N 5020 9894 INSERT -35 151 ome.model.meta.Node \N 5054 9895 INSERT -35 562 ome.model.meta.Session \N 5058 9896 INSERT -35 563 ome.model.meta.Session \N 5060 9897 INSERT -35 564 ome.model.meta.Session \N 5061 9898 INSERT -35 565 ome.model.meta.Session \N 5063 9899 INSERT -35 566 ome.model.meta.Session \N 5067 9900 INSERT -35 567 ome.model.meta.Session \N 5069 9901 INSERT -35 201 ome.model.display.QuantumDef \N 5078 9902 INSERT -35 201 ome.model.display.RenderingDef \N 5078 9903 INSERT -35 301 ome.model.display.ChannelBinding \N 5078 9904 INSERT -35 302 ome.model.display.ChannelBinding \N 5078 9905 INSERT -35 202 ome.model.display.QuantumDef \N 5077 9906 INSERT -35 202 ome.model.display.RenderingDef \N 5077 9907 INSERT -35 303 ome.model.display.ChannelBinding \N 5077 9908 INSERT -35 304 ome.model.display.ChannelBinding \N 5077 9909 INSERT -35 203 ome.model.display.QuantumDef \N 5076 9910 INSERT -35 203 ome.model.display.RenderingDef \N 5076 9911 INSERT -35 305 ome.model.display.ChannelBinding \N 5076 9912 INSERT -35 306 ome.model.display.ChannelBinding \N 5076 9913 INSERT -35 204 ome.model.display.QuantumDef \N 5075 9914 INSERT -35 204 ome.model.display.RenderingDef \N 5075 9915 INSERT -35 307 ome.model.display.ChannelBinding \N 5075 9916 INSERT -35 308 ome.model.display.ChannelBinding \N 5075 9917 INSERT -35 568 ome.model.meta.Session \N 5092 9918 INSERT -35 569 ome.model.meta.Session \N 5094 9919 INSERT -35 570 ome.model.meta.Session \N 5097 9920 INSERT -35 571 ome.model.meta.Session \N 5099 9921 INSERT -35 572 ome.model.meta.Session \N 5107 9922 INSERT -35 573 ome.model.meta.Session \N 5109 9923 INSERT -35 103 ome.model.meta.GroupExperimenterMap \N 5128 9924 UPDATE -35 103 ome.model.meta.GroupExperimenterMap \N 5128 9925 INSERT -35 102 ome.model.meta.Experimenter \N 5132 9926 INSERT -35 104 ome.model.meta.GroupExperimenterMap \N 5132 9927 INSERT -35 105 ome.model.meta.GroupExperimenterMap \N 5132 9928 INSERT -35 574 ome.model.meta.Session \N 5134 9929 INSERT -35 575 ome.model.meta.Session \N 5137 9930 INSERT -35 576 ome.model.meta.Session \N 5139 9931 INSERT -35 51 ome.model.containers.Project \N 5141 9932 UPDATE -35 51 ome.model.containers.Project \N 5142 9933 INSERT -35 101 ome.model.containers.Dataset \N 5143 9934 INSERT -35 101 ome.model.containers.ProjectDatasetLink \N 5143 9935 INSERT -35 101 ome.model.acquisition.Microscope \N 5151 9936 INSERT -35 151 ome.model.acquisition.Instrument \N 5151 9937 INSERT -35 151 ome.model.acquisition.Detector \N 5151 9938 INSERT -35 152 ome.model.acquisition.Detector \N 5151 9939 INSERT -35 201 ome.model.acquisition.TransmittanceRange \N 5151 9940 INSERT -35 201 ome.model.acquisition.Filter \N 5151 9941 INSERT -35 202 ome.model.acquisition.TransmittanceRange \N 5151 9942 INSERT -35 202 ome.model.acquisition.Filter \N 5151 9943 INSERT -35 203 ome.model.acquisition.TransmittanceRange \N 5151 9944 INSERT -35 203 ome.model.acquisition.Filter \N 5151 9945 INSERT -35 204 ome.model.acquisition.TransmittanceRange \N 5151 9946 INSERT -35 204 ome.model.acquisition.Filter \N 5151 9947 INSERT -35 401 ome.model.acquisition.Laser \N 5151 9948 INSERT -35 402 ome.model.acquisition.Laser \N 5151 9949 INSERT -35 403 ome.model.acquisition.Laser \N 5151 9950 INSERT -35 404 ome.model.acquisition.Laser \N 5151 9951 INSERT -35 405 ome.model.acquisition.Laser \N 5151 9952 INSERT -35 406 ome.model.acquisition.Laser \N 5151 9953 INSERT -35 151 ome.model.acquisition.Objective \N 5151 9954 INSERT -35 151 ome.model.acquisition.ObjectiveSettings \N 5151 9955 INSERT -35 151 ome.model.core.Image \N 5151 9956 INSERT -35 201 ome.model.core.OriginalFile \N 5151 9957 INSERT -35 201 ome.model.annotations.FileAnnotation \N 5151 9958 INSERT -35 251 ome.model.annotations.ImageAnnotationLink \N 5151 9959 INSERT -35 151 ome.model.containers.DatasetImageLink \N 5151 9960 INSERT -35 151 ome.model.core.Pixels \N 5151 9961 INSERT -35 151 ome.model.acquisition.DetectorSettings \N 5151 9962 INSERT -35 151 ome.model.acquisition.LightPath \N 5151 9963 INSERT -35 151 ome.model.acquisition.LightPathEmissionFilterLink \N 5151 9964 INSERT -35 151 ome.model.acquisition.LightSettings \N 5151 9965 INSERT -35 251 ome.model.core.LogicalChannel \N 5151 9966 INSERT -35 251 ome.model.core.Channel \N 5151 9967 INSERT -35 152 ome.model.acquisition.DetectorSettings \N 5151 9968 INSERT -35 252 ome.model.core.LogicalChannel \N 5151 9969 INSERT -35 252 ome.model.core.Channel \N 5151 9970 INSERT -35 5301 ome.model.core.PlaneInfo \N 5151 9971 INSERT -35 5302 ome.model.core.PlaneInfo \N 5151 9972 INSERT -35 5303 ome.model.core.PlaneInfo \N 5151 9973 INSERT -35 5304 ome.model.core.PlaneInfo \N 5151 9974 INSERT -35 5305 ome.model.core.PlaneInfo \N 5151 9975 INSERT -35 5306 ome.model.core.PlaneInfo \N 5151 9976 INSERT -35 5307 ome.model.core.PlaneInfo \N 5151 9977 INSERT -35 5308 ome.model.core.PlaneInfo \N 5151 9978 INSERT -35 5309 ome.model.core.PlaneInfo \N 5151 9979 INSERT -35 5310 ome.model.core.PlaneInfo \N 5151 9980 INSERT -35 102 ome.model.acquisition.Microscope \N 5151 9981 INSERT -35 152 ome.model.acquisition.Instrument \N 5151 9982 INSERT -35 153 ome.model.acquisition.Detector \N 5151 9983 INSERT -35 154 ome.model.acquisition.Detector \N 5151 9984 INSERT -35 205 ome.model.acquisition.TransmittanceRange \N 5151 9985 INSERT -35 205 ome.model.acquisition.Filter \N 5151 9986 INSERT -35 206 ome.model.acquisition.TransmittanceRange \N 5151 9987 INSERT -35 206 ome.model.acquisition.Filter \N 5151 9988 INSERT -35 207 ome.model.acquisition.TransmittanceRange \N 5151 9989 INSERT -35 207 ome.model.acquisition.Filter \N 5151 9990 INSERT -35 208 ome.model.acquisition.TransmittanceRange \N 5151 9991 INSERT -35 208 ome.model.acquisition.Filter \N 5151 9992 INSERT -35 407 ome.model.acquisition.Laser \N 5151 9993 INSERT -35 408 ome.model.acquisition.Laser \N 5151 9994 INSERT -35 409 ome.model.acquisition.Laser \N 5151 9995 INSERT -35 410 ome.model.acquisition.Laser \N 5151 9996 INSERT -35 411 ome.model.acquisition.Laser \N 5151 9997 INSERT -35 412 ome.model.acquisition.Laser \N 5151 9998 INSERT -35 152 ome.model.acquisition.Objective \N 5151 9999 INSERT -35 152 ome.model.acquisition.ObjectiveSettings \N 5151 10000 INSERT -35 152 ome.model.core.Image \N 5151 10001 INSERT -35 202 ome.model.core.OriginalFile \N 5151 10002 INSERT -35 202 ome.model.annotations.FileAnnotation \N 5151 10003 INSERT -35 252 ome.model.annotations.ImageAnnotationLink \N 5151 10004 INSERT -35 152 ome.model.containers.DatasetImageLink \N 5151 10005 INSERT -35 152 ome.model.core.Pixels \N 5151 10006 INSERT -35 153 ome.model.acquisition.DetectorSettings \N 5151 10007 INSERT -35 152 ome.model.acquisition.LightPath \N 5151 10008 INSERT -35 152 ome.model.acquisition.LightPathEmissionFilterLink \N 5151 10009 INSERT -35 152 ome.model.acquisition.LightSettings \N 5151 10010 INSERT -35 253 ome.model.core.LogicalChannel \N 5151 10011 INSERT -35 253 ome.model.core.Channel \N 5151 10012 INSERT -35 154 ome.model.acquisition.DetectorSettings \N 5151 10013 INSERT -35 254 ome.model.core.LogicalChannel \N 5151 10014 INSERT -35 254 ome.model.core.Channel \N 5151 10015 INSERT -35 5311 ome.model.core.PlaneInfo \N 5151 10016 INSERT -35 5312 ome.model.core.PlaneInfo \N 5151 10017 INSERT -35 5313 ome.model.core.PlaneInfo \N 5151 10018 INSERT -35 5314 ome.model.core.PlaneInfo \N 5151 10019 INSERT -35 5315 ome.model.core.PlaneInfo \N 5151 10020 INSERT -35 5316 ome.model.core.PlaneInfo \N 5151 10021 INSERT -35 5317 ome.model.core.PlaneInfo \N 5151 10022 INSERT -35 5318 ome.model.core.PlaneInfo \N 5151 10023 INSERT -35 5319 ome.model.core.PlaneInfo \N 5151 10024 INSERT -35 5320 ome.model.core.PlaneInfo \N 5151 10025 INSERT -35 5321 ome.model.core.PlaneInfo \N 5151 10026 INSERT -35 5322 ome.model.core.PlaneInfo \N 5151 10027 INSERT -35 5323 ome.model.core.PlaneInfo \N 5151 10028 INSERT -35 5324 ome.model.core.PlaneInfo \N 5151 10029 INSERT -35 5325 ome.model.core.PlaneInfo \N 5151 10030 INSERT -35 5326 ome.model.core.PlaneInfo \N 5151 10031 INSERT -35 5327 ome.model.core.PlaneInfo \N 5151 10032 INSERT -35 5328 ome.model.core.PlaneInfo \N 5151 10033 INSERT -35 5329 ome.model.core.PlaneInfo \N 5151 10034 INSERT -35 5330 ome.model.core.PlaneInfo \N 5151 10035 INSERT -35 5331 ome.model.core.PlaneInfo \N 5151 10036 INSERT -35 5332 ome.model.core.PlaneInfo \N 5151 10037 INSERT -35 5333 ome.model.core.PlaneInfo \N 5151 10038 INSERT -35 5334 ome.model.core.PlaneInfo \N 5151 10039 INSERT -35 5335 ome.model.core.PlaneInfo \N 5151 10040 INSERT -35 5336 ome.model.core.PlaneInfo \N 5151 10041 INSERT -35 5337 ome.model.core.PlaneInfo \N 5151 10042 INSERT -35 5338 ome.model.core.PlaneInfo \N 5151 10043 INSERT -35 5339 ome.model.core.PlaneInfo \N 5151 10044 INSERT -35 5340 ome.model.core.PlaneInfo \N 5151 10045 INSERT -35 5341 ome.model.core.PlaneInfo \N 5151 10046 INSERT -35 5342 ome.model.core.PlaneInfo \N 5151 10047 INSERT -35 5343 ome.model.core.PlaneInfo \N 5151 10048 INSERT -35 5344 ome.model.core.PlaneInfo \N 5151 10049 INSERT -35 5345 ome.model.core.PlaneInfo \N 5151 10050 INSERT -35 5346 ome.model.core.PlaneInfo \N 5151 10051 INSERT -35 5347 ome.model.core.PlaneInfo \N 5151 10052 INSERT -35 5348 ome.model.core.PlaneInfo \N 5151 10053 INSERT -35 5349 ome.model.core.PlaneInfo \N 5151 10054 INSERT -35 5350 ome.model.core.PlaneInfo \N 5151 10055 INSERT -35 1 ome.model.roi.Roi \N 5151 10056 INSERT -35 1 ome.model.roi.Label \N 5151 10057 INSERT -35 2 ome.model.roi.Polygon \N 5151 10058 INSERT -35 103 ome.model.acquisition.Microscope \N 5151 10059 INSERT -35 153 ome.model.acquisition.Instrument \N 5151 10060 INSERT -35 155 ome.model.acquisition.Detector \N 5151 10061 INSERT -35 156 ome.model.acquisition.Detector \N 5151 10062 INSERT -35 209 ome.model.acquisition.TransmittanceRange \N 5151 10063 INSERT -35 209 ome.model.acquisition.Filter \N 5151 10064 INSERT -35 210 ome.model.acquisition.TransmittanceRange \N 5151 10065 INSERT -35 210 ome.model.acquisition.Filter \N 5151 10066 INSERT -35 211 ome.model.acquisition.TransmittanceRange \N 5151 10067 INSERT -35 211 ome.model.acquisition.Filter \N 5151 10068 INSERT -35 212 ome.model.acquisition.TransmittanceRange \N 5151 10069 INSERT -35 212 ome.model.acquisition.Filter \N 5151 10070 INSERT -35 413 ome.model.acquisition.Laser \N 5151 10071 INSERT -35 414 ome.model.acquisition.Laser \N 5151 10072 INSERT -35 415 ome.model.acquisition.Laser \N 5151 10073 INSERT -35 416 ome.model.acquisition.Laser \N 5151 10074 INSERT -35 417 ome.model.acquisition.Laser \N 5151 10075 INSERT -35 418 ome.model.acquisition.Laser \N 5151 10076 INSERT -35 153 ome.model.acquisition.Objective \N 5151 10077 INSERT -35 153 ome.model.acquisition.ObjectiveSettings \N 5151 10078 INSERT -35 153 ome.model.core.Image \N 5151 10079 INSERT -35 203 ome.model.core.OriginalFile \N 5151 10080 INSERT -35 203 ome.model.annotations.FileAnnotation \N 5151 10081 INSERT -35 253 ome.model.annotations.ImageAnnotationLink \N 5151 10082 INSERT -35 153 ome.model.containers.DatasetImageLink \N 5151 10083 INSERT -35 153 ome.model.core.Pixels \N 5151 10084 INSERT -35 155 ome.model.acquisition.DetectorSettings \N 5151 10085 INSERT -35 153 ome.model.acquisition.LightPath \N 5151 10086 INSERT -35 153 ome.model.acquisition.LightPathEmissionFilterLink \N 5151 10087 INSERT -35 153 ome.model.acquisition.LightSettings \N 5151 10088 INSERT -35 255 ome.model.core.LogicalChannel \N 5151 10089 INSERT -35 255 ome.model.core.Channel \N 5151 10090 INSERT -35 156 ome.model.acquisition.DetectorSettings \N 5151 10091 INSERT -35 256 ome.model.core.LogicalChannel \N 5151 10092 INSERT -35 256 ome.model.core.Channel \N 5151 10093 INSERT -35 5351 ome.model.core.PlaneInfo \N 5151 10094 INSERT -35 5352 ome.model.core.PlaneInfo \N 5151 10095 INSERT -35 104 ome.model.acquisition.Microscope \N 5151 10096 INSERT -35 154 ome.model.acquisition.Instrument \N 5151 10097 INSERT -35 157 ome.model.acquisition.Detector \N 5151 10098 INSERT -35 158 ome.model.acquisition.Detector \N 5151 10099 INSERT -35 213 ome.model.acquisition.TransmittanceRange \N 5151 10100 INSERT -35 213 ome.model.acquisition.Filter \N 5151 10101 INSERT -35 214 ome.model.acquisition.TransmittanceRange \N 5151 10102 INSERT -35 214 ome.model.acquisition.Filter \N 5151 10103 INSERT -35 215 ome.model.acquisition.TransmittanceRange \N 5151 10104 INSERT -35 215 ome.model.acquisition.Filter \N 5151 10105 INSERT -35 216 ome.model.acquisition.TransmittanceRange \N 5151 10106 INSERT -35 216 ome.model.acquisition.Filter \N 5151 10107 INSERT -35 419 ome.model.acquisition.Laser \N 5151 10108 INSERT -35 420 ome.model.acquisition.Laser \N 5151 10109 INSERT -35 421 ome.model.acquisition.Laser \N 5151 10110 INSERT -35 422 ome.model.acquisition.Laser \N 5151 10111 INSERT -35 423 ome.model.acquisition.Laser \N 5151 10112 INSERT -35 424 ome.model.acquisition.Laser \N 5151 10113 INSERT -35 154 ome.model.acquisition.Objective \N 5151 10114 INSERT -35 154 ome.model.acquisition.ObjectiveSettings \N 5151 10115 INSERT -35 154 ome.model.core.Image \N 5151 10116 INSERT -35 204 ome.model.core.OriginalFile \N 5151 10117 INSERT -35 204 ome.model.annotations.FileAnnotation \N 5151 10118 INSERT -35 254 ome.model.annotations.ImageAnnotationLink \N 5151 10119 INSERT -35 154 ome.model.containers.DatasetImageLink \N 5151 10120 INSERT -35 154 ome.model.core.Pixels \N 5151 10121 INSERT -35 157 ome.model.acquisition.DetectorSettings \N 5151 10122 INSERT -35 154 ome.model.acquisition.LightPath \N 5151 10123 INSERT -35 154 ome.model.acquisition.LightPathEmissionFilterLink \N 5151 10124 INSERT -35 154 ome.model.acquisition.LightSettings \N 5151 10125 INSERT -35 257 ome.model.core.LogicalChannel \N 5151 10126 INSERT -35 257 ome.model.core.Channel \N 5151 10127 INSERT -35 158 ome.model.acquisition.DetectorSettings \N 5151 10128 INSERT -35 258 ome.model.core.LogicalChannel \N 5151 10129 INSERT -35 258 ome.model.core.Channel \N 5151 10130 INSERT -35 5353 ome.model.core.PlaneInfo \N 5151 10131 INSERT -35 5354 ome.model.core.PlaneInfo \N 5151 10132 INSERT -35 5355 ome.model.core.PlaneInfo \N 5151 10133 INSERT -35 5356 ome.model.core.PlaneInfo \N 5151 10134 INSERT -35 5357 ome.model.core.PlaneInfo \N 5151 10135 INSERT -35 5358 ome.model.core.PlaneInfo \N 5151 10136 INSERT -35 5359 ome.model.core.PlaneInfo \N 5151 10137 INSERT -35 5360 ome.model.core.PlaneInfo \N 5151 10138 INSERT -35 5361 ome.model.core.PlaneInfo \N 5151 10139 INSERT -35 5362 ome.model.core.PlaneInfo \N 5151 10140 INSERT -35 5363 ome.model.core.PlaneInfo \N 5151 10141 INSERT -35 5364 ome.model.core.PlaneInfo \N 5151 10142 INSERT -35 5365 ome.model.core.PlaneInfo \N 5151 10143 INSERT -35 5366 ome.model.core.PlaneInfo \N 5151 10144 INSERT -35 5367 ome.model.core.PlaneInfo \N 5151 10145 INSERT -35 5368 ome.model.core.PlaneInfo \N 5151 10146 INSERT -35 5369 ome.model.core.PlaneInfo \N 5151 10147 INSERT -35 5370 ome.model.core.PlaneInfo \N 5151 10148 INSERT -35 5371 ome.model.core.PlaneInfo \N 5151 10149 INSERT -35 5372 ome.model.core.PlaneInfo \N 5151 10150 INSERT -35 5373 ome.model.core.PlaneInfo \N 5151 10151 INSERT -35 5374 ome.model.core.PlaneInfo \N 5151 10152 INSERT -35 5375 ome.model.core.PlaneInfo \N 5151 10153 INSERT -35 5376 ome.model.core.PlaneInfo \N 5151 10154 INSERT -35 5377 ome.model.core.PlaneInfo \N 5151 10155 INSERT -35 5378 ome.model.core.PlaneInfo \N 5151 10156 INSERT -35 5379 ome.model.core.PlaneInfo \N 5151 10157 INSERT -35 5380 ome.model.core.PlaneInfo \N 5151 10158 INSERT -35 5381 ome.model.core.PlaneInfo \N 5151 10159 INSERT -35 5382 ome.model.core.PlaneInfo \N 5151 10160 INSERT -35 5383 ome.model.core.PlaneInfo \N 5151 10161 INSERT -35 5384 ome.model.core.PlaneInfo \N 5151 10162 INSERT -35 5385 ome.model.core.PlaneInfo \N 5151 10163 INSERT -35 5386 ome.model.core.PlaneInfo \N 5151 10164 INSERT -35 5387 ome.model.core.PlaneInfo \N 5151 10165 INSERT -35 5388 ome.model.core.PlaneInfo \N 5151 10166 INSERT -35 5389 ome.model.core.PlaneInfo \N 5151 10167 INSERT -35 5390 ome.model.core.PlaneInfo \N 5151 10168 INSERT -35 5391 ome.model.core.PlaneInfo \N 5151 10169 INSERT -35 5392 ome.model.core.PlaneInfo \N 5151 10170 UPDATE -35 152 ome.model.core.Pixels \N 5152 10171 UPDATE -35 151 ome.model.core.Pixels \N 5153 10172 UPDATE -35 153 ome.model.core.Pixels \N 5153 10173 UPDATE -35 154 ome.model.core.Pixels \N 5153 10174 UPDATE -35 152 ome.model.core.Pixels \N 5153 10175 INSERT -35 251 ome.model.stats.StatsInfo \N 5154 10176 INSERT -35 252 ome.model.stats.StatsInfo \N 5154 10177 INSERT -35 253 ome.model.stats.StatsInfo \N 5154 10178 INSERT -35 254 ome.model.stats.StatsInfo \N 5154 10179 INSERT -35 255 ome.model.stats.StatsInfo \N 5154 10180 INSERT -35 256 ome.model.stats.StatsInfo \N 5154 10181 INSERT -35 257 ome.model.stats.StatsInfo \N 5154 10182 INSERT -35 258 ome.model.stats.StatsInfo \N 5154 10183 UPDATE -35 251 ome.model.core.Channel \N 5154 10184 UPDATE -35 252 ome.model.core.Channel \N 5154 10185 UPDATE -35 255 ome.model.core.Channel \N 5154 10186 UPDATE -35 256 ome.model.core.Channel \N 5154 10187 UPDATE -35 257 ome.model.core.Channel \N 5154 10188 UPDATE -35 258 ome.model.core.Channel \N 5154 10189 UPDATE -35 253 ome.model.core.Channel \N 5154 10190 UPDATE -35 254 ome.model.core.Channel \N 5154 10191 INSERT -35 205 ome.model.display.QuantumDef \N 5155 10192 INSERT -35 205 ome.model.display.RenderingDef \N 5155 10193 INSERT -35 309 ome.model.display.ChannelBinding \N 5155 10194 INSERT -35 310 ome.model.display.ChannelBinding \N 5155 10195 INSERT -35 206 ome.model.display.QuantumDef \N 5155 10196 INSERT -35 206 ome.model.display.RenderingDef \N 5155 10197 INSERT -35 311 ome.model.display.ChannelBinding \N 5155 10198 INSERT -35 312 ome.model.display.ChannelBinding \N 5155 10199 INSERT -35 207 ome.model.display.QuantumDef \N 5155 10200 INSERT -35 207 ome.model.display.RenderingDef \N 5155 10201 INSERT -35 313 ome.model.display.ChannelBinding \N 5155 10202 INSERT -35 314 ome.model.display.ChannelBinding \N 5155 10203 INSERT -35 208 ome.model.display.QuantumDef \N 5155 10204 INSERT -35 208 ome.model.display.RenderingDef \N 5155 10205 INSERT -35 315 ome.model.display.ChannelBinding \N 5155 10206 INSERT -35 316 ome.model.display.ChannelBinding \N 5155 10207 INSERT -35 151 ome.model.display.Thumbnail \N 5156 10208 INSERT -35 152 ome.model.display.Thumbnail \N 5156 10209 INSERT -35 153 ome.model.display.Thumbnail \N 5156 10210 INSERT -35 154 ome.model.display.Thumbnail \N 5156 10211 UPDATE -35 202 ome.model.core.OriginalFile \N 5157 10212 INSERT -35 105 ome.model.acquisition.Microscope \N 5173 10213 INSERT -35 155 ome.model.acquisition.Instrument \N 5173 10214 INSERT -35 159 ome.model.acquisition.Detector \N 5173 10215 INSERT -35 217 ome.model.acquisition.TransmittanceRange \N 5173 10216 INSERT -35 217 ome.model.acquisition.Filter \N 5173 10217 INSERT -35 218 ome.model.acquisition.TransmittanceRange \N 5173 10218 INSERT -35 218 ome.model.acquisition.Filter \N 5173 10219 INSERT -35 219 ome.model.acquisition.TransmittanceRange \N 5173 10220 INSERT -35 219 ome.model.acquisition.Filter \N 5173 10221 INSERT -35 220 ome.model.acquisition.TransmittanceRange \N 5173 10222 INSERT -35 220 ome.model.acquisition.Filter \N 5173 10223 INSERT -35 425 ome.model.acquisition.Laser \N 5173 10224 INSERT -35 426 ome.model.acquisition.Laser \N 5173 10225 INSERT -35 427 ome.model.acquisition.Laser \N 5173 10226 INSERT -35 428 ome.model.acquisition.Laser \N 5173 10227 INSERT -35 429 ome.model.acquisition.Laser \N 5173 10228 INSERT -35 430 ome.model.acquisition.Laser \N 5173 10229 INSERT -35 155 ome.model.acquisition.Objective \N 5173 10230 INSERT -35 155 ome.model.acquisition.ObjectiveSettings \N 5173 10231 INSERT -35 155 ome.model.core.Image \N 5173 10232 INSERT -35 205 ome.model.core.OriginalFile \N 5173 10233 INSERT -35 205 ome.model.annotations.FileAnnotation \N 5173 10234 INSERT -35 255 ome.model.annotations.ImageAnnotationLink \N 5173 10235 INSERT -35 155 ome.model.containers.DatasetImageLink \N 5173 10236 INSERT -35 155 ome.model.core.Pixels \N 5173 10237 INSERT -35 159 ome.model.acquisition.DetectorSettings \N 5173 10238 INSERT -35 155 ome.model.acquisition.LightPath \N 5173 10239 INSERT -35 155 ome.model.acquisition.LightPathEmissionFilterLink \N 5173 10240 INSERT -35 155 ome.model.acquisition.LightSettings \N 5173 10241 INSERT -35 259 ome.model.core.LogicalChannel \N 5173 10242 INSERT -35 259 ome.model.core.Channel \N 5173 10243 INSERT -35 5393 ome.model.core.PlaneInfo \N 5173 10244 INSERT -35 5394 ome.model.core.PlaneInfo \N 5173 10245 INSERT -35 5395 ome.model.core.PlaneInfo \N 5173 10246 INSERT -35 5396 ome.model.core.PlaneInfo \N 5173 10247 INSERT -35 5397 ome.model.core.PlaneInfo \N 5173 10248 INSERT -35 106 ome.model.acquisition.Microscope \N 5173 10249 INSERT -35 156 ome.model.acquisition.Instrument \N 5173 10250 INSERT -35 160 ome.model.acquisition.Detector \N 5173 10251 INSERT -35 221 ome.model.acquisition.TransmittanceRange \N 5173 10252 INSERT -35 221 ome.model.acquisition.Filter \N 5173 10253 INSERT -35 222 ome.model.acquisition.TransmittanceRange \N 5173 10254 INSERT -35 222 ome.model.acquisition.Filter \N 5173 10255 INSERT -35 223 ome.model.acquisition.TransmittanceRange \N 5173 10256 INSERT -35 223 ome.model.acquisition.Filter \N 5173 10257 INSERT -35 224 ome.model.acquisition.TransmittanceRange \N 5173 10258 INSERT -35 224 ome.model.acquisition.Filter \N 5173 10259 INSERT -35 431 ome.model.acquisition.Laser \N 5173 10260 INSERT -35 432 ome.model.acquisition.Laser \N 5173 10261 INSERT -35 433 ome.model.acquisition.Laser \N 5173 10262 INSERT -35 434 ome.model.acquisition.Laser \N 5173 10263 INSERT -35 435 ome.model.acquisition.Laser \N 5173 10264 INSERT -35 436 ome.model.acquisition.Laser \N 5173 10265 INSERT -35 156 ome.model.acquisition.Objective \N 5173 10266 INSERT -35 156 ome.model.acquisition.ObjectiveSettings \N 5173 10267 INSERT -35 156 ome.model.core.Image \N 5173 10268 INSERT -35 206 ome.model.core.OriginalFile \N 5173 10269 INSERT -35 206 ome.model.annotations.FileAnnotation \N 5173 10270 INSERT -35 256 ome.model.annotations.ImageAnnotationLink \N 5173 10271 INSERT -35 156 ome.model.containers.DatasetImageLink \N 5173 10272 INSERT -35 156 ome.model.core.Pixels \N 5173 10273 INSERT -35 160 ome.model.acquisition.DetectorSettings \N 5173 10274 INSERT -35 156 ome.model.acquisition.LightPath \N 5173 10275 INSERT -35 156 ome.model.acquisition.LightPathEmissionFilterLink \N 5173 10276 INSERT -35 156 ome.model.acquisition.LightSettings \N 5173 10277 INSERT -35 260 ome.model.core.LogicalChannel \N 5173 10278 INSERT -35 260 ome.model.core.Channel \N 5173 10279 INSERT -35 5398 ome.model.core.PlaneInfo \N 5173 10280 INSERT -35 5399 ome.model.core.PlaneInfo \N 5173 10281 INSERT -35 5400 ome.model.core.PlaneInfo \N 5173 10282 INSERT -35 5401 ome.model.core.PlaneInfo \N 5173 10283 INSERT -35 5402 ome.model.core.PlaneInfo \N 5173 10284 INSERT -35 5403 ome.model.core.PlaneInfo \N 5173 10285 INSERT -35 5404 ome.model.core.PlaneInfo \N 5173 10286 INSERT -35 5405 ome.model.core.PlaneInfo \N 5173 10287 INSERT -35 5406 ome.model.core.PlaneInfo \N 5173 10288 INSERT -35 5407 ome.model.core.PlaneInfo \N 5173 10289 INSERT -35 5408 ome.model.core.PlaneInfo \N 5173 10290 INSERT -35 5409 ome.model.core.PlaneInfo \N 5173 10291 INSERT -35 5410 ome.model.core.PlaneInfo \N 5173 10292 INSERT -35 5411 ome.model.core.PlaneInfo \N 5173 10293 INSERT -35 5412 ome.model.core.PlaneInfo \N 5173 10294 INSERT -35 5413 ome.model.core.PlaneInfo \N 5173 10295 INSERT -35 5414 ome.model.core.PlaneInfo \N 5173 10296 INSERT -35 5415 ome.model.core.PlaneInfo \N 5173 10297 INSERT -35 5416 ome.model.core.PlaneInfo \N 5173 10298 INSERT -35 5417 ome.model.core.PlaneInfo \N 5173 10299 INSERT -35 2 ome.model.roi.Roi \N 5173 10300 INSERT -35 3 ome.model.roi.Label \N 5173 10301 INSERT -35 4 ome.model.roi.Polygon \N 5173 10302 INSERT -35 107 ome.model.acquisition.Microscope \N 5173 10303 INSERT -35 157 ome.model.acquisition.Instrument \N 5173 10304 INSERT -35 161 ome.model.acquisition.Detector \N 5173 10305 INSERT -35 225 ome.model.acquisition.TransmittanceRange \N 5173 10306 INSERT -35 225 ome.model.acquisition.Filter \N 5173 10307 INSERT -35 226 ome.model.acquisition.TransmittanceRange \N 5173 10308 INSERT -35 226 ome.model.acquisition.Filter \N 5173 10309 INSERT -35 227 ome.model.acquisition.TransmittanceRange \N 5173 10310 INSERT -35 227 ome.model.acquisition.Filter \N 5173 10311 INSERT -35 228 ome.model.acquisition.TransmittanceRange \N 5173 10312 INSERT -35 228 ome.model.acquisition.Filter \N 5173 10313 INSERT -35 437 ome.model.acquisition.Laser \N 5173 10314 INSERT -35 438 ome.model.acquisition.Laser \N 5173 10315 INSERT -35 439 ome.model.acquisition.Laser \N 5173 10316 INSERT -35 440 ome.model.acquisition.Laser \N 5173 10317 INSERT -35 441 ome.model.acquisition.Laser \N 5173 10318 INSERT -35 442 ome.model.acquisition.Laser \N 5173 10319 INSERT -35 157 ome.model.acquisition.Objective \N 5173 10320 INSERT -35 157 ome.model.acquisition.ObjectiveSettings \N 5173 10321 INSERT -35 157 ome.model.core.Image \N 5173 10322 INSERT -35 207 ome.model.core.OriginalFile \N 5173 10323 INSERT -35 207 ome.model.annotations.FileAnnotation \N 5173 10324 INSERT -35 257 ome.model.annotations.ImageAnnotationLink \N 5173 10325 INSERT -35 157 ome.model.containers.DatasetImageLink \N 5173 10326 INSERT -35 157 ome.model.core.Pixels \N 5173 10327 INSERT -35 161 ome.model.acquisition.DetectorSettings \N 5173 10328 INSERT -35 157 ome.model.acquisition.LightPath \N 5173 10329 INSERT -35 157 ome.model.acquisition.LightPathEmissionFilterLink \N 5173 10330 INSERT -35 157 ome.model.acquisition.LightSettings \N 5173 10331 INSERT -35 261 ome.model.core.LogicalChannel \N 5173 10332 INSERT -35 261 ome.model.core.Channel \N 5173 10333 INSERT -35 5418 ome.model.core.PlaneInfo \N 5173 10334 INSERT -35 108 ome.model.acquisition.Microscope \N 5173 10335 INSERT -35 158 ome.model.acquisition.Instrument \N 5173 10336 INSERT -35 162 ome.model.acquisition.Detector \N 5173 10337 INSERT -35 229 ome.model.acquisition.TransmittanceRange \N 5173 10338 INSERT -35 229 ome.model.acquisition.Filter \N 5173 10339 INSERT -35 230 ome.model.acquisition.TransmittanceRange \N 5173 10340 INSERT -35 230 ome.model.acquisition.Filter \N 5173 10341 INSERT -35 231 ome.model.acquisition.TransmittanceRange \N 5173 10342 INSERT -35 231 ome.model.acquisition.Filter \N 5173 10343 INSERT -35 232 ome.model.acquisition.TransmittanceRange \N 5173 10344 INSERT -35 232 ome.model.acquisition.Filter \N 5173 10345 INSERT -35 443 ome.model.acquisition.Laser \N 5173 10346 INSERT -35 444 ome.model.acquisition.Laser \N 5173 10347 INSERT -35 445 ome.model.acquisition.Laser \N 5173 10348 INSERT -35 446 ome.model.acquisition.Laser \N 5173 10349 INSERT -35 447 ome.model.acquisition.Laser \N 5173 10350 INSERT -35 448 ome.model.acquisition.Laser \N 5173 10351 INSERT -35 158 ome.model.acquisition.Objective \N 5173 10352 INSERT -35 158 ome.model.acquisition.ObjectiveSettings \N 5173 10353 INSERT -35 158 ome.model.core.Image \N 5173 10354 INSERT -35 208 ome.model.core.OriginalFile \N 5173 10355 INSERT -35 208 ome.model.annotations.FileAnnotation \N 5173 10356 INSERT -35 258 ome.model.annotations.ImageAnnotationLink \N 5173 10357 INSERT -35 158 ome.model.containers.DatasetImageLink \N 5173 10358 INSERT -35 158 ome.model.core.Pixels \N 5173 10359 INSERT -35 162 ome.model.acquisition.DetectorSettings \N 5173 10360 INSERT -35 158 ome.model.acquisition.LightPath \N 5173 10361 INSERT -35 158 ome.model.acquisition.LightPathEmissionFilterLink \N 5173 10362 INSERT -35 158 ome.model.acquisition.LightSettings \N 5173 10363 INSERT -35 262 ome.model.core.LogicalChannel \N 5173 10364 INSERT -35 262 ome.model.core.Channel \N 5173 10365 INSERT -35 5419 ome.model.core.PlaneInfo \N 5173 10366 INSERT -35 5420 ome.model.core.PlaneInfo \N 5173 10367 INSERT -35 5421 ome.model.core.PlaneInfo \N 5173 10368 INSERT -35 5422 ome.model.core.PlaneInfo \N 5173 10369 INSERT -35 5423 ome.model.core.PlaneInfo \N 5173 10370 INSERT -35 5424 ome.model.core.PlaneInfo \N 5173 10371 INSERT -35 5425 ome.model.core.PlaneInfo \N 5173 10372 INSERT -35 5426 ome.model.core.PlaneInfo \N 5173 10373 INSERT -35 5427 ome.model.core.PlaneInfo \N 5173 10374 INSERT -35 5428 ome.model.core.PlaneInfo \N 5173 10375 INSERT -35 5429 ome.model.core.PlaneInfo \N 5173 10376 INSERT -35 5430 ome.model.core.PlaneInfo \N 5173 10377 INSERT -35 5431 ome.model.core.PlaneInfo \N 5173 10378 INSERT -35 5432 ome.model.core.PlaneInfo \N 5173 10379 INSERT -35 5433 ome.model.core.PlaneInfo \N 5173 10380 INSERT -35 5434 ome.model.core.PlaneInfo \N 5173 10381 INSERT -35 5435 ome.model.core.PlaneInfo \N 5173 10382 INSERT -35 5436 ome.model.core.PlaneInfo \N 5173 10383 INSERT -35 5437 ome.model.core.PlaneInfo \N 5173 10384 INSERT -35 5438 ome.model.core.PlaneInfo \N 5173 10385 UPDATE -35 156 ome.model.core.Pixels \N 5174 10386 UPDATE -35 155 ome.model.core.Pixels \N 5175 10387 UPDATE -35 157 ome.model.core.Pixels \N 5175 10388 UPDATE -35 158 ome.model.core.Pixels \N 5175 10389 UPDATE -35 156 ome.model.core.Pixels \N 5175 10390 INSERT -35 259 ome.model.stats.StatsInfo \N 5176 10391 INSERT -35 260 ome.model.stats.StatsInfo \N 5176 10392 INSERT -35 261 ome.model.stats.StatsInfo \N 5176 10393 INSERT -35 262 ome.model.stats.StatsInfo \N 5176 10394 UPDATE -35 259 ome.model.core.Channel \N 5176 10395 UPDATE -35 261 ome.model.core.Channel \N 5176 10396 UPDATE -35 262 ome.model.core.Channel \N 5176 10397 UPDATE -35 260 ome.model.core.Channel \N 5176 10398 INSERT -35 209 ome.model.display.QuantumDef \N 5177 10399 INSERT -35 209 ome.model.display.RenderingDef \N 5177 10400 INSERT -35 317 ome.model.display.ChannelBinding \N 5177 10401 INSERT -35 210 ome.model.display.QuantumDef \N 5177 10402 INSERT -35 210 ome.model.display.RenderingDef \N 5177 10403 INSERT -35 318 ome.model.display.ChannelBinding \N 5177 10404 INSERT -35 211 ome.model.display.QuantumDef \N 5177 10405 INSERT -35 211 ome.model.display.RenderingDef \N 5177 10406 INSERT -35 319 ome.model.display.ChannelBinding \N 5177 10407 INSERT -35 212 ome.model.display.QuantumDef \N 5177 10408 INSERT -35 212 ome.model.display.RenderingDef \N 5177 10409 INSERT -35 320 ome.model.display.ChannelBinding \N 5177 10410 INSERT -35 155 ome.model.display.Thumbnail \N 5178 10411 INSERT -35 156 ome.model.display.Thumbnail \N 5178 10412 INSERT -35 157 ome.model.display.Thumbnail \N 5178 10413 INSERT -35 158 ome.model.display.Thumbnail \N 5178 10414 UPDATE -35 206 ome.model.core.OriginalFile \N 5179 10415 INSERT -35 109 ome.model.acquisition.Microscope \N 5195 10416 INSERT -35 159 ome.model.acquisition.Instrument \N 5195 10417 INSERT -35 163 ome.model.acquisition.Detector \N 5195 10418 INSERT -35 233 ome.model.acquisition.TransmittanceRange \N 5195 10419 INSERT -35 233 ome.model.acquisition.Filter \N 5195 10420 INSERT -35 234 ome.model.acquisition.TransmittanceRange \N 5195 10421 INSERT -35 234 ome.model.acquisition.Filter \N 5195 10422 INSERT -35 235 ome.model.acquisition.TransmittanceRange \N 5195 10423 INSERT -35 235 ome.model.acquisition.Filter \N 5195 10424 INSERT -35 236 ome.model.acquisition.TransmittanceRange \N 5195 10425 INSERT -35 236 ome.model.acquisition.Filter \N 5195 10426 INSERT -35 449 ome.model.acquisition.Laser \N 5195 10427 INSERT -35 450 ome.model.acquisition.Laser \N 5195 10428 INSERT -35 451 ome.model.acquisition.Laser \N 5195 10429 INSERT -35 452 ome.model.acquisition.Laser \N 5195 10430 INSERT -35 453 ome.model.acquisition.Laser \N 5195 10431 INSERT -35 454 ome.model.acquisition.Laser \N 5195 10432 INSERT -35 159 ome.model.acquisition.Objective \N 5195 10433 INSERT -35 159 ome.model.acquisition.ObjectiveSettings \N 5195 10434 INSERT -35 159 ome.model.core.Image \N 5195 10435 INSERT -35 209 ome.model.core.OriginalFile \N 5195 10436 INSERT -35 209 ome.model.annotations.FileAnnotation \N 5195 10437 INSERT -35 259 ome.model.annotations.ImageAnnotationLink \N 5195 10438 INSERT -35 159 ome.model.containers.DatasetImageLink \N 5195 10439 INSERT -35 159 ome.model.core.Pixels \N 5195 10440 INSERT -35 163 ome.model.acquisition.DetectorSettings \N 5195 10441 INSERT -35 159 ome.model.acquisition.LightPath \N 5195 10442 INSERT -35 159 ome.model.acquisition.LightPathEmissionFilterLink \N 5195 10443 INSERT -35 159 ome.model.acquisition.LightSettings \N 5195 10444 INSERT -35 263 ome.model.core.LogicalChannel \N 5195 10445 INSERT -35 263 ome.model.core.Channel \N 5195 10446 INSERT -35 5439 ome.model.core.PlaneInfo \N 5195 10447 INSERT -35 5440 ome.model.core.PlaneInfo \N 5195 10448 INSERT -35 5441 ome.model.core.PlaneInfo \N 5195 10449 INSERT -35 5442 ome.model.core.PlaneInfo \N 5195 10450 INSERT -35 5443 ome.model.core.PlaneInfo \N 5195 10451 INSERT -35 110 ome.model.acquisition.Microscope \N 5195 10452 INSERT -35 160 ome.model.acquisition.Instrument \N 5195 10453 INSERT -35 164 ome.model.acquisition.Detector \N 5195 10454 INSERT -35 237 ome.model.acquisition.TransmittanceRange \N 5195 10455 INSERT -35 237 ome.model.acquisition.Filter \N 5195 10456 INSERT -35 238 ome.model.acquisition.TransmittanceRange \N 5195 10457 INSERT -35 238 ome.model.acquisition.Filter \N 5195 10458 INSERT -35 239 ome.model.acquisition.TransmittanceRange \N 5195 10459 INSERT -35 239 ome.model.acquisition.Filter \N 5195 10460 INSERT -35 240 ome.model.acquisition.TransmittanceRange \N 5195 10461 INSERT -35 240 ome.model.acquisition.Filter \N 5195 10462 INSERT -35 455 ome.model.acquisition.Laser \N 5195 10463 INSERT -35 456 ome.model.acquisition.Laser \N 5195 10464 INSERT -35 457 ome.model.acquisition.Laser \N 5195 10465 INSERT -35 458 ome.model.acquisition.Laser \N 5195 10466 INSERT -35 459 ome.model.acquisition.Laser \N 5195 10467 INSERT -35 460 ome.model.acquisition.Laser \N 5195 10468 INSERT -35 160 ome.model.acquisition.Objective \N 5195 10469 INSERT -35 160 ome.model.acquisition.ObjectiveSettings \N 5195 10470 INSERT -35 160 ome.model.core.Image \N 5195 10471 INSERT -35 210 ome.model.core.OriginalFile \N 5195 10472 INSERT -35 210 ome.model.annotations.FileAnnotation \N 5195 10473 INSERT -35 260 ome.model.annotations.ImageAnnotationLink \N 5195 10474 INSERT -35 160 ome.model.containers.DatasetImageLink \N 5195 10475 INSERT -35 160 ome.model.core.Pixels \N 5195 10476 INSERT -35 164 ome.model.acquisition.DetectorSettings \N 5195 10477 INSERT -35 160 ome.model.acquisition.LightPath \N 5195 10478 INSERT -35 160 ome.model.acquisition.LightPathEmissionFilterLink \N 5195 10479 INSERT -35 160 ome.model.acquisition.LightSettings \N 5195 10480 INSERT -35 264 ome.model.core.LogicalChannel \N 5195 10481 INSERT -35 264 ome.model.core.Channel \N 5195 10482 INSERT -35 5444 ome.model.core.PlaneInfo \N 5195 10483 INSERT -35 5445 ome.model.core.PlaneInfo \N 5195 10484 INSERT -35 5446 ome.model.core.PlaneInfo \N 5195 10485 INSERT -35 5447 ome.model.core.PlaneInfo \N 5195 10486 INSERT -35 5448 ome.model.core.PlaneInfo \N 5195 10487 INSERT -35 5449 ome.model.core.PlaneInfo \N 5195 10488 INSERT -35 5450 ome.model.core.PlaneInfo \N 5195 10489 INSERT -35 5451 ome.model.core.PlaneInfo \N 5195 10490 INSERT -35 5452 ome.model.core.PlaneInfo \N 5195 10491 INSERT -35 5453 ome.model.core.PlaneInfo \N 5195 10492 INSERT -35 5454 ome.model.core.PlaneInfo \N 5195 10493 INSERT -35 5455 ome.model.core.PlaneInfo \N 5195 10494 INSERT -35 5456 ome.model.core.PlaneInfo \N 5195 10495 INSERT -35 5457 ome.model.core.PlaneInfo \N 5195 10496 INSERT -35 5458 ome.model.core.PlaneInfo \N 5195 10497 INSERT -35 5459 ome.model.core.PlaneInfo \N 5195 10498 INSERT -35 5460 ome.model.core.PlaneInfo \N 5195 10499 INSERT -35 5461 ome.model.core.PlaneInfo \N 5195 10500 INSERT -35 5462 ome.model.core.PlaneInfo \N 5195 10501 INSERT -35 5463 ome.model.core.PlaneInfo \N 5195 10502 INSERT -35 3 ome.model.roi.Roi \N 5195 10503 INSERT -35 5 ome.model.roi.Label \N 5195 10504 INSERT -35 6 ome.model.roi.Polygon \N 5195 10505 INSERT -35 111 ome.model.acquisition.Microscope \N 5195 10506 INSERT -35 161 ome.model.acquisition.Instrument \N 5195 10507 INSERT -35 165 ome.model.acquisition.Detector \N 5195 10508 INSERT -35 241 ome.model.acquisition.TransmittanceRange \N 5195 10509 INSERT -35 241 ome.model.acquisition.Filter \N 5195 10510 INSERT -35 242 ome.model.acquisition.TransmittanceRange \N 5195 10511 INSERT -35 242 ome.model.acquisition.Filter \N 5195 10512 INSERT -35 243 ome.model.acquisition.TransmittanceRange \N 5195 10513 INSERT -35 243 ome.model.acquisition.Filter \N 5195 10514 INSERT -35 244 ome.model.acquisition.TransmittanceRange \N 5195 10515 INSERT -35 244 ome.model.acquisition.Filter \N 5195 10516 INSERT -35 461 ome.model.acquisition.Laser \N 5195 10517 INSERT -35 462 ome.model.acquisition.Laser \N 5195 10518 INSERT -35 463 ome.model.acquisition.Laser \N 5195 10519 INSERT -35 464 ome.model.acquisition.Laser \N 5195 10520 INSERT -35 465 ome.model.acquisition.Laser \N 5195 10521 INSERT -35 466 ome.model.acquisition.Laser \N 5195 10522 INSERT -35 161 ome.model.acquisition.Objective \N 5195 10523 INSERT -35 161 ome.model.acquisition.ObjectiveSettings \N 5195 10524 INSERT -35 161 ome.model.core.Image \N 5195 10525 INSERT -35 211 ome.model.core.OriginalFile \N 5195 10526 INSERT -35 211 ome.model.annotations.FileAnnotation \N 5195 10527 INSERT -35 261 ome.model.annotations.ImageAnnotationLink \N 5195 10528 INSERT -35 161 ome.model.containers.DatasetImageLink \N 5195 10529 INSERT -35 161 ome.model.core.Pixels \N 5195 10530 INSERT -35 165 ome.model.acquisition.DetectorSettings \N 5195 10531 INSERT -35 161 ome.model.acquisition.LightPath \N 5195 10532 INSERT -35 161 ome.model.acquisition.LightPathEmissionFilterLink \N 5195 10533 INSERT -35 161 ome.model.acquisition.LightSettings \N 5195 10534 INSERT -35 265 ome.model.core.LogicalChannel \N 5195 10535 INSERT -35 265 ome.model.core.Channel \N 5195 10536 INSERT -35 5464 ome.model.core.PlaneInfo \N 5195 10537 INSERT -35 112 ome.model.acquisition.Microscope \N 5195 10538 INSERT -35 162 ome.model.acquisition.Instrument \N 5195 10539 INSERT -35 166 ome.model.acquisition.Detector \N 5195 10540 INSERT -35 245 ome.model.acquisition.TransmittanceRange \N 5195 10541 INSERT -35 245 ome.model.acquisition.Filter \N 5195 10542 INSERT -35 246 ome.model.acquisition.TransmittanceRange \N 5195 10543 INSERT -35 246 ome.model.acquisition.Filter \N 5195 10544 INSERT -35 247 ome.model.acquisition.TransmittanceRange \N 5195 10545 INSERT -35 247 ome.model.acquisition.Filter \N 5195 10546 INSERT -35 248 ome.model.acquisition.TransmittanceRange \N 5195 10547 INSERT -35 248 ome.model.acquisition.Filter \N 5195 10548 INSERT -35 467 ome.model.acquisition.Laser \N 5195 10549 INSERT -35 468 ome.model.acquisition.Laser \N 5195 10550 INSERT -35 469 ome.model.acquisition.Laser \N 5195 10551 INSERT -35 470 ome.model.acquisition.Laser \N 5195 10552 INSERT -35 471 ome.model.acquisition.Laser \N 5195 10553 INSERT -35 472 ome.model.acquisition.Laser \N 5195 10554 INSERT -35 162 ome.model.acquisition.Objective \N 5195 10555 INSERT -35 162 ome.model.acquisition.ObjectiveSettings \N 5195 10556 INSERT -35 162 ome.model.core.Image \N 5195 10557 INSERT -35 212 ome.model.core.OriginalFile \N 5195 10558 INSERT -35 212 ome.model.annotations.FileAnnotation \N 5195 10559 INSERT -35 262 ome.model.annotations.ImageAnnotationLink \N 5195 10560 INSERT -35 162 ome.model.containers.DatasetImageLink \N 5195 10561 INSERT -35 162 ome.model.core.Pixels \N 5195 10562 INSERT -35 166 ome.model.acquisition.DetectorSettings \N 5195 10563 INSERT -35 162 ome.model.acquisition.LightPath \N 5195 10564 INSERT -35 162 ome.model.acquisition.LightPathEmissionFilterLink \N 5195 10565 INSERT -35 162 ome.model.acquisition.LightSettings \N 5195 10566 INSERT -35 266 ome.model.core.LogicalChannel \N 5195 10567 INSERT -35 266 ome.model.core.Channel \N 5195 10568 INSERT -35 5465 ome.model.core.PlaneInfo \N 5195 10569 INSERT -35 5466 ome.model.core.PlaneInfo \N 5195 10570 INSERT -35 5467 ome.model.core.PlaneInfo \N 5195 10571 INSERT -35 5468 ome.model.core.PlaneInfo \N 5195 10572 INSERT -35 5469 ome.model.core.PlaneInfo \N 5195 10573 INSERT -35 5470 ome.model.core.PlaneInfo \N 5195 10574 INSERT -35 5471 ome.model.core.PlaneInfo \N 5195 10575 INSERT -35 5472 ome.model.core.PlaneInfo \N 5195 10576 INSERT -35 5473 ome.model.core.PlaneInfo \N 5195 10577 INSERT -35 5474 ome.model.core.PlaneInfo \N 5195 10578 INSERT -35 5475 ome.model.core.PlaneInfo \N 5195 10579 INSERT -35 5476 ome.model.core.PlaneInfo \N 5195 10580 INSERT -35 5477 ome.model.core.PlaneInfo \N 5195 10581 INSERT -35 5478 ome.model.core.PlaneInfo \N 5195 10582 INSERT -35 5479 ome.model.core.PlaneInfo \N 5195 10583 INSERT -35 5480 ome.model.core.PlaneInfo \N 5195 10584 INSERT -35 5481 ome.model.core.PlaneInfo \N 5195 10585 INSERT -35 5482 ome.model.core.PlaneInfo \N 5195 10586 INSERT -35 5483 ome.model.core.PlaneInfo \N 5195 10587 INSERT -35 5484 ome.model.core.PlaneInfo \N 5195 10588 INSERT -35 102 ome.model.containers.Dataset \N 5196 10589 INSERT -35 102 ome.model.containers.ProjectDatasetLink \N 5196 10590 UPDATE -35 160 ome.model.core.Pixels \N 5197 10591 UPDATE -35 159 ome.model.core.Pixels \N 5198 10592 UPDATE -35 161 ome.model.core.Pixels \N 5198 10593 UPDATE -35 162 ome.model.core.Pixels \N 5198 10594 UPDATE -35 160 ome.model.core.Pixels \N 5198 10595 INSERT -35 263 ome.model.stats.StatsInfo \N 5199 10596 INSERT -35 264 ome.model.stats.StatsInfo \N 5199 10597 INSERT -35 265 ome.model.stats.StatsInfo \N 5199 10598 INSERT -35 266 ome.model.stats.StatsInfo \N 5199 10599 UPDATE -35 263 ome.model.core.Channel \N 5199 10600 UPDATE -35 265 ome.model.core.Channel \N 5199 10601 UPDATE -35 266 ome.model.core.Channel \N 5199 10602 UPDATE -35 264 ome.model.core.Channel \N 5199 10603 INSERT -35 213 ome.model.display.QuantumDef \N 5200 10604 INSERT -35 213 ome.model.display.RenderingDef \N 5200 10605 INSERT -35 321 ome.model.display.ChannelBinding \N 5200 10606 INSERT -35 214 ome.model.display.QuantumDef \N 5200 10607 INSERT -35 214 ome.model.display.RenderingDef \N 5200 10608 INSERT -35 322 ome.model.display.ChannelBinding \N 5200 10609 INSERT -35 215 ome.model.display.QuantumDef \N 5200 10610 INSERT -35 215 ome.model.display.RenderingDef \N 5200 10611 INSERT -35 323 ome.model.display.ChannelBinding \N 5200 10612 INSERT -35 216 ome.model.display.QuantumDef \N 5200 10613 INSERT -35 216 ome.model.display.RenderingDef \N 5200 10614 INSERT -35 324 ome.model.display.ChannelBinding \N 5200 10615 INSERT -35 159 ome.model.display.Thumbnail \N 5201 10616 INSERT -35 160 ome.model.display.Thumbnail \N 5201 10617 INSERT -35 161 ome.model.display.Thumbnail \N 5201 10618 INSERT -35 162 ome.model.display.Thumbnail \N 5201 10619 UPDATE -35 210 ome.model.core.OriginalFile \N 5202 10620 INSERT -35 113 ome.model.acquisition.Microscope \N 5218 10621 INSERT -35 163 ome.model.acquisition.Instrument \N 5218 10622 INSERT -35 167 ome.model.acquisition.Detector \N 5218 10623 INSERT -35 249 ome.model.acquisition.TransmittanceRange \N 5218 10624 INSERT -35 249 ome.model.acquisition.Filter \N 5218 10625 INSERT -35 250 ome.model.acquisition.TransmittanceRange \N 5218 10626 INSERT -35 250 ome.model.acquisition.Filter \N 5218 10627 INSERT -35 251 ome.model.acquisition.TransmittanceRange \N 5218 10628 INSERT -35 251 ome.model.acquisition.Filter \N 5218 10629 INSERT -35 252 ome.model.acquisition.TransmittanceRange \N 5218 10630 INSERT -35 252 ome.model.acquisition.Filter \N 5218 10631 INSERT -35 473 ome.model.acquisition.Laser \N 5218 10632 INSERT -35 474 ome.model.acquisition.Laser \N 5218 10633 INSERT -35 475 ome.model.acquisition.Laser \N 5218 10634 INSERT -35 476 ome.model.acquisition.Laser \N 5218 10635 INSERT -35 477 ome.model.acquisition.Laser \N 5218 10636 INSERT -35 478 ome.model.acquisition.Laser \N 5218 10637 INSERT -35 163 ome.model.acquisition.Objective \N 5218 10638 INSERT -35 163 ome.model.acquisition.ObjectiveSettings \N 5218 10639 INSERT -35 163 ome.model.core.Image \N 5218 10640 INSERT -35 213 ome.model.core.OriginalFile \N 5218 10641 INSERT -35 213 ome.model.annotations.FileAnnotation \N 5218 10642 INSERT -35 263 ome.model.annotations.ImageAnnotationLink \N 5218 10643 INSERT -35 163 ome.model.containers.DatasetImageLink \N 5218 10644 INSERT -35 163 ome.model.core.Pixels \N 5218 10645 INSERT -35 167 ome.model.acquisition.DetectorSettings \N 5218 10646 INSERT -35 163 ome.model.acquisition.LightPath \N 5218 10647 INSERT -35 163 ome.model.acquisition.LightPathEmissionFilterLink \N 5218 10648 INSERT -35 163 ome.model.acquisition.LightSettings \N 5218 10649 INSERT -35 267 ome.model.core.LogicalChannel \N 5218 10650 INSERT -35 267 ome.model.core.Channel \N 5218 10651 INSERT -35 5485 ome.model.core.PlaneInfo \N 5218 10652 INSERT -35 5486 ome.model.core.PlaneInfo \N 5218 10653 INSERT -35 5487 ome.model.core.PlaneInfo \N 5218 10654 INSERT -35 5488 ome.model.core.PlaneInfo \N 5218 10655 INSERT -35 5489 ome.model.core.PlaneInfo \N 5218 10656 INSERT -35 114 ome.model.acquisition.Microscope \N 5218 10657 INSERT -35 164 ome.model.acquisition.Instrument \N 5218 10658 INSERT -35 168 ome.model.acquisition.Detector \N 5218 10659 INSERT -35 253 ome.model.acquisition.TransmittanceRange \N 5218 10660 INSERT -35 253 ome.model.acquisition.Filter \N 5218 10661 INSERT -35 254 ome.model.acquisition.TransmittanceRange \N 5218 10662 INSERT -35 254 ome.model.acquisition.Filter \N 5218 10663 INSERT -35 255 ome.model.acquisition.TransmittanceRange \N 5218 10664 INSERT -35 255 ome.model.acquisition.Filter \N 5218 10665 INSERT -35 256 ome.model.acquisition.TransmittanceRange \N 5218 10666 INSERT -35 256 ome.model.acquisition.Filter \N 5218 10667 INSERT -35 479 ome.model.acquisition.Laser \N 5218 10668 INSERT -35 480 ome.model.acquisition.Laser \N 5218 10669 INSERT -35 481 ome.model.acquisition.Laser \N 5218 10670 INSERT -35 482 ome.model.acquisition.Laser \N 5218 10671 INSERT -35 483 ome.model.acquisition.Laser \N 5218 10672 INSERT -35 484 ome.model.acquisition.Laser \N 5218 10673 INSERT -35 164 ome.model.acquisition.Objective \N 5218 10674 INSERT -35 164 ome.model.acquisition.ObjectiveSettings \N 5218 10675 INSERT -35 164 ome.model.core.Image \N 5218 10676 INSERT -35 214 ome.model.core.OriginalFile \N 5218 10677 INSERT -35 214 ome.model.annotations.FileAnnotation \N 5218 10678 INSERT -35 264 ome.model.annotations.ImageAnnotationLink \N 5218 10679 INSERT -35 164 ome.model.containers.DatasetImageLink \N 5218 10680 INSERT -35 164 ome.model.core.Pixels \N 5218 10681 INSERT -35 168 ome.model.acquisition.DetectorSettings \N 5218 10682 INSERT -35 164 ome.model.acquisition.LightPath \N 5218 10683 INSERT -35 164 ome.model.acquisition.LightPathEmissionFilterLink \N 5218 10684 INSERT -35 164 ome.model.acquisition.LightSettings \N 5218 10685 INSERT -35 268 ome.model.core.LogicalChannel \N 5218 10686 INSERT -35 268 ome.model.core.Channel \N 5218 10687 INSERT -35 5490 ome.model.core.PlaneInfo \N 5218 10688 INSERT -35 5491 ome.model.core.PlaneInfo \N 5218 10689 INSERT -35 5492 ome.model.core.PlaneInfo \N 5218 10690 INSERT -35 5493 ome.model.core.PlaneInfo \N 5218 10691 INSERT -35 5494 ome.model.core.PlaneInfo \N 5218 10692 INSERT -35 5495 ome.model.core.PlaneInfo \N 5218 10693 INSERT -35 5496 ome.model.core.PlaneInfo \N 5218 10694 INSERT -35 5497 ome.model.core.PlaneInfo \N 5218 10695 INSERT -35 5498 ome.model.core.PlaneInfo \N 5218 10696 INSERT -35 5499 ome.model.core.PlaneInfo \N 5218 10697 INSERT -35 5500 ome.model.core.PlaneInfo \N 5218 10698 INSERT -35 5501 ome.model.core.PlaneInfo \N 5218 10699 INSERT -35 5502 ome.model.core.PlaneInfo \N 5218 10700 INSERT -35 5503 ome.model.core.PlaneInfo \N 5218 10701 INSERT -35 5504 ome.model.core.PlaneInfo \N 5218 10702 INSERT -35 5505 ome.model.core.PlaneInfo \N 5218 10703 INSERT -35 5506 ome.model.core.PlaneInfo \N 5218 10704 INSERT -35 5507 ome.model.core.PlaneInfo \N 5218 10705 INSERT -35 5508 ome.model.core.PlaneInfo \N 5218 10706 INSERT -35 5509 ome.model.core.PlaneInfo \N 5218 10707 INSERT -35 4 ome.model.roi.Roi \N 5218 10708 INSERT -35 7 ome.model.roi.Label \N 5218 10709 INSERT -35 8 ome.model.roi.Polygon \N 5218 10710 INSERT -35 115 ome.model.acquisition.Microscope \N 5218 10711 INSERT -35 165 ome.model.acquisition.Instrument \N 5218 10712 INSERT -35 169 ome.model.acquisition.Detector \N 5218 10713 INSERT -35 257 ome.model.acquisition.TransmittanceRange \N 5218 10714 INSERT -35 257 ome.model.acquisition.Filter \N 5218 10715 INSERT -35 258 ome.model.acquisition.TransmittanceRange \N 5218 10716 INSERT -35 258 ome.model.acquisition.Filter \N 5218 10717 INSERT -35 259 ome.model.acquisition.TransmittanceRange \N 5218 10718 INSERT -35 259 ome.model.acquisition.Filter \N 5218 10719 INSERT -35 260 ome.model.acquisition.TransmittanceRange \N 5218 10720 INSERT -35 260 ome.model.acquisition.Filter \N 5218 10721 INSERT -35 485 ome.model.acquisition.Laser \N 5218 10722 INSERT -35 486 ome.model.acquisition.Laser \N 5218 10723 INSERT -35 487 ome.model.acquisition.Laser \N 5218 10724 INSERT -35 488 ome.model.acquisition.Laser \N 5218 10725 INSERT -35 489 ome.model.acquisition.Laser \N 5218 10726 INSERT -35 490 ome.model.acquisition.Laser \N 5218 10727 INSERT -35 165 ome.model.acquisition.Objective \N 5218 10728 INSERT -35 165 ome.model.acquisition.ObjectiveSettings \N 5218 10729 INSERT -35 165 ome.model.core.Image \N 5218 10730 INSERT -35 215 ome.model.core.OriginalFile \N 5218 10731 INSERT -35 215 ome.model.annotations.FileAnnotation \N 5218 10732 INSERT -35 265 ome.model.annotations.ImageAnnotationLink \N 5218 10733 INSERT -35 165 ome.model.containers.DatasetImageLink \N 5218 10734 INSERT -35 165 ome.model.core.Pixels \N 5218 10735 INSERT -35 169 ome.model.acquisition.DetectorSettings \N 5218 10736 INSERT -35 165 ome.model.acquisition.LightPath \N 5218 10737 INSERT -35 165 ome.model.acquisition.LightPathEmissionFilterLink \N 5218 10738 INSERT -35 165 ome.model.acquisition.LightSettings \N 5218 10739 INSERT -35 269 ome.model.core.LogicalChannel \N 5218 10740 INSERT -35 269 ome.model.core.Channel \N 5218 10741 INSERT -35 5510 ome.model.core.PlaneInfo \N 5218 10742 INSERT -35 116 ome.model.acquisition.Microscope \N 5218 10743 INSERT -35 166 ome.model.acquisition.Instrument \N 5218 10744 INSERT -35 170 ome.model.acquisition.Detector \N 5218 10745 INSERT -35 261 ome.model.acquisition.TransmittanceRange \N 5218 10746 INSERT -35 261 ome.model.acquisition.Filter \N 5218 10747 INSERT -35 262 ome.model.acquisition.TransmittanceRange \N 5218 10748 INSERT -35 262 ome.model.acquisition.Filter \N 5218 10749 INSERT -35 263 ome.model.acquisition.TransmittanceRange \N 5218 10750 INSERT -35 263 ome.model.acquisition.Filter \N 5218 10751 INSERT -35 264 ome.model.acquisition.TransmittanceRange \N 5218 10752 INSERT -35 264 ome.model.acquisition.Filter \N 5218 10753 INSERT -35 491 ome.model.acquisition.Laser \N 5218 10754 INSERT -35 492 ome.model.acquisition.Laser \N 5218 10755 INSERT -35 493 ome.model.acquisition.Laser \N 5218 10756 INSERT -35 494 ome.model.acquisition.Laser \N 5218 10757 INSERT -35 495 ome.model.acquisition.Laser \N 5218 10758 INSERT -35 496 ome.model.acquisition.Laser \N 5218 10759 INSERT -35 166 ome.model.acquisition.Objective \N 5218 10760 INSERT -35 166 ome.model.acquisition.ObjectiveSettings \N 5218 10761 INSERT -35 166 ome.model.core.Image \N 5218 10762 INSERT -35 216 ome.model.core.OriginalFile \N 5218 10763 INSERT -35 216 ome.model.annotations.FileAnnotation \N 5218 10764 INSERT -35 266 ome.model.annotations.ImageAnnotationLink \N 5218 10765 INSERT -35 166 ome.model.containers.DatasetImageLink \N 5218 10766 INSERT -35 166 ome.model.core.Pixels \N 5218 10767 INSERT -35 170 ome.model.acquisition.DetectorSettings \N 5218 10768 INSERT -35 166 ome.model.acquisition.LightPath \N 5218 10769 INSERT -35 166 ome.model.acquisition.LightPathEmissionFilterLink \N 5218 10770 INSERT -35 166 ome.model.acquisition.LightSettings \N 5218 10771 INSERT -35 270 ome.model.core.LogicalChannel \N 5218 10772 INSERT -35 270 ome.model.core.Channel \N 5218 10773 INSERT -35 5511 ome.model.core.PlaneInfo \N 5218 10774 INSERT -35 5512 ome.model.core.PlaneInfo \N 5218 10775 INSERT -35 5513 ome.model.core.PlaneInfo \N 5218 10776 INSERT -35 5514 ome.model.core.PlaneInfo \N 5218 10777 INSERT -35 5515 ome.model.core.PlaneInfo \N 5218 10778 INSERT -35 5516 ome.model.core.PlaneInfo \N 5218 10779 INSERT -35 5517 ome.model.core.PlaneInfo \N 5218 10780 INSERT -35 5518 ome.model.core.PlaneInfo \N 5218 10781 INSERT -35 5519 ome.model.core.PlaneInfo \N 5218 10782 INSERT -35 5520 ome.model.core.PlaneInfo \N 5218 10783 INSERT -35 5521 ome.model.core.PlaneInfo \N 5218 10784 INSERT -35 5522 ome.model.core.PlaneInfo \N 5218 10785 INSERT -35 5523 ome.model.core.PlaneInfo \N 5218 10786 INSERT -35 5524 ome.model.core.PlaneInfo \N 5218 10787 INSERT -35 5525 ome.model.core.PlaneInfo \N 5218 10788 INSERT -35 5526 ome.model.core.PlaneInfo \N 5218 10789 INSERT -35 5527 ome.model.core.PlaneInfo \N 5218 10790 INSERT -35 5528 ome.model.core.PlaneInfo \N 5218 10791 INSERT -35 5529 ome.model.core.PlaneInfo \N 5218 10792 INSERT -35 5530 ome.model.core.PlaneInfo \N 5218 10793 UPDATE -35 164 ome.model.core.Pixels \N 5220 10794 UPDATE -35 163 ome.model.core.Pixels \N 5221 10795 UPDATE -35 165 ome.model.core.Pixels \N 5221 10796 UPDATE -35 166 ome.model.core.Pixels \N 5221 10797 UPDATE -35 164 ome.model.core.Pixels \N 5221 10798 INSERT -35 267 ome.model.stats.StatsInfo \N 5222 10799 INSERT -35 268 ome.model.stats.StatsInfo \N 5222 10800 INSERT -35 269 ome.model.stats.StatsInfo \N 5222 10801 INSERT -35 270 ome.model.stats.StatsInfo \N 5222 10802 UPDATE -35 267 ome.model.core.Channel \N 5222 10803 UPDATE -35 269 ome.model.core.Channel \N 5222 10804 UPDATE -35 270 ome.model.core.Channel \N 5222 10805 UPDATE -35 268 ome.model.core.Channel \N 5222 10806 INSERT -35 217 ome.model.display.QuantumDef \N 5223 10807 INSERT -35 217 ome.model.display.RenderingDef \N 5223 10808 INSERT -35 325 ome.model.display.ChannelBinding \N 5223 10809 INSERT -35 218 ome.model.display.QuantumDef \N 5223 10810 INSERT -35 218 ome.model.display.RenderingDef \N 5223 10811 INSERT -35 326 ome.model.display.ChannelBinding \N 5223 10812 INSERT -35 219 ome.model.display.QuantumDef \N 5223 10813 INSERT -35 219 ome.model.display.RenderingDef \N 5223 10814 INSERT -35 327 ome.model.display.ChannelBinding \N 5223 10815 INSERT -35 220 ome.model.display.QuantumDef \N 5223 10816 INSERT -35 220 ome.model.display.RenderingDef \N 5223 10817 INSERT -35 328 ome.model.display.ChannelBinding \N 5223 10818 INSERT -35 163 ome.model.display.Thumbnail \N 5224 10819 INSERT -35 164 ome.model.display.Thumbnail \N 5224 10820 INSERT -35 165 ome.model.display.Thumbnail \N 5224 10821 INSERT -35 166 ome.model.display.Thumbnail \N 5224 10822 UPDATE -35 214 ome.model.core.OriginalFile \N 5225 10823 INSERT -35 117 ome.model.acquisition.Microscope \N 5241 10824 INSERT -35 167 ome.model.acquisition.Instrument \N 5241 10825 INSERT -35 171 ome.model.acquisition.Detector \N 5241 10826 INSERT -35 265 ome.model.acquisition.TransmittanceRange \N 5241 10827 INSERT -35 265 ome.model.acquisition.Filter \N 5241 10828 INSERT -35 266 ome.model.acquisition.TransmittanceRange \N 5241 10829 INSERT -35 266 ome.model.acquisition.Filter \N 5241 10830 INSERT -35 267 ome.model.acquisition.TransmittanceRange \N 5241 10831 INSERT -35 267 ome.model.acquisition.Filter \N 5241 10832 INSERT -35 268 ome.model.acquisition.TransmittanceRange \N 5241 10833 INSERT -35 268 ome.model.acquisition.Filter \N 5241 10834 INSERT -35 497 ome.model.acquisition.Laser \N 5241 10835 INSERT -35 498 ome.model.acquisition.Laser \N 5241 10836 INSERT -35 499 ome.model.acquisition.Laser \N 5241 10837 INSERT -35 500 ome.model.acquisition.Laser \N 5241 10838 INSERT -35 501 ome.model.acquisition.Laser \N 5241 10839 INSERT -35 502 ome.model.acquisition.Laser \N 5241 10840 INSERT -35 167 ome.model.acquisition.Objective \N 5241 10841 INSERT -35 167 ome.model.acquisition.ObjectiveSettings \N 5241 10842 INSERT -35 167 ome.model.core.Image \N 5241 10843 INSERT -35 217 ome.model.core.OriginalFile \N 5241 10844 INSERT -35 217 ome.model.annotations.FileAnnotation \N 5241 10845 INSERT -35 267 ome.model.annotations.ImageAnnotationLink \N 5241 10846 INSERT -35 167 ome.model.containers.DatasetImageLink \N 5241 10847 INSERT -35 167 ome.model.core.Pixels \N 5241 10848 INSERT -35 171 ome.model.acquisition.DetectorSettings \N 5241 10849 INSERT -35 167 ome.model.acquisition.LightPath \N 5241 10850 INSERT -35 167 ome.model.acquisition.LightPathEmissionFilterLink \N 5241 10851 INSERT -35 167 ome.model.acquisition.LightSettings \N 5241 10852 INSERT -35 271 ome.model.core.LogicalChannel \N 5241 10853 INSERT -35 271 ome.model.core.Channel \N 5241 10854 INSERT -35 5531 ome.model.core.PlaneInfo \N 5241 10855 INSERT -35 5532 ome.model.core.PlaneInfo \N 5241 10856 INSERT -35 5533 ome.model.core.PlaneInfo \N 5241 10857 INSERT -35 5534 ome.model.core.PlaneInfo \N 5241 10858 INSERT -35 5535 ome.model.core.PlaneInfo \N 5241 10859 INSERT -35 118 ome.model.acquisition.Microscope \N 5241 10860 INSERT -35 168 ome.model.acquisition.Instrument \N 5241 10861 INSERT -35 172 ome.model.acquisition.Detector \N 5241 10862 INSERT -35 269 ome.model.acquisition.TransmittanceRange \N 5241 10863 INSERT -35 269 ome.model.acquisition.Filter \N 5241 10864 INSERT -35 270 ome.model.acquisition.TransmittanceRange \N 5241 10865 INSERT -35 270 ome.model.acquisition.Filter \N 5241 10866 INSERT -35 271 ome.model.acquisition.TransmittanceRange \N 5241 10867 INSERT -35 271 ome.model.acquisition.Filter \N 5241 10868 INSERT -35 272 ome.model.acquisition.TransmittanceRange \N 5241 10869 INSERT -35 272 ome.model.acquisition.Filter \N 5241 10870 INSERT -35 503 ome.model.acquisition.Laser \N 5241 10871 INSERT -35 504 ome.model.acquisition.Laser \N 5241 10872 INSERT -35 505 ome.model.acquisition.Laser \N 5241 10873 INSERT -35 506 ome.model.acquisition.Laser \N 5241 10874 INSERT -35 507 ome.model.acquisition.Laser \N 5241 10875 INSERT -35 508 ome.model.acquisition.Laser \N 5241 10876 INSERT -35 168 ome.model.acquisition.Objective \N 5241 10877 INSERT -35 168 ome.model.acquisition.ObjectiveSettings \N 5241 10878 INSERT -35 168 ome.model.core.Image \N 5241 10879 INSERT -35 218 ome.model.core.OriginalFile \N 5241 10880 INSERT -35 218 ome.model.annotations.FileAnnotation \N 5241 10881 INSERT -35 268 ome.model.annotations.ImageAnnotationLink \N 5241 10882 INSERT -35 168 ome.model.containers.DatasetImageLink \N 5241 10883 INSERT -35 168 ome.model.core.Pixels \N 5241 10884 INSERT -35 172 ome.model.acquisition.DetectorSettings \N 5241 10885 INSERT -35 168 ome.model.acquisition.LightPath \N 5241 10886 INSERT -35 168 ome.model.acquisition.LightPathEmissionFilterLink \N 5241 10887 INSERT -35 168 ome.model.acquisition.LightSettings \N 5241 10888 INSERT -35 272 ome.model.core.LogicalChannel \N 5241 10889 INSERT -35 272 ome.model.core.Channel \N 5241 10890 INSERT -35 5536 ome.model.core.PlaneInfo \N 5241 10891 INSERT -35 5537 ome.model.core.PlaneInfo \N 5241 10892 INSERT -35 5538 ome.model.core.PlaneInfo \N 5241 10893 INSERT -35 5539 ome.model.core.PlaneInfo \N 5241 10894 INSERT -35 5540 ome.model.core.PlaneInfo \N 5241 10895 INSERT -35 5541 ome.model.core.PlaneInfo \N 5241 10896 INSERT -35 5542 ome.model.core.PlaneInfo \N 5241 10897 INSERT -35 5543 ome.model.core.PlaneInfo \N 5241 10898 INSERT -35 5544 ome.model.core.PlaneInfo \N 5241 10899 INSERT -35 5545 ome.model.core.PlaneInfo \N 5241 10900 INSERT -35 5546 ome.model.core.PlaneInfo \N 5241 10901 INSERT -35 5547 ome.model.core.PlaneInfo \N 5241 10902 INSERT -35 5548 ome.model.core.PlaneInfo \N 5241 10903 INSERT -35 5549 ome.model.core.PlaneInfo \N 5241 10904 INSERT -35 5550 ome.model.core.PlaneInfo \N 5241 10905 INSERT -35 5551 ome.model.core.PlaneInfo \N 5241 10906 INSERT -35 5552 ome.model.core.PlaneInfo \N 5241 10907 INSERT -35 5553 ome.model.core.PlaneInfo \N 5241 10908 INSERT -35 5554 ome.model.core.PlaneInfo \N 5241 10909 INSERT -35 5555 ome.model.core.PlaneInfo \N 5241 10910 INSERT -35 5 ome.model.roi.Roi \N 5241 10911 INSERT -35 9 ome.model.roi.Label \N 5241 10912 INSERT -35 10 ome.model.roi.Polygon \N 5241 10913 INSERT -35 119 ome.model.acquisition.Microscope \N 5241 10914 INSERT -35 169 ome.model.acquisition.Instrument \N 5241 10915 INSERT -35 173 ome.model.acquisition.Detector \N 5241 10916 INSERT -35 273 ome.model.acquisition.TransmittanceRange \N 5241 10917 INSERT -35 273 ome.model.acquisition.Filter \N 5241 10918 INSERT -35 274 ome.model.acquisition.TransmittanceRange \N 5241 10919 INSERT -35 274 ome.model.acquisition.Filter \N 5241 10920 INSERT -35 275 ome.model.acquisition.TransmittanceRange \N 5241 10921 INSERT -35 275 ome.model.acquisition.Filter \N 5241 10922 INSERT -35 276 ome.model.acquisition.TransmittanceRange \N 5241 10923 INSERT -35 276 ome.model.acquisition.Filter \N 5241 10924 INSERT -35 509 ome.model.acquisition.Laser \N 5241 10925 INSERT -35 510 ome.model.acquisition.Laser \N 5241 10926 INSERT -35 511 ome.model.acquisition.Laser \N 5241 10927 INSERT -35 512 ome.model.acquisition.Laser \N 5241 10928 INSERT -35 513 ome.model.acquisition.Laser \N 5241 10929 INSERT -35 514 ome.model.acquisition.Laser \N 5241 10930 INSERT -35 169 ome.model.acquisition.Objective \N 5241 10931 INSERT -35 169 ome.model.acquisition.ObjectiveSettings \N 5241 10932 INSERT -35 169 ome.model.core.Image \N 5241 10933 INSERT -35 219 ome.model.core.OriginalFile \N 5241 10934 INSERT -35 219 ome.model.annotations.FileAnnotation \N 5241 10935 INSERT -35 269 ome.model.annotations.ImageAnnotationLink \N 5241 10936 INSERT -35 169 ome.model.containers.DatasetImageLink \N 5241 10937 INSERT -35 169 ome.model.core.Pixels \N 5241 10938 INSERT -35 173 ome.model.acquisition.DetectorSettings \N 5241 10939 INSERT -35 169 ome.model.acquisition.LightPath \N 5241 10940 INSERT -35 169 ome.model.acquisition.LightPathEmissionFilterLink \N 5241 10941 INSERT -35 169 ome.model.acquisition.LightSettings \N 5241 10942 INSERT -35 273 ome.model.core.LogicalChannel \N 5241 10943 INSERT -35 273 ome.model.core.Channel \N 5241 10944 INSERT -35 5556 ome.model.core.PlaneInfo \N 5241 10945 INSERT -35 120 ome.model.acquisition.Microscope \N 5241 10946 INSERT -35 170 ome.model.acquisition.Instrument \N 5241 10947 INSERT -35 174 ome.model.acquisition.Detector \N 5241 10948 INSERT -35 277 ome.model.acquisition.TransmittanceRange \N 5241 10949 INSERT -35 277 ome.model.acquisition.Filter \N 5241 10950 INSERT -35 278 ome.model.acquisition.TransmittanceRange \N 5241 10951 INSERT -35 278 ome.model.acquisition.Filter \N 5241 10952 INSERT -35 279 ome.model.acquisition.TransmittanceRange \N 5241 10953 INSERT -35 279 ome.model.acquisition.Filter \N 5241 10954 INSERT -35 280 ome.model.acquisition.TransmittanceRange \N 5241 10955 INSERT -35 280 ome.model.acquisition.Filter \N 5241 10956 INSERT -35 515 ome.model.acquisition.Laser \N 5241 10957 INSERT -35 516 ome.model.acquisition.Laser \N 5241 10958 INSERT -35 517 ome.model.acquisition.Laser \N 5241 10959 INSERT -35 518 ome.model.acquisition.Laser \N 5241 10960 INSERT -35 519 ome.model.acquisition.Laser \N 5241 10961 INSERT -35 520 ome.model.acquisition.Laser \N 5241 10962 INSERT -35 170 ome.model.acquisition.Objective \N 5241 10963 INSERT -35 170 ome.model.acquisition.ObjectiveSettings \N 5241 10964 INSERT -35 170 ome.model.core.Image \N 5241 10965 INSERT -35 220 ome.model.core.OriginalFile \N 5241 10966 INSERT -35 220 ome.model.annotations.FileAnnotation \N 5241 10967 INSERT -35 270 ome.model.annotations.ImageAnnotationLink \N 5241 10968 INSERT -35 170 ome.model.containers.DatasetImageLink \N 5241 10969 INSERT -35 170 ome.model.core.Pixels \N 5241 10970 INSERT -35 174 ome.model.acquisition.DetectorSettings \N 5241 10971 INSERT -35 170 ome.model.acquisition.LightPath \N 5241 10972 INSERT -35 170 ome.model.acquisition.LightPathEmissionFilterLink \N 5241 10973 INSERT -35 170 ome.model.acquisition.LightSettings \N 5241 10974 INSERT -35 274 ome.model.core.LogicalChannel \N 5241 10975 INSERT -35 274 ome.model.core.Channel \N 5241 10976 INSERT -35 5557 ome.model.core.PlaneInfo \N 5241 10977 INSERT -35 5558 ome.model.core.PlaneInfo \N 5241 10978 INSERT -35 5559 ome.model.core.PlaneInfo \N 5241 10979 INSERT -35 5560 ome.model.core.PlaneInfo \N 5241 10980 INSERT -35 5561 ome.model.core.PlaneInfo \N 5241 10981 INSERT -35 5562 ome.model.core.PlaneInfo \N 5241 10982 INSERT -35 5563 ome.model.core.PlaneInfo \N 5241 10983 INSERT -35 5564 ome.model.core.PlaneInfo \N 5241 10984 INSERT -35 5565 ome.model.core.PlaneInfo \N 5241 10985 INSERT -35 5566 ome.model.core.PlaneInfo \N 5241 10986 INSERT -35 5567 ome.model.core.PlaneInfo \N 5241 10987 INSERT -35 5568 ome.model.core.PlaneInfo \N 5241 10988 INSERT -35 5569 ome.model.core.PlaneInfo \N 5241 10989 INSERT -35 5570 ome.model.core.PlaneInfo \N 5241 10990 INSERT -35 5571 ome.model.core.PlaneInfo \N 5241 10991 INSERT -35 5572 ome.model.core.PlaneInfo \N 5241 10992 INSERT -35 5573 ome.model.core.PlaneInfo \N 5241 10993 INSERT -35 5574 ome.model.core.PlaneInfo \N 5241 10994 INSERT -35 5575 ome.model.core.PlaneInfo \N 5241 10995 INSERT -35 5576 ome.model.core.PlaneInfo \N 5241 10996 UPDATE -35 168 ome.model.core.Pixels \N 5242 10997 UPDATE -35 167 ome.model.core.Pixels \N 5243 10998 UPDATE -35 169 ome.model.core.Pixels \N 5243 10999 UPDATE -35 170 ome.model.core.Pixels \N 5243 11000 UPDATE -35 168 ome.model.core.Pixels \N 5243 11001 INSERT -35 271 ome.model.stats.StatsInfo \N 5244 11002 INSERT -35 272 ome.model.stats.StatsInfo \N 5244 11003 INSERT -35 273 ome.model.stats.StatsInfo \N 5244 11004 INSERT -35 274 ome.model.stats.StatsInfo \N 5244 11005 UPDATE -35 271 ome.model.core.Channel \N 5244 11006 UPDATE -35 273 ome.model.core.Channel \N 5244 11007 UPDATE -35 274 ome.model.core.Channel \N 5244 11008 UPDATE -35 272 ome.model.core.Channel \N 5244 11009 INSERT -35 221 ome.model.display.QuantumDef \N 5245 11010 INSERT -35 221 ome.model.display.RenderingDef \N 5245 11011 INSERT -35 329 ome.model.display.ChannelBinding \N 5245 11012 INSERT -35 222 ome.model.display.QuantumDef \N 5245 11013 INSERT -35 222 ome.model.display.RenderingDef \N 5245 11014 INSERT -35 330 ome.model.display.ChannelBinding \N 5245 11015 INSERT -35 223 ome.model.display.QuantumDef \N 5245 11016 INSERT -35 223 ome.model.display.RenderingDef \N 5245 11017 INSERT -35 331 ome.model.display.ChannelBinding \N 5245 11018 INSERT -35 224 ome.model.display.QuantumDef \N 5245 11019 INSERT -35 224 ome.model.display.RenderingDef \N 5245 11020 INSERT -35 332 ome.model.display.ChannelBinding \N 5245 11021 INSERT -35 167 ome.model.display.Thumbnail \N 5246 11022 INSERT -35 168 ome.model.display.Thumbnail \N 5246 11023 INSERT -35 169 ome.model.display.Thumbnail \N 5246 11024 INSERT -35 170 ome.model.display.Thumbnail \N 5246 11025 UPDATE -35 218 ome.model.core.OriginalFile \N 5247 11026 INSERT -35 121 ome.model.acquisition.Microscope \N 5263 11027 INSERT -35 171 ome.model.acquisition.Instrument \N 5263 11028 INSERT -35 175 ome.model.acquisition.Detector \N 5263 11029 INSERT -35 281 ome.model.acquisition.TransmittanceRange \N 5263 11030 INSERT -35 281 ome.model.acquisition.Filter \N 5263 11031 INSERT -35 282 ome.model.acquisition.TransmittanceRange \N 5263 11032 INSERT -35 282 ome.model.acquisition.Filter \N 5263 11033 INSERT -35 283 ome.model.acquisition.TransmittanceRange \N 5263 11034 INSERT -35 283 ome.model.acquisition.Filter \N 5263 11035 INSERT -35 284 ome.model.acquisition.TransmittanceRange \N 5263 11036 INSERT -35 284 ome.model.acquisition.Filter \N 5263 11037 INSERT -35 521 ome.model.acquisition.Laser \N 5263 11038 INSERT -35 522 ome.model.acquisition.Laser \N 5263 11039 INSERT -35 523 ome.model.acquisition.Laser \N 5263 11040 INSERT -35 524 ome.model.acquisition.Laser \N 5263 11041 INSERT -35 525 ome.model.acquisition.Laser \N 5263 11042 INSERT -35 526 ome.model.acquisition.Laser \N 5263 11043 INSERT -35 171 ome.model.acquisition.Objective \N 5263 11044 INSERT -35 171 ome.model.acquisition.ObjectiveSettings \N 5263 11045 INSERT -35 171 ome.model.core.Image \N 5263 11046 INSERT -35 221 ome.model.core.OriginalFile \N 5263 11047 INSERT -35 221 ome.model.annotations.FileAnnotation \N 5263 11048 INSERT -35 271 ome.model.annotations.ImageAnnotationLink \N 5263 11049 INSERT -35 171 ome.model.containers.DatasetImageLink \N 5263 11050 INSERT -35 171 ome.model.core.Pixels \N 5263 11051 INSERT -35 175 ome.model.acquisition.DetectorSettings \N 5263 11052 INSERT -35 171 ome.model.acquisition.LightPath \N 5263 11053 INSERT -35 171 ome.model.acquisition.LightPathEmissionFilterLink \N 5263 11054 INSERT -35 171 ome.model.acquisition.LightSettings \N 5263 11055 INSERT -35 275 ome.model.core.LogicalChannel \N 5263 11056 INSERT -35 275 ome.model.core.Channel \N 5263 11057 INSERT -35 5577 ome.model.core.PlaneInfo \N 5263 11058 INSERT -35 5578 ome.model.core.PlaneInfo \N 5263 11059 INSERT -35 5579 ome.model.core.PlaneInfo \N 5263 11060 INSERT -35 5580 ome.model.core.PlaneInfo \N 5263 11061 INSERT -35 5581 ome.model.core.PlaneInfo \N 5263 11062 INSERT -35 122 ome.model.acquisition.Microscope \N 5263 11063 INSERT -35 172 ome.model.acquisition.Instrument \N 5263 11064 INSERT -35 176 ome.model.acquisition.Detector \N 5263 11065 INSERT -35 285 ome.model.acquisition.TransmittanceRange \N 5263 11066 INSERT -35 285 ome.model.acquisition.Filter \N 5263 11067 INSERT -35 286 ome.model.acquisition.TransmittanceRange \N 5263 11068 INSERT -35 286 ome.model.acquisition.Filter \N 5263 11069 INSERT -35 287 ome.model.acquisition.TransmittanceRange \N 5263 11070 INSERT -35 287 ome.model.acquisition.Filter \N 5263 11071 INSERT -35 288 ome.model.acquisition.TransmittanceRange \N 5263 11072 INSERT -35 288 ome.model.acquisition.Filter \N 5263 11073 INSERT -35 527 ome.model.acquisition.Laser \N 5263 11074 INSERT -35 528 ome.model.acquisition.Laser \N 5263 11075 INSERT -35 529 ome.model.acquisition.Laser \N 5263 11076 INSERT -35 530 ome.model.acquisition.Laser \N 5263 11077 INSERT -35 531 ome.model.acquisition.Laser \N 5263 11078 INSERT -35 532 ome.model.acquisition.Laser \N 5263 11079 INSERT -35 172 ome.model.acquisition.Objective \N 5263 11080 INSERT -35 172 ome.model.acquisition.ObjectiveSettings \N 5263 11081 INSERT -35 172 ome.model.core.Image \N 5263 11082 INSERT -35 222 ome.model.core.OriginalFile \N 5263 11083 INSERT -35 222 ome.model.annotations.FileAnnotation \N 5263 11084 INSERT -35 272 ome.model.annotations.ImageAnnotationLink \N 5263 11085 INSERT -35 172 ome.model.containers.DatasetImageLink \N 5263 11086 INSERT -35 172 ome.model.core.Pixels \N 5263 11087 INSERT -35 176 ome.model.acquisition.DetectorSettings \N 5263 11088 INSERT -35 172 ome.model.acquisition.LightPath \N 5263 11089 INSERT -35 172 ome.model.acquisition.LightPathEmissionFilterLink \N 5263 11090 INSERT -35 172 ome.model.acquisition.LightSettings \N 5263 11091 INSERT -35 276 ome.model.core.LogicalChannel \N 5263 11092 INSERT -35 276 ome.model.core.Channel \N 5263 11093 INSERT -35 5582 ome.model.core.PlaneInfo \N 5263 11094 INSERT -35 5583 ome.model.core.PlaneInfo \N 5263 11095 INSERT -35 5584 ome.model.core.PlaneInfo \N 5263 11096 INSERT -35 5585 ome.model.core.PlaneInfo \N 5263 11097 INSERT -35 5586 ome.model.core.PlaneInfo \N 5263 11098 INSERT -35 5587 ome.model.core.PlaneInfo \N 5263 11099 INSERT -35 5588 ome.model.core.PlaneInfo \N 5263 11100 INSERT -35 5589 ome.model.core.PlaneInfo \N 5263 11101 INSERT -35 5590 ome.model.core.PlaneInfo \N 5263 11102 INSERT -35 5591 ome.model.core.PlaneInfo \N 5263 11103 INSERT -35 5592 ome.model.core.PlaneInfo \N 5263 11104 INSERT -35 5593 ome.model.core.PlaneInfo \N 5263 11105 INSERT -35 5594 ome.model.core.PlaneInfo \N 5263 11106 INSERT -35 5595 ome.model.core.PlaneInfo \N 5263 11107 INSERT -35 5596 ome.model.core.PlaneInfo \N 5263 11108 INSERT -35 5597 ome.model.core.PlaneInfo \N 5263 11109 INSERT -35 5598 ome.model.core.PlaneInfo \N 5263 11110 INSERT -35 5599 ome.model.core.PlaneInfo \N 5263 11111 INSERT -35 5600 ome.model.core.PlaneInfo \N 5263 11112 INSERT -35 5601 ome.model.core.PlaneInfo \N 5263 11113 INSERT -35 6 ome.model.roi.Roi \N 5263 11114 INSERT -35 11 ome.model.roi.Label \N 5263 11115 INSERT -35 12 ome.model.roi.Polygon \N 5263 11116 INSERT -35 123 ome.model.acquisition.Microscope \N 5263 11117 INSERT -35 173 ome.model.acquisition.Instrument \N 5263 11118 INSERT -35 177 ome.model.acquisition.Detector \N 5263 11119 INSERT -35 289 ome.model.acquisition.TransmittanceRange \N 5263 11120 INSERT -35 289 ome.model.acquisition.Filter \N 5263 11121 INSERT -35 290 ome.model.acquisition.TransmittanceRange \N 5263 11122 INSERT -35 290 ome.model.acquisition.Filter \N 5263 11123 INSERT -35 291 ome.model.acquisition.TransmittanceRange \N 5263 11124 INSERT -35 291 ome.model.acquisition.Filter \N 5263 11125 INSERT -35 292 ome.model.acquisition.TransmittanceRange \N 5263 11126 INSERT -35 292 ome.model.acquisition.Filter \N 5263 11127 INSERT -35 533 ome.model.acquisition.Laser \N 5263 11128 INSERT -35 534 ome.model.acquisition.Laser \N 5263 11129 INSERT -35 535 ome.model.acquisition.Laser \N 5263 11130 INSERT -35 536 ome.model.acquisition.Laser \N 5263 11131 INSERT -35 537 ome.model.acquisition.Laser \N 5263 11132 INSERT -35 538 ome.model.acquisition.Laser \N 5263 11133 INSERT -35 173 ome.model.acquisition.Objective \N 5263 11134 INSERT -35 173 ome.model.acquisition.ObjectiveSettings \N 5263 11135 INSERT -35 173 ome.model.core.Image \N 5263 11136 INSERT -35 223 ome.model.core.OriginalFile \N 5263 11137 INSERT -35 223 ome.model.annotations.FileAnnotation \N 5263 11138 INSERT -35 273 ome.model.annotations.ImageAnnotationLink \N 5263 11139 INSERT -35 173 ome.model.containers.DatasetImageLink \N 5263 11140 INSERT -35 173 ome.model.core.Pixels \N 5263 11141 INSERT -35 177 ome.model.acquisition.DetectorSettings \N 5263 11142 INSERT -35 173 ome.model.acquisition.LightPath \N 5263 11143 INSERT -35 173 ome.model.acquisition.LightPathEmissionFilterLink \N 5263 11144 INSERT -35 173 ome.model.acquisition.LightSettings \N 5263 11145 INSERT -35 277 ome.model.core.LogicalChannel \N 5263 11146 INSERT -35 277 ome.model.core.Channel \N 5263 11147 INSERT -35 5602 ome.model.core.PlaneInfo \N 5263 11148 INSERT -35 124 ome.model.acquisition.Microscope \N 5263 11149 INSERT -35 174 ome.model.acquisition.Instrument \N 5263 11150 INSERT -35 178 ome.model.acquisition.Detector \N 5263 11151 INSERT -35 293 ome.model.acquisition.TransmittanceRange \N 5263 11152 INSERT -35 293 ome.model.acquisition.Filter \N 5263 11153 INSERT -35 294 ome.model.acquisition.TransmittanceRange \N 5263 11154 INSERT -35 294 ome.model.acquisition.Filter \N 5263 11155 INSERT -35 295 ome.model.acquisition.TransmittanceRange \N 5263 11156 INSERT -35 295 ome.model.acquisition.Filter \N 5263 11157 INSERT -35 296 ome.model.acquisition.TransmittanceRange \N 5263 11158 INSERT -35 296 ome.model.acquisition.Filter \N 5263 11159 INSERT -35 539 ome.model.acquisition.Laser \N 5263 11160 INSERT -35 540 ome.model.acquisition.Laser \N 5263 11161 INSERT -35 541 ome.model.acquisition.Laser \N 5263 11162 INSERT -35 542 ome.model.acquisition.Laser \N 5263 11163 INSERT -35 543 ome.model.acquisition.Laser \N 5263 11164 INSERT -35 544 ome.model.acquisition.Laser \N 5263 11165 INSERT -35 174 ome.model.acquisition.Objective \N 5263 11166 INSERT -35 174 ome.model.acquisition.ObjectiveSettings \N 5263 11167 INSERT -35 174 ome.model.core.Image \N 5263 11168 INSERT -35 224 ome.model.core.OriginalFile \N 5263 11169 INSERT -35 224 ome.model.annotations.FileAnnotation \N 5263 11170 INSERT -35 274 ome.model.annotations.ImageAnnotationLink \N 5263 11171 INSERT -35 174 ome.model.containers.DatasetImageLink \N 5263 11172 INSERT -35 174 ome.model.core.Pixels \N 5263 11173 INSERT -35 178 ome.model.acquisition.DetectorSettings \N 5263 11174 INSERT -35 174 ome.model.acquisition.LightPath \N 5263 11175 INSERT -35 174 ome.model.acquisition.LightPathEmissionFilterLink \N 5263 11176 INSERT -35 174 ome.model.acquisition.LightSettings \N 5263 11177 INSERT -35 278 ome.model.core.LogicalChannel \N 5263 11178 INSERT -35 278 ome.model.core.Channel \N 5263 11179 INSERT -35 5603 ome.model.core.PlaneInfo \N 5263 11180 INSERT -35 5604 ome.model.core.PlaneInfo \N 5263 11181 INSERT -35 5605 ome.model.core.PlaneInfo \N 5263 11182 INSERT -35 5606 ome.model.core.PlaneInfo \N 5263 11183 INSERT -35 5607 ome.model.core.PlaneInfo \N 5263 11184 INSERT -35 5608 ome.model.core.PlaneInfo \N 5263 11185 INSERT -35 5609 ome.model.core.PlaneInfo \N 5263 11186 INSERT -35 5610 ome.model.core.PlaneInfo \N 5263 11187 INSERT -35 5611 ome.model.core.PlaneInfo \N 5263 11188 INSERT -35 5612 ome.model.core.PlaneInfo \N 5263 11189 INSERT -35 5613 ome.model.core.PlaneInfo \N 5263 11190 INSERT -35 5614 ome.model.core.PlaneInfo \N 5263 11191 INSERT -35 5615 ome.model.core.PlaneInfo \N 5263 11192 INSERT -35 5616 ome.model.core.PlaneInfo \N 5263 11193 INSERT -35 5617 ome.model.core.PlaneInfo \N 5263 11194 INSERT -35 5618 ome.model.core.PlaneInfo \N 5263 11195 INSERT -35 5619 ome.model.core.PlaneInfo \N 5263 11196 INSERT -35 5620 ome.model.core.PlaneInfo \N 5263 11197 INSERT -35 5621 ome.model.core.PlaneInfo \N 5263 11198 INSERT -35 5622 ome.model.core.PlaneInfo \N 5263 11199 UPDATE -35 172 ome.model.core.Pixels \N 5264 11200 UPDATE -35 171 ome.model.core.Pixels \N 5265 11201 UPDATE -35 173 ome.model.core.Pixels \N 5265 11202 UPDATE -35 174 ome.model.core.Pixels \N 5265 11203 UPDATE -35 172 ome.model.core.Pixels \N 5265 11204 INSERT -35 275 ome.model.stats.StatsInfo \N 5266 11205 INSERT -35 276 ome.model.stats.StatsInfo \N 5266 11206 INSERT -35 277 ome.model.stats.StatsInfo \N 5266 11207 INSERT -35 278 ome.model.stats.StatsInfo \N 5266 11208 UPDATE -35 275 ome.model.core.Channel \N 5266 11209 UPDATE -35 277 ome.model.core.Channel \N 5266 11210 UPDATE -35 278 ome.model.core.Channel \N 5266 11211 UPDATE -35 276 ome.model.core.Channel \N 5266 11212 INSERT -35 225 ome.model.display.QuantumDef \N 5267 11213 INSERT -35 225 ome.model.display.RenderingDef \N 5267 11214 INSERT -35 333 ome.model.display.ChannelBinding \N 5267 11215 INSERT -35 226 ome.model.display.QuantumDef \N 5267 11216 INSERT -35 226 ome.model.display.RenderingDef \N 5267 11217 INSERT -35 334 ome.model.display.ChannelBinding \N 5267 11218 INSERT -35 227 ome.model.display.QuantumDef \N 5267 11219 INSERT -35 227 ome.model.display.RenderingDef \N 5267 11220 INSERT -35 335 ome.model.display.ChannelBinding \N 5267 11221 INSERT -35 228 ome.model.display.QuantumDef \N 5267 11222 INSERT -35 228 ome.model.display.RenderingDef \N 5267 11223 INSERT -35 336 ome.model.display.ChannelBinding \N 5267 11224 INSERT -35 171 ome.model.display.Thumbnail \N 5268 11225 INSERT -35 172 ome.model.display.Thumbnail \N 5268 11226 INSERT -35 173 ome.model.display.Thumbnail \N 5268 11227 INSERT -35 174 ome.model.display.Thumbnail \N 5268 11228 UPDATE -35 222 ome.model.core.OriginalFile \N 5269 11229 INSERT -35 125 ome.model.acquisition.Microscope \N 5285 11230 INSERT -35 175 ome.model.acquisition.Instrument \N 5285 11231 INSERT -35 179 ome.model.acquisition.Detector \N 5285 11232 INSERT -35 297 ome.model.acquisition.TransmittanceRange \N 5285 11233 INSERT -35 297 ome.model.acquisition.Filter \N 5285 11234 INSERT -35 298 ome.model.acquisition.TransmittanceRange \N 5285 11235 INSERT -35 298 ome.model.acquisition.Filter \N 5285 11236 INSERT -35 299 ome.model.acquisition.TransmittanceRange \N 5285 11237 INSERT -35 299 ome.model.acquisition.Filter \N 5285 11238 INSERT -35 300 ome.model.acquisition.TransmittanceRange \N 5285 11239 INSERT -35 300 ome.model.acquisition.Filter \N 5285 11240 INSERT -35 545 ome.model.acquisition.Laser \N 5285 11241 INSERT -35 546 ome.model.acquisition.Laser \N 5285 11242 INSERT -35 547 ome.model.acquisition.Laser \N 5285 11243 INSERT -35 548 ome.model.acquisition.Laser \N 5285 11244 INSERT -35 549 ome.model.acquisition.Laser \N 5285 11245 INSERT -35 550 ome.model.acquisition.Laser \N 5285 11246 INSERT -35 175 ome.model.acquisition.Objective \N 5285 11247 INSERT -35 175 ome.model.acquisition.ObjectiveSettings \N 5285 11248 INSERT -35 175 ome.model.core.Image \N 5285 11249 INSERT -35 225 ome.model.core.OriginalFile \N 5285 11250 INSERT -35 225 ome.model.annotations.FileAnnotation \N 5285 11251 INSERT -35 275 ome.model.annotations.ImageAnnotationLink \N 5285 11252 INSERT -35 175 ome.model.containers.DatasetImageLink \N 5285 11253 INSERT -35 175 ome.model.core.Pixels \N 5285 11254 INSERT -35 179 ome.model.acquisition.DetectorSettings \N 5285 11255 INSERT -35 175 ome.model.acquisition.LightPath \N 5285 11256 INSERT -35 175 ome.model.acquisition.LightPathEmissionFilterLink \N 5285 11257 INSERT -35 175 ome.model.acquisition.LightSettings \N 5285 11258 INSERT -35 279 ome.model.core.LogicalChannel \N 5285 11259 INSERT -35 279 ome.model.core.Channel \N 5285 11260 INSERT -35 5623 ome.model.core.PlaneInfo \N 5285 11261 INSERT -35 5624 ome.model.core.PlaneInfo \N 5285 11262 INSERT -35 5625 ome.model.core.PlaneInfo \N 5285 11263 INSERT -35 5626 ome.model.core.PlaneInfo \N 5285 11264 INSERT -35 5627 ome.model.core.PlaneInfo \N 5285 11265 INSERT -35 126 ome.model.acquisition.Microscope \N 5285 11266 INSERT -35 176 ome.model.acquisition.Instrument \N 5285 11267 INSERT -35 180 ome.model.acquisition.Detector \N 5285 11268 INSERT -35 301 ome.model.acquisition.TransmittanceRange \N 5285 11269 INSERT -35 301 ome.model.acquisition.Filter \N 5285 11270 INSERT -35 302 ome.model.acquisition.TransmittanceRange \N 5285 11271 INSERT -35 302 ome.model.acquisition.Filter \N 5285 11272 INSERT -35 303 ome.model.acquisition.TransmittanceRange \N 5285 11273 INSERT -35 303 ome.model.acquisition.Filter \N 5285 11274 INSERT -35 304 ome.model.acquisition.TransmittanceRange \N 5285 11275 INSERT -35 304 ome.model.acquisition.Filter \N 5285 11276 INSERT -35 551 ome.model.acquisition.Laser \N 5285 11277 INSERT -35 552 ome.model.acquisition.Laser \N 5285 11278 INSERT -35 553 ome.model.acquisition.Laser \N 5285 11279 INSERT -35 554 ome.model.acquisition.Laser \N 5285 11280 INSERT -35 555 ome.model.acquisition.Laser \N 5285 11281 INSERT -35 556 ome.model.acquisition.Laser \N 5285 11282 INSERT -35 176 ome.model.acquisition.Objective \N 5285 11283 INSERT -35 176 ome.model.acquisition.ObjectiveSettings \N 5285 11284 INSERT -35 176 ome.model.core.Image \N 5285 11285 INSERT -35 226 ome.model.core.OriginalFile \N 5285 11286 INSERT -35 226 ome.model.annotations.FileAnnotation \N 5285 11287 INSERT -35 276 ome.model.annotations.ImageAnnotationLink \N 5285 11288 INSERT -35 176 ome.model.containers.DatasetImageLink \N 5285 11289 INSERT -35 176 ome.model.core.Pixels \N 5285 11290 INSERT -35 180 ome.model.acquisition.DetectorSettings \N 5285 11291 INSERT -35 176 ome.model.acquisition.LightPath \N 5285 11292 INSERT -35 176 ome.model.acquisition.LightPathEmissionFilterLink \N 5285 11293 INSERT -35 176 ome.model.acquisition.LightSettings \N 5285 11294 INSERT -35 280 ome.model.core.LogicalChannel \N 5285 11295 INSERT -35 280 ome.model.core.Channel \N 5285 11296 INSERT -35 5628 ome.model.core.PlaneInfo \N 5285 11297 INSERT -35 5629 ome.model.core.PlaneInfo \N 5285 11298 INSERT -35 5630 ome.model.core.PlaneInfo \N 5285 11299 INSERT -35 5631 ome.model.core.PlaneInfo \N 5285 11300 INSERT -35 5632 ome.model.core.PlaneInfo \N 5285 11301 INSERT -35 5633 ome.model.core.PlaneInfo \N 5285 11302 INSERT -35 5634 ome.model.core.PlaneInfo \N 5285 11303 INSERT -35 5635 ome.model.core.PlaneInfo \N 5285 11304 INSERT -35 5636 ome.model.core.PlaneInfo \N 5285 11305 INSERT -35 5637 ome.model.core.PlaneInfo \N 5285 11306 INSERT -35 5638 ome.model.core.PlaneInfo \N 5285 11307 INSERT -35 5639 ome.model.core.PlaneInfo \N 5285 11308 INSERT -35 5640 ome.model.core.PlaneInfo \N 5285 11309 INSERT -35 5641 ome.model.core.PlaneInfo \N 5285 11310 INSERT -35 5642 ome.model.core.PlaneInfo \N 5285 11311 INSERT -35 5643 ome.model.core.PlaneInfo \N 5285 11312 INSERT -35 5644 ome.model.core.PlaneInfo \N 5285 11313 INSERT -35 5645 ome.model.core.PlaneInfo \N 5285 11314 INSERT -35 5646 ome.model.core.PlaneInfo \N 5285 11315 INSERT -35 5647 ome.model.core.PlaneInfo \N 5285 11316 INSERT -35 7 ome.model.roi.Roi \N 5285 11317 INSERT -35 13 ome.model.roi.Label \N 5285 11318 INSERT -35 14 ome.model.roi.Polygon \N 5285 11319 INSERT -35 127 ome.model.acquisition.Microscope \N 5285 11320 INSERT -35 177 ome.model.acquisition.Instrument \N 5285 11321 INSERT -35 181 ome.model.acquisition.Detector \N 5285 11322 INSERT -35 305 ome.model.acquisition.TransmittanceRange \N 5285 11323 INSERT -35 305 ome.model.acquisition.Filter \N 5285 11324 INSERT -35 306 ome.model.acquisition.TransmittanceRange \N 5285 11325 INSERT -35 306 ome.model.acquisition.Filter \N 5285 11326 INSERT -35 307 ome.model.acquisition.TransmittanceRange \N 5285 11327 INSERT -35 307 ome.model.acquisition.Filter \N 5285 11328 INSERT -35 308 ome.model.acquisition.TransmittanceRange \N 5285 11329 INSERT -35 308 ome.model.acquisition.Filter \N 5285 11330 INSERT -35 557 ome.model.acquisition.Laser \N 5285 11331 INSERT -35 558 ome.model.acquisition.Laser \N 5285 11332 INSERT -35 559 ome.model.acquisition.Laser \N 5285 11333 INSERT -35 560 ome.model.acquisition.Laser \N 5285 11334 INSERT -35 561 ome.model.acquisition.Laser \N 5285 11335 INSERT -35 562 ome.model.acquisition.Laser \N 5285 11336 INSERT -35 177 ome.model.acquisition.Objective \N 5285 11337 INSERT -35 177 ome.model.acquisition.ObjectiveSettings \N 5285 11338 INSERT -35 177 ome.model.core.Image \N 5285 11339 INSERT -35 227 ome.model.core.OriginalFile \N 5285 11340 INSERT -35 227 ome.model.annotations.FileAnnotation \N 5285 11341 INSERT -35 277 ome.model.annotations.ImageAnnotationLink \N 5285 11342 INSERT -35 177 ome.model.containers.DatasetImageLink \N 5285 11343 INSERT -35 177 ome.model.core.Pixels \N 5285 11344 INSERT -35 181 ome.model.acquisition.DetectorSettings \N 5285 11345 INSERT -35 177 ome.model.acquisition.LightPath \N 5285 11346 INSERT -35 177 ome.model.acquisition.LightPathEmissionFilterLink \N 5285 11347 INSERT -35 177 ome.model.acquisition.LightSettings \N 5285 11348 INSERT -35 281 ome.model.core.LogicalChannel \N 5285 11349 INSERT -35 281 ome.model.core.Channel \N 5285 11350 INSERT -35 5648 ome.model.core.PlaneInfo \N 5285 11351 INSERT -35 128 ome.model.acquisition.Microscope \N 5285 11352 INSERT -35 178 ome.model.acquisition.Instrument \N 5285 11353 INSERT -35 182 ome.model.acquisition.Detector \N 5285 11354 INSERT -35 309 ome.model.acquisition.TransmittanceRange \N 5285 11355 INSERT -35 309 ome.model.acquisition.Filter \N 5285 11356 INSERT -35 310 ome.model.acquisition.TransmittanceRange \N 5285 11357 INSERT -35 310 ome.model.acquisition.Filter \N 5285 11358 INSERT -35 311 ome.model.acquisition.TransmittanceRange \N 5285 11359 INSERT -35 311 ome.model.acquisition.Filter \N 5285 11360 INSERT -35 312 ome.model.acquisition.TransmittanceRange \N 5285 11361 INSERT -35 312 ome.model.acquisition.Filter \N 5285 11362 INSERT -35 563 ome.model.acquisition.Laser \N 5285 11363 INSERT -35 564 ome.model.acquisition.Laser \N 5285 11364 INSERT -35 565 ome.model.acquisition.Laser \N 5285 11365 INSERT -35 566 ome.model.acquisition.Laser \N 5285 11366 INSERT -35 567 ome.model.acquisition.Laser \N 5285 11367 INSERT -35 568 ome.model.acquisition.Laser \N 5285 11368 INSERT -35 178 ome.model.acquisition.Objective \N 5285 11369 INSERT -35 178 ome.model.acquisition.ObjectiveSettings \N 5285 11370 INSERT -35 178 ome.model.core.Image \N 5285 11371 INSERT -35 228 ome.model.core.OriginalFile \N 5285 11372 INSERT -35 228 ome.model.annotations.FileAnnotation \N 5285 11373 INSERT -35 278 ome.model.annotations.ImageAnnotationLink \N 5285 11374 INSERT -35 178 ome.model.containers.DatasetImageLink \N 5285 11375 INSERT -35 178 ome.model.core.Pixels \N 5285 11376 INSERT -35 182 ome.model.acquisition.DetectorSettings \N 5285 11377 INSERT -35 178 ome.model.acquisition.LightPath \N 5285 11378 INSERT -35 178 ome.model.acquisition.LightPathEmissionFilterLink \N 5285 11379 INSERT -35 178 ome.model.acquisition.LightSettings \N 5285 11380 INSERT -35 282 ome.model.core.LogicalChannel \N 5285 11381 INSERT -35 282 ome.model.core.Channel \N 5285 11382 INSERT -35 5649 ome.model.core.PlaneInfo \N 5285 11383 INSERT -35 5650 ome.model.core.PlaneInfo \N 5285 11384 INSERT -35 5651 ome.model.core.PlaneInfo \N 5285 11385 INSERT -35 5652 ome.model.core.PlaneInfo \N 5285 11386 INSERT -35 5653 ome.model.core.PlaneInfo \N 5285 11387 INSERT -35 5654 ome.model.core.PlaneInfo \N 5285 11388 INSERT -35 5655 ome.model.core.PlaneInfo \N 5285 11389 INSERT -35 5656 ome.model.core.PlaneInfo \N 5285 11390 INSERT -35 5657 ome.model.core.PlaneInfo \N 5285 11391 INSERT -35 5658 ome.model.core.PlaneInfo \N 5285 11392 INSERT -35 5659 ome.model.core.PlaneInfo \N 5285 11393 INSERT -35 5660 ome.model.core.PlaneInfo \N 5285 11394 INSERT -35 5661 ome.model.core.PlaneInfo \N 5285 11395 INSERT -35 5662 ome.model.core.PlaneInfo \N 5285 11396 INSERT -35 5663 ome.model.core.PlaneInfo \N 5285 11397 INSERT -35 5664 ome.model.core.PlaneInfo \N 5285 11398 INSERT -35 5665 ome.model.core.PlaneInfo \N 5285 11399 INSERT -35 5666 ome.model.core.PlaneInfo \N 5285 11400 INSERT -35 5667 ome.model.core.PlaneInfo \N 5285 11401 INSERT -35 5668 ome.model.core.PlaneInfo \N 5285 11402 UPDATE -35 176 ome.model.core.Pixels \N 5286 11403 UPDATE -35 175 ome.model.core.Pixels \N 5287 11404 UPDATE -35 177 ome.model.core.Pixels \N 5287 11405 UPDATE -35 178 ome.model.core.Pixels \N 5287 11406 UPDATE -35 176 ome.model.core.Pixels \N 5287 11407 INSERT -35 279 ome.model.stats.StatsInfo \N 5288 11408 INSERT -35 280 ome.model.stats.StatsInfo \N 5288 11409 INSERT -35 281 ome.model.stats.StatsInfo \N 5288 11410 INSERT -35 282 ome.model.stats.StatsInfo \N 5288 11411 UPDATE -35 279 ome.model.core.Channel \N 5288 11412 UPDATE -35 281 ome.model.core.Channel \N 5288 11413 UPDATE -35 282 ome.model.core.Channel \N 5288 11414 UPDATE -35 280 ome.model.core.Channel \N 5288 11415 INSERT -35 229 ome.model.display.QuantumDef \N 5289 11416 INSERT -35 229 ome.model.display.RenderingDef \N 5289 11417 INSERT -35 337 ome.model.display.ChannelBinding \N 5289 11418 INSERT -35 230 ome.model.display.QuantumDef \N 5289 11419 INSERT -35 230 ome.model.display.RenderingDef \N 5289 11420 INSERT -35 338 ome.model.display.ChannelBinding \N 5289 11421 INSERT -35 231 ome.model.display.QuantumDef \N 5289 11422 INSERT -35 231 ome.model.display.RenderingDef \N 5289 11423 INSERT -35 339 ome.model.display.ChannelBinding \N 5289 11424 INSERT -35 232 ome.model.display.QuantumDef \N 5289 11425 INSERT -35 232 ome.model.display.RenderingDef \N 5289 11426 INSERT -35 340 ome.model.display.ChannelBinding \N 5289 11427 INSERT -35 175 ome.model.display.Thumbnail \N 5290 11428 INSERT -35 176 ome.model.display.Thumbnail \N 5290 11429 INSERT -35 177 ome.model.display.Thumbnail \N 5290 11430 INSERT -35 178 ome.model.display.Thumbnail \N 5290 11431 UPDATE -35 226 ome.model.core.OriginalFile \N 5291 11432 INSERT -35 129 ome.model.acquisition.Microscope \N 5307 11433 INSERT -35 179 ome.model.acquisition.Instrument \N 5307 11434 INSERT -35 183 ome.model.acquisition.Detector \N 5307 11435 INSERT -35 184 ome.model.acquisition.Detector \N 5307 11436 INSERT -35 313 ome.model.acquisition.TransmittanceRange \N 5307 11437 INSERT -35 313 ome.model.acquisition.Filter \N 5307 11438 INSERT -35 314 ome.model.acquisition.TransmittanceRange \N 5307 11439 INSERT -35 314 ome.model.acquisition.Filter \N 5307 11440 INSERT -35 315 ome.model.acquisition.TransmittanceRange \N 5307 11441 INSERT -35 315 ome.model.acquisition.Filter \N 5307 11442 INSERT -35 316 ome.model.acquisition.TransmittanceRange \N 5307 11443 INSERT -35 316 ome.model.acquisition.Filter \N 5307 11444 INSERT -35 569 ome.model.acquisition.Laser \N 5307 11445 INSERT -35 570 ome.model.acquisition.Laser \N 5307 11446 INSERT -35 571 ome.model.acquisition.Laser \N 5307 11447 INSERT -35 572 ome.model.acquisition.Laser \N 5307 11448 INSERT -35 573 ome.model.acquisition.Laser \N 5307 11449 INSERT -35 574 ome.model.acquisition.Laser \N 5307 11450 INSERT -35 179 ome.model.acquisition.Objective \N 5307 11451 INSERT -35 179 ome.model.acquisition.ObjectiveSettings \N 5307 11452 INSERT -35 179 ome.model.core.Image \N 5307 11453 INSERT -35 229 ome.model.core.OriginalFile \N 5307 11454 INSERT -35 229 ome.model.annotations.FileAnnotation \N 5307 11455 INSERT -35 279 ome.model.annotations.ImageAnnotationLink \N 5307 11456 INSERT -35 179 ome.model.containers.DatasetImageLink \N 5307 11457 INSERT -35 179 ome.model.core.Pixels \N 5307 11458 INSERT -35 183 ome.model.acquisition.DetectorSettings \N 5307 11459 INSERT -35 179 ome.model.acquisition.LightPath \N 5307 11460 INSERT -35 179 ome.model.acquisition.LightPathEmissionFilterLink \N 5307 11461 INSERT -35 179 ome.model.acquisition.LightSettings \N 5307 11462 INSERT -35 283 ome.model.core.LogicalChannel \N 5307 11463 INSERT -35 283 ome.model.core.Channel \N 5307 11464 INSERT -35 184 ome.model.acquisition.DetectorSettings \N 5307 11465 INSERT -35 284 ome.model.core.LogicalChannel \N 5307 11466 INSERT -35 284 ome.model.core.Channel \N 5307 11467 INSERT -35 5669 ome.model.core.PlaneInfo \N 5307 11468 INSERT -35 5670 ome.model.core.PlaneInfo \N 5307 11469 INSERT -35 5671 ome.model.core.PlaneInfo \N 5307 11470 INSERT -35 5672 ome.model.core.PlaneInfo \N 5307 11471 INSERT -35 5673 ome.model.core.PlaneInfo \N 5307 11472 INSERT -35 5674 ome.model.core.PlaneInfo \N 5307 11473 INSERT -35 5675 ome.model.core.PlaneInfo \N 5307 11474 INSERT -35 5676 ome.model.core.PlaneInfo \N 5307 11475 INSERT -35 5677 ome.model.core.PlaneInfo \N 5307 11476 INSERT -35 5678 ome.model.core.PlaneInfo \N 5307 11477 INSERT -35 130 ome.model.acquisition.Microscope \N 5307 11478 INSERT -35 180 ome.model.acquisition.Instrument \N 5307 11479 INSERT -35 185 ome.model.acquisition.Detector \N 5307 11480 INSERT -35 186 ome.model.acquisition.Detector \N 5307 11481 INSERT -35 317 ome.model.acquisition.TransmittanceRange \N 5307 11482 INSERT -35 317 ome.model.acquisition.Filter \N 5307 11483 INSERT -35 318 ome.model.acquisition.TransmittanceRange \N 5307 11484 INSERT -35 318 ome.model.acquisition.Filter \N 5307 11485 INSERT -35 319 ome.model.acquisition.TransmittanceRange \N 5307 11486 INSERT -35 319 ome.model.acquisition.Filter \N 5307 11487 INSERT -35 320 ome.model.acquisition.TransmittanceRange \N 5307 11488 INSERT -35 320 ome.model.acquisition.Filter \N 5307 11489 INSERT -35 575 ome.model.acquisition.Laser \N 5307 11490 INSERT -35 576 ome.model.acquisition.Laser \N 5307 11491 INSERT -35 577 ome.model.acquisition.Laser \N 5307 11492 INSERT -35 578 ome.model.acquisition.Laser \N 5307 11493 INSERT -35 579 ome.model.acquisition.Laser \N 5307 11494 INSERT -35 580 ome.model.acquisition.Laser \N 5307 11495 INSERT -35 180 ome.model.acquisition.Objective \N 5307 11496 INSERT -35 180 ome.model.acquisition.ObjectiveSettings \N 5307 11497 INSERT -35 180 ome.model.core.Image \N 5307 11498 INSERT -35 230 ome.model.core.OriginalFile \N 5307 11499 INSERT -35 230 ome.model.annotations.FileAnnotation \N 5307 11500 INSERT -35 280 ome.model.annotations.ImageAnnotationLink \N 5307 11501 INSERT -35 180 ome.model.containers.DatasetImageLink \N 5307 11502 INSERT -35 180 ome.model.core.Pixels \N 5307 11503 INSERT -35 185 ome.model.acquisition.DetectorSettings \N 5307 11504 INSERT -35 180 ome.model.acquisition.LightPath \N 5307 11505 INSERT -35 180 ome.model.acquisition.LightPathEmissionFilterLink \N 5307 11506 INSERT -35 180 ome.model.acquisition.LightSettings \N 5307 11507 INSERT -35 285 ome.model.core.LogicalChannel \N 5307 11508 INSERT -35 285 ome.model.core.Channel \N 5307 11509 INSERT -35 186 ome.model.acquisition.DetectorSettings \N 5307 11510 INSERT -35 286 ome.model.core.LogicalChannel \N 5307 11511 INSERT -35 286 ome.model.core.Channel \N 5307 11512 INSERT -35 5679 ome.model.core.PlaneInfo \N 5307 11513 INSERT -35 5680 ome.model.core.PlaneInfo \N 5307 11514 INSERT -35 5681 ome.model.core.PlaneInfo \N 5307 11515 INSERT -35 5682 ome.model.core.PlaneInfo \N 5307 11516 INSERT -35 5683 ome.model.core.PlaneInfo \N 5307 11517 INSERT -35 5684 ome.model.core.PlaneInfo \N 5307 11518 INSERT -35 5685 ome.model.core.PlaneInfo \N 5307 11519 INSERT -35 5686 ome.model.core.PlaneInfo \N 5307 11520 INSERT -35 5687 ome.model.core.PlaneInfo \N 5307 11521 INSERT -35 5688 ome.model.core.PlaneInfo \N 5307 11522 INSERT -35 5689 ome.model.core.PlaneInfo \N 5307 11523 INSERT -35 5690 ome.model.core.PlaneInfo \N 5307 11524 INSERT -35 5691 ome.model.core.PlaneInfo \N 5307 11525 INSERT -35 5692 ome.model.core.PlaneInfo \N 5307 11526 INSERT -35 5693 ome.model.core.PlaneInfo \N 5307 11527 INSERT -35 5694 ome.model.core.PlaneInfo \N 5307 11528 INSERT -35 5695 ome.model.core.PlaneInfo \N 5307 11529 INSERT -35 5696 ome.model.core.PlaneInfo \N 5307 11530 INSERT -35 5697 ome.model.core.PlaneInfo \N 5307 11531 INSERT -35 5698 ome.model.core.PlaneInfo \N 5307 11532 INSERT -35 5699 ome.model.core.PlaneInfo \N 5307 11533 INSERT -35 5700 ome.model.core.PlaneInfo \N 5307 11534 INSERT -35 5701 ome.model.core.PlaneInfo \N 5307 11535 INSERT -35 5702 ome.model.core.PlaneInfo \N 5307 11536 INSERT -35 5703 ome.model.core.PlaneInfo \N 5307 11537 INSERT -35 5704 ome.model.core.PlaneInfo \N 5307 11538 INSERT -35 5705 ome.model.core.PlaneInfo \N 5307 11539 INSERT -35 5706 ome.model.core.PlaneInfo \N 5307 11540 INSERT -35 5707 ome.model.core.PlaneInfo \N 5307 11541 INSERT -35 5708 ome.model.core.PlaneInfo \N 5307 11542 INSERT -35 5709 ome.model.core.PlaneInfo \N 5307 11543 INSERT -35 5710 ome.model.core.PlaneInfo \N 5307 11544 INSERT -35 5711 ome.model.core.PlaneInfo \N 5307 11545 INSERT -35 5712 ome.model.core.PlaneInfo \N 5307 11546 INSERT -35 5713 ome.model.core.PlaneInfo \N 5307 11547 INSERT -35 5714 ome.model.core.PlaneInfo \N 5307 11548 INSERT -35 5715 ome.model.core.PlaneInfo \N 5307 11549 INSERT -35 5716 ome.model.core.PlaneInfo \N 5307 11550 INSERT -35 5717 ome.model.core.PlaneInfo \N 5307 11551 INSERT -35 5718 ome.model.core.PlaneInfo \N 5307 11552 INSERT -35 8 ome.model.roi.Roi \N 5307 11553 INSERT -35 15 ome.model.roi.Label \N 5307 11554 INSERT -35 16 ome.model.roi.Polygon \N 5307 11555 INSERT -35 131 ome.model.acquisition.Microscope \N 5307 11556 INSERT -35 181 ome.model.acquisition.Instrument \N 5307 11557 INSERT -35 187 ome.model.acquisition.Detector \N 5307 11558 INSERT -35 188 ome.model.acquisition.Detector \N 5307 11559 INSERT -35 321 ome.model.acquisition.TransmittanceRange \N 5307 11560 INSERT -35 321 ome.model.acquisition.Filter \N 5307 11561 INSERT -35 322 ome.model.acquisition.TransmittanceRange \N 5307 11562 INSERT -35 322 ome.model.acquisition.Filter \N 5307 11563 INSERT -35 323 ome.model.acquisition.TransmittanceRange \N 5307 11564 INSERT -35 323 ome.model.acquisition.Filter \N 5307 11565 INSERT -35 324 ome.model.acquisition.TransmittanceRange \N 5307 11566 INSERT -35 324 ome.model.acquisition.Filter \N 5307 11567 INSERT -35 581 ome.model.acquisition.Laser \N 5307 11568 INSERT -35 582 ome.model.acquisition.Laser \N 5307 11569 INSERT -35 583 ome.model.acquisition.Laser \N 5307 11570 INSERT -35 584 ome.model.acquisition.Laser \N 5307 11571 INSERT -35 585 ome.model.acquisition.Laser \N 5307 11572 INSERT -35 586 ome.model.acquisition.Laser \N 5307 11573 INSERT -35 181 ome.model.acquisition.Objective \N 5307 11574 INSERT -35 181 ome.model.acquisition.ObjectiveSettings \N 5307 11575 INSERT -35 181 ome.model.core.Image \N 5307 11576 INSERT -35 231 ome.model.core.OriginalFile \N 5307 11577 INSERT -35 231 ome.model.annotations.FileAnnotation \N 5307 11578 INSERT -35 281 ome.model.annotations.ImageAnnotationLink \N 5307 11579 INSERT -35 181 ome.model.containers.DatasetImageLink \N 5307 11580 INSERT -35 181 ome.model.core.Pixels \N 5307 11581 INSERT -35 187 ome.model.acquisition.DetectorSettings \N 5307 11582 INSERT -35 181 ome.model.acquisition.LightPath \N 5307 11583 INSERT -35 181 ome.model.acquisition.LightPathEmissionFilterLink \N 5307 11584 INSERT -35 181 ome.model.acquisition.LightSettings \N 5307 11585 INSERT -35 287 ome.model.core.LogicalChannel \N 5307 11586 INSERT -35 287 ome.model.core.Channel \N 5307 11587 INSERT -35 188 ome.model.acquisition.DetectorSettings \N 5307 11588 INSERT -35 288 ome.model.core.LogicalChannel \N 5307 11589 INSERT -35 288 ome.model.core.Channel \N 5307 11590 INSERT -35 5719 ome.model.core.PlaneInfo \N 5307 11591 INSERT -35 5720 ome.model.core.PlaneInfo \N 5307 11592 INSERT -35 132 ome.model.acquisition.Microscope \N 5307 11593 INSERT -35 182 ome.model.acquisition.Instrument \N 5307 11594 INSERT -35 189 ome.model.acquisition.Detector \N 5307 11595 INSERT -35 190 ome.model.acquisition.Detector \N 5307 11596 INSERT -35 325 ome.model.acquisition.TransmittanceRange \N 5307 11597 INSERT -35 325 ome.model.acquisition.Filter \N 5307 11598 INSERT -35 326 ome.model.acquisition.TransmittanceRange \N 5307 11599 INSERT -35 326 ome.model.acquisition.Filter \N 5307 11600 INSERT -35 327 ome.model.acquisition.TransmittanceRange \N 5307 11601 INSERT -35 327 ome.model.acquisition.Filter \N 5307 11602 INSERT -35 328 ome.model.acquisition.TransmittanceRange \N 5307 11603 INSERT -35 328 ome.model.acquisition.Filter \N 5307 11604 INSERT -35 587 ome.model.acquisition.Laser \N 5307 11605 INSERT -35 588 ome.model.acquisition.Laser \N 5307 11606 INSERT -35 589 ome.model.acquisition.Laser \N 5307 11607 INSERT -35 590 ome.model.acquisition.Laser \N 5307 11608 INSERT -35 591 ome.model.acquisition.Laser \N 5307 11609 INSERT -35 592 ome.model.acquisition.Laser \N 5307 11610 INSERT -35 182 ome.model.acquisition.Objective \N 5307 11611 INSERT -35 182 ome.model.acquisition.ObjectiveSettings \N 5307 11612 INSERT -35 182 ome.model.core.Image \N 5307 11613 INSERT -35 232 ome.model.core.OriginalFile \N 5307 11614 INSERT -35 232 ome.model.annotations.FileAnnotation \N 5307 11615 INSERT -35 282 ome.model.annotations.ImageAnnotationLink \N 5307 11616 INSERT -35 182 ome.model.containers.DatasetImageLink \N 5307 11617 INSERT -35 182 ome.model.core.Pixels \N 5307 11618 INSERT -35 189 ome.model.acquisition.DetectorSettings \N 5307 11619 INSERT -35 182 ome.model.acquisition.LightPath \N 5307 11620 INSERT -35 182 ome.model.acquisition.LightPathEmissionFilterLink \N 5307 11621 INSERT -35 182 ome.model.acquisition.LightSettings \N 5307 11622 INSERT -35 289 ome.model.core.LogicalChannel \N 5307 11623 INSERT -35 289 ome.model.core.Channel \N 5307 11624 INSERT -35 190 ome.model.acquisition.DetectorSettings \N 5307 11625 INSERT -35 290 ome.model.core.LogicalChannel \N 5307 11626 INSERT -35 290 ome.model.core.Channel \N 5307 11627 INSERT -35 5721 ome.model.core.PlaneInfo \N 5307 11628 INSERT -35 5722 ome.model.core.PlaneInfo \N 5307 11629 INSERT -35 5723 ome.model.core.PlaneInfo \N 5307 11630 INSERT -35 5724 ome.model.core.PlaneInfo \N 5307 11631 INSERT -35 5725 ome.model.core.PlaneInfo \N 5307 11632 INSERT -35 5726 ome.model.core.PlaneInfo \N 5307 11633 INSERT -35 5727 ome.model.core.PlaneInfo \N 5307 11634 INSERT -35 5728 ome.model.core.PlaneInfo \N 5307 11635 INSERT -35 5729 ome.model.core.PlaneInfo \N 5307 11636 INSERT -35 5730 ome.model.core.PlaneInfo \N 5307 11637 INSERT -35 5731 ome.model.core.PlaneInfo \N 5307 11638 INSERT -35 5732 ome.model.core.PlaneInfo \N 5307 11639 INSERT -35 5733 ome.model.core.PlaneInfo \N 5307 11640 INSERT -35 5734 ome.model.core.PlaneInfo \N 5307 11641 INSERT -35 5735 ome.model.core.PlaneInfo \N 5307 11642 INSERT -35 5736 ome.model.core.PlaneInfo \N 5307 11643 INSERT -35 5737 ome.model.core.PlaneInfo \N 5307 11644 INSERT -35 5738 ome.model.core.PlaneInfo \N 5307 11645 INSERT -35 5739 ome.model.core.PlaneInfo \N 5307 11646 INSERT -35 5740 ome.model.core.PlaneInfo \N 5307 11647 INSERT -35 5741 ome.model.core.PlaneInfo \N 5307 11648 INSERT -35 5742 ome.model.core.PlaneInfo \N 5307 11649 INSERT -35 5743 ome.model.core.PlaneInfo \N 5307 11650 INSERT -35 5744 ome.model.core.PlaneInfo \N 5307 11651 INSERT -35 5745 ome.model.core.PlaneInfo \N 5307 11652 INSERT -35 5746 ome.model.core.PlaneInfo \N 5307 11653 INSERT -35 5747 ome.model.core.PlaneInfo \N 5307 11654 INSERT -35 5748 ome.model.core.PlaneInfo \N 5307 11655 INSERT -35 5749 ome.model.core.PlaneInfo \N 5307 11656 INSERT -35 5750 ome.model.core.PlaneInfo \N 5307 11657 INSERT -35 5751 ome.model.core.PlaneInfo \N 5307 11658 INSERT -35 5752 ome.model.core.PlaneInfo \N 5307 11659 INSERT -35 5753 ome.model.core.PlaneInfo \N 5307 11660 INSERT -35 5754 ome.model.core.PlaneInfo \N 5307 11661 INSERT -35 5755 ome.model.core.PlaneInfo \N 5307 11662 INSERT -35 5756 ome.model.core.PlaneInfo \N 5307 11663 INSERT -35 5757 ome.model.core.PlaneInfo \N 5307 11664 INSERT -35 5758 ome.model.core.PlaneInfo \N 5307 11665 INSERT -35 5759 ome.model.core.PlaneInfo \N 5307 11666 INSERT -35 5760 ome.model.core.PlaneInfo \N 5307 11667 UPDATE -35 180 ome.model.core.Pixels \N 5308 11668 UPDATE -35 179 ome.model.core.Pixels \N 5309 11669 UPDATE -35 181 ome.model.core.Pixels \N 5309 11670 UPDATE -35 182 ome.model.core.Pixels \N 5309 11671 UPDATE -35 180 ome.model.core.Pixels \N 5309 11672 INSERT -35 283 ome.model.stats.StatsInfo \N 5310 11673 INSERT -35 284 ome.model.stats.StatsInfo \N 5310 11674 INSERT -35 285 ome.model.stats.StatsInfo \N 5310 11675 INSERT -35 286 ome.model.stats.StatsInfo \N 5310 11676 INSERT -35 287 ome.model.stats.StatsInfo \N 5310 11677 INSERT -35 288 ome.model.stats.StatsInfo \N 5310 11678 INSERT -35 289 ome.model.stats.StatsInfo \N 5310 11679 INSERT -35 290 ome.model.stats.StatsInfo \N 5310 11680 UPDATE -35 283 ome.model.core.Channel \N 5310 11681 UPDATE -35 284 ome.model.core.Channel \N 5310 11682 UPDATE -35 287 ome.model.core.Channel \N 5310 11683 UPDATE -35 288 ome.model.core.Channel \N 5310 11684 UPDATE -35 289 ome.model.core.Channel \N 5310 11685 UPDATE -35 290 ome.model.core.Channel \N 5310 11686 UPDATE -35 285 ome.model.core.Channel \N 5310 11687 UPDATE -35 286 ome.model.core.Channel \N 5310 11688 INSERT -35 233 ome.model.display.QuantumDef \N 5311 11689 INSERT -35 233 ome.model.display.RenderingDef \N 5311 11690 INSERT -35 341 ome.model.display.ChannelBinding \N 5311 11691 INSERT -35 342 ome.model.display.ChannelBinding \N 5311 11692 INSERT -35 234 ome.model.display.QuantumDef \N 5311 11693 INSERT -35 234 ome.model.display.RenderingDef \N 5311 11694 INSERT -35 343 ome.model.display.ChannelBinding \N 5311 11695 INSERT -35 344 ome.model.display.ChannelBinding \N 5311 11696 INSERT -35 235 ome.model.display.QuantumDef \N 5311 11697 INSERT -35 235 ome.model.display.RenderingDef \N 5311 11698 INSERT -35 345 ome.model.display.ChannelBinding \N 5311 11699 INSERT -35 346 ome.model.display.ChannelBinding \N 5311 11700 INSERT -35 236 ome.model.display.QuantumDef \N 5311 11701 INSERT -35 236 ome.model.display.RenderingDef \N 5311 11702 INSERT -35 347 ome.model.display.ChannelBinding \N 5311 11703 INSERT -35 348 ome.model.display.ChannelBinding \N 5311 11704 INSERT -35 179 ome.model.display.Thumbnail \N 5312 11705 INSERT -35 180 ome.model.display.Thumbnail \N 5312 11706 INSERT -35 181 ome.model.display.Thumbnail \N 5312 11707 INSERT -35 182 ome.model.display.Thumbnail \N 5312 11708 UPDATE -35 230 ome.model.core.OriginalFile \N 5313 11709 INSERT -35 133 ome.model.acquisition.Microscope \N 5329 11710 INSERT -35 183 ome.model.acquisition.Instrument \N 5329 11711 INSERT -35 191 ome.model.acquisition.Detector \N 5329 11712 INSERT -35 192 ome.model.acquisition.Detector \N 5329 11713 INSERT -35 329 ome.model.acquisition.TransmittanceRange \N 5329 11714 INSERT -35 329 ome.model.acquisition.Filter \N 5329 11715 INSERT -35 330 ome.model.acquisition.TransmittanceRange \N 5329 11716 INSERT -35 330 ome.model.acquisition.Filter \N 5329 11717 INSERT -35 331 ome.model.acquisition.TransmittanceRange \N 5329 11718 INSERT -35 331 ome.model.acquisition.Filter \N 5329 11719 INSERT -35 332 ome.model.acquisition.TransmittanceRange \N 5329 11720 INSERT -35 332 ome.model.acquisition.Filter \N 5329 11721 INSERT -35 593 ome.model.acquisition.Laser \N 5329 11722 INSERT -35 594 ome.model.acquisition.Laser \N 5329 11723 INSERT -35 595 ome.model.acquisition.Laser \N 5329 11724 INSERT -35 596 ome.model.acquisition.Laser \N 5329 11725 INSERT -35 597 ome.model.acquisition.Laser \N 5329 11726 INSERT -35 598 ome.model.acquisition.Laser \N 5329 11727 INSERT -35 183 ome.model.acquisition.Objective \N 5329 11728 INSERT -35 183 ome.model.acquisition.ObjectiveSettings \N 5329 11729 INSERT -35 183 ome.model.core.Image \N 5329 11730 INSERT -35 233 ome.model.core.OriginalFile \N 5329 11731 INSERT -35 233 ome.model.annotations.FileAnnotation \N 5329 11732 INSERT -35 283 ome.model.annotations.ImageAnnotationLink \N 5329 11733 INSERT -35 183 ome.model.containers.DatasetImageLink \N 5329 11734 INSERT -35 183 ome.model.core.Pixels \N 5329 11735 INSERT -35 191 ome.model.acquisition.DetectorSettings \N 5329 11736 INSERT -35 183 ome.model.acquisition.LightPath \N 5329 11737 INSERT -35 183 ome.model.acquisition.LightPathEmissionFilterLink \N 5329 11738 INSERT -35 183 ome.model.acquisition.LightSettings \N 5329 11739 INSERT -35 291 ome.model.core.LogicalChannel \N 5329 11740 INSERT -35 291 ome.model.core.Channel \N 5329 11741 INSERT -35 192 ome.model.acquisition.DetectorSettings \N 5329 11742 INSERT -35 292 ome.model.core.LogicalChannel \N 5329 11743 INSERT -35 292 ome.model.core.Channel \N 5329 11744 INSERT -35 5761 ome.model.core.PlaneInfo \N 5329 11745 INSERT -35 5762 ome.model.core.PlaneInfo \N 5329 11746 INSERT -35 5763 ome.model.core.PlaneInfo \N 5329 11747 INSERT -35 5764 ome.model.core.PlaneInfo \N 5329 11748 INSERT -35 5765 ome.model.core.PlaneInfo \N 5329 11749 INSERT -35 5766 ome.model.core.PlaneInfo \N 5329 11750 INSERT -35 5767 ome.model.core.PlaneInfo \N 5329 11751 INSERT -35 5768 ome.model.core.PlaneInfo \N 5329 11752 INSERT -35 5769 ome.model.core.PlaneInfo \N 5329 11753 INSERT -35 5770 ome.model.core.PlaneInfo \N 5329 11754 INSERT -35 134 ome.model.acquisition.Microscope \N 5329 11755 INSERT -35 184 ome.model.acquisition.Instrument \N 5329 11756 INSERT -35 193 ome.model.acquisition.Detector \N 5329 11757 INSERT -35 194 ome.model.acquisition.Detector \N 5329 11758 INSERT -35 333 ome.model.acquisition.TransmittanceRange \N 5329 11759 INSERT -35 333 ome.model.acquisition.Filter \N 5329 11760 INSERT -35 334 ome.model.acquisition.TransmittanceRange \N 5329 11761 INSERT -35 334 ome.model.acquisition.Filter \N 5329 11762 INSERT -35 335 ome.model.acquisition.TransmittanceRange \N 5329 11763 INSERT -35 335 ome.model.acquisition.Filter \N 5329 11764 INSERT -35 336 ome.model.acquisition.TransmittanceRange \N 5329 11765 INSERT -35 336 ome.model.acquisition.Filter \N 5329 11766 INSERT -35 599 ome.model.acquisition.Laser \N 5329 11767 INSERT -35 600 ome.model.acquisition.Laser \N 5329 11768 INSERT -35 601 ome.model.acquisition.Laser \N 5329 11769 INSERT -35 602 ome.model.acquisition.Laser \N 5329 11770 INSERT -35 603 ome.model.acquisition.Laser \N 5329 11771 INSERT -35 604 ome.model.acquisition.Laser \N 5329 11772 INSERT -35 184 ome.model.acquisition.Objective \N 5329 11773 INSERT -35 184 ome.model.acquisition.ObjectiveSettings \N 5329 11774 INSERT -35 184 ome.model.core.Image \N 5329 11775 INSERT -35 234 ome.model.core.OriginalFile \N 5329 11776 INSERT -35 234 ome.model.annotations.FileAnnotation \N 5329 11777 INSERT -35 284 ome.model.annotations.ImageAnnotationLink \N 5329 11778 INSERT -35 184 ome.model.containers.DatasetImageLink \N 5329 11779 INSERT -35 184 ome.model.core.Pixels \N 5329 11780 INSERT -35 193 ome.model.acquisition.DetectorSettings \N 5329 11781 INSERT -35 184 ome.model.acquisition.LightPath \N 5329 11782 INSERT -35 184 ome.model.acquisition.LightPathEmissionFilterLink \N 5329 11783 INSERT -35 184 ome.model.acquisition.LightSettings \N 5329 11784 INSERT -35 293 ome.model.core.LogicalChannel \N 5329 11785 INSERT -35 293 ome.model.core.Channel \N 5329 11786 INSERT -35 194 ome.model.acquisition.DetectorSettings \N 5329 11787 INSERT -35 294 ome.model.core.LogicalChannel \N 5329 11788 INSERT -35 294 ome.model.core.Channel \N 5329 11789 INSERT -35 5771 ome.model.core.PlaneInfo \N 5329 11790 INSERT -35 5772 ome.model.core.PlaneInfo \N 5329 11791 INSERT -35 5773 ome.model.core.PlaneInfo \N 5329 11792 INSERT -35 5774 ome.model.core.PlaneInfo \N 5329 11793 INSERT -35 5775 ome.model.core.PlaneInfo \N 5329 11794 INSERT -35 5776 ome.model.core.PlaneInfo \N 5329 11795 INSERT -35 5777 ome.model.core.PlaneInfo \N 5329 11796 INSERT -35 5778 ome.model.core.PlaneInfo \N 5329 11797 INSERT -35 5779 ome.model.core.PlaneInfo \N 5329 11798 INSERT -35 5780 ome.model.core.PlaneInfo \N 5329 11799 INSERT -35 5781 ome.model.core.PlaneInfo \N 5329 11800 INSERT -35 5782 ome.model.core.PlaneInfo \N 5329 11801 INSERT -35 5783 ome.model.core.PlaneInfo \N 5329 11802 INSERT -35 5784 ome.model.core.PlaneInfo \N 5329 11803 INSERT -35 5785 ome.model.core.PlaneInfo \N 5329 11804 INSERT -35 5786 ome.model.core.PlaneInfo \N 5329 11805 INSERT -35 5787 ome.model.core.PlaneInfo \N 5329 11806 INSERT -35 5788 ome.model.core.PlaneInfo \N 5329 11807 INSERT -35 5789 ome.model.core.PlaneInfo \N 5329 11808 INSERT -35 5790 ome.model.core.PlaneInfo \N 5329 11809 INSERT -35 5791 ome.model.core.PlaneInfo \N 5329 11810 INSERT -35 5792 ome.model.core.PlaneInfo \N 5329 11811 INSERT -35 5793 ome.model.core.PlaneInfo \N 5329 11812 INSERT -35 5794 ome.model.core.PlaneInfo \N 5329 11813 INSERT -35 5795 ome.model.core.PlaneInfo \N 5329 11814 INSERT -35 5796 ome.model.core.PlaneInfo \N 5329 11815 INSERT -35 5797 ome.model.core.PlaneInfo \N 5329 11816 INSERT -35 5798 ome.model.core.PlaneInfo \N 5329 11817 INSERT -35 5799 ome.model.core.PlaneInfo \N 5329 11818 INSERT -35 5800 ome.model.core.PlaneInfo \N 5329 11819 INSERT -35 5801 ome.model.core.PlaneInfo \N 5329 11820 INSERT -35 5802 ome.model.core.PlaneInfo \N 5329 11821 INSERT -35 5803 ome.model.core.PlaneInfo \N 5329 11822 INSERT -35 5804 ome.model.core.PlaneInfo \N 5329 11823 INSERT -35 5805 ome.model.core.PlaneInfo \N 5329 11824 INSERT -35 5806 ome.model.core.PlaneInfo \N 5329 11825 INSERT -35 5807 ome.model.core.PlaneInfo \N 5329 11826 INSERT -35 5808 ome.model.core.PlaneInfo \N 5329 11827 INSERT -35 5809 ome.model.core.PlaneInfo \N 5329 11828 INSERT -35 5810 ome.model.core.PlaneInfo \N 5329 11829 INSERT -35 9 ome.model.roi.Roi \N 5329 11830 INSERT -35 17 ome.model.roi.Label \N 5329 11831 INSERT -35 18 ome.model.roi.Polygon \N 5329 11832 INSERT -35 135 ome.model.acquisition.Microscope \N 5329 11833 INSERT -35 185 ome.model.acquisition.Instrument \N 5329 11834 INSERT -35 195 ome.model.acquisition.Detector \N 5329 11835 INSERT -35 196 ome.model.acquisition.Detector \N 5329 11836 INSERT -35 337 ome.model.acquisition.TransmittanceRange \N 5329 11837 INSERT -35 337 ome.model.acquisition.Filter \N 5329 11838 INSERT -35 338 ome.model.acquisition.TransmittanceRange \N 5329 11839 INSERT -35 338 ome.model.acquisition.Filter \N 5329 11840 INSERT -35 339 ome.model.acquisition.TransmittanceRange \N 5329 11841 INSERT -35 339 ome.model.acquisition.Filter \N 5329 11842 INSERT -35 340 ome.model.acquisition.TransmittanceRange \N 5329 11843 INSERT -35 340 ome.model.acquisition.Filter \N 5329 11844 INSERT -35 605 ome.model.acquisition.Laser \N 5329 11845 INSERT -35 606 ome.model.acquisition.Laser \N 5329 11846 INSERT -35 607 ome.model.acquisition.Laser \N 5329 11847 INSERT -35 608 ome.model.acquisition.Laser \N 5329 11848 INSERT -35 609 ome.model.acquisition.Laser \N 5329 11849 INSERT -35 610 ome.model.acquisition.Laser \N 5329 11850 INSERT -35 185 ome.model.acquisition.Objective \N 5329 11851 INSERT -35 185 ome.model.acquisition.ObjectiveSettings \N 5329 11852 INSERT -35 185 ome.model.core.Image \N 5329 11853 INSERT -35 235 ome.model.core.OriginalFile \N 5329 11854 INSERT -35 235 ome.model.annotations.FileAnnotation \N 5329 11855 INSERT -35 285 ome.model.annotations.ImageAnnotationLink \N 5329 11856 INSERT -35 185 ome.model.containers.DatasetImageLink \N 5329 11857 INSERT -35 185 ome.model.core.Pixels \N 5329 11858 INSERT -35 195 ome.model.acquisition.DetectorSettings \N 5329 11859 INSERT -35 185 ome.model.acquisition.LightPath \N 5329 11860 INSERT -35 185 ome.model.acquisition.LightPathEmissionFilterLink \N 5329 11861 INSERT -35 185 ome.model.acquisition.LightSettings \N 5329 11862 INSERT -35 295 ome.model.core.LogicalChannel \N 5329 11863 INSERT -35 295 ome.model.core.Channel \N 5329 11864 INSERT -35 196 ome.model.acquisition.DetectorSettings \N 5329 11865 INSERT -35 296 ome.model.core.LogicalChannel \N 5329 11866 INSERT -35 296 ome.model.core.Channel \N 5329 11867 INSERT -35 5811 ome.model.core.PlaneInfo \N 5329 11868 INSERT -35 5812 ome.model.core.PlaneInfo \N 5329 11869 INSERT -35 136 ome.model.acquisition.Microscope \N 5329 11870 INSERT -35 186 ome.model.acquisition.Instrument \N 5329 11871 INSERT -35 197 ome.model.acquisition.Detector \N 5329 11872 INSERT -35 198 ome.model.acquisition.Detector \N 5329 11873 INSERT -35 341 ome.model.acquisition.TransmittanceRange \N 5329 11874 INSERT -35 341 ome.model.acquisition.Filter \N 5329 11875 INSERT -35 342 ome.model.acquisition.TransmittanceRange \N 5329 11876 INSERT -35 342 ome.model.acquisition.Filter \N 5329 11957 INSERT -35 240 ome.model.display.RenderingDef \N 5375 11877 INSERT -35 343 ome.model.acquisition.TransmittanceRange \N 5329 11878 INSERT -35 343 ome.model.acquisition.Filter \N 5329 11879 INSERT -35 344 ome.model.acquisition.TransmittanceRange \N 5329 11880 INSERT -35 344 ome.model.acquisition.Filter \N 5329 11881 INSERT -35 611 ome.model.acquisition.Laser \N 5329 11882 INSERT -35 612 ome.model.acquisition.Laser \N 5329 11883 INSERT -35 613 ome.model.acquisition.Laser \N 5329 11884 INSERT -35 614 ome.model.acquisition.Laser \N 5329 11885 INSERT -35 615 ome.model.acquisition.Laser \N 5329 11886 INSERT -35 616 ome.model.acquisition.Laser \N 5329 11887 INSERT -35 186 ome.model.acquisition.Objective \N 5329 11888 INSERT -35 186 ome.model.acquisition.ObjectiveSettings \N 5329 11889 INSERT -35 186 ome.model.core.Image \N 5329 11890 INSERT -35 236 ome.model.core.OriginalFile \N 5329 11891 INSERT -35 236 ome.model.annotations.FileAnnotation \N 5329 11892 INSERT -35 286 ome.model.annotations.ImageAnnotationLink \N 5329 11893 INSERT -35 186 ome.model.containers.DatasetImageLink \N 5329 11894 INSERT -35 186 ome.model.core.Pixels \N 5329 11895 INSERT -35 197 ome.model.acquisition.DetectorSettings \N 5329 11896 INSERT -35 186 ome.model.acquisition.LightPath \N 5329 11897 INSERT -35 186 ome.model.acquisition.LightPathEmissionFilterLink \N 5329 11898 INSERT -35 186 ome.model.acquisition.LightSettings \N 5329 11899 INSERT -35 297 ome.model.core.LogicalChannel \N 5329 11900 INSERT -35 297 ome.model.core.Channel \N 5329 11901 INSERT -35 198 ome.model.acquisition.DetectorSettings \N 5329 11902 INSERT -35 298 ome.model.core.LogicalChannel \N 5329 11903 INSERT -35 298 ome.model.core.Channel \N 5329 11904 INSERT -35 5813 ome.model.core.PlaneInfo \N 5329 11905 INSERT -35 5814 ome.model.core.PlaneInfo \N 5329 11906 INSERT -35 5815 ome.model.core.PlaneInfo \N 5329 11907 INSERT -35 5816 ome.model.core.PlaneInfo \N 5329 11908 INSERT -35 5817 ome.model.core.PlaneInfo \N 5329 11909 INSERT -35 5818 ome.model.core.PlaneInfo \N 5329 11910 INSERT -35 5819 ome.model.core.PlaneInfo \N 5329 11911 INSERT -35 5820 ome.model.core.PlaneInfo \N 5329 11912 INSERT -35 5821 ome.model.core.PlaneInfo \N 5329 11913 INSERT -35 5822 ome.model.core.PlaneInfo \N 5329 11914 INSERT -35 5823 ome.model.core.PlaneInfo \N 5329 11915 INSERT -35 5824 ome.model.core.PlaneInfo \N 5329 11916 INSERT -35 5825 ome.model.core.PlaneInfo \N 5329 11917 INSERT -35 5826 ome.model.core.PlaneInfo \N 5329 11918 INSERT -35 5827 ome.model.core.PlaneInfo \N 5329 11919 INSERT -35 5828 ome.model.core.PlaneInfo \N 5329 11920 INSERT -35 5829 ome.model.core.PlaneInfo \N 5329 11921 INSERT -35 5830 ome.model.core.PlaneInfo \N 5329 11922 INSERT -35 5831 ome.model.core.PlaneInfo \N 5329 11923 INSERT -35 5832 ome.model.core.PlaneInfo \N 5329 11924 INSERT -35 5833 ome.model.core.PlaneInfo \N 5329 11925 INSERT -35 5834 ome.model.core.PlaneInfo \N 5329 11926 INSERT -35 5835 ome.model.core.PlaneInfo \N 5329 11927 INSERT -35 5836 ome.model.core.PlaneInfo \N 5329 11928 INSERT -35 5837 ome.model.core.PlaneInfo \N 5329 11929 INSERT -35 5838 ome.model.core.PlaneInfo \N 5329 11930 INSERT -35 5839 ome.model.core.PlaneInfo \N 5329 11931 INSERT -35 5840 ome.model.core.PlaneInfo \N 5329 11932 INSERT -35 5841 ome.model.core.PlaneInfo \N 5329 11933 INSERT -35 5842 ome.model.core.PlaneInfo \N 5329 11934 INSERT -35 5843 ome.model.core.PlaneInfo \N 5329 11935 INSERT -35 5844 ome.model.core.PlaneInfo \N 5329 11936 INSERT -35 5845 ome.model.core.PlaneInfo \N 5329 11937 INSERT -35 5846 ome.model.core.PlaneInfo \N 5329 11938 INSERT -35 5847 ome.model.core.PlaneInfo \N 5329 11939 INSERT -35 5848 ome.model.core.PlaneInfo \N 5329 11940 INSERT -35 5849 ome.model.core.PlaneInfo \N 5329 11941 INSERT -35 5850 ome.model.core.PlaneInfo \N 5329 11942 INSERT -35 5851 ome.model.core.PlaneInfo \N 5329 11943 INSERT -35 5852 ome.model.core.PlaneInfo \N 5329 11944 INSERT -35 237 ome.model.display.QuantumDef \N 5362 11945 INSERT -35 237 ome.model.display.RenderingDef \N 5362 11946 INSERT -35 349 ome.model.display.ChannelBinding \N 5362 11947 INSERT -35 350 ome.model.display.ChannelBinding \N 5362 11948 INSERT -35 238 ome.model.display.QuantumDef \N 5367 11949 INSERT -35 238 ome.model.display.RenderingDef \N 5367 11950 INSERT -35 351 ome.model.display.ChannelBinding \N 5367 11951 INSERT -35 352 ome.model.display.ChannelBinding \N 5367 11952 INSERT -35 239 ome.model.display.QuantumDef \N 5369 11953 INSERT -35 239 ome.model.display.RenderingDef \N 5369 11954 INSERT -35 353 ome.model.display.ChannelBinding \N 5369 11955 INSERT -35 354 ome.model.display.ChannelBinding \N 5369 11956 INSERT -35 240 ome.model.display.QuantumDef \N 5375 11958 INSERT -35 355 ome.model.display.ChannelBinding \N 5375 11959 INSERT -35 356 ome.model.display.ChannelBinding \N 5375 11961 UPDATE -35 183 ome.model.core.Pixels \N 5377 11962 UPDATE -35 185 ome.model.core.Pixels \N 5377 11963 UPDATE -35 186 ome.model.core.Pixels \N 5377 11964 UPDATE -35 184 ome.model.core.Pixels \N 5377 11960 UPDATE -35 184 ome.model.core.Pixels \N 5373 11965 INSERT -35 291 ome.model.stats.StatsInfo \N 5378 11966 INSERT -35 292 ome.model.stats.StatsInfo \N 5378 11967 INSERT -35 293 ome.model.stats.StatsInfo \N 5378 11968 INSERT -35 294 ome.model.stats.StatsInfo \N 5378 11969 INSERT -35 295 ome.model.stats.StatsInfo \N 5378 11970 INSERT -35 296 ome.model.stats.StatsInfo \N 5378 11971 INSERT -35 297 ome.model.stats.StatsInfo \N 5378 11972 INSERT -35 298 ome.model.stats.StatsInfo \N 5378 11973 UPDATE -35 291 ome.model.core.Channel \N 5378 11974 UPDATE -35 292 ome.model.core.Channel \N 5378 11975 UPDATE -35 295 ome.model.core.Channel \N 5378 11976 UPDATE -35 296 ome.model.core.Channel \N 5378 11977 UPDATE -35 297 ome.model.core.Channel \N 5378 11978 UPDATE -35 298 ome.model.core.Channel \N 5378 11979 UPDATE -35 293 ome.model.core.Channel \N 5378 11980 UPDATE -35 294 ome.model.core.Channel \N 5378 11981 UPDATE -35 237 ome.model.display.RenderingDef \N 5379 11982 UPDATE -35 349 ome.model.display.ChannelBinding \N 5379 11983 UPDATE -35 350 ome.model.display.ChannelBinding \N 5379 11984 UPDATE -35 238 ome.model.display.RenderingDef \N 5379 11985 UPDATE -35 351 ome.model.display.ChannelBinding \N 5379 11986 UPDATE -35 352 ome.model.display.ChannelBinding \N 5379 11987 UPDATE -35 239 ome.model.display.RenderingDef \N 5379 11988 UPDATE -35 353 ome.model.display.ChannelBinding \N 5379 11989 UPDATE -35 354 ome.model.display.ChannelBinding \N 5379 11990 UPDATE -35 240 ome.model.display.RenderingDef \N 5379 11991 UPDATE -35 356 ome.model.display.ChannelBinding \N 5379 11992 INSERT -35 183 ome.model.display.Thumbnail \N 5380 11993 INSERT -35 184 ome.model.display.Thumbnail \N 5380 11994 INSERT -35 185 ome.model.display.Thumbnail \N 5380 11995 INSERT -35 186 ome.model.display.Thumbnail \N 5380 11996 UPDATE -35 234 ome.model.core.OriginalFile \N 5381 11997 INSERT -35 137 ome.model.acquisition.Microscope \N 5397 11998 INSERT -35 187 ome.model.acquisition.Instrument \N 5397 11999 INSERT -35 199 ome.model.acquisition.Detector \N 5397 12000 INSERT -35 200 ome.model.acquisition.Detector \N 5397 12001 INSERT -35 345 ome.model.acquisition.TransmittanceRange \N 5397 12002 INSERT -35 345 ome.model.acquisition.Filter \N 5397 12003 INSERT -35 346 ome.model.acquisition.TransmittanceRange \N 5397 12004 INSERT -35 346 ome.model.acquisition.Filter \N 5397 12005 INSERT -35 347 ome.model.acquisition.TransmittanceRange \N 5397 12006 INSERT -35 347 ome.model.acquisition.Filter \N 5397 12007 INSERT -35 348 ome.model.acquisition.TransmittanceRange \N 5397 12008 INSERT -35 348 ome.model.acquisition.Filter \N 5397 12009 INSERT -35 617 ome.model.acquisition.Laser \N 5397 12010 INSERT -35 618 ome.model.acquisition.Laser \N 5397 12011 INSERT -35 619 ome.model.acquisition.Laser \N 5397 12012 INSERT -35 620 ome.model.acquisition.Laser \N 5397 12013 INSERT -35 621 ome.model.acquisition.Laser \N 5397 12014 INSERT -35 622 ome.model.acquisition.Laser \N 5397 12015 INSERT -35 187 ome.model.acquisition.Objective \N 5397 12016 INSERT -35 187 ome.model.acquisition.ObjectiveSettings \N 5397 12017 INSERT -35 187 ome.model.core.Image \N 5397 12018 INSERT -35 237 ome.model.core.OriginalFile \N 5397 12019 INSERT -35 237 ome.model.annotations.FileAnnotation \N 5397 12020 INSERT -35 287 ome.model.annotations.ImageAnnotationLink \N 5397 12021 INSERT -35 187 ome.model.containers.DatasetImageLink \N 5397 12022 INSERT -35 187 ome.model.core.Pixels \N 5397 12023 INSERT -35 199 ome.model.acquisition.DetectorSettings \N 5397 12024 INSERT -35 187 ome.model.acquisition.LightPath \N 5397 12025 INSERT -35 187 ome.model.acquisition.LightPathEmissionFilterLink \N 5397 12026 INSERT -35 187 ome.model.acquisition.LightSettings \N 5397 12027 INSERT -35 299 ome.model.core.LogicalChannel \N 5397 12028 INSERT -35 299 ome.model.core.Channel \N 5397 12029 INSERT -35 200 ome.model.acquisition.DetectorSettings \N 5397 12030 INSERT -35 300 ome.model.core.LogicalChannel \N 5397 12031 INSERT -35 300 ome.model.core.Channel \N 5397 12032 INSERT -35 5853 ome.model.core.PlaneInfo \N 5397 12033 INSERT -35 5854 ome.model.core.PlaneInfo \N 5397 12034 INSERT -35 5855 ome.model.core.PlaneInfo \N 5397 12035 INSERT -35 5856 ome.model.core.PlaneInfo \N 5397 12036 INSERT -35 5857 ome.model.core.PlaneInfo \N 5397 12037 INSERT -35 5858 ome.model.core.PlaneInfo \N 5397 12038 INSERT -35 5859 ome.model.core.PlaneInfo \N 5397 12039 INSERT -35 5860 ome.model.core.PlaneInfo \N 5397 12040 INSERT -35 5861 ome.model.core.PlaneInfo \N 5397 12041 INSERT -35 5862 ome.model.core.PlaneInfo \N 5397 12042 INSERT -35 138 ome.model.acquisition.Microscope \N 5397 12043 INSERT -35 188 ome.model.acquisition.Instrument \N 5397 12044 INSERT -35 201 ome.model.acquisition.Detector \N 5397 12045 INSERT -35 202 ome.model.acquisition.Detector \N 5397 12046 INSERT -35 349 ome.model.acquisition.TransmittanceRange \N 5397 12047 INSERT -35 349 ome.model.acquisition.Filter \N 5397 12048 INSERT -35 350 ome.model.acquisition.TransmittanceRange \N 5397 12049 INSERT -35 350 ome.model.acquisition.Filter \N 5397 12050 INSERT -35 351 ome.model.acquisition.TransmittanceRange \N 5397 12051 INSERT -35 351 ome.model.acquisition.Filter \N 5397 12052 INSERT -35 352 ome.model.acquisition.TransmittanceRange \N 5397 12053 INSERT -35 352 ome.model.acquisition.Filter \N 5397 12054 INSERT -35 623 ome.model.acquisition.Laser \N 5397 12055 INSERT -35 624 ome.model.acquisition.Laser \N 5397 12056 INSERT -35 625 ome.model.acquisition.Laser \N 5397 12057 INSERT -35 626 ome.model.acquisition.Laser \N 5397 12058 INSERT -35 627 ome.model.acquisition.Laser \N 5397 12059 INSERT -35 628 ome.model.acquisition.Laser \N 5397 12060 INSERT -35 188 ome.model.acquisition.Objective \N 5397 12061 INSERT -35 188 ome.model.acquisition.ObjectiveSettings \N 5397 12062 INSERT -35 188 ome.model.core.Image \N 5397 12063 INSERT -35 238 ome.model.core.OriginalFile \N 5397 12064 INSERT -35 238 ome.model.annotations.FileAnnotation \N 5397 12065 INSERT -35 288 ome.model.annotations.ImageAnnotationLink \N 5397 12066 INSERT -35 188 ome.model.containers.DatasetImageLink \N 5397 12067 INSERT -35 188 ome.model.core.Pixels \N 5397 12068 INSERT -35 201 ome.model.acquisition.DetectorSettings \N 5397 12069 INSERT -35 188 ome.model.acquisition.LightPath \N 5397 12070 INSERT -35 188 ome.model.acquisition.LightPathEmissionFilterLink \N 5397 12071 INSERT -35 188 ome.model.acquisition.LightSettings \N 5397 12072 INSERT -35 301 ome.model.core.LogicalChannel \N 5397 12073 INSERT -35 301 ome.model.core.Channel \N 5397 12074 INSERT -35 202 ome.model.acquisition.DetectorSettings \N 5397 12075 INSERT -35 302 ome.model.core.LogicalChannel \N 5397 12076 INSERT -35 302 ome.model.core.Channel \N 5397 12077 INSERT -35 5863 ome.model.core.PlaneInfo \N 5397 12078 INSERT -35 5864 ome.model.core.PlaneInfo \N 5397 12079 INSERT -35 5865 ome.model.core.PlaneInfo \N 5397 12080 INSERT -35 5866 ome.model.core.PlaneInfo \N 5397 12081 INSERT -35 5867 ome.model.core.PlaneInfo \N 5397 12082 INSERT -35 5868 ome.model.core.PlaneInfo \N 5397 12083 INSERT -35 5869 ome.model.core.PlaneInfo \N 5397 12084 INSERT -35 5870 ome.model.core.PlaneInfo \N 5397 12085 INSERT -35 5871 ome.model.core.PlaneInfo \N 5397 12086 INSERT -35 5872 ome.model.core.PlaneInfo \N 5397 12087 INSERT -35 5873 ome.model.core.PlaneInfo \N 5397 12088 INSERT -35 5874 ome.model.core.PlaneInfo \N 5397 12089 INSERT -35 5875 ome.model.core.PlaneInfo \N 5397 12090 INSERT -35 5876 ome.model.core.PlaneInfo \N 5397 12091 INSERT -35 5877 ome.model.core.PlaneInfo \N 5397 12092 INSERT -35 5878 ome.model.core.PlaneInfo \N 5397 12093 INSERT -35 5879 ome.model.core.PlaneInfo \N 5397 12094 INSERT -35 5880 ome.model.core.PlaneInfo \N 5397 12095 INSERT -35 5881 ome.model.core.PlaneInfo \N 5397 12096 INSERT -35 5882 ome.model.core.PlaneInfo \N 5397 12097 INSERT -35 5883 ome.model.core.PlaneInfo \N 5397 12098 INSERT -35 5884 ome.model.core.PlaneInfo \N 5397 12099 INSERT -35 5885 ome.model.core.PlaneInfo \N 5397 12100 INSERT -35 5886 ome.model.core.PlaneInfo \N 5397 12101 INSERT -35 5887 ome.model.core.PlaneInfo \N 5397 12102 INSERT -35 5888 ome.model.core.PlaneInfo \N 5397 12103 INSERT -35 5889 ome.model.core.PlaneInfo \N 5397 12104 INSERT -35 5890 ome.model.core.PlaneInfo \N 5397 12105 INSERT -35 5891 ome.model.core.PlaneInfo \N 5397 12106 INSERT -35 5892 ome.model.core.PlaneInfo \N 5397 12107 INSERT -35 5893 ome.model.core.PlaneInfo \N 5397 12108 INSERT -35 5894 ome.model.core.PlaneInfo \N 5397 12109 INSERT -35 5895 ome.model.core.PlaneInfo \N 5397 12110 INSERT -35 5896 ome.model.core.PlaneInfo \N 5397 12111 INSERT -35 5897 ome.model.core.PlaneInfo \N 5397 12112 INSERT -35 5898 ome.model.core.PlaneInfo \N 5397 12113 INSERT -35 5899 ome.model.core.PlaneInfo \N 5397 12114 INSERT -35 5900 ome.model.core.PlaneInfo \N 5397 12115 INSERT -35 5901 ome.model.core.PlaneInfo \N 5397 12116 INSERT -35 5902 ome.model.core.PlaneInfo \N 5397 12117 INSERT -35 10 ome.model.roi.Roi \N 5397 12118 INSERT -35 19 ome.model.roi.Label \N 5397 12119 INSERT -35 20 ome.model.roi.Polygon \N 5397 12120 INSERT -35 139 ome.model.acquisition.Microscope \N 5397 12121 INSERT -35 189 ome.model.acquisition.Instrument \N 5397 12122 INSERT -35 203 ome.model.acquisition.Detector \N 5397 12123 INSERT -35 204 ome.model.acquisition.Detector \N 5397 12124 INSERT -35 353 ome.model.acquisition.TransmittanceRange \N 5397 12125 INSERT -35 353 ome.model.acquisition.Filter \N 5397 12126 INSERT -35 354 ome.model.acquisition.TransmittanceRange \N 5397 12127 INSERT -35 354 ome.model.acquisition.Filter \N 5397 12128 INSERT -35 355 ome.model.acquisition.TransmittanceRange \N 5397 12129 INSERT -35 355 ome.model.acquisition.Filter \N 5397 12130 INSERT -35 356 ome.model.acquisition.TransmittanceRange \N 5397 12131 INSERT -35 356 ome.model.acquisition.Filter \N 5397 12132 INSERT -35 629 ome.model.acquisition.Laser \N 5397 12133 INSERT -35 630 ome.model.acquisition.Laser \N 5397 12134 INSERT -35 631 ome.model.acquisition.Laser \N 5397 12135 INSERT -35 632 ome.model.acquisition.Laser \N 5397 12136 INSERT -35 633 ome.model.acquisition.Laser \N 5397 12137 INSERT -35 634 ome.model.acquisition.Laser \N 5397 12138 INSERT -35 189 ome.model.acquisition.Objective \N 5397 12139 INSERT -35 189 ome.model.acquisition.ObjectiveSettings \N 5397 12140 INSERT -35 189 ome.model.core.Image \N 5397 12141 INSERT -35 239 ome.model.core.OriginalFile \N 5397 12142 INSERT -35 239 ome.model.annotations.FileAnnotation \N 5397 12143 INSERT -35 289 ome.model.annotations.ImageAnnotationLink \N 5397 12144 INSERT -35 189 ome.model.containers.DatasetImageLink \N 5397 12145 INSERT -35 189 ome.model.core.Pixels \N 5397 12146 INSERT -35 203 ome.model.acquisition.DetectorSettings \N 5397 12147 INSERT -35 189 ome.model.acquisition.LightPath \N 5397 12148 INSERT -35 189 ome.model.acquisition.LightPathEmissionFilterLink \N 5397 12149 INSERT -35 189 ome.model.acquisition.LightSettings \N 5397 12150 INSERT -35 303 ome.model.core.LogicalChannel \N 5397 12151 INSERT -35 303 ome.model.core.Channel \N 5397 12152 INSERT -35 204 ome.model.acquisition.DetectorSettings \N 5397 12153 INSERT -35 304 ome.model.core.LogicalChannel \N 5397 12154 INSERT -35 304 ome.model.core.Channel \N 5397 12155 INSERT -35 5903 ome.model.core.PlaneInfo \N 5397 12156 INSERT -35 5904 ome.model.core.PlaneInfo \N 5397 12157 INSERT -35 140 ome.model.acquisition.Microscope \N 5397 12158 INSERT -35 190 ome.model.acquisition.Instrument \N 5397 12159 INSERT -35 205 ome.model.acquisition.Detector \N 5397 12160 INSERT -35 206 ome.model.acquisition.Detector \N 5397 12161 INSERT -35 357 ome.model.acquisition.TransmittanceRange \N 5397 12162 INSERT -35 357 ome.model.acquisition.Filter \N 5397 12163 INSERT -35 358 ome.model.acquisition.TransmittanceRange \N 5397 12164 INSERT -35 358 ome.model.acquisition.Filter \N 5397 12165 INSERT -35 359 ome.model.acquisition.TransmittanceRange \N 5397 12166 INSERT -35 359 ome.model.acquisition.Filter \N 5397 12167 INSERT -35 360 ome.model.acquisition.TransmittanceRange \N 5397 12168 INSERT -35 360 ome.model.acquisition.Filter \N 5397 12169 INSERT -35 635 ome.model.acquisition.Laser \N 5397 12170 INSERT -35 636 ome.model.acquisition.Laser \N 5397 12171 INSERT -35 637 ome.model.acquisition.Laser \N 5397 12172 INSERT -35 638 ome.model.acquisition.Laser \N 5397 12173 INSERT -35 639 ome.model.acquisition.Laser \N 5397 12174 INSERT -35 640 ome.model.acquisition.Laser \N 5397 12175 INSERT -35 190 ome.model.acquisition.Objective \N 5397 12176 INSERT -35 190 ome.model.acquisition.ObjectiveSettings \N 5397 12177 INSERT -35 190 ome.model.core.Image \N 5397 12178 INSERT -35 240 ome.model.core.OriginalFile \N 5397 12179 INSERT -35 240 ome.model.annotations.FileAnnotation \N 5397 12180 INSERT -35 290 ome.model.annotations.ImageAnnotationLink \N 5397 12181 INSERT -35 190 ome.model.containers.DatasetImageLink \N 5397 12182 INSERT -35 190 ome.model.core.Pixels \N 5397 12183 INSERT -35 205 ome.model.acquisition.DetectorSettings \N 5397 12184 INSERT -35 190 ome.model.acquisition.LightPath \N 5397 12185 INSERT -35 190 ome.model.acquisition.LightPathEmissionFilterLink \N 5397 12186 INSERT -35 190 ome.model.acquisition.LightSettings \N 5397 12187 INSERT -35 305 ome.model.core.LogicalChannel \N 5397 12188 INSERT -35 305 ome.model.core.Channel \N 5397 12189 INSERT -35 206 ome.model.acquisition.DetectorSettings \N 5397 12190 INSERT -35 306 ome.model.core.LogicalChannel \N 5397 12191 INSERT -35 306 ome.model.core.Channel \N 5397 12192 INSERT -35 5905 ome.model.core.PlaneInfo \N 5397 12193 INSERT -35 5906 ome.model.core.PlaneInfo \N 5397 12194 INSERT -35 5907 ome.model.core.PlaneInfo \N 5397 12195 INSERT -35 5908 ome.model.core.PlaneInfo \N 5397 12196 INSERT -35 5909 ome.model.core.PlaneInfo \N 5397 12197 INSERT -35 5910 ome.model.core.PlaneInfo \N 5397 12198 INSERT -35 5911 ome.model.core.PlaneInfo \N 5397 12199 INSERT -35 5912 ome.model.core.PlaneInfo \N 5397 12200 INSERT -35 5913 ome.model.core.PlaneInfo \N 5397 12201 INSERT -35 5914 ome.model.core.PlaneInfo \N 5397 12202 INSERT -35 5915 ome.model.core.PlaneInfo \N 5397 12203 INSERT -35 5916 ome.model.core.PlaneInfo \N 5397 12204 INSERT -35 5917 ome.model.core.PlaneInfo \N 5397 12205 INSERT -35 5918 ome.model.core.PlaneInfo \N 5397 12206 INSERT -35 5919 ome.model.core.PlaneInfo \N 5397 12207 INSERT -35 5920 ome.model.core.PlaneInfo \N 5397 12208 INSERT -35 5921 ome.model.core.PlaneInfo \N 5397 12209 INSERT -35 5922 ome.model.core.PlaneInfo \N 5397 12210 INSERT -35 5923 ome.model.core.PlaneInfo \N 5397 12211 INSERT -35 5924 ome.model.core.PlaneInfo \N 5397 12212 INSERT -35 5925 ome.model.core.PlaneInfo \N 5397 12213 INSERT -35 5926 ome.model.core.PlaneInfo \N 5397 12214 INSERT -35 5927 ome.model.core.PlaneInfo \N 5397 12215 INSERT -35 5928 ome.model.core.PlaneInfo \N 5397 12216 INSERT -35 5929 ome.model.core.PlaneInfo \N 5397 12217 INSERT -35 5930 ome.model.core.PlaneInfo \N 5397 12218 INSERT -35 5931 ome.model.core.PlaneInfo \N 5397 12219 INSERT -35 5932 ome.model.core.PlaneInfo \N 5397 12220 INSERT -35 5933 ome.model.core.PlaneInfo \N 5397 12221 INSERT -35 5934 ome.model.core.PlaneInfo \N 5397 12222 INSERT -35 5935 ome.model.core.PlaneInfo \N 5397 12223 INSERT -35 5936 ome.model.core.PlaneInfo \N 5397 12224 INSERT -35 5937 ome.model.core.PlaneInfo \N 5397 12225 INSERT -35 5938 ome.model.core.PlaneInfo \N 5397 12226 INSERT -35 5939 ome.model.core.PlaneInfo \N 5397 12227 INSERT -35 5940 ome.model.core.PlaneInfo \N 5397 12228 INSERT -35 5941 ome.model.core.PlaneInfo \N 5397 12229 INSERT -35 5942 ome.model.core.PlaneInfo \N 5397 12230 INSERT -35 5943 ome.model.core.PlaneInfo \N 5397 12231 INSERT -35 5944 ome.model.core.PlaneInfo \N 5397 12232 UPDATE -35 188 ome.model.core.Pixels \N 5399 12233 UPDATE -35 187 ome.model.core.Pixels \N 5400 12234 UPDATE -35 189 ome.model.core.Pixels \N 5400 12235 UPDATE -35 190 ome.model.core.Pixels \N 5400 12236 UPDATE -35 188 ome.model.core.Pixels \N 5400 12237 INSERT -35 299 ome.model.stats.StatsInfo \N 5402 12238 INSERT -35 300 ome.model.stats.StatsInfo \N 5402 12239 INSERT -35 301 ome.model.stats.StatsInfo \N 5402 12240 INSERT -35 302 ome.model.stats.StatsInfo \N 5402 12241 INSERT -35 303 ome.model.stats.StatsInfo \N 5402 12242 INSERT -35 304 ome.model.stats.StatsInfo \N 5402 12243 INSERT -35 305 ome.model.stats.StatsInfo \N 5402 12244 INSERT -35 306 ome.model.stats.StatsInfo \N 5402 12245 UPDATE -35 299 ome.model.core.Channel \N 5402 12246 UPDATE -35 300 ome.model.core.Channel \N 5402 12247 UPDATE -35 303 ome.model.core.Channel \N 5402 12248 UPDATE -35 304 ome.model.core.Channel \N 5402 12249 UPDATE -35 305 ome.model.core.Channel \N 5402 12250 UPDATE -35 306 ome.model.core.Channel \N 5402 12251 UPDATE -35 301 ome.model.core.Channel \N 5402 12252 UPDATE -35 302 ome.model.core.Channel \N 5402 12253 INSERT -35 241 ome.model.display.QuantumDef \N 5403 12254 INSERT -35 241 ome.model.display.RenderingDef \N 5403 12255 INSERT -35 357 ome.model.display.ChannelBinding \N 5403 12256 INSERT -35 358 ome.model.display.ChannelBinding \N 5403 12257 INSERT -35 242 ome.model.display.QuantumDef \N 5403 12258 INSERT -35 242 ome.model.display.RenderingDef \N 5403 12259 INSERT -35 359 ome.model.display.ChannelBinding \N 5403 12260 INSERT -35 360 ome.model.display.ChannelBinding \N 5403 12261 INSERT -35 243 ome.model.display.QuantumDef \N 5403 12262 INSERT -35 243 ome.model.display.RenderingDef \N 5403 12263 INSERT -35 361 ome.model.display.ChannelBinding \N 5403 12264 INSERT -35 362 ome.model.display.ChannelBinding \N 5403 12265 INSERT -35 244 ome.model.display.QuantumDef \N 5403 12266 INSERT -35 244 ome.model.display.RenderingDef \N 5403 12267 INSERT -35 363 ome.model.display.ChannelBinding \N 5403 12268 INSERT -35 364 ome.model.display.ChannelBinding \N 5403 12269 INSERT -35 187 ome.model.display.Thumbnail \N 5404 12270 INSERT -35 188 ome.model.display.Thumbnail \N 5404 12271 INSERT -35 189 ome.model.display.Thumbnail \N 5404 12272 INSERT -35 190 ome.model.display.Thumbnail \N 5404 12273 UPDATE -35 238 ome.model.core.OriginalFile \N 5405 12274 INSERT -35 141 ome.model.acquisition.Microscope \N 5421 12275 INSERT -35 191 ome.model.acquisition.Instrument \N 5421 12276 INSERT -35 207 ome.model.acquisition.Detector \N 5421 12277 INSERT -35 208 ome.model.acquisition.Detector \N 5421 12278 INSERT -35 361 ome.model.acquisition.TransmittanceRange \N 5421 12279 INSERT -35 361 ome.model.acquisition.Filter \N 5421 12280 INSERT -35 362 ome.model.acquisition.TransmittanceRange \N 5421 12281 INSERT -35 362 ome.model.acquisition.Filter \N 5421 12282 INSERT -35 363 ome.model.acquisition.TransmittanceRange \N 5421 12283 INSERT -35 363 ome.model.acquisition.Filter \N 5421 12284 INSERT -35 364 ome.model.acquisition.TransmittanceRange \N 5421 12285 INSERT -35 364 ome.model.acquisition.Filter \N 5421 12286 INSERT -35 641 ome.model.acquisition.Laser \N 5421 12287 INSERT -35 642 ome.model.acquisition.Laser \N 5421 12288 INSERT -35 643 ome.model.acquisition.Laser \N 5421 12289 INSERT -35 644 ome.model.acquisition.Laser \N 5421 12290 INSERT -35 645 ome.model.acquisition.Laser \N 5421 12291 INSERT -35 646 ome.model.acquisition.Laser \N 5421 12292 INSERT -35 191 ome.model.acquisition.Objective \N 5421 12293 INSERT -35 191 ome.model.acquisition.ObjectiveSettings \N 5421 12294 INSERT -35 191 ome.model.core.Image \N 5421 12295 INSERT -35 241 ome.model.core.OriginalFile \N 5421 12296 INSERT -35 241 ome.model.annotations.FileAnnotation \N 5421 12297 INSERT -35 291 ome.model.annotations.ImageAnnotationLink \N 5421 12298 INSERT -35 191 ome.model.containers.DatasetImageLink \N 5421 12299 INSERT -35 191 ome.model.core.Pixels \N 5421 12300 INSERT -35 207 ome.model.acquisition.DetectorSettings \N 5421 12301 INSERT -35 191 ome.model.acquisition.LightPath \N 5421 12302 INSERT -35 191 ome.model.acquisition.LightPathEmissionFilterLink \N 5421 12303 INSERT -35 191 ome.model.acquisition.LightSettings \N 5421 12304 INSERT -35 307 ome.model.core.LogicalChannel \N 5421 12305 INSERT -35 307 ome.model.core.Channel \N 5421 12306 INSERT -35 208 ome.model.acquisition.DetectorSettings \N 5421 12307 INSERT -35 308 ome.model.core.LogicalChannel \N 5421 12308 INSERT -35 308 ome.model.core.Channel \N 5421 12309 INSERT -35 5945 ome.model.core.PlaneInfo \N 5421 12310 INSERT -35 5946 ome.model.core.PlaneInfo \N 5421 12311 INSERT -35 5947 ome.model.core.PlaneInfo \N 5421 12312 INSERT -35 5948 ome.model.core.PlaneInfo \N 5421 12313 INSERT -35 5949 ome.model.core.PlaneInfo \N 5421 12314 INSERT -35 5950 ome.model.core.PlaneInfo \N 5421 12315 INSERT -35 5951 ome.model.core.PlaneInfo \N 5421 12316 INSERT -35 5952 ome.model.core.PlaneInfo \N 5421 12317 INSERT -35 5953 ome.model.core.PlaneInfo \N 5421 12318 INSERT -35 5954 ome.model.core.PlaneInfo \N 5421 12319 INSERT -35 142 ome.model.acquisition.Microscope \N 5421 12320 INSERT -35 192 ome.model.acquisition.Instrument \N 5421 12321 INSERT -35 209 ome.model.acquisition.Detector \N 5421 12322 INSERT -35 210 ome.model.acquisition.Detector \N 5421 12323 INSERT -35 365 ome.model.acquisition.TransmittanceRange \N 5421 12324 INSERT -35 365 ome.model.acquisition.Filter \N 5421 12325 INSERT -35 366 ome.model.acquisition.TransmittanceRange \N 5421 12326 INSERT -35 366 ome.model.acquisition.Filter \N 5421 12327 INSERT -35 367 ome.model.acquisition.TransmittanceRange \N 5421 12328 INSERT -35 367 ome.model.acquisition.Filter \N 5421 12329 INSERT -35 368 ome.model.acquisition.TransmittanceRange \N 5421 12330 INSERT -35 368 ome.model.acquisition.Filter \N 5421 12331 INSERT -35 647 ome.model.acquisition.Laser \N 5421 12332 INSERT -35 648 ome.model.acquisition.Laser \N 5421 12333 INSERT -35 649 ome.model.acquisition.Laser \N 5421 12334 INSERT -35 650 ome.model.acquisition.Laser \N 5421 12335 INSERT -35 651 ome.model.acquisition.Laser \N 5421 12336 INSERT -35 652 ome.model.acquisition.Laser \N 5421 12337 INSERT -35 192 ome.model.acquisition.Objective \N 5421 12338 INSERT -35 192 ome.model.acquisition.ObjectiveSettings \N 5421 12339 INSERT -35 192 ome.model.core.Image \N 5421 12340 INSERT -35 242 ome.model.core.OriginalFile \N 5421 12341 INSERT -35 242 ome.model.annotations.FileAnnotation \N 5421 12342 INSERT -35 292 ome.model.annotations.ImageAnnotationLink \N 5421 12343 INSERT -35 192 ome.model.containers.DatasetImageLink \N 5421 12344 INSERT -35 192 ome.model.core.Pixels \N 5421 12345 INSERT -35 209 ome.model.acquisition.DetectorSettings \N 5421 12346 INSERT -35 192 ome.model.acquisition.LightPath \N 5421 12347 INSERT -35 192 ome.model.acquisition.LightPathEmissionFilterLink \N 5421 12348 INSERT -35 192 ome.model.acquisition.LightSettings \N 5421 12349 INSERT -35 309 ome.model.core.LogicalChannel \N 5421 12350 INSERT -35 309 ome.model.core.Channel \N 5421 12351 INSERT -35 210 ome.model.acquisition.DetectorSettings \N 5421 12352 INSERT -35 310 ome.model.core.LogicalChannel \N 5421 12353 INSERT -35 310 ome.model.core.Channel \N 5421 12354 INSERT -35 5955 ome.model.core.PlaneInfo \N 5421 12355 INSERT -35 5956 ome.model.core.PlaneInfo \N 5421 12356 INSERT -35 5957 ome.model.core.PlaneInfo \N 5421 12357 INSERT -35 5958 ome.model.core.PlaneInfo \N 5421 12358 INSERT -35 5959 ome.model.core.PlaneInfo \N 5421 12359 INSERT -35 5960 ome.model.core.PlaneInfo \N 5421 12360 INSERT -35 5961 ome.model.core.PlaneInfo \N 5421 12361 INSERT -35 5962 ome.model.core.PlaneInfo \N 5421 12362 INSERT -35 5963 ome.model.core.PlaneInfo \N 5421 12363 INSERT -35 5964 ome.model.core.PlaneInfo \N 5421 12364 INSERT -35 5965 ome.model.core.PlaneInfo \N 5421 12365 INSERT -35 5966 ome.model.core.PlaneInfo \N 5421 12366 INSERT -35 5967 ome.model.core.PlaneInfo \N 5421 12367 INSERT -35 5968 ome.model.core.PlaneInfo \N 5421 12368 INSERT -35 5969 ome.model.core.PlaneInfo \N 5421 12369 INSERT -35 5970 ome.model.core.PlaneInfo \N 5421 12370 INSERT -35 5971 ome.model.core.PlaneInfo \N 5421 12371 INSERT -35 5972 ome.model.core.PlaneInfo \N 5421 12372 INSERT -35 5973 ome.model.core.PlaneInfo \N 5421 12373 INSERT -35 5974 ome.model.core.PlaneInfo \N 5421 12374 INSERT -35 5975 ome.model.core.PlaneInfo \N 5421 12375 INSERT -35 5976 ome.model.core.PlaneInfo \N 5421 12376 INSERT -35 5977 ome.model.core.PlaneInfo \N 5421 12377 INSERT -35 5978 ome.model.core.PlaneInfo \N 5421 12378 INSERT -35 5979 ome.model.core.PlaneInfo \N 5421 12379 INSERT -35 5980 ome.model.core.PlaneInfo \N 5421 12380 INSERT -35 5981 ome.model.core.PlaneInfo \N 5421 12381 INSERT -35 5982 ome.model.core.PlaneInfo \N 5421 12382 INSERT -35 5983 ome.model.core.PlaneInfo \N 5421 12383 INSERT -35 5984 ome.model.core.PlaneInfo \N 5421 12384 INSERT -35 5985 ome.model.core.PlaneInfo \N 5421 12385 INSERT -35 5986 ome.model.core.PlaneInfo \N 5421 12386 INSERT -35 5987 ome.model.core.PlaneInfo \N 5421 12387 INSERT -35 5988 ome.model.core.PlaneInfo \N 5421 12388 INSERT -35 5989 ome.model.core.PlaneInfo \N 5421 12389 INSERT -35 5990 ome.model.core.PlaneInfo \N 5421 12390 INSERT -35 5991 ome.model.core.PlaneInfo \N 5421 12391 INSERT -35 5992 ome.model.core.PlaneInfo \N 5421 12392 INSERT -35 5993 ome.model.core.PlaneInfo \N 5421 12393 INSERT -35 5994 ome.model.core.PlaneInfo \N 5421 12394 INSERT -35 11 ome.model.roi.Roi \N 5421 12395 INSERT -35 21 ome.model.roi.Label \N 5421 12396 INSERT -35 22 ome.model.roi.Polygon \N 5421 12397 INSERT -35 143 ome.model.acquisition.Microscope \N 5421 12398 INSERT -35 193 ome.model.acquisition.Instrument \N 5421 12399 INSERT -35 211 ome.model.acquisition.Detector \N 5421 12400 INSERT -35 212 ome.model.acquisition.Detector \N 5421 12401 INSERT -35 369 ome.model.acquisition.TransmittanceRange \N 5421 12402 INSERT -35 369 ome.model.acquisition.Filter \N 5421 12403 INSERT -35 370 ome.model.acquisition.TransmittanceRange \N 5421 12404 INSERT -35 370 ome.model.acquisition.Filter \N 5421 12405 INSERT -35 371 ome.model.acquisition.TransmittanceRange \N 5421 12406 INSERT -35 371 ome.model.acquisition.Filter \N 5421 12407 INSERT -35 372 ome.model.acquisition.TransmittanceRange \N 5421 12408 INSERT -35 372 ome.model.acquisition.Filter \N 5421 12409 INSERT -35 653 ome.model.acquisition.Laser \N 5421 12410 INSERT -35 654 ome.model.acquisition.Laser \N 5421 12411 INSERT -35 655 ome.model.acquisition.Laser \N 5421 12412 INSERT -35 656 ome.model.acquisition.Laser \N 5421 12413 INSERT -35 657 ome.model.acquisition.Laser \N 5421 12414 INSERT -35 658 ome.model.acquisition.Laser \N 5421 12415 INSERT -35 193 ome.model.acquisition.Objective \N 5421 12416 INSERT -35 193 ome.model.acquisition.ObjectiveSettings \N 5421 12417 INSERT -35 193 ome.model.core.Image \N 5421 12418 INSERT -35 243 ome.model.core.OriginalFile \N 5421 12419 INSERT -35 243 ome.model.annotations.FileAnnotation \N 5421 12420 INSERT -35 293 ome.model.annotations.ImageAnnotationLink \N 5421 12421 INSERT -35 193 ome.model.containers.DatasetImageLink \N 5421 12422 INSERT -35 193 ome.model.core.Pixels \N 5421 12423 INSERT -35 211 ome.model.acquisition.DetectorSettings \N 5421 12424 INSERT -35 193 ome.model.acquisition.LightPath \N 5421 12425 INSERT -35 193 ome.model.acquisition.LightPathEmissionFilterLink \N 5421 12426 INSERT -35 193 ome.model.acquisition.LightSettings \N 5421 12427 INSERT -35 311 ome.model.core.LogicalChannel \N 5421 12428 INSERT -35 311 ome.model.core.Channel \N 5421 12429 INSERT -35 212 ome.model.acquisition.DetectorSettings \N 5421 12430 INSERT -35 312 ome.model.core.LogicalChannel \N 5421 12431 INSERT -35 312 ome.model.core.Channel \N 5421 12432 INSERT -35 5995 ome.model.core.PlaneInfo \N 5421 12433 INSERT -35 5996 ome.model.core.PlaneInfo \N 5421 12434 INSERT -35 144 ome.model.acquisition.Microscope \N 5421 12435 INSERT -35 194 ome.model.acquisition.Instrument \N 5421 12436 INSERT -35 213 ome.model.acquisition.Detector \N 5421 12437 INSERT -35 214 ome.model.acquisition.Detector \N 5421 12438 INSERT -35 373 ome.model.acquisition.TransmittanceRange \N 5421 12439 INSERT -35 373 ome.model.acquisition.Filter \N 5421 12440 INSERT -35 374 ome.model.acquisition.TransmittanceRange \N 5421 12441 INSERT -35 374 ome.model.acquisition.Filter \N 5421 12523 UPDATE -35 308 ome.model.core.Channel \N 5426 12442 INSERT -35 375 ome.model.acquisition.TransmittanceRange \N 5421 12443 INSERT -35 375 ome.model.acquisition.Filter \N 5421 12444 INSERT -35 376 ome.model.acquisition.TransmittanceRange \N 5421 12445 INSERT -35 376 ome.model.acquisition.Filter \N 5421 12446 INSERT -35 659 ome.model.acquisition.Laser \N 5421 12447 INSERT -35 660 ome.model.acquisition.Laser \N 5421 12448 INSERT -35 661 ome.model.acquisition.Laser \N 5421 12449 INSERT -35 662 ome.model.acquisition.Laser \N 5421 12450 INSERT -35 663 ome.model.acquisition.Laser \N 5421 12451 INSERT -35 664 ome.model.acquisition.Laser \N 5421 12452 INSERT -35 194 ome.model.acquisition.Objective \N 5421 12453 INSERT -35 194 ome.model.acquisition.ObjectiveSettings \N 5421 12454 INSERT -35 194 ome.model.core.Image \N 5421 12455 INSERT -35 244 ome.model.core.OriginalFile \N 5421 12456 INSERT -35 244 ome.model.annotations.FileAnnotation \N 5421 12457 INSERT -35 294 ome.model.annotations.ImageAnnotationLink \N 5421 12458 INSERT -35 194 ome.model.containers.DatasetImageLink \N 5421 12459 INSERT -35 194 ome.model.core.Pixels \N 5421 12460 INSERT -35 213 ome.model.acquisition.DetectorSettings \N 5421 12461 INSERT -35 194 ome.model.acquisition.LightPath \N 5421 12462 INSERT -35 194 ome.model.acquisition.LightPathEmissionFilterLink \N 5421 12463 INSERT -35 194 ome.model.acquisition.LightSettings \N 5421 12464 INSERT -35 313 ome.model.core.LogicalChannel \N 5421 12465 INSERT -35 313 ome.model.core.Channel \N 5421 12466 INSERT -35 214 ome.model.acquisition.DetectorSettings \N 5421 12467 INSERT -35 314 ome.model.core.LogicalChannel \N 5421 12468 INSERT -35 314 ome.model.core.Channel \N 5421 12469 INSERT -35 5997 ome.model.core.PlaneInfo \N 5421 12470 INSERT -35 5998 ome.model.core.PlaneInfo \N 5421 12471 INSERT -35 5999 ome.model.core.PlaneInfo \N 5421 12472 INSERT -35 6000 ome.model.core.PlaneInfo \N 5421 12473 INSERT -35 6001 ome.model.core.PlaneInfo \N 5421 12474 INSERT -35 6002 ome.model.core.PlaneInfo \N 5421 12475 INSERT -35 6003 ome.model.core.PlaneInfo \N 5421 12476 INSERT -35 6004 ome.model.core.PlaneInfo \N 5421 12477 INSERT -35 6005 ome.model.core.PlaneInfo \N 5421 12478 INSERT -35 6006 ome.model.core.PlaneInfo \N 5421 12479 INSERT -35 6007 ome.model.core.PlaneInfo \N 5421 12480 INSERT -35 6008 ome.model.core.PlaneInfo \N 5421 12481 INSERT -35 6009 ome.model.core.PlaneInfo \N 5421 12482 INSERT -35 6010 ome.model.core.PlaneInfo \N 5421 12483 INSERT -35 6011 ome.model.core.PlaneInfo \N 5421 12484 INSERT -35 6012 ome.model.core.PlaneInfo \N 5421 12485 INSERT -35 6013 ome.model.core.PlaneInfo \N 5421 12486 INSERT -35 6014 ome.model.core.PlaneInfo \N 5421 12487 INSERT -35 6015 ome.model.core.PlaneInfo \N 5421 12488 INSERT -35 6016 ome.model.core.PlaneInfo \N 5421 12489 INSERT -35 6017 ome.model.core.PlaneInfo \N 5421 12490 INSERT -35 6018 ome.model.core.PlaneInfo \N 5421 12491 INSERT -35 6019 ome.model.core.PlaneInfo \N 5421 12492 INSERT -35 6020 ome.model.core.PlaneInfo \N 5421 12493 INSERT -35 6021 ome.model.core.PlaneInfo \N 5421 12494 INSERT -35 6022 ome.model.core.PlaneInfo \N 5421 12495 INSERT -35 6023 ome.model.core.PlaneInfo \N 5421 12496 INSERT -35 6024 ome.model.core.PlaneInfo \N 5421 12497 INSERT -35 6025 ome.model.core.PlaneInfo \N 5421 12498 INSERT -35 6026 ome.model.core.PlaneInfo \N 5421 12499 INSERT -35 6027 ome.model.core.PlaneInfo \N 5421 12500 INSERT -35 6028 ome.model.core.PlaneInfo \N 5421 12501 INSERT -35 6029 ome.model.core.PlaneInfo \N 5421 12502 INSERT -35 6030 ome.model.core.PlaneInfo \N 5421 12503 INSERT -35 6031 ome.model.core.PlaneInfo \N 5421 12504 INSERT -35 6032 ome.model.core.PlaneInfo \N 5421 12505 INSERT -35 6033 ome.model.core.PlaneInfo \N 5421 12506 INSERT -35 6034 ome.model.core.PlaneInfo \N 5421 12507 INSERT -35 6035 ome.model.core.PlaneInfo \N 5421 12508 INSERT -35 6036 ome.model.core.PlaneInfo \N 5421 12509 UPDATE -35 192 ome.model.core.Pixels \N 5423 12510 UPDATE -35 191 ome.model.core.Pixels \N 5425 12511 UPDATE -35 193 ome.model.core.Pixels \N 5425 12512 UPDATE -35 194 ome.model.core.Pixels \N 5425 12513 UPDATE -35 192 ome.model.core.Pixels \N 5425 12514 INSERT -35 307 ome.model.stats.StatsInfo \N 5426 12515 INSERT -35 308 ome.model.stats.StatsInfo \N 5426 12516 INSERT -35 309 ome.model.stats.StatsInfo \N 5426 12517 INSERT -35 310 ome.model.stats.StatsInfo \N 5426 12518 INSERT -35 311 ome.model.stats.StatsInfo \N 5426 12519 INSERT -35 312 ome.model.stats.StatsInfo \N 5426 12520 INSERT -35 313 ome.model.stats.StatsInfo \N 5426 12521 INSERT -35 314 ome.model.stats.StatsInfo \N 5426 12522 UPDATE -35 307 ome.model.core.Channel \N 5426 12524 UPDATE -35 311 ome.model.core.Channel \N 5426 12525 UPDATE -35 312 ome.model.core.Channel \N 5426 12526 UPDATE -35 313 ome.model.core.Channel \N 5426 12527 UPDATE -35 314 ome.model.core.Channel \N 5426 12528 UPDATE -35 309 ome.model.core.Channel \N 5426 12529 UPDATE -35 310 ome.model.core.Channel \N 5426 12530 INSERT -35 245 ome.model.display.QuantumDef \N 5427 12531 INSERT -35 245 ome.model.display.RenderingDef \N 5427 12532 INSERT -35 365 ome.model.display.ChannelBinding \N 5427 12533 INSERT -35 366 ome.model.display.ChannelBinding \N 5427 12534 INSERT -35 246 ome.model.display.QuantumDef \N 5427 12535 INSERT -35 246 ome.model.display.RenderingDef \N 5427 12536 INSERT -35 367 ome.model.display.ChannelBinding \N 5427 12537 INSERT -35 368 ome.model.display.ChannelBinding \N 5427 12538 INSERT -35 247 ome.model.display.QuantumDef \N 5427 12539 INSERT -35 247 ome.model.display.RenderingDef \N 5427 12540 INSERT -35 369 ome.model.display.ChannelBinding \N 5427 12541 INSERT -35 370 ome.model.display.ChannelBinding \N 5427 12542 INSERT -35 248 ome.model.display.QuantumDef \N 5427 12543 INSERT -35 248 ome.model.display.RenderingDef \N 5427 12544 INSERT -35 371 ome.model.display.ChannelBinding \N 5427 12545 INSERT -35 372 ome.model.display.ChannelBinding \N 5427 12546 INSERT -35 191 ome.model.display.Thumbnail \N 5428 12547 INSERT -35 192 ome.model.display.Thumbnail \N 5428 12548 INSERT -35 193 ome.model.display.Thumbnail \N 5428 12549 INSERT -35 194 ome.model.display.Thumbnail \N 5428 12550 UPDATE -35 242 ome.model.core.OriginalFile \N 5429 12551 INSERT -35 145 ome.model.acquisition.Microscope \N 5446 12552 INSERT -35 195 ome.model.acquisition.Instrument \N 5446 12553 INSERT -35 215 ome.model.acquisition.Detector \N 5446 12554 INSERT -35 216 ome.model.acquisition.Detector \N 5446 12555 INSERT -35 377 ome.model.acquisition.TransmittanceRange \N 5446 12556 INSERT -35 377 ome.model.acquisition.Filter \N 5446 12557 INSERT -35 378 ome.model.acquisition.TransmittanceRange \N 5446 12558 INSERT -35 378 ome.model.acquisition.Filter \N 5446 12559 INSERT -35 379 ome.model.acquisition.TransmittanceRange \N 5446 12560 INSERT -35 379 ome.model.acquisition.Filter \N 5446 12561 INSERT -35 380 ome.model.acquisition.TransmittanceRange \N 5446 12562 INSERT -35 380 ome.model.acquisition.Filter \N 5446 12563 INSERT -35 665 ome.model.acquisition.Laser \N 5446 12564 INSERT -35 666 ome.model.acquisition.Laser \N 5446 12565 INSERT -35 667 ome.model.acquisition.Laser \N 5446 12566 INSERT -35 668 ome.model.acquisition.Laser \N 5446 12567 INSERT -35 669 ome.model.acquisition.Laser \N 5446 12568 INSERT -35 670 ome.model.acquisition.Laser \N 5446 12569 INSERT -35 195 ome.model.acquisition.Objective \N 5446 12570 INSERT -35 195 ome.model.acquisition.ObjectiveSettings \N 5446 12571 INSERT -35 195 ome.model.core.Image \N 5446 12572 INSERT -35 245 ome.model.core.OriginalFile \N 5446 12573 INSERT -35 245 ome.model.annotations.FileAnnotation \N 5446 12574 INSERT -35 295 ome.model.annotations.ImageAnnotationLink \N 5446 12575 INSERT -35 195 ome.model.containers.DatasetImageLink \N 5446 12576 INSERT -35 195 ome.model.core.Pixels \N 5446 12577 INSERT -35 215 ome.model.acquisition.DetectorSettings \N 5446 12578 INSERT -35 195 ome.model.acquisition.LightPath \N 5446 12579 INSERT -35 195 ome.model.acquisition.LightPathEmissionFilterLink \N 5446 12580 INSERT -35 195 ome.model.acquisition.LightSettings \N 5446 12581 INSERT -35 315 ome.model.core.LogicalChannel \N 5446 12582 INSERT -35 315 ome.model.core.Channel \N 5446 12583 INSERT -35 216 ome.model.acquisition.DetectorSettings \N 5446 12584 INSERT -35 316 ome.model.core.LogicalChannel \N 5446 12585 INSERT -35 316 ome.model.core.Channel \N 5446 12586 INSERT -35 6037 ome.model.core.PlaneInfo \N 5446 12587 INSERT -35 6038 ome.model.core.PlaneInfo \N 5446 12588 INSERT -35 6039 ome.model.core.PlaneInfo \N 5446 12589 INSERT -35 6040 ome.model.core.PlaneInfo \N 5446 12590 INSERT -35 6041 ome.model.core.PlaneInfo \N 5446 12591 INSERT -35 6042 ome.model.core.PlaneInfo \N 5446 12592 INSERT -35 6043 ome.model.core.PlaneInfo \N 5446 12593 INSERT -35 6044 ome.model.core.PlaneInfo \N 5446 12594 INSERT -35 6045 ome.model.core.PlaneInfo \N 5446 12595 INSERT -35 6046 ome.model.core.PlaneInfo \N 5446 12596 INSERT -35 146 ome.model.acquisition.Microscope \N 5446 12597 INSERT -35 196 ome.model.acquisition.Instrument \N 5446 12598 INSERT -35 217 ome.model.acquisition.Detector \N 5446 12599 INSERT -35 218 ome.model.acquisition.Detector \N 5446 12600 INSERT -35 381 ome.model.acquisition.TransmittanceRange \N 5446 12601 INSERT -35 381 ome.model.acquisition.Filter \N 5446 12602 INSERT -35 382 ome.model.acquisition.TransmittanceRange \N 5446 12603 INSERT -35 382 ome.model.acquisition.Filter \N 5446 12604 INSERT -35 383 ome.model.acquisition.TransmittanceRange \N 5446 12605 INSERT -35 383 ome.model.acquisition.Filter \N 5446 12606 INSERT -35 384 ome.model.acquisition.TransmittanceRange \N 5446 12607 INSERT -35 384 ome.model.acquisition.Filter \N 5446 12608 INSERT -35 671 ome.model.acquisition.Laser \N 5446 12609 INSERT -35 672 ome.model.acquisition.Laser \N 5446 12610 INSERT -35 673 ome.model.acquisition.Laser \N 5446 12611 INSERT -35 674 ome.model.acquisition.Laser \N 5446 12612 INSERT -35 675 ome.model.acquisition.Laser \N 5446 12613 INSERT -35 676 ome.model.acquisition.Laser \N 5446 12614 INSERT -35 196 ome.model.acquisition.Objective \N 5446 12615 INSERT -35 196 ome.model.acquisition.ObjectiveSettings \N 5446 12616 INSERT -35 196 ome.model.core.Image \N 5446 12617 INSERT -35 246 ome.model.core.OriginalFile \N 5446 12618 INSERT -35 246 ome.model.annotations.FileAnnotation \N 5446 12619 INSERT -35 296 ome.model.annotations.ImageAnnotationLink \N 5446 12620 INSERT -35 196 ome.model.containers.DatasetImageLink \N 5446 12621 INSERT -35 196 ome.model.core.Pixels \N 5446 12622 INSERT -35 217 ome.model.acquisition.DetectorSettings \N 5446 12623 INSERT -35 196 ome.model.acquisition.LightPath \N 5446 12624 INSERT -35 196 ome.model.acquisition.LightPathEmissionFilterLink \N 5446 12625 INSERT -35 196 ome.model.acquisition.LightSettings \N 5446 12626 INSERT -35 317 ome.model.core.LogicalChannel \N 5446 12627 INSERT -35 317 ome.model.core.Channel \N 5446 12628 INSERT -35 218 ome.model.acquisition.DetectorSettings \N 5446 12629 INSERT -35 318 ome.model.core.LogicalChannel \N 5446 12630 INSERT -35 318 ome.model.core.Channel \N 5446 12631 INSERT -35 6047 ome.model.core.PlaneInfo \N 5446 12632 INSERT -35 6048 ome.model.core.PlaneInfo \N 5446 12633 INSERT -35 6049 ome.model.core.PlaneInfo \N 5446 12634 INSERT -35 6050 ome.model.core.PlaneInfo \N 5446 12635 INSERT -35 6051 ome.model.core.PlaneInfo \N 5446 12636 INSERT -35 6052 ome.model.core.PlaneInfo \N 5446 12637 INSERT -35 6053 ome.model.core.PlaneInfo \N 5446 12638 INSERT -35 6054 ome.model.core.PlaneInfo \N 5446 12639 INSERT -35 6055 ome.model.core.PlaneInfo \N 5446 12640 INSERT -35 6056 ome.model.core.PlaneInfo \N 5446 12641 INSERT -35 6057 ome.model.core.PlaneInfo \N 5446 12642 INSERT -35 6058 ome.model.core.PlaneInfo \N 5446 12643 INSERT -35 6059 ome.model.core.PlaneInfo \N 5446 12644 INSERT -35 6060 ome.model.core.PlaneInfo \N 5446 12645 INSERT -35 6061 ome.model.core.PlaneInfo \N 5446 12646 INSERT -35 6062 ome.model.core.PlaneInfo \N 5446 12647 INSERT -35 6063 ome.model.core.PlaneInfo \N 5446 12648 INSERT -35 6064 ome.model.core.PlaneInfo \N 5446 12649 INSERT -35 6065 ome.model.core.PlaneInfo \N 5446 12650 INSERT -35 6066 ome.model.core.PlaneInfo \N 5446 12651 INSERT -35 6067 ome.model.core.PlaneInfo \N 5446 12652 INSERT -35 6068 ome.model.core.PlaneInfo \N 5446 12653 INSERT -35 6069 ome.model.core.PlaneInfo \N 5446 12654 INSERT -35 6070 ome.model.core.PlaneInfo \N 5446 12655 INSERT -35 6071 ome.model.core.PlaneInfo \N 5446 12656 INSERT -35 6072 ome.model.core.PlaneInfo \N 5446 12657 INSERT -35 6073 ome.model.core.PlaneInfo \N 5446 12658 INSERT -35 6074 ome.model.core.PlaneInfo \N 5446 12659 INSERT -35 6075 ome.model.core.PlaneInfo \N 5446 12660 INSERT -35 6076 ome.model.core.PlaneInfo \N 5446 12661 INSERT -35 6077 ome.model.core.PlaneInfo \N 5446 12662 INSERT -35 6078 ome.model.core.PlaneInfo \N 5446 12663 INSERT -35 6079 ome.model.core.PlaneInfo \N 5446 12664 INSERT -35 6080 ome.model.core.PlaneInfo \N 5446 12665 INSERT -35 6081 ome.model.core.PlaneInfo \N 5446 12666 INSERT -35 6082 ome.model.core.PlaneInfo \N 5446 12667 INSERT -35 6083 ome.model.core.PlaneInfo \N 5446 12668 INSERT -35 6084 ome.model.core.PlaneInfo \N 5446 12669 INSERT -35 6085 ome.model.core.PlaneInfo \N 5446 12670 INSERT -35 6086 ome.model.core.PlaneInfo \N 5446 12671 INSERT -35 12 ome.model.roi.Roi \N 5446 12672 INSERT -35 23 ome.model.roi.Label \N 5446 12673 INSERT -35 24 ome.model.roi.Polygon \N 5446 12674 INSERT -35 147 ome.model.acquisition.Microscope \N 5446 12675 INSERT -35 197 ome.model.acquisition.Instrument \N 5446 12676 INSERT -35 219 ome.model.acquisition.Detector \N 5446 12677 INSERT -35 220 ome.model.acquisition.Detector \N 5446 12678 INSERT -35 385 ome.model.acquisition.TransmittanceRange \N 5446 12679 INSERT -35 385 ome.model.acquisition.Filter \N 5446 12680 INSERT -35 386 ome.model.acquisition.TransmittanceRange \N 5446 12681 INSERT -35 386 ome.model.acquisition.Filter \N 5446 12682 INSERT -35 387 ome.model.acquisition.TransmittanceRange \N 5446 12683 INSERT -35 387 ome.model.acquisition.Filter \N 5446 12684 INSERT -35 388 ome.model.acquisition.TransmittanceRange \N 5446 12685 INSERT -35 388 ome.model.acquisition.Filter \N 5446 12686 INSERT -35 677 ome.model.acquisition.Laser \N 5446 12687 INSERT -35 678 ome.model.acquisition.Laser \N 5446 12688 INSERT -35 679 ome.model.acquisition.Laser \N 5446 12689 INSERT -35 680 ome.model.acquisition.Laser \N 5446 12690 INSERT -35 681 ome.model.acquisition.Laser \N 5446 12691 INSERT -35 682 ome.model.acquisition.Laser \N 5446 12692 INSERT -35 197 ome.model.acquisition.Objective \N 5446 12693 INSERT -35 197 ome.model.acquisition.ObjectiveSettings \N 5446 12694 INSERT -35 197 ome.model.core.Image \N 5446 12695 INSERT -35 247 ome.model.core.OriginalFile \N 5446 12696 INSERT -35 247 ome.model.annotations.FileAnnotation \N 5446 12697 INSERT -35 297 ome.model.annotations.ImageAnnotationLink \N 5446 12698 INSERT -35 197 ome.model.containers.DatasetImageLink \N 5446 12699 INSERT -35 197 ome.model.core.Pixels \N 5446 12700 INSERT -35 219 ome.model.acquisition.DetectorSettings \N 5446 12701 INSERT -35 197 ome.model.acquisition.LightPath \N 5446 12702 INSERT -35 197 ome.model.acquisition.LightPathEmissionFilterLink \N 5446 12703 INSERT -35 197 ome.model.acquisition.LightSettings \N 5446 12704 INSERT -35 319 ome.model.core.LogicalChannel \N 5446 12705 INSERT -35 319 ome.model.core.Channel \N 5446 12706 INSERT -35 220 ome.model.acquisition.DetectorSettings \N 5446 12707 INSERT -35 320 ome.model.core.LogicalChannel \N 5446 12708 INSERT -35 320 ome.model.core.Channel \N 5446 12709 INSERT -35 6087 ome.model.core.PlaneInfo \N 5446 12710 INSERT -35 6088 ome.model.core.PlaneInfo \N 5446 12711 INSERT -35 148 ome.model.acquisition.Microscope \N 5446 12712 INSERT -35 198 ome.model.acquisition.Instrument \N 5446 12713 INSERT -35 221 ome.model.acquisition.Detector \N 5446 12714 INSERT -35 222 ome.model.acquisition.Detector \N 5446 12715 INSERT -35 389 ome.model.acquisition.TransmittanceRange \N 5446 12716 INSERT -35 389 ome.model.acquisition.Filter \N 5446 12717 INSERT -35 390 ome.model.acquisition.TransmittanceRange \N 5446 12718 INSERT -35 390 ome.model.acquisition.Filter \N 5446 12719 INSERT -35 391 ome.model.acquisition.TransmittanceRange \N 5446 12720 INSERT -35 391 ome.model.acquisition.Filter \N 5446 12721 INSERT -35 392 ome.model.acquisition.TransmittanceRange \N 5446 12722 INSERT -35 392 ome.model.acquisition.Filter \N 5446 12723 INSERT -35 683 ome.model.acquisition.Laser \N 5446 12724 INSERT -35 684 ome.model.acquisition.Laser \N 5446 12725 INSERT -35 685 ome.model.acquisition.Laser \N 5446 12726 INSERT -35 686 ome.model.acquisition.Laser \N 5446 12727 INSERT -35 687 ome.model.acquisition.Laser \N 5446 12728 INSERT -35 688 ome.model.acquisition.Laser \N 5446 12729 INSERT -35 198 ome.model.acquisition.Objective \N 5446 12730 INSERT -35 198 ome.model.acquisition.ObjectiveSettings \N 5446 12731 INSERT -35 198 ome.model.core.Image \N 5446 12732 INSERT -35 248 ome.model.core.OriginalFile \N 5446 12733 INSERT -35 248 ome.model.annotations.FileAnnotation \N 5446 12734 INSERT -35 298 ome.model.annotations.ImageAnnotationLink \N 5446 12735 INSERT -35 198 ome.model.containers.DatasetImageLink \N 5446 12736 INSERT -35 198 ome.model.core.Pixels \N 5446 12737 INSERT -35 221 ome.model.acquisition.DetectorSettings \N 5446 12738 INSERT -35 198 ome.model.acquisition.LightPath \N 5446 12739 INSERT -35 198 ome.model.acquisition.LightPathEmissionFilterLink \N 5446 12740 INSERT -35 198 ome.model.acquisition.LightSettings \N 5446 12741 INSERT -35 321 ome.model.core.LogicalChannel \N 5446 12742 INSERT -35 321 ome.model.core.Channel \N 5446 12743 INSERT -35 222 ome.model.acquisition.DetectorSettings \N 5446 12744 INSERT -35 322 ome.model.core.LogicalChannel \N 5446 12745 INSERT -35 322 ome.model.core.Channel \N 5446 12746 INSERT -35 6089 ome.model.core.PlaneInfo \N 5446 12747 INSERT -35 6090 ome.model.core.PlaneInfo \N 5446 12748 INSERT -35 6091 ome.model.core.PlaneInfo \N 5446 12749 INSERT -35 6092 ome.model.core.PlaneInfo \N 5446 12750 INSERT -35 6093 ome.model.core.PlaneInfo \N 5446 12751 INSERT -35 6094 ome.model.core.PlaneInfo \N 5446 12752 INSERT -35 6095 ome.model.core.PlaneInfo \N 5446 12753 INSERT -35 6096 ome.model.core.PlaneInfo \N 5446 12754 INSERT -35 6097 ome.model.core.PlaneInfo \N 5446 12755 INSERT -35 6098 ome.model.core.PlaneInfo \N 5446 12756 INSERT -35 6099 ome.model.core.PlaneInfo \N 5446 12757 INSERT -35 6100 ome.model.core.PlaneInfo \N 5446 12758 INSERT -35 6101 ome.model.core.PlaneInfo \N 5446 12759 INSERT -35 6102 ome.model.core.PlaneInfo \N 5446 12760 INSERT -35 6103 ome.model.core.PlaneInfo \N 5446 12761 INSERT -35 6104 ome.model.core.PlaneInfo \N 5446 12762 INSERT -35 6105 ome.model.core.PlaneInfo \N 5446 12763 INSERT -35 6106 ome.model.core.PlaneInfo \N 5446 12764 INSERT -35 6107 ome.model.core.PlaneInfo \N 5446 12765 INSERT -35 6108 ome.model.core.PlaneInfo \N 5446 12766 INSERT -35 6109 ome.model.core.PlaneInfo \N 5446 12767 INSERT -35 6110 ome.model.core.PlaneInfo \N 5446 12768 INSERT -35 6111 ome.model.core.PlaneInfo \N 5446 12769 INSERT -35 6112 ome.model.core.PlaneInfo \N 5446 12770 INSERT -35 6113 ome.model.core.PlaneInfo \N 5446 12771 INSERT -35 6114 ome.model.core.PlaneInfo \N 5446 12772 INSERT -35 6115 ome.model.core.PlaneInfo \N 5446 12773 INSERT -35 6116 ome.model.core.PlaneInfo \N 5446 12774 INSERT -35 6117 ome.model.core.PlaneInfo \N 5446 12775 INSERT -35 6118 ome.model.core.PlaneInfo \N 5446 12776 INSERT -35 6119 ome.model.core.PlaneInfo \N 5446 12777 INSERT -35 6120 ome.model.core.PlaneInfo \N 5446 12778 INSERT -35 6121 ome.model.core.PlaneInfo \N 5446 12779 INSERT -35 6122 ome.model.core.PlaneInfo \N 5446 12780 INSERT -35 6123 ome.model.core.PlaneInfo \N 5446 12781 INSERT -35 6124 ome.model.core.PlaneInfo \N 5446 12782 INSERT -35 6125 ome.model.core.PlaneInfo \N 5446 12783 INSERT -35 6126 ome.model.core.PlaneInfo \N 5446 12784 INSERT -35 6127 ome.model.core.PlaneInfo \N 5446 12785 INSERT -35 6128 ome.model.core.PlaneInfo \N 5446 12786 UPDATE -35 196 ome.model.core.Pixels \N 5450 12787 UPDATE -35 195 ome.model.core.Pixels \N 5451 12788 UPDATE -35 197 ome.model.core.Pixels \N 5451 12789 UPDATE -35 198 ome.model.core.Pixels \N 5451 12790 UPDATE -35 196 ome.model.core.Pixels \N 5451 12791 INSERT -35 315 ome.model.stats.StatsInfo \N 5452 12792 INSERT -35 316 ome.model.stats.StatsInfo \N 5452 12793 INSERT -35 317 ome.model.stats.StatsInfo \N 5452 12794 INSERT -35 318 ome.model.stats.StatsInfo \N 5452 12795 INSERT -35 319 ome.model.stats.StatsInfo \N 5452 12796 INSERT -35 320 ome.model.stats.StatsInfo \N 5452 12797 INSERT -35 321 ome.model.stats.StatsInfo \N 5452 12798 INSERT -35 322 ome.model.stats.StatsInfo \N 5452 12799 UPDATE -35 315 ome.model.core.Channel \N 5452 12800 UPDATE -35 316 ome.model.core.Channel \N 5452 12801 UPDATE -35 319 ome.model.core.Channel \N 5452 12802 UPDATE -35 320 ome.model.core.Channel \N 5452 12803 UPDATE -35 321 ome.model.core.Channel \N 5452 12804 UPDATE -35 322 ome.model.core.Channel \N 5452 12805 UPDATE -35 317 ome.model.core.Channel \N 5452 12806 UPDATE -35 318 ome.model.core.Channel \N 5452 12807 INSERT -35 249 ome.model.display.QuantumDef \N 5453 12808 INSERT -35 249 ome.model.display.RenderingDef \N 5453 12809 INSERT -35 373 ome.model.display.ChannelBinding \N 5453 12810 INSERT -35 374 ome.model.display.ChannelBinding \N 5453 12811 INSERT -35 250 ome.model.display.QuantumDef \N 5453 12812 INSERT -35 250 ome.model.display.RenderingDef \N 5453 12813 INSERT -35 375 ome.model.display.ChannelBinding \N 5453 12814 INSERT -35 376 ome.model.display.ChannelBinding \N 5453 12815 INSERT -35 251 ome.model.display.QuantumDef \N 5453 12816 INSERT -35 251 ome.model.display.RenderingDef \N 5453 12817 INSERT -35 377 ome.model.display.ChannelBinding \N 5453 12818 INSERT -35 378 ome.model.display.ChannelBinding \N 5453 12819 INSERT -35 252 ome.model.display.QuantumDef \N 5453 12820 INSERT -35 252 ome.model.display.RenderingDef \N 5453 12821 INSERT -35 379 ome.model.display.ChannelBinding \N 5453 12822 INSERT -35 380 ome.model.display.ChannelBinding \N 5453 12823 INSERT -35 195 ome.model.display.Thumbnail \N 5454 12824 INSERT -35 196 ome.model.display.Thumbnail \N 5454 12825 INSERT -35 197 ome.model.display.Thumbnail \N 5454 12826 INSERT -35 198 ome.model.display.Thumbnail \N 5454 12827 UPDATE -35 246 ome.model.core.OriginalFile \N 5455 12828 INSERT -35 149 ome.model.acquisition.Microscope \N 5471 12829 INSERT -35 199 ome.model.acquisition.Instrument \N 5471 12830 INSERT -35 223 ome.model.acquisition.Detector \N 5471 12831 INSERT -35 224 ome.model.acquisition.Detector \N 5471 12832 INSERT -35 393 ome.model.acquisition.TransmittanceRange \N 5471 12833 INSERT -35 393 ome.model.acquisition.Filter \N 5471 12834 INSERT -35 394 ome.model.acquisition.TransmittanceRange \N 5471 12835 INSERT -35 394 ome.model.acquisition.Filter \N 5471 12836 INSERT -35 395 ome.model.acquisition.TransmittanceRange \N 5471 12837 INSERT -35 395 ome.model.acquisition.Filter \N 5471 12838 INSERT -35 396 ome.model.acquisition.TransmittanceRange \N 5471 12839 INSERT -35 396 ome.model.acquisition.Filter \N 5471 12840 INSERT -35 689 ome.model.acquisition.Laser \N 5471 12841 INSERT -35 690 ome.model.acquisition.Laser \N 5471 12842 INSERT -35 691 ome.model.acquisition.Laser \N 5471 12843 INSERT -35 692 ome.model.acquisition.Laser \N 5471 12844 INSERT -35 693 ome.model.acquisition.Laser \N 5471 12845 INSERT -35 694 ome.model.acquisition.Laser \N 5471 12846 INSERT -35 199 ome.model.acquisition.Objective \N 5471 12847 INSERT -35 199 ome.model.acquisition.ObjectiveSettings \N 5471 12848 INSERT -35 199 ome.model.core.Image \N 5471 12849 INSERT -35 249 ome.model.core.OriginalFile \N 5471 12850 INSERT -35 249 ome.model.annotations.FileAnnotation \N 5471 12851 INSERT -35 299 ome.model.annotations.ImageAnnotationLink \N 5471 12852 INSERT -35 199 ome.model.containers.DatasetImageLink \N 5471 12853 INSERT -35 199 ome.model.core.Pixels \N 5471 12854 INSERT -35 223 ome.model.acquisition.DetectorSettings \N 5471 12855 INSERT -35 199 ome.model.acquisition.LightPath \N 5471 12856 INSERT -35 199 ome.model.acquisition.LightPathEmissionFilterLink \N 5471 12857 INSERT -35 199 ome.model.acquisition.LightSettings \N 5471 12858 INSERT -35 323 ome.model.core.LogicalChannel \N 5471 12859 INSERT -35 323 ome.model.core.Channel \N 5471 12860 INSERT -35 224 ome.model.acquisition.DetectorSettings \N 5471 12861 INSERT -35 324 ome.model.core.LogicalChannel \N 5471 12862 INSERT -35 324 ome.model.core.Channel \N 5471 12863 INSERT -35 6129 ome.model.core.PlaneInfo \N 5471 12864 INSERT -35 6130 ome.model.core.PlaneInfo \N 5471 12865 INSERT -35 6131 ome.model.core.PlaneInfo \N 5471 12866 INSERT -35 6132 ome.model.core.PlaneInfo \N 5471 12867 INSERT -35 6133 ome.model.core.PlaneInfo \N 5471 12868 INSERT -35 6134 ome.model.core.PlaneInfo \N 5471 12869 INSERT -35 6135 ome.model.core.PlaneInfo \N 5471 12870 INSERT -35 6136 ome.model.core.PlaneInfo \N 5471 12871 INSERT -35 6137 ome.model.core.PlaneInfo \N 5471 12872 INSERT -35 6138 ome.model.core.PlaneInfo \N 5471 12873 INSERT -35 150 ome.model.acquisition.Microscope \N 5471 12874 INSERT -35 200 ome.model.acquisition.Instrument \N 5471 12875 INSERT -35 225 ome.model.acquisition.Detector \N 5471 12876 INSERT -35 226 ome.model.acquisition.Detector \N 5471 12877 INSERT -35 397 ome.model.acquisition.TransmittanceRange \N 5471 12878 INSERT -35 397 ome.model.acquisition.Filter \N 5471 12879 INSERT -35 398 ome.model.acquisition.TransmittanceRange \N 5471 12880 INSERT -35 398 ome.model.acquisition.Filter \N 5471 12881 INSERT -35 399 ome.model.acquisition.TransmittanceRange \N 5471 12882 INSERT -35 399 ome.model.acquisition.Filter \N 5471 12883 INSERT -35 400 ome.model.acquisition.TransmittanceRange \N 5471 12884 INSERT -35 400 ome.model.acquisition.Filter \N 5471 12885 INSERT -35 695 ome.model.acquisition.Laser \N 5471 12886 INSERT -35 696 ome.model.acquisition.Laser \N 5471 12887 INSERT -35 697 ome.model.acquisition.Laser \N 5471 12888 INSERT -35 698 ome.model.acquisition.Laser \N 5471 12889 INSERT -35 699 ome.model.acquisition.Laser \N 5471 12890 INSERT -35 700 ome.model.acquisition.Laser \N 5471 12891 INSERT -35 200 ome.model.acquisition.Objective \N 5471 12892 INSERT -35 200 ome.model.acquisition.ObjectiveSettings \N 5471 12893 INSERT -35 200 ome.model.core.Image \N 5471 12894 INSERT -35 250 ome.model.core.OriginalFile \N 5471 12895 INSERT -35 250 ome.model.annotations.FileAnnotation \N 5471 12896 INSERT -35 300 ome.model.annotations.ImageAnnotationLink \N 5471 12897 INSERT -35 200 ome.model.containers.DatasetImageLink \N 5471 12898 INSERT -35 200 ome.model.core.Pixels \N 5471 12899 INSERT -35 225 ome.model.acquisition.DetectorSettings \N 5471 12900 INSERT -35 200 ome.model.acquisition.LightPath \N 5471 12901 INSERT -35 200 ome.model.acquisition.LightPathEmissionFilterLink \N 5471 12902 INSERT -35 200 ome.model.acquisition.LightSettings \N 5471 12903 INSERT -35 325 ome.model.core.LogicalChannel \N 5471 12904 INSERT -35 325 ome.model.core.Channel \N 5471 12905 INSERT -35 226 ome.model.acquisition.DetectorSettings \N 5471 12906 INSERT -35 326 ome.model.core.LogicalChannel \N 5471 12907 INSERT -35 326 ome.model.core.Channel \N 5471 12908 INSERT -35 6139 ome.model.core.PlaneInfo \N 5471 12909 INSERT -35 6140 ome.model.core.PlaneInfo \N 5471 12910 INSERT -35 6141 ome.model.core.PlaneInfo \N 5471 12911 INSERT -35 6142 ome.model.core.PlaneInfo \N 5471 12912 INSERT -35 6143 ome.model.core.PlaneInfo \N 5471 12913 INSERT -35 6144 ome.model.core.PlaneInfo \N 5471 12914 INSERT -35 6145 ome.model.core.PlaneInfo \N 5471 12915 INSERT -35 6146 ome.model.core.PlaneInfo \N 5471 12916 INSERT -35 6147 ome.model.core.PlaneInfo \N 5471 12917 INSERT -35 6148 ome.model.core.PlaneInfo \N 5471 12918 INSERT -35 6149 ome.model.core.PlaneInfo \N 5471 12919 INSERT -35 6150 ome.model.core.PlaneInfo \N 5471 12920 INSERT -35 6151 ome.model.core.PlaneInfo \N 5471 12921 INSERT -35 6152 ome.model.core.PlaneInfo \N 5471 12922 INSERT -35 6153 ome.model.core.PlaneInfo \N 5471 12923 INSERT -35 6154 ome.model.core.PlaneInfo \N 5471 12924 INSERT -35 6155 ome.model.core.PlaneInfo \N 5471 12925 INSERT -35 6156 ome.model.core.PlaneInfo \N 5471 12926 INSERT -35 6157 ome.model.core.PlaneInfo \N 5471 12927 INSERT -35 6158 ome.model.core.PlaneInfo \N 5471 12928 INSERT -35 6159 ome.model.core.PlaneInfo \N 5471 12929 INSERT -35 6160 ome.model.core.PlaneInfo \N 5471 12930 INSERT -35 6161 ome.model.core.PlaneInfo \N 5471 12931 INSERT -35 6162 ome.model.core.PlaneInfo \N 5471 12932 INSERT -35 6163 ome.model.core.PlaneInfo \N 5471 12933 INSERT -35 6164 ome.model.core.PlaneInfo \N 5471 12934 INSERT -35 6165 ome.model.core.PlaneInfo \N 5471 12935 INSERT -35 6166 ome.model.core.PlaneInfo \N 5471 12936 INSERT -35 6167 ome.model.core.PlaneInfo \N 5471 12937 INSERT -35 6168 ome.model.core.PlaneInfo \N 5471 12938 INSERT -35 6169 ome.model.core.PlaneInfo \N 5471 12939 INSERT -35 6170 ome.model.core.PlaneInfo \N 5471 12940 INSERT -35 6171 ome.model.core.PlaneInfo \N 5471 12941 INSERT -35 6172 ome.model.core.PlaneInfo \N 5471 12942 INSERT -35 6173 ome.model.core.PlaneInfo \N 5471 12943 INSERT -35 6174 ome.model.core.PlaneInfo \N 5471 12944 INSERT -35 6175 ome.model.core.PlaneInfo \N 5471 12945 INSERT -35 6176 ome.model.core.PlaneInfo \N 5471 12946 INSERT -35 6177 ome.model.core.PlaneInfo \N 5471 12947 INSERT -35 6178 ome.model.core.PlaneInfo \N 5471 12948 INSERT -35 13 ome.model.roi.Roi \N 5471 12949 INSERT -35 25 ome.model.roi.Label \N 5471 12950 INSERT -35 26 ome.model.roi.Polygon \N 5471 12951 INSERT -35 151 ome.model.acquisition.Microscope \N 5471 12952 INSERT -35 201 ome.model.acquisition.Instrument \N 5471 12953 INSERT -35 227 ome.model.acquisition.Detector \N 5471 12954 INSERT -35 228 ome.model.acquisition.Detector \N 5471 12955 INSERT -35 401 ome.model.acquisition.TransmittanceRange \N 5471 12956 INSERT -35 401 ome.model.acquisition.Filter \N 5471 12957 INSERT -35 402 ome.model.acquisition.TransmittanceRange \N 5471 12958 INSERT -35 402 ome.model.acquisition.Filter \N 5471 12959 INSERT -35 403 ome.model.acquisition.TransmittanceRange \N 5471 12960 INSERT -35 403 ome.model.acquisition.Filter \N 5471 12961 INSERT -35 404 ome.model.acquisition.TransmittanceRange \N 5471 12962 INSERT -35 404 ome.model.acquisition.Filter \N 5471 12963 INSERT -35 701 ome.model.acquisition.Laser \N 5471 12964 INSERT -35 702 ome.model.acquisition.Laser \N 5471 12965 INSERT -35 703 ome.model.acquisition.Laser \N 5471 12966 INSERT -35 704 ome.model.acquisition.Laser \N 5471 12967 INSERT -35 705 ome.model.acquisition.Laser \N 5471 12968 INSERT -35 706 ome.model.acquisition.Laser \N 5471 12969 INSERT -35 201 ome.model.acquisition.Objective \N 5471 12970 INSERT -35 201 ome.model.acquisition.ObjectiveSettings \N 5471 12971 INSERT -35 201 ome.model.core.Image \N 5471 12972 INSERT -35 251 ome.model.core.OriginalFile \N 5471 12973 INSERT -35 251 ome.model.annotations.FileAnnotation \N 5471 12974 INSERT -35 301 ome.model.annotations.ImageAnnotationLink \N 5471 12975 INSERT -35 201 ome.model.containers.DatasetImageLink \N 5471 12976 INSERT -35 201 ome.model.core.Pixels \N 5471 12977 INSERT -35 227 ome.model.acquisition.DetectorSettings \N 5471 12978 INSERT -35 201 ome.model.acquisition.LightPath \N 5471 12979 INSERT -35 201 ome.model.acquisition.LightPathEmissionFilterLink \N 5471 12980 INSERT -35 201 ome.model.acquisition.LightSettings \N 5471 12981 INSERT -35 327 ome.model.core.LogicalChannel \N 5471 12982 INSERT -35 327 ome.model.core.Channel \N 5471 12983 INSERT -35 228 ome.model.acquisition.DetectorSettings \N 5471 12984 INSERT -35 328 ome.model.core.LogicalChannel \N 5471 12985 INSERT -35 328 ome.model.core.Channel \N 5471 12986 INSERT -35 6179 ome.model.core.PlaneInfo \N 5471 12987 INSERT -35 6180 ome.model.core.PlaneInfo \N 5471 12988 INSERT -35 152 ome.model.acquisition.Microscope \N 5471 12989 INSERT -35 202 ome.model.acquisition.Instrument \N 5471 12990 INSERT -35 229 ome.model.acquisition.Detector \N 5471 12991 INSERT -35 230 ome.model.acquisition.Detector \N 5471 12992 INSERT -35 405 ome.model.acquisition.TransmittanceRange \N 5471 12993 INSERT -35 405 ome.model.acquisition.Filter \N 5471 12994 INSERT -35 406 ome.model.acquisition.TransmittanceRange \N 5471 12995 INSERT -35 406 ome.model.acquisition.Filter \N 5471 12996 INSERT -35 407 ome.model.acquisition.TransmittanceRange \N 5471 12997 INSERT -35 407 ome.model.acquisition.Filter \N 5471 12998 INSERT -35 408 ome.model.acquisition.TransmittanceRange \N 5471 12999 INSERT -35 408 ome.model.acquisition.Filter \N 5471 13000 INSERT -35 707 ome.model.acquisition.Laser \N 5471 13001 INSERT -35 708 ome.model.acquisition.Laser \N 5471 13002 INSERT -35 709 ome.model.acquisition.Laser \N 5471 13003 INSERT -35 710 ome.model.acquisition.Laser \N 5471 13004 INSERT -35 711 ome.model.acquisition.Laser \N 5471 13005 INSERT -35 712 ome.model.acquisition.Laser \N 5471 13006 INSERT -35 202 ome.model.acquisition.Objective \N 5471 13007 INSERT -35 202 ome.model.acquisition.ObjectiveSettings \N 5471 13008 INSERT -35 202 ome.model.core.Image \N 5471 13009 INSERT -35 252 ome.model.core.OriginalFile \N 5471 13010 INSERT -35 252 ome.model.annotations.FileAnnotation \N 5471 13011 INSERT -35 302 ome.model.annotations.ImageAnnotationLink \N 5471 13012 INSERT -35 202 ome.model.containers.DatasetImageLink \N 5471 13013 INSERT -35 202 ome.model.core.Pixels \N 5471 13014 INSERT -35 229 ome.model.acquisition.DetectorSettings \N 5471 13015 INSERT -35 202 ome.model.acquisition.LightPath \N 5471 13016 INSERT -35 202 ome.model.acquisition.LightPathEmissionFilterLink \N 5471 13017 INSERT -35 202 ome.model.acquisition.LightSettings \N 5471 13018 INSERT -35 329 ome.model.core.LogicalChannel \N 5471 13019 INSERT -35 329 ome.model.core.Channel \N 5471 13020 INSERT -35 230 ome.model.acquisition.DetectorSettings \N 5471 13021 INSERT -35 330 ome.model.core.LogicalChannel \N 5471 13022 INSERT -35 330 ome.model.core.Channel \N 5471 13023 INSERT -35 6181 ome.model.core.PlaneInfo \N 5471 13024 INSERT -35 6182 ome.model.core.PlaneInfo \N 5471 13025 INSERT -35 6183 ome.model.core.PlaneInfo \N 5471 13026 INSERT -35 6184 ome.model.core.PlaneInfo \N 5471 13027 INSERT -35 6185 ome.model.core.PlaneInfo \N 5471 13028 INSERT -35 6186 ome.model.core.PlaneInfo \N 5471 13029 INSERT -35 6187 ome.model.core.PlaneInfo \N 5471 13030 INSERT -35 6188 ome.model.core.PlaneInfo \N 5471 13031 INSERT -35 6189 ome.model.core.PlaneInfo \N 5471 13032 INSERT -35 6190 ome.model.core.PlaneInfo \N 5471 13033 INSERT -35 6191 ome.model.core.PlaneInfo \N 5471 13034 INSERT -35 6192 ome.model.core.PlaneInfo \N 5471 13035 INSERT -35 6193 ome.model.core.PlaneInfo \N 5471 13036 INSERT -35 6194 ome.model.core.PlaneInfo \N 5471 13037 INSERT -35 6195 ome.model.core.PlaneInfo \N 5471 13038 INSERT -35 6196 ome.model.core.PlaneInfo \N 5471 13039 INSERT -35 6197 ome.model.core.PlaneInfo \N 5471 13040 INSERT -35 6198 ome.model.core.PlaneInfo \N 5471 13041 INSERT -35 6199 ome.model.core.PlaneInfo \N 5471 13042 INSERT -35 6200 ome.model.core.PlaneInfo \N 5471 13043 INSERT -35 6201 ome.model.core.PlaneInfo \N 5471 13044 INSERT -35 6202 ome.model.core.PlaneInfo \N 5471 13045 INSERT -35 6203 ome.model.core.PlaneInfo \N 5471 13046 INSERT -35 6204 ome.model.core.PlaneInfo \N 5471 13047 INSERT -35 6205 ome.model.core.PlaneInfo \N 5471 13048 INSERT -35 6206 ome.model.core.PlaneInfo \N 5471 13049 INSERT -35 6207 ome.model.core.PlaneInfo \N 5471 13050 INSERT -35 6208 ome.model.core.PlaneInfo \N 5471 13051 INSERT -35 6209 ome.model.core.PlaneInfo \N 5471 13052 INSERT -35 6210 ome.model.core.PlaneInfo \N 5471 13053 INSERT -35 6211 ome.model.core.PlaneInfo \N 5471 13054 INSERT -35 6212 ome.model.core.PlaneInfo \N 5471 13055 INSERT -35 6213 ome.model.core.PlaneInfo \N 5471 13056 INSERT -35 6214 ome.model.core.PlaneInfo \N 5471 13057 INSERT -35 6215 ome.model.core.PlaneInfo \N 5471 13058 INSERT -35 6216 ome.model.core.PlaneInfo \N 5471 13059 INSERT -35 6217 ome.model.core.PlaneInfo \N 5471 13060 INSERT -35 6218 ome.model.core.PlaneInfo \N 5471 13061 INSERT -35 6219 ome.model.core.PlaneInfo \N 5471 13062 INSERT -35 6220 ome.model.core.PlaneInfo \N 5471 13063 UPDATE -35 200 ome.model.core.Pixels \N 5472 13064 UPDATE -35 199 ome.model.core.Pixels \N 5473 13065 UPDATE -35 201 ome.model.core.Pixels \N 5473 13066 UPDATE -35 202 ome.model.core.Pixels \N 5473 13067 UPDATE -35 200 ome.model.core.Pixels \N 5473 13068 INSERT -35 323 ome.model.stats.StatsInfo \N 5474 13069 INSERT -35 324 ome.model.stats.StatsInfo \N 5474 13070 INSERT -35 325 ome.model.stats.StatsInfo \N 5474 13071 INSERT -35 326 ome.model.stats.StatsInfo \N 5474 13072 INSERT -35 327 ome.model.stats.StatsInfo \N 5474 13073 INSERT -35 328 ome.model.stats.StatsInfo \N 5474 13074 INSERT -35 329 ome.model.stats.StatsInfo \N 5474 13075 INSERT -35 330 ome.model.stats.StatsInfo \N 5474 13076 UPDATE -35 323 ome.model.core.Channel \N 5474 13077 UPDATE -35 324 ome.model.core.Channel \N 5474 13078 UPDATE -35 327 ome.model.core.Channel \N 5474 13079 UPDATE -35 328 ome.model.core.Channel \N 5474 13080 UPDATE -35 329 ome.model.core.Channel \N 5474 13081 UPDATE -35 330 ome.model.core.Channel \N 5474 13082 UPDATE -35 325 ome.model.core.Channel \N 5474 13083 UPDATE -35 326 ome.model.core.Channel \N 5474 13084 INSERT -35 253 ome.model.display.QuantumDef \N 5475 13085 INSERT -35 253 ome.model.display.RenderingDef \N 5475 13086 INSERT -35 381 ome.model.display.ChannelBinding \N 5475 13087 INSERT -35 382 ome.model.display.ChannelBinding \N 5475 13088 INSERT -35 254 ome.model.display.QuantumDef \N 5475 13089 INSERT -35 254 ome.model.display.RenderingDef \N 5475 13090 INSERT -35 383 ome.model.display.ChannelBinding \N 5475 13091 INSERT -35 384 ome.model.display.ChannelBinding \N 5475 13092 INSERT -35 255 ome.model.display.QuantumDef \N 5475 13093 INSERT -35 255 ome.model.display.RenderingDef \N 5475 13094 INSERT -35 385 ome.model.display.ChannelBinding \N 5475 13095 INSERT -35 386 ome.model.display.ChannelBinding \N 5475 13096 INSERT -35 256 ome.model.display.QuantumDef \N 5475 13097 INSERT -35 256 ome.model.display.RenderingDef \N 5475 13098 INSERT -35 387 ome.model.display.ChannelBinding \N 5475 13099 INSERT -35 388 ome.model.display.ChannelBinding \N 5475 13100 INSERT -35 199 ome.model.display.Thumbnail \N 5476 13101 INSERT -35 200 ome.model.display.Thumbnail \N 5476 13102 INSERT -35 201 ome.model.display.Thumbnail \N 5476 13103 INSERT -35 202 ome.model.display.Thumbnail \N 5476 13104 UPDATE -35 250 ome.model.core.OriginalFile \N 5477 13105 INSERT -35 153 ome.model.acquisition.Microscope \N 5493 13106 INSERT -35 203 ome.model.acquisition.Instrument \N 5493 13107 INSERT -35 231 ome.model.acquisition.Detector \N 5493 13108 INSERT -35 232 ome.model.acquisition.Detector \N 5493 13109 INSERT -35 409 ome.model.acquisition.TransmittanceRange \N 5493 13110 INSERT -35 409 ome.model.acquisition.Filter \N 5493 13111 INSERT -35 410 ome.model.acquisition.TransmittanceRange \N 5493 13112 INSERT -35 410 ome.model.acquisition.Filter \N 5493 13113 INSERT -35 411 ome.model.acquisition.TransmittanceRange \N 5493 13114 INSERT -35 411 ome.model.acquisition.Filter \N 5493 13115 INSERT -35 412 ome.model.acquisition.TransmittanceRange \N 5493 13116 INSERT -35 412 ome.model.acquisition.Filter \N 5493 13117 INSERT -35 713 ome.model.acquisition.Laser \N 5493 13118 INSERT -35 714 ome.model.acquisition.Laser \N 5493 13119 INSERT -35 715 ome.model.acquisition.Laser \N 5493 13120 INSERT -35 716 ome.model.acquisition.Laser \N 5493 13121 INSERT -35 717 ome.model.acquisition.Laser \N 5493 13122 INSERT -35 718 ome.model.acquisition.Laser \N 5493 13123 INSERT -35 203 ome.model.acquisition.Objective \N 5493 13124 INSERT -35 203 ome.model.acquisition.ObjectiveSettings \N 5493 13125 INSERT -35 203 ome.model.core.Image \N 5493 13126 INSERT -35 253 ome.model.core.OriginalFile \N 5493 13127 INSERT -35 253 ome.model.annotations.FileAnnotation \N 5493 13128 INSERT -35 303 ome.model.annotations.ImageAnnotationLink \N 5493 13129 INSERT -35 203 ome.model.containers.DatasetImageLink \N 5493 13130 INSERT -35 203 ome.model.core.Pixels \N 5493 13131 INSERT -35 231 ome.model.acquisition.DetectorSettings \N 5493 13132 INSERT -35 203 ome.model.acquisition.LightPath \N 5493 13133 INSERT -35 203 ome.model.acquisition.LightPathEmissionFilterLink \N 5493 13134 INSERT -35 203 ome.model.acquisition.LightSettings \N 5493 13135 INSERT -35 331 ome.model.core.LogicalChannel \N 5493 13136 INSERT -35 331 ome.model.core.Channel \N 5493 13137 INSERT -35 232 ome.model.acquisition.DetectorSettings \N 5493 13138 INSERT -35 332 ome.model.core.LogicalChannel \N 5493 13139 INSERT -35 332 ome.model.core.Channel \N 5493 13140 INSERT -35 6221 ome.model.core.PlaneInfo \N 5493 13141 INSERT -35 6222 ome.model.core.PlaneInfo \N 5493 13142 INSERT -35 6223 ome.model.core.PlaneInfo \N 5493 13143 INSERT -35 6224 ome.model.core.PlaneInfo \N 5493 13144 INSERT -35 6225 ome.model.core.PlaneInfo \N 5493 13145 INSERT -35 6226 ome.model.core.PlaneInfo \N 5493 13146 INSERT -35 6227 ome.model.core.PlaneInfo \N 5493 13147 INSERT -35 6228 ome.model.core.PlaneInfo \N 5493 13148 INSERT -35 6229 ome.model.core.PlaneInfo \N 5493 13149 INSERT -35 6230 ome.model.core.PlaneInfo \N 5493 13150 INSERT -35 154 ome.model.acquisition.Microscope \N 5493 13151 INSERT -35 204 ome.model.acquisition.Instrument \N 5493 13152 INSERT -35 233 ome.model.acquisition.Detector \N 5493 13153 INSERT -35 234 ome.model.acquisition.Detector \N 5493 13154 INSERT -35 413 ome.model.acquisition.TransmittanceRange \N 5493 13155 INSERT -35 413 ome.model.acquisition.Filter \N 5493 13156 INSERT -35 414 ome.model.acquisition.TransmittanceRange \N 5493 13157 INSERT -35 414 ome.model.acquisition.Filter \N 5493 13158 INSERT -35 415 ome.model.acquisition.TransmittanceRange \N 5493 13159 INSERT -35 415 ome.model.acquisition.Filter \N 5493 13160 INSERT -35 416 ome.model.acquisition.TransmittanceRange \N 5493 13161 INSERT -35 416 ome.model.acquisition.Filter \N 5493 13162 INSERT -35 719 ome.model.acquisition.Laser \N 5493 13163 INSERT -35 720 ome.model.acquisition.Laser \N 5493 13164 INSERT -35 721 ome.model.acquisition.Laser \N 5493 13165 INSERT -35 722 ome.model.acquisition.Laser \N 5493 13166 INSERT -35 723 ome.model.acquisition.Laser \N 5493 13167 INSERT -35 724 ome.model.acquisition.Laser \N 5493 13168 INSERT -35 204 ome.model.acquisition.Objective \N 5493 13169 INSERT -35 204 ome.model.acquisition.ObjectiveSettings \N 5493 13170 INSERT -35 204 ome.model.core.Image \N 5493 13171 INSERT -35 254 ome.model.core.OriginalFile \N 5493 13172 INSERT -35 254 ome.model.annotations.FileAnnotation \N 5493 13173 INSERT -35 304 ome.model.annotations.ImageAnnotationLink \N 5493 13174 INSERT -35 204 ome.model.containers.DatasetImageLink \N 5493 13175 INSERT -35 204 ome.model.core.Pixels \N 5493 13176 INSERT -35 233 ome.model.acquisition.DetectorSettings \N 5493 13177 INSERT -35 204 ome.model.acquisition.LightPath \N 5493 13178 INSERT -35 204 ome.model.acquisition.LightPathEmissionFilterLink \N 5493 13179 INSERT -35 204 ome.model.acquisition.LightSettings \N 5493 13180 INSERT -35 333 ome.model.core.LogicalChannel \N 5493 13181 INSERT -35 333 ome.model.core.Channel \N 5493 13182 INSERT -35 234 ome.model.acquisition.DetectorSettings \N 5493 13183 INSERT -35 334 ome.model.core.LogicalChannel \N 5493 13184 INSERT -35 334 ome.model.core.Channel \N 5493 13185 INSERT -35 6231 ome.model.core.PlaneInfo \N 5493 13186 INSERT -35 6232 ome.model.core.PlaneInfo \N 5493 13187 INSERT -35 6233 ome.model.core.PlaneInfo \N 5493 13188 INSERT -35 6234 ome.model.core.PlaneInfo \N 5493 13189 INSERT -35 6235 ome.model.core.PlaneInfo \N 5493 13190 INSERT -35 6236 ome.model.core.PlaneInfo \N 5493 13191 INSERT -35 6237 ome.model.core.PlaneInfo \N 5493 13192 INSERT -35 6238 ome.model.core.PlaneInfo \N 5493 13193 INSERT -35 6239 ome.model.core.PlaneInfo \N 5493 13194 INSERT -35 6240 ome.model.core.PlaneInfo \N 5493 13195 INSERT -35 6241 ome.model.core.PlaneInfo \N 5493 13196 INSERT -35 6242 ome.model.core.PlaneInfo \N 5493 13197 INSERT -35 6243 ome.model.core.PlaneInfo \N 5493 13198 INSERT -35 6244 ome.model.core.PlaneInfo \N 5493 13199 INSERT -35 6245 ome.model.core.PlaneInfo \N 5493 13200 INSERT -35 6246 ome.model.core.PlaneInfo \N 5493 13201 INSERT -35 6247 ome.model.core.PlaneInfo \N 5493 13202 INSERT -35 6248 ome.model.core.PlaneInfo \N 5493 13203 INSERT -35 6249 ome.model.core.PlaneInfo \N 5493 13204 INSERT -35 6250 ome.model.core.PlaneInfo \N 5493 13205 INSERT -35 6251 ome.model.core.PlaneInfo \N 5493 13206 INSERT -35 6252 ome.model.core.PlaneInfo \N 5493 13207 INSERT -35 6253 ome.model.core.PlaneInfo \N 5493 13208 INSERT -35 6254 ome.model.core.PlaneInfo \N 5493 13209 INSERT -35 6255 ome.model.core.PlaneInfo \N 5493 13210 INSERT -35 6256 ome.model.core.PlaneInfo \N 5493 13211 INSERT -35 6257 ome.model.core.PlaneInfo \N 5493 13212 INSERT -35 6258 ome.model.core.PlaneInfo \N 5493 13213 INSERT -35 6259 ome.model.core.PlaneInfo \N 5493 13214 INSERT -35 6260 ome.model.core.PlaneInfo \N 5493 13215 INSERT -35 6261 ome.model.core.PlaneInfo \N 5493 13216 INSERT -35 6262 ome.model.core.PlaneInfo \N 5493 13217 INSERT -35 6263 ome.model.core.PlaneInfo \N 5493 13218 INSERT -35 6264 ome.model.core.PlaneInfo \N 5493 13219 INSERT -35 6265 ome.model.core.PlaneInfo \N 5493 13220 INSERT -35 6266 ome.model.core.PlaneInfo \N 5493 13221 INSERT -35 6267 ome.model.core.PlaneInfo \N 5493 13222 INSERT -35 6268 ome.model.core.PlaneInfo \N 5493 13223 INSERT -35 6269 ome.model.core.PlaneInfo \N 5493 13224 INSERT -35 6270 ome.model.core.PlaneInfo \N 5493 13225 INSERT -35 14 ome.model.roi.Roi \N 5493 13226 INSERT -35 27 ome.model.roi.Label \N 5493 13227 INSERT -35 28 ome.model.roi.Polygon \N 5493 13228 INSERT -35 155 ome.model.acquisition.Microscope \N 5493 13229 INSERT -35 205 ome.model.acquisition.Instrument \N 5493 13230 INSERT -35 235 ome.model.acquisition.Detector \N 5493 13231 INSERT -35 236 ome.model.acquisition.Detector \N 5493 13232 INSERT -35 417 ome.model.acquisition.TransmittanceRange \N 5493 13233 INSERT -35 417 ome.model.acquisition.Filter \N 5493 13234 INSERT -35 418 ome.model.acquisition.TransmittanceRange \N 5493 13235 INSERT -35 418 ome.model.acquisition.Filter \N 5493 13236 INSERT -35 419 ome.model.acquisition.TransmittanceRange \N 5493 13237 INSERT -35 419 ome.model.acquisition.Filter \N 5493 13238 INSERT -35 420 ome.model.acquisition.TransmittanceRange \N 5493 13239 INSERT -35 420 ome.model.acquisition.Filter \N 5493 13240 INSERT -35 725 ome.model.acquisition.Laser \N 5493 13241 INSERT -35 726 ome.model.acquisition.Laser \N 5493 13242 INSERT -35 727 ome.model.acquisition.Laser \N 5493 13243 INSERT -35 728 ome.model.acquisition.Laser \N 5493 13244 INSERT -35 729 ome.model.acquisition.Laser \N 5493 13245 INSERT -35 730 ome.model.acquisition.Laser \N 5493 13246 INSERT -35 205 ome.model.acquisition.Objective \N 5493 13247 INSERT -35 205 ome.model.acquisition.ObjectiveSettings \N 5493 13248 INSERT -35 205 ome.model.core.Image \N 5493 13249 INSERT -35 255 ome.model.core.OriginalFile \N 5493 13250 INSERT -35 255 ome.model.annotations.FileAnnotation \N 5493 13251 INSERT -35 305 ome.model.annotations.ImageAnnotationLink \N 5493 13252 INSERT -35 205 ome.model.containers.DatasetImageLink \N 5493 13253 INSERT -35 205 ome.model.core.Pixels \N 5493 13254 INSERT -35 235 ome.model.acquisition.DetectorSettings \N 5493 13255 INSERT -35 205 ome.model.acquisition.LightPath \N 5493 13256 INSERT -35 205 ome.model.acquisition.LightPathEmissionFilterLink \N 5493 13257 INSERT -35 205 ome.model.acquisition.LightSettings \N 5493 13258 INSERT -35 335 ome.model.core.LogicalChannel \N 5493 13259 INSERT -35 335 ome.model.core.Channel \N 5493 13260 INSERT -35 236 ome.model.acquisition.DetectorSettings \N 5493 13261 INSERT -35 336 ome.model.core.LogicalChannel \N 5493 13262 INSERT -35 336 ome.model.core.Channel \N 5493 13263 INSERT -35 6271 ome.model.core.PlaneInfo \N 5493 13264 INSERT -35 6272 ome.model.core.PlaneInfo \N 5493 13265 INSERT -35 156 ome.model.acquisition.Microscope \N 5493 13266 INSERT -35 206 ome.model.acquisition.Instrument \N 5493 13267 INSERT -35 237 ome.model.acquisition.Detector \N 5493 13268 INSERT -35 238 ome.model.acquisition.Detector \N 5493 13269 INSERT -35 421 ome.model.acquisition.TransmittanceRange \N 5493 13270 INSERT -35 421 ome.model.acquisition.Filter \N 5493 13271 INSERT -35 422 ome.model.acquisition.TransmittanceRange \N 5493 13272 INSERT -35 422 ome.model.acquisition.Filter \N 5493 13273 INSERT -35 423 ome.model.acquisition.TransmittanceRange \N 5493 13274 INSERT -35 423 ome.model.acquisition.Filter \N 5493 13275 INSERT -35 424 ome.model.acquisition.TransmittanceRange \N 5493 13276 INSERT -35 424 ome.model.acquisition.Filter \N 5493 13277 INSERT -35 731 ome.model.acquisition.Laser \N 5493 13278 INSERT -35 732 ome.model.acquisition.Laser \N 5493 13279 INSERT -35 733 ome.model.acquisition.Laser \N 5493 13280 INSERT -35 734 ome.model.acquisition.Laser \N 5493 13281 INSERT -35 735 ome.model.acquisition.Laser \N 5493 13282 INSERT -35 736 ome.model.acquisition.Laser \N 5493 13283 INSERT -35 206 ome.model.acquisition.Objective \N 5493 13284 INSERT -35 206 ome.model.acquisition.ObjectiveSettings \N 5493 13285 INSERT -35 206 ome.model.core.Image \N 5493 13286 INSERT -35 256 ome.model.core.OriginalFile \N 5493 13287 INSERT -35 256 ome.model.annotations.FileAnnotation \N 5493 13288 INSERT -35 306 ome.model.annotations.ImageAnnotationLink \N 5493 13289 INSERT -35 206 ome.model.containers.DatasetImageLink \N 5493 13290 INSERT -35 206 ome.model.core.Pixels \N 5493 13291 INSERT -35 237 ome.model.acquisition.DetectorSettings \N 5493 13292 INSERT -35 206 ome.model.acquisition.LightPath \N 5493 13293 INSERT -35 206 ome.model.acquisition.LightPathEmissionFilterLink \N 5493 13294 INSERT -35 206 ome.model.acquisition.LightSettings \N 5493 13295 INSERT -35 337 ome.model.core.LogicalChannel \N 5493 13296 INSERT -35 337 ome.model.core.Channel \N 5493 13297 INSERT -35 238 ome.model.acquisition.DetectorSettings \N 5493 13298 INSERT -35 338 ome.model.core.LogicalChannel \N 5493 13299 INSERT -35 338 ome.model.core.Channel \N 5493 13300 INSERT -35 6273 ome.model.core.PlaneInfo \N 5493 13301 INSERT -35 6274 ome.model.core.PlaneInfo \N 5493 13302 INSERT -35 6275 ome.model.core.PlaneInfo \N 5493 13303 INSERT -35 6276 ome.model.core.PlaneInfo \N 5493 13304 INSERT -35 6277 ome.model.core.PlaneInfo \N 5493 13305 INSERT -35 6278 ome.model.core.PlaneInfo \N 5493 13306 INSERT -35 6279 ome.model.core.PlaneInfo \N 5493 13307 INSERT -35 6280 ome.model.core.PlaneInfo \N 5493 13308 INSERT -35 6281 ome.model.core.PlaneInfo \N 5493 13309 INSERT -35 6282 ome.model.core.PlaneInfo \N 5493 13310 INSERT -35 6283 ome.model.core.PlaneInfo \N 5493 13311 INSERT -35 6284 ome.model.core.PlaneInfo \N 5493 13312 INSERT -35 6285 ome.model.core.PlaneInfo \N 5493 13313 INSERT -35 6286 ome.model.core.PlaneInfo \N 5493 13314 INSERT -35 6287 ome.model.core.PlaneInfo \N 5493 13315 INSERT -35 6288 ome.model.core.PlaneInfo \N 5493 13316 INSERT -35 6289 ome.model.core.PlaneInfo \N 5493 13317 INSERT -35 6290 ome.model.core.PlaneInfo \N 5493 13318 INSERT -35 6291 ome.model.core.PlaneInfo \N 5493 13319 INSERT -35 6292 ome.model.core.PlaneInfo \N 5493 13320 INSERT -35 6293 ome.model.core.PlaneInfo \N 5493 13321 INSERT -35 6294 ome.model.core.PlaneInfo \N 5493 13322 INSERT -35 6295 ome.model.core.PlaneInfo \N 5493 13323 INSERT -35 6296 ome.model.core.PlaneInfo \N 5493 13324 INSERT -35 6297 ome.model.core.PlaneInfo \N 5493 13325 INSERT -35 6298 ome.model.core.PlaneInfo \N 5493 13326 INSERT -35 6299 ome.model.core.PlaneInfo \N 5493 13327 INSERT -35 6300 ome.model.core.PlaneInfo \N 5493 13328 INSERT -35 6301 ome.model.core.PlaneInfo \N 5493 13329 INSERT -35 6302 ome.model.core.PlaneInfo \N 5493 13330 INSERT -35 6303 ome.model.core.PlaneInfo \N 5493 13331 INSERT -35 6304 ome.model.core.PlaneInfo \N 5493 13332 INSERT -35 6305 ome.model.core.PlaneInfo \N 5493 13333 INSERT -35 6306 ome.model.core.PlaneInfo \N 5493 13334 INSERT -35 6307 ome.model.core.PlaneInfo \N 5493 13335 INSERT -35 6308 ome.model.core.PlaneInfo \N 5493 13336 INSERT -35 6309 ome.model.core.PlaneInfo \N 5493 13337 INSERT -35 6310 ome.model.core.PlaneInfo \N 5493 13338 INSERT -35 6311 ome.model.core.PlaneInfo \N 5493 13339 INSERT -35 6312 ome.model.core.PlaneInfo \N 5493 13340 UPDATE -35 204 ome.model.core.Pixels \N 5494 13341 UPDATE -35 203 ome.model.core.Pixels \N 5495 13342 UPDATE -35 205 ome.model.core.Pixels \N 5495 13343 UPDATE -35 206 ome.model.core.Pixels \N 5495 13344 UPDATE -35 204 ome.model.core.Pixels \N 5495 13345 INSERT -35 331 ome.model.stats.StatsInfo \N 5496 13346 INSERT -35 332 ome.model.stats.StatsInfo \N 5496 13347 INSERT -35 333 ome.model.stats.StatsInfo \N 5496 13348 INSERT -35 334 ome.model.stats.StatsInfo \N 5496 13349 INSERT -35 335 ome.model.stats.StatsInfo \N 5496 13350 INSERT -35 336 ome.model.stats.StatsInfo \N 5496 13351 INSERT -35 337 ome.model.stats.StatsInfo \N 5496 13352 INSERT -35 338 ome.model.stats.StatsInfo \N 5496 13353 UPDATE -35 331 ome.model.core.Channel \N 5496 13354 UPDATE -35 332 ome.model.core.Channel \N 5496 13355 UPDATE -35 335 ome.model.core.Channel \N 5496 13356 UPDATE -35 336 ome.model.core.Channel \N 5496 13357 UPDATE -35 337 ome.model.core.Channel \N 5496 13358 UPDATE -35 338 ome.model.core.Channel \N 5496 13359 UPDATE -35 333 ome.model.core.Channel \N 5496 13360 UPDATE -35 334 ome.model.core.Channel \N 5496 13361 INSERT -35 257 ome.model.display.QuantumDef \N 5497 13362 INSERT -35 257 ome.model.display.RenderingDef \N 5497 13363 INSERT -35 389 ome.model.display.ChannelBinding \N 5497 13364 INSERT -35 390 ome.model.display.ChannelBinding \N 5497 13365 INSERT -35 258 ome.model.display.QuantumDef \N 5497 13366 INSERT -35 258 ome.model.display.RenderingDef \N 5497 13367 INSERT -35 391 ome.model.display.ChannelBinding \N 5497 13368 INSERT -35 392 ome.model.display.ChannelBinding \N 5497 13369 INSERT -35 259 ome.model.display.QuantumDef \N 5497 13370 INSERT -35 259 ome.model.display.RenderingDef \N 5497 13371 INSERT -35 393 ome.model.display.ChannelBinding \N 5497 13372 INSERT -35 394 ome.model.display.ChannelBinding \N 5497 13373 INSERT -35 260 ome.model.display.QuantumDef \N 5497 13374 INSERT -35 260 ome.model.display.RenderingDef \N 5497 13375 INSERT -35 395 ome.model.display.ChannelBinding \N 5497 13376 INSERT -35 396 ome.model.display.ChannelBinding \N 5497 13377 INSERT -35 203 ome.model.display.Thumbnail \N 5498 13378 INSERT -35 204 ome.model.display.Thumbnail \N 5498 13379 INSERT -35 205 ome.model.display.Thumbnail \N 5498 13380 INSERT -35 206 ome.model.display.Thumbnail \N 5498 13381 UPDATE -35 254 ome.model.core.OriginalFile \N 5499 13382 INSERT -35 157 ome.model.acquisition.Microscope \N 5515 13383 INSERT -35 207 ome.model.acquisition.Instrument \N 5515 13384 INSERT -35 239 ome.model.acquisition.Detector \N 5515 13385 INSERT -35 425 ome.model.acquisition.TransmittanceRange \N 5515 13386 INSERT -35 425 ome.model.acquisition.Filter \N 5515 13387 INSERT -35 426 ome.model.acquisition.TransmittanceRange \N 5515 13388 INSERT -35 426 ome.model.acquisition.Filter \N 5515 13389 INSERT -35 427 ome.model.acquisition.TransmittanceRange \N 5515 13390 INSERT -35 427 ome.model.acquisition.Filter \N 5515 13391 INSERT -35 428 ome.model.acquisition.TransmittanceRange \N 5515 13392 INSERT -35 428 ome.model.acquisition.Filter \N 5515 13393 INSERT -35 737 ome.model.acquisition.Laser \N 5515 13394 INSERT -35 738 ome.model.acquisition.Laser \N 5515 13395 INSERT -35 739 ome.model.acquisition.Laser \N 5515 13396 INSERT -35 740 ome.model.acquisition.Laser \N 5515 13397 INSERT -35 741 ome.model.acquisition.Laser \N 5515 13398 INSERT -35 742 ome.model.acquisition.Laser \N 5515 13399 INSERT -35 207 ome.model.acquisition.Objective \N 5515 13400 INSERT -35 207 ome.model.acquisition.ObjectiveSettings \N 5515 13401 INSERT -35 207 ome.model.core.Image \N 5515 13402 INSERT -35 257 ome.model.core.OriginalFile \N 5515 13403 INSERT -35 257 ome.model.annotations.FileAnnotation \N 5515 13404 INSERT -35 307 ome.model.annotations.ImageAnnotationLink \N 5515 13405 INSERT -35 207 ome.model.containers.DatasetImageLink \N 5515 13406 INSERT -35 207 ome.model.core.Pixels \N 5515 13407 INSERT -35 239 ome.model.acquisition.DetectorSettings \N 5515 13408 INSERT -35 207 ome.model.acquisition.LightPath \N 5515 13409 INSERT -35 207 ome.model.acquisition.LightPathEmissionFilterLink \N 5515 13410 INSERT -35 207 ome.model.acquisition.LightSettings \N 5515 13411 INSERT -35 339 ome.model.core.LogicalChannel \N 5515 13412 INSERT -35 339 ome.model.core.Channel \N 5515 13413 INSERT -35 6313 ome.model.core.PlaneInfo \N 5515 13414 INSERT -35 6314 ome.model.core.PlaneInfo \N 5515 13415 INSERT -35 6315 ome.model.core.PlaneInfo \N 5515 13416 INSERT -35 6316 ome.model.core.PlaneInfo \N 5515 13417 INSERT -35 6317 ome.model.core.PlaneInfo \N 5515 13418 INSERT -35 158 ome.model.acquisition.Microscope \N 5515 13419 INSERT -35 208 ome.model.acquisition.Instrument \N 5515 13420 INSERT -35 240 ome.model.acquisition.Detector \N 5515 13421 INSERT -35 429 ome.model.acquisition.TransmittanceRange \N 5515 13422 INSERT -35 429 ome.model.acquisition.Filter \N 5515 13423 INSERT -35 430 ome.model.acquisition.TransmittanceRange \N 5515 13424 INSERT -35 430 ome.model.acquisition.Filter \N 5515 13425 INSERT -35 431 ome.model.acquisition.TransmittanceRange \N 5515 13426 INSERT -35 431 ome.model.acquisition.Filter \N 5515 13427 INSERT -35 432 ome.model.acquisition.TransmittanceRange \N 5515 13428 INSERT -35 432 ome.model.acquisition.Filter \N 5515 13429 INSERT -35 743 ome.model.acquisition.Laser \N 5515 13430 INSERT -35 744 ome.model.acquisition.Laser \N 5515 13431 INSERT -35 745 ome.model.acquisition.Laser \N 5515 13432 INSERT -35 746 ome.model.acquisition.Laser \N 5515 13433 INSERT -35 747 ome.model.acquisition.Laser \N 5515 13434 INSERT -35 748 ome.model.acquisition.Laser \N 5515 13435 INSERT -35 208 ome.model.acquisition.Objective \N 5515 13436 INSERT -35 208 ome.model.acquisition.ObjectiveSettings \N 5515 13437 INSERT -35 208 ome.model.core.Image \N 5515 13438 INSERT -35 258 ome.model.core.OriginalFile \N 5515 13439 INSERT -35 258 ome.model.annotations.FileAnnotation \N 5515 13440 INSERT -35 308 ome.model.annotations.ImageAnnotationLink \N 5515 13441 INSERT -35 208 ome.model.containers.DatasetImageLink \N 5515 13442 INSERT -35 208 ome.model.core.Pixels \N 5515 13443 INSERT -35 240 ome.model.acquisition.DetectorSettings \N 5515 13444 INSERT -35 208 ome.model.acquisition.LightPath \N 5515 13445 INSERT -35 208 ome.model.acquisition.LightPathEmissionFilterLink \N 5515 13446 INSERT -35 208 ome.model.acquisition.LightSettings \N 5515 13447 INSERT -35 340 ome.model.core.LogicalChannel \N 5515 13448 INSERT -35 340 ome.model.core.Channel \N 5515 13449 INSERT -35 6318 ome.model.core.PlaneInfo \N 5515 13450 INSERT -35 6319 ome.model.core.PlaneInfo \N 5515 13451 INSERT -35 6320 ome.model.core.PlaneInfo \N 5515 13452 INSERT -35 6321 ome.model.core.PlaneInfo \N 5515 13453 INSERT -35 6322 ome.model.core.PlaneInfo \N 5515 13454 INSERT -35 6323 ome.model.core.PlaneInfo \N 5515 13455 INSERT -35 6324 ome.model.core.PlaneInfo \N 5515 13456 INSERT -35 6325 ome.model.core.PlaneInfo \N 5515 13457 INSERT -35 6326 ome.model.core.PlaneInfo \N 5515 13458 INSERT -35 6327 ome.model.core.PlaneInfo \N 5515 13459 INSERT -35 6328 ome.model.core.PlaneInfo \N 5515 13460 INSERT -35 6329 ome.model.core.PlaneInfo \N 5515 13461 INSERT -35 6330 ome.model.core.PlaneInfo \N 5515 13462 INSERT -35 6331 ome.model.core.PlaneInfo \N 5515 13463 INSERT -35 6332 ome.model.core.PlaneInfo \N 5515 13464 INSERT -35 6333 ome.model.core.PlaneInfo \N 5515 13465 INSERT -35 6334 ome.model.core.PlaneInfo \N 5515 13466 INSERT -35 6335 ome.model.core.PlaneInfo \N 5515 13467 INSERT -35 6336 ome.model.core.PlaneInfo \N 5515 13468 INSERT -35 6337 ome.model.core.PlaneInfo \N 5515 13469 INSERT -35 15 ome.model.roi.Roi \N 5515 13470 INSERT -35 29 ome.model.roi.Label \N 5515 13471 INSERT -35 30 ome.model.roi.Polygon \N 5515 13472 INSERT -35 159 ome.model.acquisition.Microscope \N 5515 13473 INSERT -35 209 ome.model.acquisition.Instrument \N 5515 13474 INSERT -35 241 ome.model.acquisition.Detector \N 5515 13475 INSERT -35 433 ome.model.acquisition.TransmittanceRange \N 5515 13476 INSERT -35 433 ome.model.acquisition.Filter \N 5515 13477 INSERT -35 434 ome.model.acquisition.TransmittanceRange \N 5515 13478 INSERT -35 434 ome.model.acquisition.Filter \N 5515 13479 INSERT -35 435 ome.model.acquisition.TransmittanceRange \N 5515 13480 INSERT -35 435 ome.model.acquisition.Filter \N 5515 13481 INSERT -35 436 ome.model.acquisition.TransmittanceRange \N 5515 13482 INSERT -35 436 ome.model.acquisition.Filter \N 5515 13483 INSERT -35 749 ome.model.acquisition.Laser \N 5515 13484 INSERT -35 750 ome.model.acquisition.Laser \N 5515 13485 INSERT -35 751 ome.model.acquisition.Laser \N 5515 13486 INSERT -35 752 ome.model.acquisition.Laser \N 5515 13487 INSERT -35 753 ome.model.acquisition.Laser \N 5515 13488 INSERT -35 754 ome.model.acquisition.Laser \N 5515 13489 INSERT -35 209 ome.model.acquisition.Objective \N 5515 13490 INSERT -35 209 ome.model.acquisition.ObjectiveSettings \N 5515 13491 INSERT -35 209 ome.model.core.Image \N 5515 13492 INSERT -35 259 ome.model.core.OriginalFile \N 5515 13493 INSERT -35 259 ome.model.annotations.FileAnnotation \N 5515 13494 INSERT -35 309 ome.model.annotations.ImageAnnotationLink \N 5515 13495 INSERT -35 209 ome.model.containers.DatasetImageLink \N 5515 13496 INSERT -35 209 ome.model.core.Pixels \N 5515 13497 INSERT -35 241 ome.model.acquisition.DetectorSettings \N 5515 13498 INSERT -35 209 ome.model.acquisition.LightPath \N 5515 13499 INSERT -35 209 ome.model.acquisition.LightPathEmissionFilterLink \N 5515 13500 INSERT -35 209 ome.model.acquisition.LightSettings \N 5515 13501 INSERT -35 341 ome.model.core.LogicalChannel \N 5515 13502 INSERT -35 341 ome.model.core.Channel \N 5515 13503 INSERT -35 6338 ome.model.core.PlaneInfo \N 5515 13504 INSERT -35 160 ome.model.acquisition.Microscope \N 5515 13505 INSERT -35 210 ome.model.acquisition.Instrument \N 5515 13506 INSERT -35 242 ome.model.acquisition.Detector \N 5515 13507 INSERT -35 437 ome.model.acquisition.TransmittanceRange \N 5515 13508 INSERT -35 437 ome.model.acquisition.Filter \N 5515 13509 INSERT -35 438 ome.model.acquisition.TransmittanceRange \N 5515 13510 INSERT -35 438 ome.model.acquisition.Filter \N 5515 13511 INSERT -35 439 ome.model.acquisition.TransmittanceRange \N 5515 13512 INSERT -35 439 ome.model.acquisition.Filter \N 5515 13513 INSERT -35 440 ome.model.acquisition.TransmittanceRange \N 5515 13514 INSERT -35 440 ome.model.acquisition.Filter \N 5515 13515 INSERT -35 755 ome.model.acquisition.Laser \N 5515 13516 INSERT -35 756 ome.model.acquisition.Laser \N 5515 13517 INSERT -35 757 ome.model.acquisition.Laser \N 5515 13518 INSERT -35 758 ome.model.acquisition.Laser \N 5515 13519 INSERT -35 759 ome.model.acquisition.Laser \N 5515 13520 INSERT -35 760 ome.model.acquisition.Laser \N 5515 13521 INSERT -35 210 ome.model.acquisition.Objective \N 5515 13522 INSERT -35 210 ome.model.acquisition.ObjectiveSettings \N 5515 13523 INSERT -35 210 ome.model.core.Image \N 5515 13524 INSERT -35 260 ome.model.core.OriginalFile \N 5515 13525 INSERT -35 260 ome.model.annotations.FileAnnotation \N 5515 13526 INSERT -35 310 ome.model.annotations.ImageAnnotationLink \N 5515 13527 INSERT -35 210 ome.model.containers.DatasetImageLink \N 5515 13528 INSERT -35 210 ome.model.core.Pixels \N 5515 13529 INSERT -35 242 ome.model.acquisition.DetectorSettings \N 5515 13530 INSERT -35 210 ome.model.acquisition.LightPath \N 5515 13531 INSERT -35 210 ome.model.acquisition.LightPathEmissionFilterLink \N 5515 13532 INSERT -35 210 ome.model.acquisition.LightSettings \N 5515 13533 INSERT -35 342 ome.model.core.LogicalChannel \N 5515 13534 INSERT -35 342 ome.model.core.Channel \N 5515 13535 INSERT -35 6339 ome.model.core.PlaneInfo \N 5515 13536 INSERT -35 6340 ome.model.core.PlaneInfo \N 5515 13537 INSERT -35 6341 ome.model.core.PlaneInfo \N 5515 13538 INSERT -35 6342 ome.model.core.PlaneInfo \N 5515 13539 INSERT -35 6343 ome.model.core.PlaneInfo \N 5515 13540 INSERT -35 6344 ome.model.core.PlaneInfo \N 5515 13541 INSERT -35 6345 ome.model.core.PlaneInfo \N 5515 13542 INSERT -35 6346 ome.model.core.PlaneInfo \N 5515 13543 INSERT -35 6347 ome.model.core.PlaneInfo \N 5515 13544 INSERT -35 6348 ome.model.core.PlaneInfo \N 5515 13545 INSERT -35 6349 ome.model.core.PlaneInfo \N 5515 13546 INSERT -35 6350 ome.model.core.PlaneInfo \N 5515 13547 INSERT -35 6351 ome.model.core.PlaneInfo \N 5515 13548 INSERT -35 6352 ome.model.core.PlaneInfo \N 5515 13549 INSERT -35 6353 ome.model.core.PlaneInfo \N 5515 13550 INSERT -35 6354 ome.model.core.PlaneInfo \N 5515 13551 INSERT -35 6355 ome.model.core.PlaneInfo \N 5515 13552 INSERT -35 6356 ome.model.core.PlaneInfo \N 5515 13553 INSERT -35 6357 ome.model.core.PlaneInfo \N 5515 13554 INSERT -35 6358 ome.model.core.PlaneInfo \N 5515 13555 UPDATE -35 208 ome.model.core.Pixels \N 5516 13556 UPDATE -35 207 ome.model.core.Pixels \N 5517 13557 UPDATE -35 209 ome.model.core.Pixels \N 5517 13558 UPDATE -35 210 ome.model.core.Pixels \N 5517 13559 UPDATE -35 208 ome.model.core.Pixels \N 5517 13560 INSERT -35 339 ome.model.stats.StatsInfo \N 5518 13561 INSERT -35 340 ome.model.stats.StatsInfo \N 5518 13562 INSERT -35 341 ome.model.stats.StatsInfo \N 5518 13563 INSERT -35 342 ome.model.stats.StatsInfo \N 5518 13564 UPDATE -35 339 ome.model.core.Channel \N 5518 13565 UPDATE -35 341 ome.model.core.Channel \N 5518 13566 UPDATE -35 342 ome.model.core.Channel \N 5518 13567 UPDATE -35 340 ome.model.core.Channel \N 5518 13568 INSERT -35 261 ome.model.display.QuantumDef \N 5519 13569 INSERT -35 261 ome.model.display.RenderingDef \N 5519 13570 INSERT -35 397 ome.model.display.ChannelBinding \N 5519 13571 INSERT -35 262 ome.model.display.QuantumDef \N 5519 13572 INSERT -35 262 ome.model.display.RenderingDef \N 5519 13573 INSERT -35 398 ome.model.display.ChannelBinding \N 5519 13574 INSERT -35 263 ome.model.display.QuantumDef \N 5519 13575 INSERT -35 263 ome.model.display.RenderingDef \N 5519 13576 INSERT -35 399 ome.model.display.ChannelBinding \N 5519 13577 INSERT -35 264 ome.model.display.QuantumDef \N 5519 13578 INSERT -35 264 ome.model.display.RenderingDef \N 5519 13579 INSERT -35 400 ome.model.display.ChannelBinding \N 5519 13580 INSERT -35 207 ome.model.display.Thumbnail \N 5520 13581 INSERT -35 208 ome.model.display.Thumbnail \N 5520 13582 INSERT -35 209 ome.model.display.Thumbnail \N 5520 13583 INSERT -35 210 ome.model.display.Thumbnail \N 5520 13584 UPDATE -35 258 ome.model.core.OriginalFile \N 5521 13585 INSERT -35 161 ome.model.acquisition.Microscope \N 5539 13586 INSERT -35 211 ome.model.acquisition.Instrument \N 5539 13587 INSERT -35 243 ome.model.acquisition.Detector \N 5539 13588 INSERT -35 441 ome.model.acquisition.TransmittanceRange \N 5539 13589 INSERT -35 441 ome.model.acquisition.Filter \N 5539 13590 INSERT -35 442 ome.model.acquisition.TransmittanceRange \N 5539 13591 INSERT -35 442 ome.model.acquisition.Filter \N 5539 13592 INSERT -35 443 ome.model.acquisition.TransmittanceRange \N 5539 13593 INSERT -35 443 ome.model.acquisition.Filter \N 5539 13594 INSERT -35 444 ome.model.acquisition.TransmittanceRange \N 5539 13595 INSERT -35 444 ome.model.acquisition.Filter \N 5539 13596 INSERT -35 761 ome.model.acquisition.Laser \N 5539 13597 INSERT -35 762 ome.model.acquisition.Laser \N 5539 13598 INSERT -35 763 ome.model.acquisition.Laser \N 5539 13599 INSERT -35 764 ome.model.acquisition.Laser \N 5539 13600 INSERT -35 765 ome.model.acquisition.Laser \N 5539 13601 INSERT -35 766 ome.model.acquisition.Laser \N 5539 13602 INSERT -35 211 ome.model.acquisition.Objective \N 5539 13603 INSERT -35 211 ome.model.acquisition.ObjectiveSettings \N 5539 13604 INSERT -35 211 ome.model.core.Image \N 5539 13605 INSERT -35 261 ome.model.core.OriginalFile \N 5539 13606 INSERT -35 261 ome.model.annotations.FileAnnotation \N 5539 13607 INSERT -35 311 ome.model.annotations.ImageAnnotationLink \N 5539 13608 INSERT -35 211 ome.model.containers.DatasetImageLink \N 5539 13609 INSERT -35 211 ome.model.core.Pixels \N 5539 13610 INSERT -35 243 ome.model.acquisition.DetectorSettings \N 5539 13611 INSERT -35 211 ome.model.acquisition.LightPath \N 5539 13612 INSERT -35 211 ome.model.acquisition.LightPathEmissionFilterLink \N 5539 13613 INSERT -35 211 ome.model.acquisition.LightSettings \N 5539 13614 INSERT -35 343 ome.model.core.LogicalChannel \N 5539 13615 INSERT -35 343 ome.model.core.Channel \N 5539 13616 INSERT -35 6359 ome.model.core.PlaneInfo \N 5539 13617 INSERT -35 6360 ome.model.core.PlaneInfo \N 5539 13618 INSERT -35 6361 ome.model.core.PlaneInfo \N 5539 13619 INSERT -35 6362 ome.model.core.PlaneInfo \N 5539 13620 INSERT -35 6363 ome.model.core.PlaneInfo \N 5539 13621 INSERT -35 162 ome.model.acquisition.Microscope \N 5539 13622 INSERT -35 212 ome.model.acquisition.Instrument \N 5539 13623 INSERT -35 244 ome.model.acquisition.Detector \N 5539 13624 INSERT -35 445 ome.model.acquisition.TransmittanceRange \N 5539 13625 INSERT -35 445 ome.model.acquisition.Filter \N 5539 13626 INSERT -35 446 ome.model.acquisition.TransmittanceRange \N 5539 13627 INSERT -35 446 ome.model.acquisition.Filter \N 5539 13628 INSERT -35 447 ome.model.acquisition.TransmittanceRange \N 5539 13629 INSERT -35 447 ome.model.acquisition.Filter \N 5539 13630 INSERT -35 448 ome.model.acquisition.TransmittanceRange \N 5539 13631 INSERT -35 448 ome.model.acquisition.Filter \N 5539 13632 INSERT -35 767 ome.model.acquisition.Laser \N 5539 13633 INSERT -35 768 ome.model.acquisition.Laser \N 5539 13634 INSERT -35 769 ome.model.acquisition.Laser \N 5539 13635 INSERT -35 770 ome.model.acquisition.Laser \N 5539 13636 INSERT -35 771 ome.model.acquisition.Laser \N 5539 13637 INSERT -35 772 ome.model.acquisition.Laser \N 5539 13638 INSERT -35 212 ome.model.acquisition.Objective \N 5539 13639 INSERT -35 212 ome.model.acquisition.ObjectiveSettings \N 5539 13640 INSERT -35 212 ome.model.core.Image \N 5539 13641 INSERT -35 262 ome.model.core.OriginalFile \N 5539 13642 INSERT -35 262 ome.model.annotations.FileAnnotation \N 5539 13643 INSERT -35 312 ome.model.annotations.ImageAnnotationLink \N 5539 13644 INSERT -35 212 ome.model.containers.DatasetImageLink \N 5539 13645 INSERT -35 212 ome.model.core.Pixels \N 5539 13646 INSERT -35 244 ome.model.acquisition.DetectorSettings \N 5539 13647 INSERT -35 212 ome.model.acquisition.LightPath \N 5539 13648 INSERT -35 212 ome.model.acquisition.LightPathEmissionFilterLink \N 5539 13649 INSERT -35 212 ome.model.acquisition.LightSettings \N 5539 13650 INSERT -35 344 ome.model.core.LogicalChannel \N 5539 13651 INSERT -35 344 ome.model.core.Channel \N 5539 13652 INSERT -35 6364 ome.model.core.PlaneInfo \N 5539 13653 INSERT -35 6365 ome.model.core.PlaneInfo \N 5539 13654 INSERT -35 6366 ome.model.core.PlaneInfo \N 5539 13655 INSERT -35 6367 ome.model.core.PlaneInfo \N 5539 13656 INSERT -35 6368 ome.model.core.PlaneInfo \N 5539 13657 INSERT -35 6369 ome.model.core.PlaneInfo \N 5539 13658 INSERT -35 6370 ome.model.core.PlaneInfo \N 5539 13659 INSERT -35 6371 ome.model.core.PlaneInfo \N 5539 13660 INSERT -35 6372 ome.model.core.PlaneInfo \N 5539 13661 INSERT -35 6373 ome.model.core.PlaneInfo \N 5539 13662 INSERT -35 6374 ome.model.core.PlaneInfo \N 5539 13663 INSERT -35 6375 ome.model.core.PlaneInfo \N 5539 13664 INSERT -35 6376 ome.model.core.PlaneInfo \N 5539 13665 INSERT -35 6377 ome.model.core.PlaneInfo \N 5539 13666 INSERT -35 6378 ome.model.core.PlaneInfo \N 5539 13667 INSERT -35 6379 ome.model.core.PlaneInfo \N 5539 13668 INSERT -35 6380 ome.model.core.PlaneInfo \N 5539 13669 INSERT -35 6381 ome.model.core.PlaneInfo \N 5539 13670 INSERT -35 6382 ome.model.core.PlaneInfo \N 5539 13671 INSERT -35 6383 ome.model.core.PlaneInfo \N 5539 13672 INSERT -35 16 ome.model.roi.Roi \N 5539 13673 INSERT -35 31 ome.model.roi.Label \N 5539 13674 INSERT -35 32 ome.model.roi.Polygon \N 5539 13675 INSERT -35 163 ome.model.acquisition.Microscope \N 5539 13676 INSERT -35 213 ome.model.acquisition.Instrument \N 5539 13677 INSERT -35 245 ome.model.acquisition.Detector \N 5539 13678 INSERT -35 449 ome.model.acquisition.TransmittanceRange \N 5539 13679 INSERT -35 449 ome.model.acquisition.Filter \N 5539 13680 INSERT -35 450 ome.model.acquisition.TransmittanceRange \N 5539 13681 INSERT -35 450 ome.model.acquisition.Filter \N 5539 13682 INSERT -35 451 ome.model.acquisition.TransmittanceRange \N 5539 13683 INSERT -35 451 ome.model.acquisition.Filter \N 5539 13684 INSERT -35 452 ome.model.acquisition.TransmittanceRange \N 5539 13685 INSERT -35 452 ome.model.acquisition.Filter \N 5539 13686 INSERT -35 773 ome.model.acquisition.Laser \N 5539 13687 INSERT -35 774 ome.model.acquisition.Laser \N 5539 13688 INSERT -35 775 ome.model.acquisition.Laser \N 5539 13689 INSERT -35 776 ome.model.acquisition.Laser \N 5539 13690 INSERT -35 777 ome.model.acquisition.Laser \N 5539 13691 INSERT -35 778 ome.model.acquisition.Laser \N 5539 13692 INSERT -35 213 ome.model.acquisition.Objective \N 5539 13693 INSERT -35 213 ome.model.acquisition.ObjectiveSettings \N 5539 13694 INSERT -35 213 ome.model.core.Image \N 5539 13695 INSERT -35 263 ome.model.core.OriginalFile \N 5539 13696 INSERT -35 263 ome.model.annotations.FileAnnotation \N 5539 13697 INSERT -35 313 ome.model.annotations.ImageAnnotationLink \N 5539 13698 INSERT -35 213 ome.model.containers.DatasetImageLink \N 5539 13699 INSERT -35 213 ome.model.core.Pixels \N 5539 13700 INSERT -35 245 ome.model.acquisition.DetectorSettings \N 5539 13701 INSERT -35 213 ome.model.acquisition.LightPath \N 5539 13702 INSERT -35 213 ome.model.acquisition.LightPathEmissionFilterLink \N 5539 13703 INSERT -35 213 ome.model.acquisition.LightSettings \N 5539 13704 INSERT -35 345 ome.model.core.LogicalChannel \N 5539 13705 INSERT -35 345 ome.model.core.Channel \N 5539 13706 INSERT -35 6384 ome.model.core.PlaneInfo \N 5539 13707 INSERT -35 164 ome.model.acquisition.Microscope \N 5539 13708 INSERT -35 214 ome.model.acquisition.Instrument \N 5539 13709 INSERT -35 246 ome.model.acquisition.Detector \N 5539 13710 INSERT -35 453 ome.model.acquisition.TransmittanceRange \N 5539 13711 INSERT -35 453 ome.model.acquisition.Filter \N 5539 13712 INSERT -35 454 ome.model.acquisition.TransmittanceRange \N 5539 13713 INSERT -35 454 ome.model.acquisition.Filter \N 5539 13714 INSERT -35 455 ome.model.acquisition.TransmittanceRange \N 5539 13715 INSERT -35 455 ome.model.acquisition.Filter \N 5539 13716 INSERT -35 456 ome.model.acquisition.TransmittanceRange \N 5539 13717 INSERT -35 456 ome.model.acquisition.Filter \N 5539 13718 INSERT -35 779 ome.model.acquisition.Laser \N 5539 13719 INSERT -35 780 ome.model.acquisition.Laser \N 5539 13720 INSERT -35 781 ome.model.acquisition.Laser \N 5539 13721 INSERT -35 782 ome.model.acquisition.Laser \N 5539 13722 INSERT -35 783 ome.model.acquisition.Laser \N 5539 13723 INSERT -35 784 ome.model.acquisition.Laser \N 5539 13724 INSERT -35 214 ome.model.acquisition.Objective \N 5539 13725 INSERT -35 214 ome.model.acquisition.ObjectiveSettings \N 5539 13726 INSERT -35 214 ome.model.core.Image \N 5539 13727 INSERT -35 264 ome.model.core.OriginalFile \N 5539 13728 INSERT -35 264 ome.model.annotations.FileAnnotation \N 5539 13729 INSERT -35 314 ome.model.annotations.ImageAnnotationLink \N 5539 13730 INSERT -35 214 ome.model.containers.DatasetImageLink \N 5539 13731 INSERT -35 214 ome.model.core.Pixels \N 5539 13732 INSERT -35 246 ome.model.acquisition.DetectorSettings \N 5539 13733 INSERT -35 214 ome.model.acquisition.LightPath \N 5539 13734 INSERT -35 214 ome.model.acquisition.LightPathEmissionFilterLink \N 5539 13735 INSERT -35 214 ome.model.acquisition.LightSettings \N 5539 13736 INSERT -35 346 ome.model.core.LogicalChannel \N 5539 13737 INSERT -35 346 ome.model.core.Channel \N 5539 13738 INSERT -35 6385 ome.model.core.PlaneInfo \N 5539 13739 INSERT -35 6386 ome.model.core.PlaneInfo \N 5539 13740 INSERT -35 6387 ome.model.core.PlaneInfo \N 5539 13741 INSERT -35 6388 ome.model.core.PlaneInfo \N 5539 13742 INSERT -35 6389 ome.model.core.PlaneInfo \N 5539 13743 INSERT -35 6390 ome.model.core.PlaneInfo \N 5539 13744 INSERT -35 6391 ome.model.core.PlaneInfo \N 5539 13745 INSERT -35 6392 ome.model.core.PlaneInfo \N 5539 13746 INSERT -35 6393 ome.model.core.PlaneInfo \N 5539 13747 INSERT -35 6394 ome.model.core.PlaneInfo \N 5539 13748 INSERT -35 6395 ome.model.core.PlaneInfo \N 5539 13749 INSERT -35 6396 ome.model.core.PlaneInfo \N 5539 13750 INSERT -35 6397 ome.model.core.PlaneInfo \N 5539 13751 INSERT -35 6398 ome.model.core.PlaneInfo \N 5539 13752 INSERT -35 6399 ome.model.core.PlaneInfo \N 5539 13753 INSERT -35 6400 ome.model.core.PlaneInfo \N 5539 13754 INSERT -35 6401 ome.model.core.PlaneInfo \N 5539 13755 INSERT -35 6402 ome.model.core.PlaneInfo \N 5539 13756 INSERT -35 6403 ome.model.core.PlaneInfo \N 5539 13757 INSERT -35 6404 ome.model.core.PlaneInfo \N 5539 13758 UPDATE -35 212 ome.model.core.Pixels \N 5540 13759 UPDATE -35 211 ome.model.core.Pixels \N 5541 13760 UPDATE -35 213 ome.model.core.Pixels \N 5541 13761 UPDATE -35 214 ome.model.core.Pixels \N 5541 13762 UPDATE -35 212 ome.model.core.Pixels \N 5541 13763 INSERT -35 343 ome.model.stats.StatsInfo \N 5542 13764 INSERT -35 344 ome.model.stats.StatsInfo \N 5542 13765 INSERT -35 345 ome.model.stats.StatsInfo \N 5542 13766 INSERT -35 346 ome.model.stats.StatsInfo \N 5542 13767 UPDATE -35 343 ome.model.core.Channel \N 5542 13768 UPDATE -35 345 ome.model.core.Channel \N 5542 13769 UPDATE -35 346 ome.model.core.Channel \N 5542 13770 UPDATE -35 344 ome.model.core.Channel \N 5542 13771 INSERT -35 265 ome.model.display.QuantumDef \N 5543 13772 INSERT -35 265 ome.model.display.RenderingDef \N 5543 13773 INSERT -35 401 ome.model.display.ChannelBinding \N 5543 13774 INSERT -35 266 ome.model.display.QuantumDef \N 5543 13775 INSERT -35 266 ome.model.display.RenderingDef \N 5543 13776 INSERT -35 402 ome.model.display.ChannelBinding \N 5543 13777 INSERT -35 267 ome.model.display.QuantumDef \N 5543 13778 INSERT -35 267 ome.model.display.RenderingDef \N 5543 13779 INSERT -35 403 ome.model.display.ChannelBinding \N 5543 13780 INSERT -35 268 ome.model.display.QuantumDef \N 5543 13781 INSERT -35 268 ome.model.display.RenderingDef \N 5543 13782 INSERT -35 404 ome.model.display.ChannelBinding \N 5543 13783 INSERT -35 211 ome.model.display.Thumbnail \N 5544 13784 INSERT -35 212 ome.model.display.Thumbnail \N 5544 13785 INSERT -35 213 ome.model.display.Thumbnail \N 5544 13786 INSERT -35 214 ome.model.display.Thumbnail \N 5544 13787 UPDATE -35 262 ome.model.core.OriginalFile \N 5545 13788 INSERT -35 165 ome.model.acquisition.Microscope \N 5561 13789 INSERT -35 215 ome.model.acquisition.Instrument \N 5561 13790 INSERT -35 247 ome.model.acquisition.Detector \N 5561 13791 INSERT -35 457 ome.model.acquisition.TransmittanceRange \N 5561 13792 INSERT -35 457 ome.model.acquisition.Filter \N 5561 13793 INSERT -35 458 ome.model.acquisition.TransmittanceRange \N 5561 13794 INSERT -35 458 ome.model.acquisition.Filter \N 5561 13795 INSERT -35 459 ome.model.acquisition.TransmittanceRange \N 5561 13796 INSERT -35 459 ome.model.acquisition.Filter \N 5561 13797 INSERT -35 460 ome.model.acquisition.TransmittanceRange \N 5561 13798 INSERT -35 460 ome.model.acquisition.Filter \N 5561 13799 INSERT -35 785 ome.model.acquisition.Laser \N 5561 13800 INSERT -35 786 ome.model.acquisition.Laser \N 5561 13801 INSERT -35 787 ome.model.acquisition.Laser \N 5561 13802 INSERT -35 788 ome.model.acquisition.Laser \N 5561 13803 INSERT -35 789 ome.model.acquisition.Laser \N 5561 13804 INSERT -35 790 ome.model.acquisition.Laser \N 5561 13805 INSERT -35 215 ome.model.acquisition.Objective \N 5561 13806 INSERT -35 215 ome.model.acquisition.ObjectiveSettings \N 5561 13807 INSERT -35 215 ome.model.core.Image \N 5561 13808 INSERT -35 265 ome.model.core.OriginalFile \N 5561 13809 INSERT -35 265 ome.model.annotations.FileAnnotation \N 5561 13810 INSERT -35 315 ome.model.annotations.ImageAnnotationLink \N 5561 13811 INSERT -35 215 ome.model.containers.DatasetImageLink \N 5561 13812 INSERT -35 215 ome.model.core.Pixels \N 5561 13813 INSERT -35 247 ome.model.acquisition.DetectorSettings \N 5561 13814 INSERT -35 215 ome.model.acquisition.LightPath \N 5561 13815 INSERT -35 215 ome.model.acquisition.LightPathEmissionFilterLink \N 5561 13816 INSERT -35 215 ome.model.acquisition.LightSettings \N 5561 13817 INSERT -35 347 ome.model.core.LogicalChannel \N 5561 13818 INSERT -35 347 ome.model.core.Channel \N 5561 13819 INSERT -35 6405 ome.model.core.PlaneInfo \N 5561 13820 INSERT -35 6406 ome.model.core.PlaneInfo \N 5561 13821 INSERT -35 6407 ome.model.core.PlaneInfo \N 5561 13822 INSERT -35 6408 ome.model.core.PlaneInfo \N 5561 13823 INSERT -35 6409 ome.model.core.PlaneInfo \N 5561 13824 INSERT -35 166 ome.model.acquisition.Microscope \N 5561 13825 INSERT -35 216 ome.model.acquisition.Instrument \N 5561 13826 INSERT -35 248 ome.model.acquisition.Detector \N 5561 13827 INSERT -35 461 ome.model.acquisition.TransmittanceRange \N 5561 13828 INSERT -35 461 ome.model.acquisition.Filter \N 5561 13829 INSERT -35 462 ome.model.acquisition.TransmittanceRange \N 5561 13830 INSERT -35 462 ome.model.acquisition.Filter \N 5561 13831 INSERT -35 463 ome.model.acquisition.TransmittanceRange \N 5561 13832 INSERT -35 463 ome.model.acquisition.Filter \N 5561 13833 INSERT -35 464 ome.model.acquisition.TransmittanceRange \N 5561 13834 INSERT -35 464 ome.model.acquisition.Filter \N 5561 13835 INSERT -35 791 ome.model.acquisition.Laser \N 5561 13836 INSERT -35 792 ome.model.acquisition.Laser \N 5561 13837 INSERT -35 793 ome.model.acquisition.Laser \N 5561 13838 INSERT -35 794 ome.model.acquisition.Laser \N 5561 13839 INSERT -35 795 ome.model.acquisition.Laser \N 5561 13840 INSERT -35 796 ome.model.acquisition.Laser \N 5561 13841 INSERT -35 216 ome.model.acquisition.Objective \N 5561 13842 INSERT -35 216 ome.model.acquisition.ObjectiveSettings \N 5561 13843 INSERT -35 216 ome.model.core.Image \N 5561 13844 INSERT -35 266 ome.model.core.OriginalFile \N 5561 13845 INSERT -35 266 ome.model.annotations.FileAnnotation \N 5561 13846 INSERT -35 316 ome.model.annotations.ImageAnnotationLink \N 5561 13847 INSERT -35 216 ome.model.containers.DatasetImageLink \N 5561 13848 INSERT -35 216 ome.model.core.Pixels \N 5561 13849 INSERT -35 248 ome.model.acquisition.DetectorSettings \N 5561 13850 INSERT -35 216 ome.model.acquisition.LightPath \N 5561 13851 INSERT -35 216 ome.model.acquisition.LightPathEmissionFilterLink \N 5561 13852 INSERT -35 216 ome.model.acquisition.LightSettings \N 5561 13853 INSERT -35 348 ome.model.core.LogicalChannel \N 5561 13854 INSERT -35 348 ome.model.core.Channel \N 5561 13855 INSERT -35 6410 ome.model.core.PlaneInfo \N 5561 13856 INSERT -35 6411 ome.model.core.PlaneInfo \N 5561 13857 INSERT -35 6412 ome.model.core.PlaneInfo \N 5561 13858 INSERT -35 6413 ome.model.core.PlaneInfo \N 5561 13859 INSERT -35 6414 ome.model.core.PlaneInfo \N 5561 13860 INSERT -35 6415 ome.model.core.PlaneInfo \N 5561 13861 INSERT -35 6416 ome.model.core.PlaneInfo \N 5561 13862 INSERT -35 6417 ome.model.core.PlaneInfo \N 5561 13863 INSERT -35 6418 ome.model.core.PlaneInfo \N 5561 13864 INSERT -35 6419 ome.model.core.PlaneInfo \N 5561 13865 INSERT -35 6420 ome.model.core.PlaneInfo \N 5561 13866 INSERT -35 6421 ome.model.core.PlaneInfo \N 5561 13867 INSERT -35 6422 ome.model.core.PlaneInfo \N 5561 13868 INSERT -35 6423 ome.model.core.PlaneInfo \N 5561 13869 INSERT -35 6424 ome.model.core.PlaneInfo \N 5561 13870 INSERT -35 6425 ome.model.core.PlaneInfo \N 5561 13871 INSERT -35 6426 ome.model.core.PlaneInfo \N 5561 13872 INSERT -35 6427 ome.model.core.PlaneInfo \N 5561 13873 INSERT -35 6428 ome.model.core.PlaneInfo \N 5561 13874 INSERT -35 6429 ome.model.core.PlaneInfo \N 5561 13875 INSERT -35 17 ome.model.roi.Roi \N 5561 13876 INSERT -35 33 ome.model.roi.Label \N 5561 13877 INSERT -35 34 ome.model.roi.Polygon \N 5561 13878 INSERT -35 167 ome.model.acquisition.Microscope \N 5561 13879 INSERT -35 217 ome.model.acquisition.Instrument \N 5561 13880 INSERT -35 249 ome.model.acquisition.Detector \N 5561 13881 INSERT -35 465 ome.model.acquisition.TransmittanceRange \N 5561 13882 INSERT -35 465 ome.model.acquisition.Filter \N 5561 13883 INSERT -35 466 ome.model.acquisition.TransmittanceRange \N 5561 13884 INSERT -35 466 ome.model.acquisition.Filter \N 5561 13885 INSERT -35 467 ome.model.acquisition.TransmittanceRange \N 5561 13886 INSERT -35 467 ome.model.acquisition.Filter \N 5561 13887 INSERT -35 468 ome.model.acquisition.TransmittanceRange \N 5561 13888 INSERT -35 468 ome.model.acquisition.Filter \N 5561 13889 INSERT -35 797 ome.model.acquisition.Laser \N 5561 13890 INSERT -35 798 ome.model.acquisition.Laser \N 5561 13891 INSERT -35 799 ome.model.acquisition.Laser \N 5561 13892 INSERT -35 800 ome.model.acquisition.Laser \N 5561 13893 INSERT -35 801 ome.model.acquisition.Laser \N 5561 13894 INSERT -35 802 ome.model.acquisition.Laser \N 5561 13895 INSERT -35 217 ome.model.acquisition.Objective \N 5561 13896 INSERT -35 217 ome.model.acquisition.ObjectiveSettings \N 5561 13897 INSERT -35 217 ome.model.core.Image \N 5561 13898 INSERT -35 267 ome.model.core.OriginalFile \N 5561 13899 INSERT -35 267 ome.model.annotations.FileAnnotation \N 5561 13900 INSERT -35 317 ome.model.annotations.ImageAnnotationLink \N 5561 13901 INSERT -35 217 ome.model.containers.DatasetImageLink \N 5561 13902 INSERT -35 217 ome.model.core.Pixels \N 5561 13903 INSERT -35 249 ome.model.acquisition.DetectorSettings \N 5561 13904 INSERT -35 217 ome.model.acquisition.LightPath \N 5561 13905 INSERT -35 217 ome.model.acquisition.LightPathEmissionFilterLink \N 5561 13906 INSERT -35 217 ome.model.acquisition.LightSettings \N 5561 13907 INSERT -35 349 ome.model.core.LogicalChannel \N 5561 13908 INSERT -35 349 ome.model.core.Channel \N 5561 13909 INSERT -35 6430 ome.model.core.PlaneInfo \N 5561 13910 INSERT -35 168 ome.model.acquisition.Microscope \N 5561 13911 INSERT -35 218 ome.model.acquisition.Instrument \N 5561 13912 INSERT -35 250 ome.model.acquisition.Detector \N 5561 13913 INSERT -35 469 ome.model.acquisition.TransmittanceRange \N 5561 13914 INSERT -35 469 ome.model.acquisition.Filter \N 5561 13915 INSERT -35 470 ome.model.acquisition.TransmittanceRange \N 5561 13916 INSERT -35 470 ome.model.acquisition.Filter \N 5561 13917 INSERT -35 471 ome.model.acquisition.TransmittanceRange \N 5561 13918 INSERT -35 471 ome.model.acquisition.Filter \N 5561 13919 INSERT -35 472 ome.model.acquisition.TransmittanceRange \N 5561 13920 INSERT -35 472 ome.model.acquisition.Filter \N 5561 13921 INSERT -35 803 ome.model.acquisition.Laser \N 5561 13922 INSERT -35 804 ome.model.acquisition.Laser \N 5561 13923 INSERT -35 805 ome.model.acquisition.Laser \N 5561 13924 INSERT -35 806 ome.model.acquisition.Laser \N 5561 13925 INSERT -35 807 ome.model.acquisition.Laser \N 5561 13926 INSERT -35 808 ome.model.acquisition.Laser \N 5561 13927 INSERT -35 218 ome.model.acquisition.Objective \N 5561 13928 INSERT -35 218 ome.model.acquisition.ObjectiveSettings \N 5561 13929 INSERT -35 218 ome.model.core.Image \N 5561 13930 INSERT -35 268 ome.model.core.OriginalFile \N 5561 13931 INSERT -35 268 ome.model.annotations.FileAnnotation \N 5561 13932 INSERT -35 318 ome.model.annotations.ImageAnnotationLink \N 5561 13933 INSERT -35 218 ome.model.containers.DatasetImageLink \N 5561 13934 INSERT -35 218 ome.model.core.Pixels \N 5561 13935 INSERT -35 250 ome.model.acquisition.DetectorSettings \N 5561 13936 INSERT -35 218 ome.model.acquisition.LightPath \N 5561 13937 INSERT -35 218 ome.model.acquisition.LightPathEmissionFilterLink \N 5561 13938 INSERT -35 218 ome.model.acquisition.LightSettings \N 5561 13939 INSERT -35 350 ome.model.core.LogicalChannel \N 5561 13940 INSERT -35 350 ome.model.core.Channel \N 5561 13941 INSERT -35 6431 ome.model.core.PlaneInfo \N 5561 13942 INSERT -35 6432 ome.model.core.PlaneInfo \N 5561 13943 INSERT -35 6433 ome.model.core.PlaneInfo \N 5561 13944 INSERT -35 6434 ome.model.core.PlaneInfo \N 5561 13945 INSERT -35 6435 ome.model.core.PlaneInfo \N 5561 13946 INSERT -35 6436 ome.model.core.PlaneInfo \N 5561 13947 INSERT -35 6437 ome.model.core.PlaneInfo \N 5561 13948 INSERT -35 6438 ome.model.core.PlaneInfo \N 5561 13949 INSERT -35 6439 ome.model.core.PlaneInfo \N 5561 13950 INSERT -35 6440 ome.model.core.PlaneInfo \N 5561 13951 INSERT -35 6441 ome.model.core.PlaneInfo \N 5561 13952 INSERT -35 6442 ome.model.core.PlaneInfo \N 5561 13953 INSERT -35 6443 ome.model.core.PlaneInfo \N 5561 13954 INSERT -35 6444 ome.model.core.PlaneInfo \N 5561 13955 INSERT -35 6445 ome.model.core.PlaneInfo \N 5561 13956 INSERT -35 6446 ome.model.core.PlaneInfo \N 5561 13957 INSERT -35 6447 ome.model.core.PlaneInfo \N 5561 13958 INSERT -35 6448 ome.model.core.PlaneInfo \N 5561 13959 INSERT -35 6449 ome.model.core.PlaneInfo \N 5561 13960 INSERT -35 6450 ome.model.core.PlaneInfo \N 5561 13961 UPDATE -35 216 ome.model.core.Pixels \N 5562 13962 UPDATE -35 215 ome.model.core.Pixels \N 5563 13963 UPDATE -35 217 ome.model.core.Pixels \N 5563 13964 UPDATE -35 218 ome.model.core.Pixels \N 5563 13965 UPDATE -35 216 ome.model.core.Pixels \N 5563 13966 INSERT -35 347 ome.model.stats.StatsInfo \N 5564 13967 INSERT -35 348 ome.model.stats.StatsInfo \N 5564 13968 INSERT -35 349 ome.model.stats.StatsInfo \N 5564 13969 INSERT -35 350 ome.model.stats.StatsInfo \N 5564 13970 UPDATE -35 347 ome.model.core.Channel \N 5564 13971 UPDATE -35 349 ome.model.core.Channel \N 5564 13972 UPDATE -35 350 ome.model.core.Channel \N 5564 13973 UPDATE -35 348 ome.model.core.Channel \N 5564 13974 INSERT -35 269 ome.model.display.QuantumDef \N 5565 13975 INSERT -35 269 ome.model.display.RenderingDef \N 5565 13976 INSERT -35 405 ome.model.display.ChannelBinding \N 5565 13977 INSERT -35 270 ome.model.display.QuantumDef \N 5565 13978 INSERT -35 270 ome.model.display.RenderingDef \N 5565 13979 INSERT -35 406 ome.model.display.ChannelBinding \N 5565 13980 INSERT -35 271 ome.model.display.QuantumDef \N 5565 13981 INSERT -35 271 ome.model.display.RenderingDef \N 5565 13982 INSERT -35 407 ome.model.display.ChannelBinding \N 5565 13983 INSERT -35 272 ome.model.display.QuantumDef \N 5565 13984 INSERT -35 272 ome.model.display.RenderingDef \N 5565 13985 INSERT -35 408 ome.model.display.ChannelBinding \N 5565 13986 INSERT -35 215 ome.model.display.Thumbnail \N 5566 13987 INSERT -35 216 ome.model.display.Thumbnail \N 5566 13988 INSERT -35 217 ome.model.display.Thumbnail \N 5566 13989 INSERT -35 218 ome.model.display.Thumbnail \N 5566 13990 UPDATE -35 266 ome.model.core.OriginalFile \N 5567 13991 INSERT -35 169 ome.model.acquisition.Microscope \N 5583 13992 INSERT -35 219 ome.model.acquisition.Instrument \N 5583 13993 INSERT -35 251 ome.model.acquisition.Detector \N 5583 13994 INSERT -35 473 ome.model.acquisition.TransmittanceRange \N 5583 13995 INSERT -35 473 ome.model.acquisition.Filter \N 5583 13996 INSERT -35 474 ome.model.acquisition.TransmittanceRange \N 5583 13997 INSERT -35 474 ome.model.acquisition.Filter \N 5583 13998 INSERT -35 475 ome.model.acquisition.TransmittanceRange \N 5583 13999 INSERT -35 475 ome.model.acquisition.Filter \N 5583 14000 INSERT -35 476 ome.model.acquisition.TransmittanceRange \N 5583 14001 INSERT -35 476 ome.model.acquisition.Filter \N 5583 14002 INSERT -35 809 ome.model.acquisition.Laser \N 5583 14003 INSERT -35 810 ome.model.acquisition.Laser \N 5583 14004 INSERT -35 811 ome.model.acquisition.Laser \N 5583 14005 INSERT -35 812 ome.model.acquisition.Laser \N 5583 14006 INSERT -35 813 ome.model.acquisition.Laser \N 5583 14007 INSERT -35 814 ome.model.acquisition.Laser \N 5583 14008 INSERT -35 219 ome.model.acquisition.Objective \N 5583 14009 INSERT -35 219 ome.model.acquisition.ObjectiveSettings \N 5583 14010 INSERT -35 219 ome.model.core.Image \N 5583 14011 INSERT -35 269 ome.model.core.OriginalFile \N 5583 14012 INSERT -35 269 ome.model.annotations.FileAnnotation \N 5583 14013 INSERT -35 319 ome.model.annotations.ImageAnnotationLink \N 5583 14014 INSERT -35 219 ome.model.containers.DatasetImageLink \N 5583 14015 INSERT -35 219 ome.model.core.Pixels \N 5583 14016 INSERT -35 251 ome.model.acquisition.DetectorSettings \N 5583 14017 INSERT -35 219 ome.model.acquisition.LightPath \N 5583 14018 INSERT -35 219 ome.model.acquisition.LightPathEmissionFilterLink \N 5583 14019 INSERT -35 219 ome.model.acquisition.LightSettings \N 5583 14020 INSERT -35 351 ome.model.core.LogicalChannel \N 5583 14021 INSERT -35 351 ome.model.core.Channel \N 5583 14022 INSERT -35 6451 ome.model.core.PlaneInfo \N 5583 14023 INSERT -35 6452 ome.model.core.PlaneInfo \N 5583 14024 INSERT -35 6453 ome.model.core.PlaneInfo \N 5583 14025 INSERT -35 6454 ome.model.core.PlaneInfo \N 5583 14026 INSERT -35 6455 ome.model.core.PlaneInfo \N 5583 14027 INSERT -35 170 ome.model.acquisition.Microscope \N 5583 14028 INSERT -35 220 ome.model.acquisition.Instrument \N 5583 14029 INSERT -35 252 ome.model.acquisition.Detector \N 5583 14030 INSERT -35 477 ome.model.acquisition.TransmittanceRange \N 5583 14031 INSERT -35 477 ome.model.acquisition.Filter \N 5583 14032 INSERT -35 478 ome.model.acquisition.TransmittanceRange \N 5583 14033 INSERT -35 478 ome.model.acquisition.Filter \N 5583 14034 INSERT -35 479 ome.model.acquisition.TransmittanceRange \N 5583 14035 INSERT -35 479 ome.model.acquisition.Filter \N 5583 14036 INSERT -35 480 ome.model.acquisition.TransmittanceRange \N 5583 14037 INSERT -35 480 ome.model.acquisition.Filter \N 5583 14038 INSERT -35 815 ome.model.acquisition.Laser \N 5583 14039 INSERT -35 816 ome.model.acquisition.Laser \N 5583 14040 INSERT -35 817 ome.model.acquisition.Laser \N 5583 14041 INSERT -35 818 ome.model.acquisition.Laser \N 5583 14042 INSERT -35 819 ome.model.acquisition.Laser \N 5583 14043 INSERT -35 820 ome.model.acquisition.Laser \N 5583 14044 INSERT -35 220 ome.model.acquisition.Objective \N 5583 14045 INSERT -35 220 ome.model.acquisition.ObjectiveSettings \N 5583 14046 INSERT -35 220 ome.model.core.Image \N 5583 14047 INSERT -35 270 ome.model.core.OriginalFile \N 5583 14048 INSERT -35 270 ome.model.annotations.FileAnnotation \N 5583 14049 INSERT -35 320 ome.model.annotations.ImageAnnotationLink \N 5583 14050 INSERT -35 220 ome.model.containers.DatasetImageLink \N 5583 14051 INSERT -35 220 ome.model.core.Pixels \N 5583 14052 INSERT -35 252 ome.model.acquisition.DetectorSettings \N 5583 14053 INSERT -35 220 ome.model.acquisition.LightPath \N 5583 14054 INSERT -35 220 ome.model.acquisition.LightPathEmissionFilterLink \N 5583 14055 INSERT -35 220 ome.model.acquisition.LightSettings \N 5583 14056 INSERT -35 352 ome.model.core.LogicalChannel \N 5583 14057 INSERT -35 352 ome.model.core.Channel \N 5583 14058 INSERT -35 6456 ome.model.core.PlaneInfo \N 5583 14059 INSERT -35 6457 ome.model.core.PlaneInfo \N 5583 14060 INSERT -35 6458 ome.model.core.PlaneInfo \N 5583 14061 INSERT -35 6459 ome.model.core.PlaneInfo \N 5583 14062 INSERT -35 6460 ome.model.core.PlaneInfo \N 5583 14063 INSERT -35 6461 ome.model.core.PlaneInfo \N 5583 14064 INSERT -35 6462 ome.model.core.PlaneInfo \N 5583 14065 INSERT -35 6463 ome.model.core.PlaneInfo \N 5583 14066 INSERT -35 6464 ome.model.core.PlaneInfo \N 5583 14067 INSERT -35 6465 ome.model.core.PlaneInfo \N 5583 14068 INSERT -35 6466 ome.model.core.PlaneInfo \N 5583 14069 INSERT -35 6467 ome.model.core.PlaneInfo \N 5583 14070 INSERT -35 6468 ome.model.core.PlaneInfo \N 5583 14071 INSERT -35 6469 ome.model.core.PlaneInfo \N 5583 14072 INSERT -35 6470 ome.model.core.PlaneInfo \N 5583 14073 INSERT -35 6471 ome.model.core.PlaneInfo \N 5583 14074 INSERT -35 6472 ome.model.core.PlaneInfo \N 5583 14075 INSERT -35 6473 ome.model.core.PlaneInfo \N 5583 14076 INSERT -35 6474 ome.model.core.PlaneInfo \N 5583 14077 INSERT -35 6475 ome.model.core.PlaneInfo \N 5583 14078 INSERT -35 18 ome.model.roi.Roi \N 5583 14079 INSERT -35 35 ome.model.roi.Label \N 5583 14080 INSERT -35 36 ome.model.roi.Polygon \N 5583 14081 INSERT -35 171 ome.model.acquisition.Microscope \N 5583 14082 INSERT -35 221 ome.model.acquisition.Instrument \N 5583 14083 INSERT -35 253 ome.model.acquisition.Detector \N 5583 14084 INSERT -35 481 ome.model.acquisition.TransmittanceRange \N 5583 14085 INSERT -35 481 ome.model.acquisition.Filter \N 5583 14086 INSERT -35 482 ome.model.acquisition.TransmittanceRange \N 5583 14087 INSERT -35 482 ome.model.acquisition.Filter \N 5583 14088 INSERT -35 483 ome.model.acquisition.TransmittanceRange \N 5583 14089 INSERT -35 483 ome.model.acquisition.Filter \N 5583 14090 INSERT -35 484 ome.model.acquisition.TransmittanceRange \N 5583 14091 INSERT -35 484 ome.model.acquisition.Filter \N 5583 14092 INSERT -35 821 ome.model.acquisition.Laser \N 5583 14093 INSERT -35 822 ome.model.acquisition.Laser \N 5583 14094 INSERT -35 823 ome.model.acquisition.Laser \N 5583 14095 INSERT -35 824 ome.model.acquisition.Laser \N 5583 14096 INSERT -35 825 ome.model.acquisition.Laser \N 5583 14097 INSERT -35 826 ome.model.acquisition.Laser \N 5583 14098 INSERT -35 221 ome.model.acquisition.Objective \N 5583 14099 INSERT -35 221 ome.model.acquisition.ObjectiveSettings \N 5583 14100 INSERT -35 221 ome.model.core.Image \N 5583 14101 INSERT -35 271 ome.model.core.OriginalFile \N 5583 14102 INSERT -35 271 ome.model.annotations.FileAnnotation \N 5583 14103 INSERT -35 321 ome.model.annotations.ImageAnnotationLink \N 5583 14104 INSERT -35 221 ome.model.containers.DatasetImageLink \N 5583 14105 INSERT -35 221 ome.model.core.Pixels \N 5583 14106 INSERT -35 253 ome.model.acquisition.DetectorSettings \N 5583 14107 INSERT -35 221 ome.model.acquisition.LightPath \N 5583 14108 INSERT -35 221 ome.model.acquisition.LightPathEmissionFilterLink \N 5583 14109 INSERT -35 221 ome.model.acquisition.LightSettings \N 5583 14110 INSERT -35 353 ome.model.core.LogicalChannel \N 5583 14111 INSERT -35 353 ome.model.core.Channel \N 5583 14112 INSERT -35 6476 ome.model.core.PlaneInfo \N 5583 14113 INSERT -35 172 ome.model.acquisition.Microscope \N 5583 14114 INSERT -35 222 ome.model.acquisition.Instrument \N 5583 14115 INSERT -35 254 ome.model.acquisition.Detector \N 5583 14116 INSERT -35 485 ome.model.acquisition.TransmittanceRange \N 5583 14117 INSERT -35 485 ome.model.acquisition.Filter \N 5583 14118 INSERT -35 486 ome.model.acquisition.TransmittanceRange \N 5583 14119 INSERT -35 486 ome.model.acquisition.Filter \N 5583 14120 INSERT -35 487 ome.model.acquisition.TransmittanceRange \N 5583 14121 INSERT -35 487 ome.model.acquisition.Filter \N 5583 14122 INSERT -35 488 ome.model.acquisition.TransmittanceRange \N 5583 14123 INSERT -35 488 ome.model.acquisition.Filter \N 5583 14124 INSERT -35 827 ome.model.acquisition.Laser \N 5583 14125 INSERT -35 828 ome.model.acquisition.Laser \N 5583 14126 INSERT -35 829 ome.model.acquisition.Laser \N 5583 14127 INSERT -35 830 ome.model.acquisition.Laser \N 5583 14128 INSERT -35 831 ome.model.acquisition.Laser \N 5583 14129 INSERT -35 832 ome.model.acquisition.Laser \N 5583 14130 INSERT -35 222 ome.model.acquisition.Objective \N 5583 14131 INSERT -35 222 ome.model.acquisition.ObjectiveSettings \N 5583 14132 INSERT -35 222 ome.model.core.Image \N 5583 14133 INSERT -35 272 ome.model.core.OriginalFile \N 5583 14134 INSERT -35 272 ome.model.annotations.FileAnnotation \N 5583 14135 INSERT -35 322 ome.model.annotations.ImageAnnotationLink \N 5583 14136 INSERT -35 222 ome.model.containers.DatasetImageLink \N 5583 14137 INSERT -35 222 ome.model.core.Pixels \N 5583 14138 INSERT -35 254 ome.model.acquisition.DetectorSettings \N 5583 14139 INSERT -35 222 ome.model.acquisition.LightPath \N 5583 14140 INSERT -35 222 ome.model.acquisition.LightPathEmissionFilterLink \N 5583 14141 INSERT -35 222 ome.model.acquisition.LightSettings \N 5583 14142 INSERT -35 354 ome.model.core.LogicalChannel \N 5583 14143 INSERT -35 354 ome.model.core.Channel \N 5583 14144 INSERT -35 6477 ome.model.core.PlaneInfo \N 5583 14145 INSERT -35 6478 ome.model.core.PlaneInfo \N 5583 14146 INSERT -35 6479 ome.model.core.PlaneInfo \N 5583 14147 INSERT -35 6480 ome.model.core.PlaneInfo \N 5583 14148 INSERT -35 6481 ome.model.core.PlaneInfo \N 5583 14149 INSERT -35 6482 ome.model.core.PlaneInfo \N 5583 14150 INSERT -35 6483 ome.model.core.PlaneInfo \N 5583 14151 INSERT -35 6484 ome.model.core.PlaneInfo \N 5583 14152 INSERT -35 6485 ome.model.core.PlaneInfo \N 5583 14153 INSERT -35 6486 ome.model.core.PlaneInfo \N 5583 14154 INSERT -35 6487 ome.model.core.PlaneInfo \N 5583 14155 INSERT -35 6488 ome.model.core.PlaneInfo \N 5583 14156 INSERT -35 6489 ome.model.core.PlaneInfo \N 5583 14157 INSERT -35 6490 ome.model.core.PlaneInfo \N 5583 14158 INSERT -35 6491 ome.model.core.PlaneInfo \N 5583 14159 INSERT -35 6492 ome.model.core.PlaneInfo \N 5583 14160 INSERT -35 6493 ome.model.core.PlaneInfo \N 5583 14161 INSERT -35 6494 ome.model.core.PlaneInfo \N 5583 14162 INSERT -35 6495 ome.model.core.PlaneInfo \N 5583 14163 INSERT -35 6496 ome.model.core.PlaneInfo \N 5583 14164 UPDATE -35 220 ome.model.core.Pixels \N 5584 14165 UPDATE -35 219 ome.model.core.Pixels \N 5585 14166 UPDATE -35 221 ome.model.core.Pixels \N 5585 14167 UPDATE -35 222 ome.model.core.Pixels \N 5585 14168 UPDATE -35 220 ome.model.core.Pixels \N 5585 14169 INSERT -35 351 ome.model.stats.StatsInfo \N 5586 14170 INSERT -35 352 ome.model.stats.StatsInfo \N 5586 14171 INSERT -35 353 ome.model.stats.StatsInfo \N 5586 14172 INSERT -35 354 ome.model.stats.StatsInfo \N 5586 14173 UPDATE -35 351 ome.model.core.Channel \N 5586 14174 UPDATE -35 353 ome.model.core.Channel \N 5586 14175 UPDATE -35 354 ome.model.core.Channel \N 5586 14176 UPDATE -35 352 ome.model.core.Channel \N 5586 14177 INSERT -35 273 ome.model.display.QuantumDef \N 5587 14178 INSERT -35 273 ome.model.display.RenderingDef \N 5587 14179 INSERT -35 409 ome.model.display.ChannelBinding \N 5587 14180 INSERT -35 274 ome.model.display.QuantumDef \N 5587 14181 INSERT -35 274 ome.model.display.RenderingDef \N 5587 14182 INSERT -35 410 ome.model.display.ChannelBinding \N 5587 14183 INSERT -35 275 ome.model.display.QuantumDef \N 5587 14184 INSERT -35 275 ome.model.display.RenderingDef \N 5587 14185 INSERT -35 411 ome.model.display.ChannelBinding \N 5587 14186 INSERT -35 276 ome.model.display.QuantumDef \N 5587 14187 INSERT -35 276 ome.model.display.RenderingDef \N 5587 14188 INSERT -35 412 ome.model.display.ChannelBinding \N 5587 14189 INSERT -35 219 ome.model.display.Thumbnail \N 5588 14190 INSERT -35 220 ome.model.display.Thumbnail \N 5588 14191 INSERT -35 221 ome.model.display.Thumbnail \N 5588 14192 INSERT -35 222 ome.model.display.Thumbnail \N 5588 14193 UPDATE -35 270 ome.model.core.OriginalFile \N 5589 14194 INSERT -35 173 ome.model.acquisition.Microscope \N 5605 14195 INSERT -35 223 ome.model.acquisition.Instrument \N 5605 14196 INSERT -35 255 ome.model.acquisition.Detector \N 5605 14197 INSERT -35 489 ome.model.acquisition.TransmittanceRange \N 5605 14198 INSERT -35 489 ome.model.acquisition.Filter \N 5605 14199 INSERT -35 490 ome.model.acquisition.TransmittanceRange \N 5605 14200 INSERT -35 490 ome.model.acquisition.Filter \N 5605 14201 INSERT -35 491 ome.model.acquisition.TransmittanceRange \N 5605 14202 INSERT -35 491 ome.model.acquisition.Filter \N 5605 14203 INSERT -35 492 ome.model.acquisition.TransmittanceRange \N 5605 14204 INSERT -35 492 ome.model.acquisition.Filter \N 5605 14205 INSERT -35 833 ome.model.acquisition.Laser \N 5605 14206 INSERT -35 834 ome.model.acquisition.Laser \N 5605 14207 INSERT -35 835 ome.model.acquisition.Laser \N 5605 14208 INSERT -35 836 ome.model.acquisition.Laser \N 5605 14209 INSERT -35 837 ome.model.acquisition.Laser \N 5605 14210 INSERT -35 838 ome.model.acquisition.Laser \N 5605 14211 INSERT -35 223 ome.model.acquisition.Objective \N 5605 14212 INSERT -35 223 ome.model.acquisition.ObjectiveSettings \N 5605 14213 INSERT -35 223 ome.model.core.Image \N 5605 14214 INSERT -35 273 ome.model.core.OriginalFile \N 5605 14215 INSERT -35 273 ome.model.annotations.FileAnnotation \N 5605 14216 INSERT -35 323 ome.model.annotations.ImageAnnotationLink \N 5605 14217 INSERT -35 223 ome.model.containers.DatasetImageLink \N 5605 14218 INSERT -35 223 ome.model.core.Pixels \N 5605 14219 INSERT -35 255 ome.model.acquisition.DetectorSettings \N 5605 14220 INSERT -35 223 ome.model.acquisition.LightPath \N 5605 14221 INSERT -35 223 ome.model.acquisition.LightPathEmissionFilterLink \N 5605 14222 INSERT -35 223 ome.model.acquisition.LightSettings \N 5605 14223 INSERT -35 355 ome.model.core.LogicalChannel \N 5605 14224 INSERT -35 355 ome.model.core.Channel \N 5605 14225 INSERT -35 6497 ome.model.core.PlaneInfo \N 5605 14226 INSERT -35 6498 ome.model.core.PlaneInfo \N 5605 14227 INSERT -35 6499 ome.model.core.PlaneInfo \N 5605 14228 INSERT -35 6500 ome.model.core.PlaneInfo \N 5605 14229 INSERT -35 6501 ome.model.core.PlaneInfo \N 5605 14230 INSERT -35 174 ome.model.acquisition.Microscope \N 5605 14231 INSERT -35 224 ome.model.acquisition.Instrument \N 5605 14232 INSERT -35 256 ome.model.acquisition.Detector \N 5605 14233 INSERT -35 493 ome.model.acquisition.TransmittanceRange \N 5605 14234 INSERT -35 493 ome.model.acquisition.Filter \N 5605 14235 INSERT -35 494 ome.model.acquisition.TransmittanceRange \N 5605 14236 INSERT -35 494 ome.model.acquisition.Filter \N 5605 14237 INSERT -35 495 ome.model.acquisition.TransmittanceRange \N 5605 14238 INSERT -35 495 ome.model.acquisition.Filter \N 5605 14239 INSERT -35 496 ome.model.acquisition.TransmittanceRange \N 5605 14240 INSERT -35 496 ome.model.acquisition.Filter \N 5605 14241 INSERT -35 839 ome.model.acquisition.Laser \N 5605 14242 INSERT -35 840 ome.model.acquisition.Laser \N 5605 14243 INSERT -35 841 ome.model.acquisition.Laser \N 5605 14244 INSERT -35 842 ome.model.acquisition.Laser \N 5605 14245 INSERT -35 843 ome.model.acquisition.Laser \N 5605 14246 INSERT -35 844 ome.model.acquisition.Laser \N 5605 14247 INSERT -35 224 ome.model.acquisition.Objective \N 5605 14248 INSERT -35 224 ome.model.acquisition.ObjectiveSettings \N 5605 14249 INSERT -35 224 ome.model.core.Image \N 5605 14250 INSERT -35 274 ome.model.core.OriginalFile \N 5605 14251 INSERT -35 274 ome.model.annotations.FileAnnotation \N 5605 14252 INSERT -35 324 ome.model.annotations.ImageAnnotationLink \N 5605 14253 INSERT -35 224 ome.model.containers.DatasetImageLink \N 5605 14254 INSERT -35 224 ome.model.core.Pixels \N 5605 14255 INSERT -35 256 ome.model.acquisition.DetectorSettings \N 5605 14256 INSERT -35 224 ome.model.acquisition.LightPath \N 5605 14257 INSERT -35 224 ome.model.acquisition.LightPathEmissionFilterLink \N 5605 14258 INSERT -35 224 ome.model.acquisition.LightSettings \N 5605 14259 INSERT -35 356 ome.model.core.LogicalChannel \N 5605 14260 INSERT -35 356 ome.model.core.Channel \N 5605 14261 INSERT -35 6502 ome.model.core.PlaneInfo \N 5605 14262 INSERT -35 6503 ome.model.core.PlaneInfo \N 5605 14263 INSERT -35 6504 ome.model.core.PlaneInfo \N 5605 14264 INSERT -35 6505 ome.model.core.PlaneInfo \N 5605 14265 INSERT -35 6506 ome.model.core.PlaneInfo \N 5605 14266 INSERT -35 6507 ome.model.core.PlaneInfo \N 5605 14267 INSERT -35 6508 ome.model.core.PlaneInfo \N 5605 14268 INSERT -35 6509 ome.model.core.PlaneInfo \N 5605 14269 INSERT -35 6510 ome.model.core.PlaneInfo \N 5605 14270 INSERT -35 6511 ome.model.core.PlaneInfo \N 5605 14271 INSERT -35 6512 ome.model.core.PlaneInfo \N 5605 14272 INSERT -35 6513 ome.model.core.PlaneInfo \N 5605 14273 INSERT -35 6514 ome.model.core.PlaneInfo \N 5605 14274 INSERT -35 6515 ome.model.core.PlaneInfo \N 5605 14275 INSERT -35 6516 ome.model.core.PlaneInfo \N 5605 14276 INSERT -35 6517 ome.model.core.PlaneInfo \N 5605 14277 INSERT -35 6518 ome.model.core.PlaneInfo \N 5605 14278 INSERT -35 6519 ome.model.core.PlaneInfo \N 5605 14279 INSERT -35 6520 ome.model.core.PlaneInfo \N 5605 14280 INSERT -35 6521 ome.model.core.PlaneInfo \N 5605 14281 INSERT -35 19 ome.model.roi.Roi \N 5605 14282 INSERT -35 37 ome.model.roi.Label \N 5605 14283 INSERT -35 38 ome.model.roi.Polygon \N 5605 14284 INSERT -35 175 ome.model.acquisition.Microscope \N 5605 14285 INSERT -35 225 ome.model.acquisition.Instrument \N 5605 14286 INSERT -35 257 ome.model.acquisition.Detector \N 5605 14287 INSERT -35 497 ome.model.acquisition.TransmittanceRange \N 5605 14288 INSERT -35 497 ome.model.acquisition.Filter \N 5605 14289 INSERT -35 498 ome.model.acquisition.TransmittanceRange \N 5605 14290 INSERT -35 498 ome.model.acquisition.Filter \N 5605 14291 INSERT -35 499 ome.model.acquisition.TransmittanceRange \N 5605 14292 INSERT -35 499 ome.model.acquisition.Filter \N 5605 14293 INSERT -35 500 ome.model.acquisition.TransmittanceRange \N 5605 14294 INSERT -35 500 ome.model.acquisition.Filter \N 5605 14295 INSERT -35 845 ome.model.acquisition.Laser \N 5605 14296 INSERT -35 846 ome.model.acquisition.Laser \N 5605 14297 INSERT -35 847 ome.model.acquisition.Laser \N 5605 14298 INSERT -35 848 ome.model.acquisition.Laser \N 5605 14299 INSERT -35 849 ome.model.acquisition.Laser \N 5605 14300 INSERT -35 850 ome.model.acquisition.Laser \N 5605 14301 INSERT -35 225 ome.model.acquisition.Objective \N 5605 14302 INSERT -35 225 ome.model.acquisition.ObjectiveSettings \N 5605 14303 INSERT -35 225 ome.model.core.Image \N 5605 14304 INSERT -35 275 ome.model.core.OriginalFile \N 5605 14305 INSERT -35 275 ome.model.annotations.FileAnnotation \N 5605 14306 INSERT -35 325 ome.model.annotations.ImageAnnotationLink \N 5605 14307 INSERT -35 225 ome.model.containers.DatasetImageLink \N 5605 14308 INSERT -35 225 ome.model.core.Pixels \N 5605 14309 INSERT -35 257 ome.model.acquisition.DetectorSettings \N 5605 14310 INSERT -35 225 ome.model.acquisition.LightPath \N 5605 14311 INSERT -35 225 ome.model.acquisition.LightPathEmissionFilterLink \N 5605 14312 INSERT -35 225 ome.model.acquisition.LightSettings \N 5605 14313 INSERT -35 357 ome.model.core.LogicalChannel \N 5605 14314 INSERT -35 357 ome.model.core.Channel \N 5605 14315 INSERT -35 6522 ome.model.core.PlaneInfo \N 5605 14316 INSERT -35 176 ome.model.acquisition.Microscope \N 5605 14317 INSERT -35 226 ome.model.acquisition.Instrument \N 5605 14318 INSERT -35 258 ome.model.acquisition.Detector \N 5605 14319 INSERT -35 501 ome.model.acquisition.TransmittanceRange \N 5605 14320 INSERT -35 501 ome.model.acquisition.Filter \N 5605 14321 INSERT -35 502 ome.model.acquisition.TransmittanceRange \N 5605 14322 INSERT -35 502 ome.model.acquisition.Filter \N 5605 14323 INSERT -35 503 ome.model.acquisition.TransmittanceRange \N 5605 14324 INSERT -35 503 ome.model.acquisition.Filter \N 5605 14325 INSERT -35 504 ome.model.acquisition.TransmittanceRange \N 5605 14326 INSERT -35 504 ome.model.acquisition.Filter \N 5605 14327 INSERT -35 851 ome.model.acquisition.Laser \N 5605 14328 INSERT -35 852 ome.model.acquisition.Laser \N 5605 14329 INSERT -35 853 ome.model.acquisition.Laser \N 5605 14330 INSERT -35 854 ome.model.acquisition.Laser \N 5605 14331 INSERT -35 855 ome.model.acquisition.Laser \N 5605 14332 INSERT -35 856 ome.model.acquisition.Laser \N 5605 14333 INSERT -35 226 ome.model.acquisition.Objective \N 5605 14334 INSERT -35 226 ome.model.acquisition.ObjectiveSettings \N 5605 14335 INSERT -35 226 ome.model.core.Image \N 5605 14336 INSERT -35 276 ome.model.core.OriginalFile \N 5605 14337 INSERT -35 276 ome.model.annotations.FileAnnotation \N 5605 14338 INSERT -35 326 ome.model.annotations.ImageAnnotationLink \N 5605 14339 INSERT -35 226 ome.model.containers.DatasetImageLink \N 5605 14340 INSERT -35 226 ome.model.core.Pixels \N 5605 14341 INSERT -35 258 ome.model.acquisition.DetectorSettings \N 5605 14342 INSERT -35 226 ome.model.acquisition.LightPath \N 5605 14343 INSERT -35 226 ome.model.acquisition.LightPathEmissionFilterLink \N 5605 14344 INSERT -35 226 ome.model.acquisition.LightSettings \N 5605 14345 INSERT -35 358 ome.model.core.LogicalChannel \N 5605 14346 INSERT -35 358 ome.model.core.Channel \N 5605 14347 INSERT -35 6523 ome.model.core.PlaneInfo \N 5605 14348 INSERT -35 6524 ome.model.core.PlaneInfo \N 5605 14349 INSERT -35 6525 ome.model.core.PlaneInfo \N 5605 14350 INSERT -35 6526 ome.model.core.PlaneInfo \N 5605 14351 INSERT -35 6527 ome.model.core.PlaneInfo \N 5605 14352 INSERT -35 6528 ome.model.core.PlaneInfo \N 5605 14353 INSERT -35 6529 ome.model.core.PlaneInfo \N 5605 14354 INSERT -35 6530 ome.model.core.PlaneInfo \N 5605 14355 INSERT -35 6531 ome.model.core.PlaneInfo \N 5605 14356 INSERT -35 6532 ome.model.core.PlaneInfo \N 5605 14357 INSERT -35 6533 ome.model.core.PlaneInfo \N 5605 14358 INSERT -35 6534 ome.model.core.PlaneInfo \N 5605 14359 INSERT -35 6535 ome.model.core.PlaneInfo \N 5605 14360 INSERT -35 6536 ome.model.core.PlaneInfo \N 5605 14361 INSERT -35 6537 ome.model.core.PlaneInfo \N 5605 14362 INSERT -35 6538 ome.model.core.PlaneInfo \N 5605 14363 INSERT -35 6539 ome.model.core.PlaneInfo \N 5605 14364 INSERT -35 6540 ome.model.core.PlaneInfo \N 5605 14365 INSERT -35 6541 ome.model.core.PlaneInfo \N 5605 14366 INSERT -35 6542 ome.model.core.PlaneInfo \N 5605 14367 UPDATE -35 224 ome.model.core.Pixels \N 5606 14368 UPDATE -35 223 ome.model.core.Pixels \N 5607 14369 UPDATE -35 225 ome.model.core.Pixels \N 5607 14370 UPDATE -35 226 ome.model.core.Pixels \N 5607 14371 UPDATE -35 224 ome.model.core.Pixels \N 5607 14372 INSERT -35 277 ome.model.display.QuantumDef \N 5609 14373 INSERT -35 277 ome.model.display.RenderingDef \N 5609 14374 INSERT -35 413 ome.model.display.ChannelBinding \N 5609 14375 INSERT -35 278 ome.model.display.QuantumDef \N 5609 14376 INSERT -35 278 ome.model.display.RenderingDef \N 5609 14377 INSERT -35 414 ome.model.display.ChannelBinding \N 5609 14378 INSERT -35 279 ome.model.display.QuantumDef \N 5609 14379 INSERT -35 279 ome.model.display.RenderingDef \N 5609 14380 INSERT -35 415 ome.model.display.ChannelBinding \N 5609 14381 INSERT -35 280 ome.model.display.QuantumDef \N 5609 14382 INSERT -35 280 ome.model.display.RenderingDef \N 5609 14383 INSERT -35 416 ome.model.display.ChannelBinding \N 5609 14384 INSERT -35 223 ome.model.display.Thumbnail \N 5609 14385 INSERT -35 224 ome.model.display.Thumbnail \N 5609 14386 INSERT -35 225 ome.model.display.Thumbnail \N 5609 14387 INSERT -35 226 ome.model.display.Thumbnail \N 5609 14388 INSERT -35 355 ome.model.stats.StatsInfo \N 5608 14389 INSERT -35 356 ome.model.stats.StatsInfo \N 5608 14390 INSERT -35 357 ome.model.stats.StatsInfo \N 5608 14391 INSERT -35 358 ome.model.stats.StatsInfo \N 5608 14392 UPDATE -35 355 ome.model.core.Channel \N 5608 14393 UPDATE -35 357 ome.model.core.Channel \N 5608 14394 UPDATE -35 358 ome.model.core.Channel \N 5608 14395 UPDATE -35 356 ome.model.core.Channel \N 5608 14396 UPDATE -35 277 ome.model.display.RenderingDef \N 5610 14397 UPDATE -35 413 ome.model.display.ChannelBinding \N 5610 14398 UPDATE -35 278 ome.model.display.RenderingDef \N 5610 14399 UPDATE -35 414 ome.model.display.ChannelBinding \N 5610 14400 UPDATE -35 279 ome.model.display.RenderingDef \N 5610 14401 UPDATE -35 415 ome.model.display.ChannelBinding \N 5610 14402 UPDATE -35 280 ome.model.display.RenderingDef \N 5610 14403 UPDATE -35 416 ome.model.display.ChannelBinding \N 5610 14404 UPDATE -35 226 ome.model.display.Thumbnail \N 5611 14405 UPDATE -35 223 ome.model.display.Thumbnail \N 5611 14406 UPDATE -35 225 ome.model.display.Thumbnail \N 5611 14407 UPDATE -35 224 ome.model.display.Thumbnail \N 5611 14408 UPDATE -35 274 ome.model.core.OriginalFile \N 5612 14409 INSERT -35 177 ome.model.acquisition.Microscope \N 5628 14410 INSERT -35 227 ome.model.acquisition.Instrument \N 5628 14411 INSERT -35 259 ome.model.acquisition.Detector \N 5628 14412 INSERT -35 505 ome.model.acquisition.TransmittanceRange \N 5628 14413 INSERT -35 505 ome.model.acquisition.Filter \N 5628 14414 INSERT -35 506 ome.model.acquisition.TransmittanceRange \N 5628 14415 INSERT -35 506 ome.model.acquisition.Filter \N 5628 14416 INSERT -35 507 ome.model.acquisition.TransmittanceRange \N 5628 14417 INSERT -35 507 ome.model.acquisition.Filter \N 5628 14418 INSERT -35 508 ome.model.acquisition.TransmittanceRange \N 5628 14419 INSERT -35 508 ome.model.acquisition.Filter \N 5628 14420 INSERT -35 857 ome.model.acquisition.Laser \N 5628 14421 INSERT -35 858 ome.model.acquisition.Laser \N 5628 14422 INSERT -35 859 ome.model.acquisition.Laser \N 5628 14423 INSERT -35 860 ome.model.acquisition.Laser \N 5628 14424 INSERT -35 861 ome.model.acquisition.Laser \N 5628 14425 INSERT -35 862 ome.model.acquisition.Laser \N 5628 14426 INSERT -35 227 ome.model.acquisition.Objective \N 5628 14427 INSERT -35 227 ome.model.acquisition.ObjectiveSettings \N 5628 14428 INSERT -35 227 ome.model.core.Image \N 5628 14429 INSERT -35 277 ome.model.core.OriginalFile \N 5628 14430 INSERT -35 277 ome.model.annotations.FileAnnotation \N 5628 14431 INSERT -35 327 ome.model.annotations.ImageAnnotationLink \N 5628 14432 INSERT -35 227 ome.model.containers.DatasetImageLink \N 5628 14433 INSERT -35 227 ome.model.core.Pixels \N 5628 14434 INSERT -35 259 ome.model.acquisition.DetectorSettings \N 5628 14435 INSERT -35 227 ome.model.acquisition.LightPath \N 5628 14436 INSERT -35 227 ome.model.acquisition.LightPathEmissionFilterLink \N 5628 14437 INSERT -35 227 ome.model.acquisition.LightSettings \N 5628 14438 INSERT -35 359 ome.model.core.LogicalChannel \N 5628 14439 INSERT -35 359 ome.model.core.Channel \N 5628 14440 INSERT -35 6543 ome.model.core.PlaneInfo \N 5628 14441 INSERT -35 6544 ome.model.core.PlaneInfo \N 5628 14442 INSERT -35 6545 ome.model.core.PlaneInfo \N 5628 14443 INSERT -35 6546 ome.model.core.PlaneInfo \N 5628 14444 INSERT -35 6547 ome.model.core.PlaneInfo \N 5628 14445 INSERT -35 178 ome.model.acquisition.Microscope \N 5628 14446 INSERT -35 228 ome.model.acquisition.Instrument \N 5628 14447 INSERT -35 260 ome.model.acquisition.Detector \N 5628 14448 INSERT -35 509 ome.model.acquisition.TransmittanceRange \N 5628 14449 INSERT -35 509 ome.model.acquisition.Filter \N 5628 14450 INSERT -35 510 ome.model.acquisition.TransmittanceRange \N 5628 14451 INSERT -35 510 ome.model.acquisition.Filter \N 5628 14452 INSERT -35 511 ome.model.acquisition.TransmittanceRange \N 5628 14453 INSERT -35 511 ome.model.acquisition.Filter \N 5628 14454 INSERT -35 512 ome.model.acquisition.TransmittanceRange \N 5628 14455 INSERT -35 512 ome.model.acquisition.Filter \N 5628 14456 INSERT -35 863 ome.model.acquisition.Laser \N 5628 14457 INSERT -35 864 ome.model.acquisition.Laser \N 5628 14458 INSERT -35 865 ome.model.acquisition.Laser \N 5628 14459 INSERT -35 866 ome.model.acquisition.Laser \N 5628 14460 INSERT -35 867 ome.model.acquisition.Laser \N 5628 14461 INSERT -35 868 ome.model.acquisition.Laser \N 5628 14462 INSERT -35 228 ome.model.acquisition.Objective \N 5628 14463 INSERT -35 228 ome.model.acquisition.ObjectiveSettings \N 5628 14464 INSERT -35 228 ome.model.core.Image \N 5628 14465 INSERT -35 278 ome.model.core.OriginalFile \N 5628 14466 INSERT -35 278 ome.model.annotations.FileAnnotation \N 5628 14467 INSERT -35 328 ome.model.annotations.ImageAnnotationLink \N 5628 14468 INSERT -35 228 ome.model.containers.DatasetImageLink \N 5628 14469 INSERT -35 228 ome.model.core.Pixels \N 5628 14470 INSERT -35 260 ome.model.acquisition.DetectorSettings \N 5628 14471 INSERT -35 228 ome.model.acquisition.LightPath \N 5628 14472 INSERT -35 228 ome.model.acquisition.LightPathEmissionFilterLink \N 5628 14473 INSERT -35 228 ome.model.acquisition.LightSettings \N 5628 14474 INSERT -35 360 ome.model.core.LogicalChannel \N 5628 14475 INSERT -35 360 ome.model.core.Channel \N 5628 14476 INSERT -35 6548 ome.model.core.PlaneInfo \N 5628 14477 INSERT -35 6549 ome.model.core.PlaneInfo \N 5628 14478 INSERT -35 6550 ome.model.core.PlaneInfo \N 5628 14479 INSERT -35 6551 ome.model.core.PlaneInfo \N 5628 14480 INSERT -35 6552 ome.model.core.PlaneInfo \N 5628 14481 INSERT -35 6553 ome.model.core.PlaneInfo \N 5628 14482 INSERT -35 6554 ome.model.core.PlaneInfo \N 5628 14483 INSERT -35 6555 ome.model.core.PlaneInfo \N 5628 14484 INSERT -35 6556 ome.model.core.PlaneInfo \N 5628 14485 INSERT -35 6557 ome.model.core.PlaneInfo \N 5628 14486 INSERT -35 6558 ome.model.core.PlaneInfo \N 5628 14487 INSERT -35 6559 ome.model.core.PlaneInfo \N 5628 14488 INSERT -35 6560 ome.model.core.PlaneInfo \N 5628 14489 INSERT -35 6561 ome.model.core.PlaneInfo \N 5628 14490 INSERT -35 6562 ome.model.core.PlaneInfo \N 5628 14491 INSERT -35 6563 ome.model.core.PlaneInfo \N 5628 14492 INSERT -35 6564 ome.model.core.PlaneInfo \N 5628 14493 INSERT -35 6565 ome.model.core.PlaneInfo \N 5628 14494 INSERT -35 6566 ome.model.core.PlaneInfo \N 5628 14495 INSERT -35 6567 ome.model.core.PlaneInfo \N 5628 14496 INSERT -35 20 ome.model.roi.Roi \N 5628 14497 INSERT -35 39 ome.model.roi.Label \N 5628 14498 INSERT -35 40 ome.model.roi.Polygon \N 5628 14499 INSERT -35 179 ome.model.acquisition.Microscope \N 5628 14500 INSERT -35 229 ome.model.acquisition.Instrument \N 5628 14501 INSERT -35 261 ome.model.acquisition.Detector \N 5628 14502 INSERT -35 513 ome.model.acquisition.TransmittanceRange \N 5628 14503 INSERT -35 513 ome.model.acquisition.Filter \N 5628 14504 INSERT -35 514 ome.model.acquisition.TransmittanceRange \N 5628 14505 INSERT -35 514 ome.model.acquisition.Filter \N 5628 14506 INSERT -35 515 ome.model.acquisition.TransmittanceRange \N 5628 14507 INSERT -35 515 ome.model.acquisition.Filter \N 5628 14508 INSERT -35 516 ome.model.acquisition.TransmittanceRange \N 5628 14509 INSERT -35 516 ome.model.acquisition.Filter \N 5628 14510 INSERT -35 869 ome.model.acquisition.Laser \N 5628 14511 INSERT -35 870 ome.model.acquisition.Laser \N 5628 14512 INSERT -35 871 ome.model.acquisition.Laser \N 5628 14513 INSERT -35 872 ome.model.acquisition.Laser \N 5628 14514 INSERT -35 873 ome.model.acquisition.Laser \N 5628 14515 INSERT -35 874 ome.model.acquisition.Laser \N 5628 14516 INSERT -35 229 ome.model.acquisition.Objective \N 5628 14517 INSERT -35 229 ome.model.acquisition.ObjectiveSettings \N 5628 14518 INSERT -35 229 ome.model.core.Image \N 5628 14519 INSERT -35 279 ome.model.core.OriginalFile \N 5628 14520 INSERT -35 279 ome.model.annotations.FileAnnotation \N 5628 14521 INSERT -35 329 ome.model.annotations.ImageAnnotationLink \N 5628 14522 INSERT -35 229 ome.model.containers.DatasetImageLink \N 5628 14523 INSERT -35 229 ome.model.core.Pixels \N 5628 14524 INSERT -35 261 ome.model.acquisition.DetectorSettings \N 5628 14525 INSERT -35 229 ome.model.acquisition.LightPath \N 5628 14526 INSERT -35 229 ome.model.acquisition.LightPathEmissionFilterLink \N 5628 14527 INSERT -35 229 ome.model.acquisition.LightSettings \N 5628 14528 INSERT -35 361 ome.model.core.LogicalChannel \N 5628 14529 INSERT -35 361 ome.model.core.Channel \N 5628 14530 INSERT -35 6568 ome.model.core.PlaneInfo \N 5628 14531 INSERT -35 180 ome.model.acquisition.Microscope \N 5628 14532 INSERT -35 230 ome.model.acquisition.Instrument \N 5628 14533 INSERT -35 262 ome.model.acquisition.Detector \N 5628 14534 INSERT -35 517 ome.model.acquisition.TransmittanceRange \N 5628 14535 INSERT -35 517 ome.model.acquisition.Filter \N 5628 14536 INSERT -35 518 ome.model.acquisition.TransmittanceRange \N 5628 14537 INSERT -35 518 ome.model.acquisition.Filter \N 5628 14538 INSERT -35 519 ome.model.acquisition.TransmittanceRange \N 5628 14539 INSERT -35 519 ome.model.acquisition.Filter \N 5628 14540 INSERT -35 520 ome.model.acquisition.TransmittanceRange \N 5628 14541 INSERT -35 520 ome.model.acquisition.Filter \N 5628 14542 INSERT -35 875 ome.model.acquisition.Laser \N 5628 14543 INSERT -35 876 ome.model.acquisition.Laser \N 5628 14544 INSERT -35 877 ome.model.acquisition.Laser \N 5628 14545 INSERT -35 878 ome.model.acquisition.Laser \N 5628 14546 INSERT -35 879 ome.model.acquisition.Laser \N 5628 14547 INSERT -35 880 ome.model.acquisition.Laser \N 5628 14548 INSERT -35 230 ome.model.acquisition.Objective \N 5628 14549 INSERT -35 230 ome.model.acquisition.ObjectiveSettings \N 5628 14550 INSERT -35 230 ome.model.core.Image \N 5628 14551 INSERT -35 280 ome.model.core.OriginalFile \N 5628 14552 INSERT -35 280 ome.model.annotations.FileAnnotation \N 5628 14553 INSERT -35 330 ome.model.annotations.ImageAnnotationLink \N 5628 14554 INSERT -35 230 ome.model.containers.DatasetImageLink \N 5628 14555 INSERT -35 230 ome.model.core.Pixels \N 5628 14556 INSERT -35 262 ome.model.acquisition.DetectorSettings \N 5628 14557 INSERT -35 230 ome.model.acquisition.LightPath \N 5628 14558 INSERT -35 230 ome.model.acquisition.LightPathEmissionFilterLink \N 5628 14559 INSERT -35 230 ome.model.acquisition.LightSettings \N 5628 14560 INSERT -35 362 ome.model.core.LogicalChannel \N 5628 14561 INSERT -35 362 ome.model.core.Channel \N 5628 14562 INSERT -35 6569 ome.model.core.PlaneInfo \N 5628 14563 INSERT -35 6570 ome.model.core.PlaneInfo \N 5628 14564 INSERT -35 6571 ome.model.core.PlaneInfo \N 5628 14565 INSERT -35 6572 ome.model.core.PlaneInfo \N 5628 14566 INSERT -35 6573 ome.model.core.PlaneInfo \N 5628 14567 INSERT -35 6574 ome.model.core.PlaneInfo \N 5628 14568 INSERT -35 6575 ome.model.core.PlaneInfo \N 5628 14569 INSERT -35 6576 ome.model.core.PlaneInfo \N 5628 14570 INSERT -35 6577 ome.model.core.PlaneInfo \N 5628 14571 INSERT -35 6578 ome.model.core.PlaneInfo \N 5628 14572 INSERT -35 6579 ome.model.core.PlaneInfo \N 5628 14573 INSERT -35 6580 ome.model.core.PlaneInfo \N 5628 14574 INSERT -35 6581 ome.model.core.PlaneInfo \N 5628 14575 INSERT -35 6582 ome.model.core.PlaneInfo \N 5628 14576 INSERT -35 6583 ome.model.core.PlaneInfo \N 5628 14577 INSERT -35 6584 ome.model.core.PlaneInfo \N 5628 14578 INSERT -35 6585 ome.model.core.PlaneInfo \N 5628 14579 INSERT -35 6586 ome.model.core.PlaneInfo \N 5628 14580 INSERT -35 6587 ome.model.core.PlaneInfo \N 5628 14581 INSERT -35 6588 ome.model.core.PlaneInfo \N 5628 14583 UPDATE -35 228 ome.model.core.Pixels \N 5629 14584 UPDATE -35 227 ome.model.core.Pixels \N 5631 14585 UPDATE -35 229 ome.model.core.Pixels \N 5631 14586 UPDATE -35 230 ome.model.core.Pixels \N 5631 14587 UPDATE -35 228 ome.model.core.Pixels \N 5631 14588 INSERT -35 359 ome.model.stats.StatsInfo \N 5632 14589 INSERT -35 360 ome.model.stats.StatsInfo \N 5632 14590 INSERT -35 361 ome.model.stats.StatsInfo \N 5632 14591 INSERT -35 362 ome.model.stats.StatsInfo \N 5632 14592 UPDATE -35 359 ome.model.core.Channel \N 5632 14582 INSERT -35 103 ome.model.containers.Dataset \N 5630 14593 UPDATE -35 361 ome.model.core.Channel \N 5632 14594 UPDATE -35 362 ome.model.core.Channel \N 5632 14595 UPDATE -35 360 ome.model.core.Channel \N 5632 14596 INSERT -35 281 ome.model.display.QuantumDef \N 5633 14597 INSERT -35 281 ome.model.display.RenderingDef \N 5633 14598 INSERT -35 417 ome.model.display.ChannelBinding \N 5633 14599 INSERT -35 282 ome.model.display.QuantumDef \N 5633 14600 INSERT -35 282 ome.model.display.RenderingDef \N 5633 14601 INSERT -35 418 ome.model.display.ChannelBinding \N 5633 14602 INSERT -35 283 ome.model.display.QuantumDef \N 5633 14603 INSERT -35 283 ome.model.display.RenderingDef \N 5633 14604 INSERT -35 419 ome.model.display.ChannelBinding \N 5633 14605 INSERT -35 284 ome.model.display.QuantumDef \N 5633 14606 INSERT -35 284 ome.model.display.RenderingDef \N 5633 14607 INSERT -35 420 ome.model.display.ChannelBinding \N 5633 14608 INSERT -35 227 ome.model.display.Thumbnail \N 5634 14609 INSERT -35 228 ome.model.display.Thumbnail \N 5634 14610 INSERT -35 229 ome.model.display.Thumbnail \N 5634 14611 INSERT -35 230 ome.model.display.Thumbnail \N 5634 14612 UPDATE -35 278 ome.model.core.OriginalFile \N 5635 14613 INSERT -35 181 ome.model.acquisition.Microscope \N 5651 14614 INSERT -35 231 ome.model.acquisition.Instrument \N 5651 14615 INSERT -35 263 ome.model.acquisition.Detector \N 5651 14616 INSERT -35 521 ome.model.acquisition.TransmittanceRange \N 5651 14617 INSERT -35 521 ome.model.acquisition.Filter \N 5651 14618 INSERT -35 522 ome.model.acquisition.TransmittanceRange \N 5651 14619 INSERT -35 522 ome.model.acquisition.Filter \N 5651 14620 INSERT -35 523 ome.model.acquisition.TransmittanceRange \N 5651 14621 INSERT -35 523 ome.model.acquisition.Filter \N 5651 14622 INSERT -35 524 ome.model.acquisition.TransmittanceRange \N 5651 14623 INSERT -35 524 ome.model.acquisition.Filter \N 5651 14624 INSERT -35 881 ome.model.acquisition.Laser \N 5651 14625 INSERT -35 882 ome.model.acquisition.Laser \N 5651 14626 INSERT -35 883 ome.model.acquisition.Laser \N 5651 14627 INSERT -35 884 ome.model.acquisition.Laser \N 5651 14628 INSERT -35 885 ome.model.acquisition.Laser \N 5651 14629 INSERT -35 886 ome.model.acquisition.Laser \N 5651 14630 INSERT -35 231 ome.model.acquisition.Objective \N 5651 14631 INSERT -35 231 ome.model.acquisition.ObjectiveSettings \N 5651 14632 INSERT -35 231 ome.model.core.Image \N 5651 14633 INSERT -35 281 ome.model.core.OriginalFile \N 5651 14634 INSERT -35 281 ome.model.annotations.FileAnnotation \N 5651 14635 INSERT -35 331 ome.model.annotations.ImageAnnotationLink \N 5651 14636 INSERT -35 231 ome.model.containers.DatasetImageLink \N 5651 14637 INSERT -35 231 ome.model.core.Pixels \N 5651 14638 INSERT -35 263 ome.model.acquisition.DetectorSettings \N 5651 14639 INSERT -35 231 ome.model.acquisition.LightPath \N 5651 14640 INSERT -35 231 ome.model.acquisition.LightPathEmissionFilterLink \N 5651 14641 INSERT -35 231 ome.model.acquisition.LightSettings \N 5651 14642 INSERT -35 363 ome.model.core.LogicalChannel \N 5651 14643 INSERT -35 363 ome.model.core.Channel \N 5651 14644 INSERT -35 6589 ome.model.core.PlaneInfo \N 5651 14645 INSERT -35 6590 ome.model.core.PlaneInfo \N 5651 14646 INSERT -35 6591 ome.model.core.PlaneInfo \N 5651 14647 INSERT -35 6592 ome.model.core.PlaneInfo \N 5651 14648 INSERT -35 6593 ome.model.core.PlaneInfo \N 5651 14649 INSERT -35 182 ome.model.acquisition.Microscope \N 5651 14650 INSERT -35 232 ome.model.acquisition.Instrument \N 5651 14651 INSERT -35 264 ome.model.acquisition.Detector \N 5651 14652 INSERT -35 525 ome.model.acquisition.TransmittanceRange \N 5651 14653 INSERT -35 525 ome.model.acquisition.Filter \N 5651 14654 INSERT -35 526 ome.model.acquisition.TransmittanceRange \N 5651 14655 INSERT -35 526 ome.model.acquisition.Filter \N 5651 14656 INSERT -35 527 ome.model.acquisition.TransmittanceRange \N 5651 14657 INSERT -35 527 ome.model.acquisition.Filter \N 5651 14658 INSERT -35 528 ome.model.acquisition.TransmittanceRange \N 5651 14659 INSERT -35 528 ome.model.acquisition.Filter \N 5651 14660 INSERT -35 887 ome.model.acquisition.Laser \N 5651 14661 INSERT -35 888 ome.model.acquisition.Laser \N 5651 14662 INSERT -35 889 ome.model.acquisition.Laser \N 5651 14663 INSERT -35 890 ome.model.acquisition.Laser \N 5651 14664 INSERT -35 891 ome.model.acquisition.Laser \N 5651 14665 INSERT -35 892 ome.model.acquisition.Laser \N 5651 14666 INSERT -35 232 ome.model.acquisition.Objective \N 5651 14667 INSERT -35 232 ome.model.acquisition.ObjectiveSettings \N 5651 14668 INSERT -35 232 ome.model.core.Image \N 5651 14669 INSERT -35 282 ome.model.core.OriginalFile \N 5651 14670 INSERT -35 282 ome.model.annotations.FileAnnotation \N 5651 14671 INSERT -35 332 ome.model.annotations.ImageAnnotationLink \N 5651 14672 INSERT -35 232 ome.model.containers.DatasetImageLink \N 5651 14673 INSERT -35 232 ome.model.core.Pixels \N 5651 14674 INSERT -35 264 ome.model.acquisition.DetectorSettings \N 5651 14675 INSERT -35 232 ome.model.acquisition.LightPath \N 5651 14676 INSERT -35 232 ome.model.acquisition.LightPathEmissionFilterLink \N 5651 14677 INSERT -35 232 ome.model.acquisition.LightSettings \N 5651 14678 INSERT -35 364 ome.model.core.LogicalChannel \N 5651 14679 INSERT -35 364 ome.model.core.Channel \N 5651 14680 INSERT -35 6594 ome.model.core.PlaneInfo \N 5651 14681 INSERT -35 6595 ome.model.core.PlaneInfo \N 5651 14682 INSERT -35 6596 ome.model.core.PlaneInfo \N 5651 14683 INSERT -35 6597 ome.model.core.PlaneInfo \N 5651 14684 INSERT -35 6598 ome.model.core.PlaneInfo \N 5651 14685 INSERT -35 6599 ome.model.core.PlaneInfo \N 5651 14686 INSERT -35 6600 ome.model.core.PlaneInfo \N 5651 14687 INSERT -35 6601 ome.model.core.PlaneInfo \N 5651 14688 INSERT -35 6602 ome.model.core.PlaneInfo \N 5651 14689 INSERT -35 6603 ome.model.core.PlaneInfo \N 5651 14690 INSERT -35 6604 ome.model.core.PlaneInfo \N 5651 14691 INSERT -35 6605 ome.model.core.PlaneInfo \N 5651 14692 INSERT -35 6606 ome.model.core.PlaneInfo \N 5651 14693 INSERT -35 6607 ome.model.core.PlaneInfo \N 5651 14694 INSERT -35 6608 ome.model.core.PlaneInfo \N 5651 14695 INSERT -35 6609 ome.model.core.PlaneInfo \N 5651 14696 INSERT -35 6610 ome.model.core.PlaneInfo \N 5651 14697 INSERT -35 6611 ome.model.core.PlaneInfo \N 5651 14698 INSERT -35 6612 ome.model.core.PlaneInfo \N 5651 14699 INSERT -35 6613 ome.model.core.PlaneInfo \N 5651 14700 INSERT -35 21 ome.model.roi.Roi \N 5651 14701 INSERT -35 41 ome.model.roi.Label \N 5651 14702 INSERT -35 42 ome.model.roi.Polygon \N 5651 14703 INSERT -35 183 ome.model.acquisition.Microscope \N 5651 14704 INSERT -35 233 ome.model.acquisition.Instrument \N 5651 14705 INSERT -35 265 ome.model.acquisition.Detector \N 5651 14706 INSERT -35 529 ome.model.acquisition.TransmittanceRange \N 5651 14707 INSERT -35 529 ome.model.acquisition.Filter \N 5651 14708 INSERT -35 530 ome.model.acquisition.TransmittanceRange \N 5651 14709 INSERT -35 530 ome.model.acquisition.Filter \N 5651 14710 INSERT -35 531 ome.model.acquisition.TransmittanceRange \N 5651 14711 INSERT -35 531 ome.model.acquisition.Filter \N 5651 14712 INSERT -35 532 ome.model.acquisition.TransmittanceRange \N 5651 14713 INSERT -35 532 ome.model.acquisition.Filter \N 5651 14714 INSERT -35 893 ome.model.acquisition.Laser \N 5651 14715 INSERT -35 894 ome.model.acquisition.Laser \N 5651 14716 INSERT -35 895 ome.model.acquisition.Laser \N 5651 14717 INSERT -35 896 ome.model.acquisition.Laser \N 5651 14718 INSERT -35 897 ome.model.acquisition.Laser \N 5651 14719 INSERT -35 898 ome.model.acquisition.Laser \N 5651 14720 INSERT -35 233 ome.model.acquisition.Objective \N 5651 14721 INSERT -35 233 ome.model.acquisition.ObjectiveSettings \N 5651 14722 INSERT -35 233 ome.model.core.Image \N 5651 14723 INSERT -35 283 ome.model.core.OriginalFile \N 5651 14724 INSERT -35 283 ome.model.annotations.FileAnnotation \N 5651 14725 INSERT -35 333 ome.model.annotations.ImageAnnotationLink \N 5651 14726 INSERT -35 233 ome.model.containers.DatasetImageLink \N 5651 14727 INSERT -35 233 ome.model.core.Pixels \N 5651 14728 INSERT -35 265 ome.model.acquisition.DetectorSettings \N 5651 14729 INSERT -35 233 ome.model.acquisition.LightPath \N 5651 14730 INSERT -35 233 ome.model.acquisition.LightPathEmissionFilterLink \N 5651 14731 INSERT -35 233 ome.model.acquisition.LightSettings \N 5651 14732 INSERT -35 365 ome.model.core.LogicalChannel \N 5651 14733 INSERT -35 365 ome.model.core.Channel \N 5651 14734 INSERT -35 6614 ome.model.core.PlaneInfo \N 5651 14735 INSERT -35 184 ome.model.acquisition.Microscope \N 5651 14736 INSERT -35 234 ome.model.acquisition.Instrument \N 5651 14737 INSERT -35 266 ome.model.acquisition.Detector \N 5651 14738 INSERT -35 533 ome.model.acquisition.TransmittanceRange \N 5651 14739 INSERT -35 533 ome.model.acquisition.Filter \N 5651 14740 INSERT -35 534 ome.model.acquisition.TransmittanceRange \N 5651 14741 INSERT -35 534 ome.model.acquisition.Filter \N 5651 14742 INSERT -35 535 ome.model.acquisition.TransmittanceRange \N 5651 14743 INSERT -35 535 ome.model.acquisition.Filter \N 5651 14744 INSERT -35 536 ome.model.acquisition.TransmittanceRange \N 5651 14745 INSERT -35 536 ome.model.acquisition.Filter \N 5651 14746 INSERT -35 899 ome.model.acquisition.Laser \N 5651 14747 INSERT -35 900 ome.model.acquisition.Laser \N 5651 14748 INSERT -35 901 ome.model.acquisition.Laser \N 5651 14749 INSERT -35 902 ome.model.acquisition.Laser \N 5651 14750 INSERT -35 903 ome.model.acquisition.Laser \N 5651 14751 INSERT -35 904 ome.model.acquisition.Laser \N 5651 14752 INSERT -35 234 ome.model.acquisition.Objective \N 5651 14753 INSERT -35 234 ome.model.acquisition.ObjectiveSettings \N 5651 14754 INSERT -35 234 ome.model.core.Image \N 5651 14755 INSERT -35 284 ome.model.core.OriginalFile \N 5651 14756 INSERT -35 284 ome.model.annotations.FileAnnotation \N 5651 14757 INSERT -35 334 ome.model.annotations.ImageAnnotationLink \N 5651 14758 INSERT -35 234 ome.model.containers.DatasetImageLink \N 5651 14759 INSERT -35 234 ome.model.core.Pixels \N 5651 14760 INSERT -35 266 ome.model.acquisition.DetectorSettings \N 5651 14761 INSERT -35 234 ome.model.acquisition.LightPath \N 5651 14762 INSERT -35 234 ome.model.acquisition.LightPathEmissionFilterLink \N 5651 14763 INSERT -35 234 ome.model.acquisition.LightSettings \N 5651 14764 INSERT -35 366 ome.model.core.LogicalChannel \N 5651 14765 INSERT -35 366 ome.model.core.Channel \N 5651 14766 INSERT -35 6615 ome.model.core.PlaneInfo \N 5651 14767 INSERT -35 6616 ome.model.core.PlaneInfo \N 5651 14768 INSERT -35 6617 ome.model.core.PlaneInfo \N 5651 14769 INSERT -35 6618 ome.model.core.PlaneInfo \N 5651 14770 INSERT -35 6619 ome.model.core.PlaneInfo \N 5651 14771 INSERT -35 6620 ome.model.core.PlaneInfo \N 5651 14772 INSERT -35 6621 ome.model.core.PlaneInfo \N 5651 14773 INSERT -35 6622 ome.model.core.PlaneInfo \N 5651 14774 INSERT -35 6623 ome.model.core.PlaneInfo \N 5651 14775 INSERT -35 6624 ome.model.core.PlaneInfo \N 5651 14776 INSERT -35 6625 ome.model.core.PlaneInfo \N 5651 14777 INSERT -35 6626 ome.model.core.PlaneInfo \N 5651 14778 INSERT -35 6627 ome.model.core.PlaneInfo \N 5651 14779 INSERT -35 6628 ome.model.core.PlaneInfo \N 5651 14780 INSERT -35 6629 ome.model.core.PlaneInfo \N 5651 14781 INSERT -35 6630 ome.model.core.PlaneInfo \N 5651 14782 INSERT -35 6631 ome.model.core.PlaneInfo \N 5651 14783 INSERT -35 6632 ome.model.core.PlaneInfo \N 5651 14784 INSERT -35 6633 ome.model.core.PlaneInfo \N 5651 14785 INSERT -35 6634 ome.model.core.PlaneInfo \N 5651 14786 UPDATE -35 232 ome.model.core.Pixels \N 5655 14787 UPDATE -35 231 ome.model.core.Pixels \N 5656 14788 UPDATE -35 233 ome.model.core.Pixels \N 5656 14789 UPDATE -35 234 ome.model.core.Pixels \N 5656 14790 UPDATE -35 232 ome.model.core.Pixels \N 5656 14791 INSERT -35 363 ome.model.stats.StatsInfo \N 5657 14792 INSERT -35 364 ome.model.stats.StatsInfo \N 5657 14793 INSERT -35 365 ome.model.stats.StatsInfo \N 5657 14794 INSERT -35 366 ome.model.stats.StatsInfo \N 5657 14795 UPDATE -35 363 ome.model.core.Channel \N 5657 14796 UPDATE -35 365 ome.model.core.Channel \N 5657 14797 UPDATE -35 366 ome.model.core.Channel \N 5657 14798 UPDATE -35 364 ome.model.core.Channel \N 5657 14799 INSERT -35 285 ome.model.display.QuantumDef \N 5658 14800 INSERT -35 285 ome.model.display.RenderingDef \N 5658 14801 INSERT -35 421 ome.model.display.ChannelBinding \N 5658 14802 INSERT -35 286 ome.model.display.QuantumDef \N 5658 14803 INSERT -35 286 ome.model.display.RenderingDef \N 5658 14804 INSERT -35 422 ome.model.display.ChannelBinding \N 5658 14805 INSERT -35 287 ome.model.display.QuantumDef \N 5658 14806 INSERT -35 287 ome.model.display.RenderingDef \N 5658 14807 INSERT -35 423 ome.model.display.ChannelBinding \N 5658 14808 INSERT -35 288 ome.model.display.QuantumDef \N 5658 14809 INSERT -35 288 ome.model.display.RenderingDef \N 5658 14810 INSERT -35 424 ome.model.display.ChannelBinding \N 5658 14811 INSERT -35 231 ome.model.display.Thumbnail \N 5659 14812 INSERT -35 232 ome.model.display.Thumbnail \N 5659 14813 INSERT -35 233 ome.model.display.Thumbnail \N 5659 14814 INSERT -35 234 ome.model.display.Thumbnail \N 5659 14815 UPDATE -35 282 ome.model.core.OriginalFile \N 5660 14816 INSERT -35 185 ome.model.acquisition.Microscope \N 5676 14817 INSERT -35 235 ome.model.acquisition.Instrument \N 5676 14818 INSERT -35 267 ome.model.acquisition.Detector \N 5676 14819 INSERT -35 537 ome.model.acquisition.TransmittanceRange \N 5676 14820 INSERT -35 537 ome.model.acquisition.Filter \N 5676 14821 INSERT -35 538 ome.model.acquisition.TransmittanceRange \N 5676 14822 INSERT -35 538 ome.model.acquisition.Filter \N 5676 14823 INSERT -35 539 ome.model.acquisition.TransmittanceRange \N 5676 14824 INSERT -35 539 ome.model.acquisition.Filter \N 5676 14825 INSERT -35 540 ome.model.acquisition.TransmittanceRange \N 5676 14826 INSERT -35 540 ome.model.acquisition.Filter \N 5676 14827 INSERT -35 905 ome.model.acquisition.Laser \N 5676 14828 INSERT -35 906 ome.model.acquisition.Laser \N 5676 14829 INSERT -35 907 ome.model.acquisition.Laser \N 5676 14830 INSERT -35 908 ome.model.acquisition.Laser \N 5676 14831 INSERT -35 909 ome.model.acquisition.Laser \N 5676 14832 INSERT -35 910 ome.model.acquisition.Laser \N 5676 14833 INSERT -35 235 ome.model.acquisition.Objective \N 5676 14834 INSERT -35 235 ome.model.acquisition.ObjectiveSettings \N 5676 14835 INSERT -35 235 ome.model.core.Image \N 5676 14836 INSERT -35 285 ome.model.core.OriginalFile \N 5676 14837 INSERT -35 285 ome.model.annotations.FileAnnotation \N 5676 14838 INSERT -35 335 ome.model.annotations.ImageAnnotationLink \N 5676 14839 INSERT -35 235 ome.model.containers.DatasetImageLink \N 5676 14840 INSERT -35 235 ome.model.core.Pixels \N 5676 14841 INSERT -35 267 ome.model.acquisition.DetectorSettings \N 5676 14842 INSERT -35 235 ome.model.acquisition.LightPath \N 5676 14843 INSERT -35 235 ome.model.acquisition.LightPathEmissionFilterLink \N 5676 14844 INSERT -35 235 ome.model.acquisition.LightSettings \N 5676 14845 INSERT -35 367 ome.model.core.LogicalChannel \N 5676 14846 INSERT -35 367 ome.model.core.Channel \N 5676 14847 INSERT -35 6635 ome.model.core.PlaneInfo \N 5676 14848 INSERT -35 6636 ome.model.core.PlaneInfo \N 5676 14849 INSERT -35 6637 ome.model.core.PlaneInfo \N 5676 14850 INSERT -35 6638 ome.model.core.PlaneInfo \N 5676 14851 INSERT -35 6639 ome.model.core.PlaneInfo \N 5676 14852 INSERT -35 186 ome.model.acquisition.Microscope \N 5676 14853 INSERT -35 236 ome.model.acquisition.Instrument \N 5676 14854 INSERT -35 268 ome.model.acquisition.Detector \N 5676 14855 INSERT -35 541 ome.model.acquisition.TransmittanceRange \N 5676 14856 INSERT -35 541 ome.model.acquisition.Filter \N 5676 14857 INSERT -35 542 ome.model.acquisition.TransmittanceRange \N 5676 14858 INSERT -35 542 ome.model.acquisition.Filter \N 5676 14859 INSERT -35 543 ome.model.acquisition.TransmittanceRange \N 5676 14860 INSERT -35 543 ome.model.acquisition.Filter \N 5676 14861 INSERT -35 544 ome.model.acquisition.TransmittanceRange \N 5676 14862 INSERT -35 544 ome.model.acquisition.Filter \N 5676 14863 INSERT -35 911 ome.model.acquisition.Laser \N 5676 14864 INSERT -35 912 ome.model.acquisition.Laser \N 5676 14865 INSERT -35 913 ome.model.acquisition.Laser \N 5676 14866 INSERT -35 914 ome.model.acquisition.Laser \N 5676 14867 INSERT -35 915 ome.model.acquisition.Laser \N 5676 14868 INSERT -35 916 ome.model.acquisition.Laser \N 5676 14869 INSERT -35 236 ome.model.acquisition.Objective \N 5676 14870 INSERT -35 236 ome.model.acquisition.ObjectiveSettings \N 5676 14871 INSERT -35 236 ome.model.core.Image \N 5676 14872 INSERT -35 286 ome.model.core.OriginalFile \N 5676 14873 INSERT -35 286 ome.model.annotations.FileAnnotation \N 5676 14874 INSERT -35 336 ome.model.annotations.ImageAnnotationLink \N 5676 14875 INSERT -35 236 ome.model.containers.DatasetImageLink \N 5676 14876 INSERT -35 236 ome.model.core.Pixels \N 5676 14877 INSERT -35 268 ome.model.acquisition.DetectorSettings \N 5676 14878 INSERT -35 236 ome.model.acquisition.LightPath \N 5676 14879 INSERT -35 236 ome.model.acquisition.LightPathEmissionFilterLink \N 5676 14880 INSERT -35 236 ome.model.acquisition.LightSettings \N 5676 14881 INSERT -35 368 ome.model.core.LogicalChannel \N 5676 14882 INSERT -35 368 ome.model.core.Channel \N 5676 14883 INSERT -35 6640 ome.model.core.PlaneInfo \N 5676 14884 INSERT -35 6641 ome.model.core.PlaneInfo \N 5676 14885 INSERT -35 6642 ome.model.core.PlaneInfo \N 5676 14886 INSERT -35 6643 ome.model.core.PlaneInfo \N 5676 14887 INSERT -35 6644 ome.model.core.PlaneInfo \N 5676 14888 INSERT -35 6645 ome.model.core.PlaneInfo \N 5676 14889 INSERT -35 6646 ome.model.core.PlaneInfo \N 5676 14890 INSERT -35 6647 ome.model.core.PlaneInfo \N 5676 14891 INSERT -35 6648 ome.model.core.PlaneInfo \N 5676 14892 INSERT -35 6649 ome.model.core.PlaneInfo \N 5676 14893 INSERT -35 6650 ome.model.core.PlaneInfo \N 5676 14894 INSERT -35 6651 ome.model.core.PlaneInfo \N 5676 14895 INSERT -35 6652 ome.model.core.PlaneInfo \N 5676 14896 INSERT -35 6653 ome.model.core.PlaneInfo \N 5676 14897 INSERT -35 6654 ome.model.core.PlaneInfo \N 5676 14898 INSERT -35 6655 ome.model.core.PlaneInfo \N 5676 14899 INSERT -35 6656 ome.model.core.PlaneInfo \N 5676 14900 INSERT -35 6657 ome.model.core.PlaneInfo \N 5676 14901 INSERT -35 6658 ome.model.core.PlaneInfo \N 5676 14902 INSERT -35 6659 ome.model.core.PlaneInfo \N 5676 14903 INSERT -35 22 ome.model.roi.Roi \N 5676 14904 INSERT -35 43 ome.model.roi.Label \N 5676 14905 INSERT -35 44 ome.model.roi.Polygon \N 5676 14906 INSERT -35 187 ome.model.acquisition.Microscope \N 5676 14907 INSERT -35 237 ome.model.acquisition.Instrument \N 5676 14908 INSERT -35 269 ome.model.acquisition.Detector \N 5676 14909 INSERT -35 545 ome.model.acquisition.TransmittanceRange \N 5676 14910 INSERT -35 545 ome.model.acquisition.Filter \N 5676 14911 INSERT -35 546 ome.model.acquisition.TransmittanceRange \N 5676 14912 INSERT -35 546 ome.model.acquisition.Filter \N 5676 14913 INSERT -35 547 ome.model.acquisition.TransmittanceRange \N 5676 14914 INSERT -35 547 ome.model.acquisition.Filter \N 5676 14915 INSERT -35 548 ome.model.acquisition.TransmittanceRange \N 5676 14916 INSERT -35 548 ome.model.acquisition.Filter \N 5676 14917 INSERT -35 917 ome.model.acquisition.Laser \N 5676 14918 INSERT -35 918 ome.model.acquisition.Laser \N 5676 14919 INSERT -35 919 ome.model.acquisition.Laser \N 5676 14920 INSERT -35 920 ome.model.acquisition.Laser \N 5676 14921 INSERT -35 921 ome.model.acquisition.Laser \N 5676 14922 INSERT -35 922 ome.model.acquisition.Laser \N 5676 14923 INSERT -35 237 ome.model.acquisition.Objective \N 5676 14924 INSERT -35 237 ome.model.acquisition.ObjectiveSettings \N 5676 14925 INSERT -35 237 ome.model.core.Image \N 5676 14926 INSERT -35 287 ome.model.core.OriginalFile \N 5676 14927 INSERT -35 287 ome.model.annotations.FileAnnotation \N 5676 14928 INSERT -35 337 ome.model.annotations.ImageAnnotationLink \N 5676 14929 INSERT -35 237 ome.model.containers.DatasetImageLink \N 5676 14930 INSERT -35 237 ome.model.core.Pixels \N 5676 14931 INSERT -35 269 ome.model.acquisition.DetectorSettings \N 5676 14932 INSERT -35 237 ome.model.acquisition.LightPath \N 5676 14933 INSERT -35 237 ome.model.acquisition.LightPathEmissionFilterLink \N 5676 14934 INSERT -35 237 ome.model.acquisition.LightSettings \N 5676 14935 INSERT -35 369 ome.model.core.LogicalChannel \N 5676 14936 INSERT -35 369 ome.model.core.Channel \N 5676 14937 INSERT -35 6660 ome.model.core.PlaneInfo \N 5676 14938 INSERT -35 188 ome.model.acquisition.Microscope \N 5676 14939 INSERT -35 238 ome.model.acquisition.Instrument \N 5676 14940 INSERT -35 270 ome.model.acquisition.Detector \N 5676 14941 INSERT -35 549 ome.model.acquisition.TransmittanceRange \N 5676 14942 INSERT -35 549 ome.model.acquisition.Filter \N 5676 14943 INSERT -35 550 ome.model.acquisition.TransmittanceRange \N 5676 14944 INSERT -35 550 ome.model.acquisition.Filter \N 5676 14945 INSERT -35 551 ome.model.acquisition.TransmittanceRange \N 5676 14946 INSERT -35 551 ome.model.acquisition.Filter \N 5676 14947 INSERT -35 552 ome.model.acquisition.TransmittanceRange \N 5676 14948 INSERT -35 552 ome.model.acquisition.Filter \N 5676 14949 INSERT -35 923 ome.model.acquisition.Laser \N 5676 14950 INSERT -35 924 ome.model.acquisition.Laser \N 5676 14951 INSERT -35 925 ome.model.acquisition.Laser \N 5676 14952 INSERT -35 926 ome.model.acquisition.Laser \N 5676 14953 INSERT -35 927 ome.model.acquisition.Laser \N 5676 14954 INSERT -35 928 ome.model.acquisition.Laser \N 5676 14955 INSERT -35 238 ome.model.acquisition.Objective \N 5676 14956 INSERT -35 238 ome.model.acquisition.ObjectiveSettings \N 5676 14957 INSERT -35 238 ome.model.core.Image \N 5676 14958 INSERT -35 288 ome.model.core.OriginalFile \N 5676 14959 INSERT -35 288 ome.model.annotations.FileAnnotation \N 5676 14960 INSERT -35 338 ome.model.annotations.ImageAnnotationLink \N 5676 14961 INSERT -35 238 ome.model.containers.DatasetImageLink \N 5676 14962 INSERT -35 238 ome.model.core.Pixels \N 5676 14963 INSERT -35 270 ome.model.acquisition.DetectorSettings \N 5676 14964 INSERT -35 238 ome.model.acquisition.LightPath \N 5676 14965 INSERT -35 238 ome.model.acquisition.LightPathEmissionFilterLink \N 5676 14966 INSERT -35 238 ome.model.acquisition.LightSettings \N 5676 14967 INSERT -35 370 ome.model.core.LogicalChannel \N 5676 14968 INSERT -35 370 ome.model.core.Channel \N 5676 14969 INSERT -35 6661 ome.model.core.PlaneInfo \N 5676 14970 INSERT -35 6662 ome.model.core.PlaneInfo \N 5676 14971 INSERT -35 6663 ome.model.core.PlaneInfo \N 5676 14972 INSERT -35 6664 ome.model.core.PlaneInfo \N 5676 14973 INSERT -35 6665 ome.model.core.PlaneInfo \N 5676 14974 INSERT -35 6666 ome.model.core.PlaneInfo \N 5676 14975 INSERT -35 6667 ome.model.core.PlaneInfo \N 5676 14976 INSERT -35 6668 ome.model.core.PlaneInfo \N 5676 14977 INSERT -35 6669 ome.model.core.PlaneInfo \N 5676 14978 INSERT -35 6670 ome.model.core.PlaneInfo \N 5676 14979 INSERT -35 6671 ome.model.core.PlaneInfo \N 5676 14980 INSERT -35 6672 ome.model.core.PlaneInfo \N 5676 14981 INSERT -35 6673 ome.model.core.PlaneInfo \N 5676 14982 INSERT -35 6674 ome.model.core.PlaneInfo \N 5676 14983 INSERT -35 6675 ome.model.core.PlaneInfo \N 5676 14984 INSERT -35 6676 ome.model.core.PlaneInfo \N 5676 14985 INSERT -35 6677 ome.model.core.PlaneInfo \N 5676 14986 INSERT -35 6678 ome.model.core.PlaneInfo \N 5676 14987 INSERT -35 6679 ome.model.core.PlaneInfo \N 5676 14988 INSERT -35 6680 ome.model.core.PlaneInfo \N 5676 14989 UPDATE -35 236 ome.model.core.Pixels \N 5677 14990 UPDATE -35 235 ome.model.core.Pixels \N 5681 14991 UPDATE -35 237 ome.model.core.Pixels \N 5681 14992 UPDATE -35 238 ome.model.core.Pixels \N 5681 14993 UPDATE -35 236 ome.model.core.Pixels \N 5681 14994 INSERT -35 367 ome.model.stats.StatsInfo \N 5682 14995 INSERT -35 368 ome.model.stats.StatsInfo \N 5682 14996 INSERT -35 369 ome.model.stats.StatsInfo \N 5682 14997 INSERT -35 370 ome.model.stats.StatsInfo \N 5682 14998 UPDATE -35 367 ome.model.core.Channel \N 5682 14999 UPDATE -35 369 ome.model.core.Channel \N 5682 15000 UPDATE -35 370 ome.model.core.Channel \N 5682 15001 UPDATE -35 368 ome.model.core.Channel \N 5682 15002 INSERT -35 289 ome.model.display.QuantumDef \N 5683 15003 INSERT -35 289 ome.model.display.RenderingDef \N 5683 15004 INSERT -35 425 ome.model.display.ChannelBinding \N 5683 15005 INSERT -35 290 ome.model.display.QuantumDef \N 5683 15006 INSERT -35 290 ome.model.display.RenderingDef \N 5683 15007 INSERT -35 426 ome.model.display.ChannelBinding \N 5683 15008 INSERT -35 291 ome.model.display.QuantumDef \N 5683 15009 INSERT -35 291 ome.model.display.RenderingDef \N 5683 15010 INSERT -35 427 ome.model.display.ChannelBinding \N 5683 15011 INSERT -35 292 ome.model.display.QuantumDef \N 5683 15012 INSERT -35 292 ome.model.display.RenderingDef \N 5683 15013 INSERT -35 428 ome.model.display.ChannelBinding \N 5683 15014 INSERT -35 235 ome.model.display.Thumbnail \N 5684 15015 INSERT -35 236 ome.model.display.Thumbnail \N 5684 15016 INSERT -35 237 ome.model.display.Thumbnail \N 5684 15017 INSERT -35 238 ome.model.display.Thumbnail \N 5684 15018 UPDATE -35 286 ome.model.core.OriginalFile \N 5685 15019 INSERT -35 189 ome.model.acquisition.Microscope \N 5701 15020 INSERT -35 239 ome.model.acquisition.Instrument \N 5701 15021 INSERT -35 271 ome.model.acquisition.Detector \N 5701 15022 INSERT -35 553 ome.model.acquisition.TransmittanceRange \N 5701 15023 INSERT -35 553 ome.model.acquisition.Filter \N 5701 15024 INSERT -35 554 ome.model.acquisition.TransmittanceRange \N 5701 15025 INSERT -35 554 ome.model.acquisition.Filter \N 5701 15026 INSERT -35 555 ome.model.acquisition.TransmittanceRange \N 5701 15027 INSERT -35 555 ome.model.acquisition.Filter \N 5701 15028 INSERT -35 556 ome.model.acquisition.TransmittanceRange \N 5701 15029 INSERT -35 556 ome.model.acquisition.Filter \N 5701 15030 INSERT -35 929 ome.model.acquisition.Laser \N 5701 15031 INSERT -35 930 ome.model.acquisition.Laser \N 5701 15032 INSERT -35 931 ome.model.acquisition.Laser \N 5701 15033 INSERT -35 932 ome.model.acquisition.Laser \N 5701 15034 INSERT -35 933 ome.model.acquisition.Laser \N 5701 15035 INSERT -35 934 ome.model.acquisition.Laser \N 5701 15036 INSERT -35 239 ome.model.acquisition.Objective \N 5701 15037 INSERT -35 239 ome.model.acquisition.ObjectiveSettings \N 5701 15038 INSERT -35 239 ome.model.core.Image \N 5701 15039 INSERT -35 289 ome.model.core.OriginalFile \N 5701 15040 INSERT -35 289 ome.model.annotations.FileAnnotation \N 5701 15041 INSERT -35 339 ome.model.annotations.ImageAnnotationLink \N 5701 15042 INSERT -35 239 ome.model.containers.DatasetImageLink \N 5701 15043 INSERT -35 239 ome.model.core.Pixels \N 5701 15044 INSERT -35 271 ome.model.acquisition.DetectorSettings \N 5701 15045 INSERT -35 239 ome.model.acquisition.LightPath \N 5701 15046 INSERT -35 239 ome.model.acquisition.LightPathEmissionFilterLink \N 5701 15047 INSERT -35 239 ome.model.acquisition.LightSettings \N 5701 15048 INSERT -35 371 ome.model.core.LogicalChannel \N 5701 15049 INSERT -35 371 ome.model.core.Channel \N 5701 15050 INSERT -35 6681 ome.model.core.PlaneInfo \N 5701 15051 INSERT -35 6682 ome.model.core.PlaneInfo \N 5701 15052 INSERT -35 6683 ome.model.core.PlaneInfo \N 5701 15053 INSERT -35 6684 ome.model.core.PlaneInfo \N 5701 15054 INSERT -35 6685 ome.model.core.PlaneInfo \N 5701 15055 INSERT -35 190 ome.model.acquisition.Microscope \N 5701 15056 INSERT -35 240 ome.model.acquisition.Instrument \N 5701 15057 INSERT -35 272 ome.model.acquisition.Detector \N 5701 15058 INSERT -35 557 ome.model.acquisition.TransmittanceRange \N 5701 15059 INSERT -35 557 ome.model.acquisition.Filter \N 5701 15060 INSERT -35 558 ome.model.acquisition.TransmittanceRange \N 5701 15061 INSERT -35 558 ome.model.acquisition.Filter \N 5701 15062 INSERT -35 559 ome.model.acquisition.TransmittanceRange \N 5701 15063 INSERT -35 559 ome.model.acquisition.Filter \N 5701 15064 INSERT -35 560 ome.model.acquisition.TransmittanceRange \N 5701 15065 INSERT -35 560 ome.model.acquisition.Filter \N 5701 15066 INSERT -35 935 ome.model.acquisition.Laser \N 5701 15067 INSERT -35 936 ome.model.acquisition.Laser \N 5701 15068 INSERT -35 937 ome.model.acquisition.Laser \N 5701 15069 INSERT -35 938 ome.model.acquisition.Laser \N 5701 15070 INSERT -35 939 ome.model.acquisition.Laser \N 5701 15071 INSERT -35 940 ome.model.acquisition.Laser \N 5701 15072 INSERT -35 240 ome.model.acquisition.Objective \N 5701 15073 INSERT -35 240 ome.model.acquisition.ObjectiveSettings \N 5701 15074 INSERT -35 240 ome.model.core.Image \N 5701 15075 INSERT -35 290 ome.model.core.OriginalFile \N 5701 15076 INSERT -35 290 ome.model.annotations.FileAnnotation \N 5701 15077 INSERT -35 340 ome.model.annotations.ImageAnnotationLink \N 5701 15078 INSERT -35 240 ome.model.containers.DatasetImageLink \N 5701 15079 INSERT -35 240 ome.model.core.Pixels \N 5701 15080 INSERT -35 272 ome.model.acquisition.DetectorSettings \N 5701 15081 INSERT -35 240 ome.model.acquisition.LightPath \N 5701 15082 INSERT -35 240 ome.model.acquisition.LightPathEmissionFilterLink \N 5701 15083 INSERT -35 240 ome.model.acquisition.LightSettings \N 5701 15084 INSERT -35 372 ome.model.core.LogicalChannel \N 5701 15085 INSERT -35 372 ome.model.core.Channel \N 5701 15086 INSERT -35 6686 ome.model.core.PlaneInfo \N 5701 15087 INSERT -35 6687 ome.model.core.PlaneInfo \N 5701 15088 INSERT -35 6688 ome.model.core.PlaneInfo \N 5701 15089 INSERT -35 6689 ome.model.core.PlaneInfo \N 5701 15090 INSERT -35 6690 ome.model.core.PlaneInfo \N 5701 15091 INSERT -35 6691 ome.model.core.PlaneInfo \N 5701 15092 INSERT -35 6692 ome.model.core.PlaneInfo \N 5701 15093 INSERT -35 6693 ome.model.core.PlaneInfo \N 5701 15094 INSERT -35 6694 ome.model.core.PlaneInfo \N 5701 15095 INSERT -35 6695 ome.model.core.PlaneInfo \N 5701 15096 INSERT -35 6696 ome.model.core.PlaneInfo \N 5701 15097 INSERT -35 6697 ome.model.core.PlaneInfo \N 5701 15098 INSERT -35 6698 ome.model.core.PlaneInfo \N 5701 15099 INSERT -35 6699 ome.model.core.PlaneInfo \N 5701 15100 INSERT -35 6700 ome.model.core.PlaneInfo \N 5701 15101 INSERT -35 6701 ome.model.core.PlaneInfo \N 5701 15102 INSERT -35 6702 ome.model.core.PlaneInfo \N 5701 15103 INSERT -35 6703 ome.model.core.PlaneInfo \N 5701 15104 INSERT -35 6704 ome.model.core.PlaneInfo \N 5701 15105 INSERT -35 6705 ome.model.core.PlaneInfo \N 5701 15106 INSERT -35 23 ome.model.roi.Roi \N 5701 15107 INSERT -35 45 ome.model.roi.Label \N 5701 15108 INSERT -35 46 ome.model.roi.Polygon \N 5701 15109 INSERT -35 191 ome.model.acquisition.Microscope \N 5701 15110 INSERT -35 241 ome.model.acquisition.Instrument \N 5701 15111 INSERT -35 273 ome.model.acquisition.Detector \N 5701 15112 INSERT -35 561 ome.model.acquisition.TransmittanceRange \N 5701 15113 INSERT -35 561 ome.model.acquisition.Filter \N 5701 15114 INSERT -35 562 ome.model.acquisition.TransmittanceRange \N 5701 15115 INSERT -35 562 ome.model.acquisition.Filter \N 5701 15116 INSERT -35 563 ome.model.acquisition.TransmittanceRange \N 5701 15117 INSERT -35 563 ome.model.acquisition.Filter \N 5701 15118 INSERT -35 564 ome.model.acquisition.TransmittanceRange \N 5701 15119 INSERT -35 564 ome.model.acquisition.Filter \N 5701 15120 INSERT -35 941 ome.model.acquisition.Laser \N 5701 15121 INSERT -35 942 ome.model.acquisition.Laser \N 5701 15122 INSERT -35 943 ome.model.acquisition.Laser \N 5701 15123 INSERT -35 944 ome.model.acquisition.Laser \N 5701 15124 INSERT -35 945 ome.model.acquisition.Laser \N 5701 15125 INSERT -35 946 ome.model.acquisition.Laser \N 5701 15126 INSERT -35 241 ome.model.acquisition.Objective \N 5701 15127 INSERT -35 241 ome.model.acquisition.ObjectiveSettings \N 5701 15128 INSERT -35 241 ome.model.core.Image \N 5701 15129 INSERT -35 291 ome.model.core.OriginalFile \N 5701 15130 INSERT -35 291 ome.model.annotations.FileAnnotation \N 5701 15131 INSERT -35 341 ome.model.annotations.ImageAnnotationLink \N 5701 15132 INSERT -35 241 ome.model.containers.DatasetImageLink \N 5701 15133 INSERT -35 241 ome.model.core.Pixels \N 5701 15134 INSERT -35 273 ome.model.acquisition.DetectorSettings \N 5701 15135 INSERT -35 241 ome.model.acquisition.LightPath \N 5701 15136 INSERT -35 241 ome.model.acquisition.LightPathEmissionFilterLink \N 5701 15137 INSERT -35 241 ome.model.acquisition.LightSettings \N 5701 15138 INSERT -35 373 ome.model.core.LogicalChannel \N 5701 15139 INSERT -35 373 ome.model.core.Channel \N 5701 15140 INSERT -35 6706 ome.model.core.PlaneInfo \N 5701 15141 INSERT -35 192 ome.model.acquisition.Microscope \N 5701 15142 INSERT -35 242 ome.model.acquisition.Instrument \N 5701 15143 INSERT -35 274 ome.model.acquisition.Detector \N 5701 15144 INSERT -35 565 ome.model.acquisition.TransmittanceRange \N 5701 15145 INSERT -35 565 ome.model.acquisition.Filter \N 5701 15146 INSERT -35 566 ome.model.acquisition.TransmittanceRange \N 5701 15147 INSERT -35 566 ome.model.acquisition.Filter \N 5701 15148 INSERT -35 567 ome.model.acquisition.TransmittanceRange \N 5701 15149 INSERT -35 567 ome.model.acquisition.Filter \N 5701 15150 INSERT -35 568 ome.model.acquisition.TransmittanceRange \N 5701 15151 INSERT -35 568 ome.model.acquisition.Filter \N 5701 15152 INSERT -35 947 ome.model.acquisition.Laser \N 5701 15153 INSERT -35 948 ome.model.acquisition.Laser \N 5701 15154 INSERT -35 949 ome.model.acquisition.Laser \N 5701 15155 INSERT -35 950 ome.model.acquisition.Laser \N 5701 15156 INSERT -35 951 ome.model.acquisition.Laser \N 5701 15157 INSERT -35 952 ome.model.acquisition.Laser \N 5701 15158 INSERT -35 242 ome.model.acquisition.Objective \N 5701 15159 INSERT -35 242 ome.model.acquisition.ObjectiveSettings \N 5701 15160 INSERT -35 242 ome.model.core.Image \N 5701 15161 INSERT -35 292 ome.model.core.OriginalFile \N 5701 15162 INSERT -35 292 ome.model.annotations.FileAnnotation \N 5701 15163 INSERT -35 342 ome.model.annotations.ImageAnnotationLink \N 5701 15164 INSERT -35 242 ome.model.containers.DatasetImageLink \N 5701 15165 INSERT -35 242 ome.model.core.Pixels \N 5701 15166 INSERT -35 274 ome.model.acquisition.DetectorSettings \N 5701 15167 INSERT -35 242 ome.model.acquisition.LightPath \N 5701 15168 INSERT -35 242 ome.model.acquisition.LightPathEmissionFilterLink \N 5701 15169 INSERT -35 242 ome.model.acquisition.LightSettings \N 5701 15170 INSERT -35 374 ome.model.core.LogicalChannel \N 5701 15171 INSERT -35 374 ome.model.core.Channel \N 5701 15172 INSERT -35 6707 ome.model.core.PlaneInfo \N 5701 15173 INSERT -35 6708 ome.model.core.PlaneInfo \N 5701 15174 INSERT -35 6709 ome.model.core.PlaneInfo \N 5701 15175 INSERT -35 6710 ome.model.core.PlaneInfo \N 5701 15176 INSERT -35 6711 ome.model.core.PlaneInfo \N 5701 15177 INSERT -35 6712 ome.model.core.PlaneInfo \N 5701 15178 INSERT -35 6713 ome.model.core.PlaneInfo \N 5701 15179 INSERT -35 6714 ome.model.core.PlaneInfo \N 5701 15180 INSERT -35 6715 ome.model.core.PlaneInfo \N 5701 15181 INSERT -35 6716 ome.model.core.PlaneInfo \N 5701 15182 INSERT -35 6717 ome.model.core.PlaneInfo \N 5701 15183 INSERT -35 6718 ome.model.core.PlaneInfo \N 5701 15184 INSERT -35 6719 ome.model.core.PlaneInfo \N 5701 15185 INSERT -35 6720 ome.model.core.PlaneInfo \N 5701 15186 INSERT -35 6721 ome.model.core.PlaneInfo \N 5701 15187 INSERT -35 6722 ome.model.core.PlaneInfo \N 5701 15188 INSERT -35 6723 ome.model.core.PlaneInfo \N 5701 15189 INSERT -35 6724 ome.model.core.PlaneInfo \N 5701 15190 INSERT -35 6725 ome.model.core.PlaneInfo \N 5701 15191 INSERT -35 6726 ome.model.core.PlaneInfo \N 5701 15192 UPDATE -35 240 ome.model.core.Pixels \N 5702 15193 UPDATE -35 239 ome.model.core.Pixels \N 5703 15194 UPDATE -35 241 ome.model.core.Pixels \N 5703 15195 UPDATE -35 242 ome.model.core.Pixels \N 5703 15196 UPDATE -35 240 ome.model.core.Pixels \N 5703 15197 INSERT -35 371 ome.model.stats.StatsInfo \N 5704 15198 INSERT -35 372 ome.model.stats.StatsInfo \N 5704 15199 INSERT -35 373 ome.model.stats.StatsInfo \N 5704 15200 INSERT -35 374 ome.model.stats.StatsInfo \N 5704 15201 UPDATE -35 371 ome.model.core.Channel \N 5704 15202 UPDATE -35 373 ome.model.core.Channel \N 5704 15203 UPDATE -35 374 ome.model.core.Channel \N 5704 15204 UPDATE -35 372 ome.model.core.Channel \N 5704 15205 INSERT -35 293 ome.model.display.QuantumDef \N 5705 15206 INSERT -35 293 ome.model.display.RenderingDef \N 5705 15207 INSERT -35 429 ome.model.display.ChannelBinding \N 5705 15208 INSERT -35 294 ome.model.display.QuantumDef \N 5705 15209 INSERT -35 294 ome.model.display.RenderingDef \N 5705 15210 INSERT -35 430 ome.model.display.ChannelBinding \N 5705 15211 INSERT -35 295 ome.model.display.QuantumDef \N 5705 15212 INSERT -35 295 ome.model.display.RenderingDef \N 5705 15213 INSERT -35 431 ome.model.display.ChannelBinding \N 5705 15214 INSERT -35 296 ome.model.display.QuantumDef \N 5705 15215 INSERT -35 296 ome.model.display.RenderingDef \N 5705 15216 INSERT -35 432 ome.model.display.ChannelBinding \N 5705 15217 INSERT -35 239 ome.model.display.Thumbnail \N 5706 15218 INSERT -35 240 ome.model.display.Thumbnail \N 5706 15219 INSERT -35 241 ome.model.display.Thumbnail \N 5706 15220 INSERT -35 242 ome.model.display.Thumbnail \N 5706 15221 UPDATE -35 290 ome.model.core.OriginalFile \N 5707 15222 INSERT -35 193 ome.model.acquisition.Microscope \N 5723 15223 INSERT -35 243 ome.model.acquisition.Instrument \N 5723 15224 INSERT -35 275 ome.model.acquisition.Detector \N 5723 15225 INSERT -35 569 ome.model.acquisition.TransmittanceRange \N 5723 15226 INSERT -35 569 ome.model.acquisition.Filter \N 5723 15227 INSERT -35 570 ome.model.acquisition.TransmittanceRange \N 5723 15228 INSERT -35 570 ome.model.acquisition.Filter \N 5723 15229 INSERT -35 571 ome.model.acquisition.TransmittanceRange \N 5723 15230 INSERT -35 571 ome.model.acquisition.Filter \N 5723 15231 INSERT -35 572 ome.model.acquisition.TransmittanceRange \N 5723 15232 INSERT -35 572 ome.model.acquisition.Filter \N 5723 15233 INSERT -35 953 ome.model.acquisition.Laser \N 5723 15234 INSERT -35 954 ome.model.acquisition.Laser \N 5723 15235 INSERT -35 955 ome.model.acquisition.Laser \N 5723 15236 INSERT -35 956 ome.model.acquisition.Laser \N 5723 15237 INSERT -35 957 ome.model.acquisition.Laser \N 5723 15238 INSERT -35 958 ome.model.acquisition.Laser \N 5723 15239 INSERT -35 243 ome.model.acquisition.Objective \N 5723 15240 INSERT -35 243 ome.model.acquisition.ObjectiveSettings \N 5723 15241 INSERT -35 243 ome.model.core.Image \N 5723 15242 INSERT -35 293 ome.model.core.OriginalFile \N 5723 15243 INSERT -35 293 ome.model.annotations.FileAnnotation \N 5723 15244 INSERT -35 343 ome.model.annotations.ImageAnnotationLink \N 5723 15245 INSERT -35 243 ome.model.containers.DatasetImageLink \N 5723 15246 INSERT -35 243 ome.model.core.Pixels \N 5723 15247 INSERT -35 275 ome.model.acquisition.DetectorSettings \N 5723 15248 INSERT -35 243 ome.model.acquisition.LightPath \N 5723 15249 INSERT -35 243 ome.model.acquisition.LightPathEmissionFilterLink \N 5723 15250 INSERT -35 243 ome.model.acquisition.LightSettings \N 5723 15251 INSERT -35 375 ome.model.core.LogicalChannel \N 5723 15252 INSERT -35 375 ome.model.core.Channel \N 5723 15253 INSERT -35 6727 ome.model.core.PlaneInfo \N 5723 15254 INSERT -35 6728 ome.model.core.PlaneInfo \N 5723 15255 INSERT -35 6729 ome.model.core.PlaneInfo \N 5723 15256 INSERT -35 6730 ome.model.core.PlaneInfo \N 5723 15257 INSERT -35 6731 ome.model.core.PlaneInfo \N 5723 15258 INSERT -35 194 ome.model.acquisition.Microscope \N 5723 15259 INSERT -35 244 ome.model.acquisition.Instrument \N 5723 15260 INSERT -35 276 ome.model.acquisition.Detector \N 5723 15261 INSERT -35 573 ome.model.acquisition.TransmittanceRange \N 5723 15262 INSERT -35 573 ome.model.acquisition.Filter \N 5723 15263 INSERT -35 574 ome.model.acquisition.TransmittanceRange \N 5723 15264 INSERT -35 574 ome.model.acquisition.Filter \N 5723 15265 INSERT -35 575 ome.model.acquisition.TransmittanceRange \N 5723 15266 INSERT -35 575 ome.model.acquisition.Filter \N 5723 15267 INSERT -35 576 ome.model.acquisition.TransmittanceRange \N 5723 15268 INSERT -35 576 ome.model.acquisition.Filter \N 5723 15269 INSERT -35 959 ome.model.acquisition.Laser \N 5723 15270 INSERT -35 960 ome.model.acquisition.Laser \N 5723 15271 INSERT -35 961 ome.model.acquisition.Laser \N 5723 15272 INSERT -35 962 ome.model.acquisition.Laser \N 5723 15273 INSERT -35 963 ome.model.acquisition.Laser \N 5723 15274 INSERT -35 964 ome.model.acquisition.Laser \N 5723 15275 INSERT -35 244 ome.model.acquisition.Objective \N 5723 15276 INSERT -35 244 ome.model.acquisition.ObjectiveSettings \N 5723 15277 INSERT -35 244 ome.model.core.Image \N 5723 15278 INSERT -35 294 ome.model.core.OriginalFile \N 5723 15279 INSERT -35 294 ome.model.annotations.FileAnnotation \N 5723 15280 INSERT -35 344 ome.model.annotations.ImageAnnotationLink \N 5723 15281 INSERT -35 244 ome.model.containers.DatasetImageLink \N 5723 15282 INSERT -35 244 ome.model.core.Pixels \N 5723 15283 INSERT -35 276 ome.model.acquisition.DetectorSettings \N 5723 15284 INSERT -35 244 ome.model.acquisition.LightPath \N 5723 15285 INSERT -35 244 ome.model.acquisition.LightPathEmissionFilterLink \N 5723 15286 INSERT -35 244 ome.model.acquisition.LightSettings \N 5723 15287 INSERT -35 376 ome.model.core.LogicalChannel \N 5723 15288 INSERT -35 376 ome.model.core.Channel \N 5723 15289 INSERT -35 6732 ome.model.core.PlaneInfo \N 5723 15290 INSERT -35 6733 ome.model.core.PlaneInfo \N 5723 15291 INSERT -35 6734 ome.model.core.PlaneInfo \N 5723 15292 INSERT -35 6735 ome.model.core.PlaneInfo \N 5723 15293 INSERT -35 6736 ome.model.core.PlaneInfo \N 5723 15294 INSERT -35 6737 ome.model.core.PlaneInfo \N 5723 15295 INSERT -35 6738 ome.model.core.PlaneInfo \N 5723 15296 INSERT -35 6739 ome.model.core.PlaneInfo \N 5723 15297 INSERT -35 6740 ome.model.core.PlaneInfo \N 5723 15298 INSERT -35 6741 ome.model.core.PlaneInfo \N 5723 15299 INSERT -35 6742 ome.model.core.PlaneInfo \N 5723 15300 INSERT -35 6743 ome.model.core.PlaneInfo \N 5723 15301 INSERT -35 6744 ome.model.core.PlaneInfo \N 5723 15302 INSERT -35 6745 ome.model.core.PlaneInfo \N 5723 15303 INSERT -35 6746 ome.model.core.PlaneInfo \N 5723 15304 INSERT -35 6747 ome.model.core.PlaneInfo \N 5723 15305 INSERT -35 6748 ome.model.core.PlaneInfo \N 5723 15306 INSERT -35 6749 ome.model.core.PlaneInfo \N 5723 15307 INSERT -35 6750 ome.model.core.PlaneInfo \N 5723 15308 INSERT -35 6751 ome.model.core.PlaneInfo \N 5723 15309 INSERT -35 24 ome.model.roi.Roi \N 5723 15310 INSERT -35 47 ome.model.roi.Label \N 5723 15311 INSERT -35 48 ome.model.roi.Polygon \N 5723 15312 INSERT -35 195 ome.model.acquisition.Microscope \N 5723 15313 INSERT -35 245 ome.model.acquisition.Instrument \N 5723 15314 INSERT -35 277 ome.model.acquisition.Detector \N 5723 15315 INSERT -35 577 ome.model.acquisition.TransmittanceRange \N 5723 15316 INSERT -35 577 ome.model.acquisition.Filter \N 5723 15317 INSERT -35 578 ome.model.acquisition.TransmittanceRange \N 5723 15318 INSERT -35 578 ome.model.acquisition.Filter \N 5723 15319 INSERT -35 579 ome.model.acquisition.TransmittanceRange \N 5723 15320 INSERT -35 579 ome.model.acquisition.Filter \N 5723 15321 INSERT -35 580 ome.model.acquisition.TransmittanceRange \N 5723 15322 INSERT -35 580 ome.model.acquisition.Filter \N 5723 15323 INSERT -35 965 ome.model.acquisition.Laser \N 5723 15324 INSERT -35 966 ome.model.acquisition.Laser \N 5723 15325 INSERT -35 967 ome.model.acquisition.Laser \N 5723 15326 INSERT -35 968 ome.model.acquisition.Laser \N 5723 15327 INSERT -35 969 ome.model.acquisition.Laser \N 5723 15328 INSERT -35 970 ome.model.acquisition.Laser \N 5723 15329 INSERT -35 245 ome.model.acquisition.Objective \N 5723 15330 INSERT -35 245 ome.model.acquisition.ObjectiveSettings \N 5723 15331 INSERT -35 245 ome.model.core.Image \N 5723 15332 INSERT -35 295 ome.model.core.OriginalFile \N 5723 15333 INSERT -35 295 ome.model.annotations.FileAnnotation \N 5723 15334 INSERT -35 345 ome.model.annotations.ImageAnnotationLink \N 5723 15335 INSERT -35 245 ome.model.containers.DatasetImageLink \N 5723 15336 INSERT -35 245 ome.model.core.Pixels \N 5723 15337 INSERT -35 277 ome.model.acquisition.DetectorSettings \N 5723 15338 INSERT -35 245 ome.model.acquisition.LightPath \N 5723 15339 INSERT -35 245 ome.model.acquisition.LightPathEmissionFilterLink \N 5723 15340 INSERT -35 245 ome.model.acquisition.LightSettings \N 5723 15341 INSERT -35 377 ome.model.core.LogicalChannel \N 5723 15342 INSERT -35 377 ome.model.core.Channel \N 5723 15343 INSERT -35 6752 ome.model.core.PlaneInfo \N 5723 15344 INSERT -35 196 ome.model.acquisition.Microscope \N 5723 15345 INSERT -35 246 ome.model.acquisition.Instrument \N 5723 15346 INSERT -35 278 ome.model.acquisition.Detector \N 5723 15347 INSERT -35 581 ome.model.acquisition.TransmittanceRange \N 5723 15348 INSERT -35 581 ome.model.acquisition.Filter \N 5723 15349 INSERT -35 582 ome.model.acquisition.TransmittanceRange \N 5723 15350 INSERT -35 582 ome.model.acquisition.Filter \N 5723 15351 INSERT -35 583 ome.model.acquisition.TransmittanceRange \N 5723 15352 INSERT -35 583 ome.model.acquisition.Filter \N 5723 15353 INSERT -35 584 ome.model.acquisition.TransmittanceRange \N 5723 15354 INSERT -35 584 ome.model.acquisition.Filter \N 5723 15355 INSERT -35 971 ome.model.acquisition.Laser \N 5723 15356 INSERT -35 972 ome.model.acquisition.Laser \N 5723 15357 INSERT -35 973 ome.model.acquisition.Laser \N 5723 15358 INSERT -35 974 ome.model.acquisition.Laser \N 5723 15359 INSERT -35 975 ome.model.acquisition.Laser \N 5723 15360 INSERT -35 976 ome.model.acquisition.Laser \N 5723 15361 INSERT -35 246 ome.model.acquisition.Objective \N 5723 15362 INSERT -35 246 ome.model.acquisition.ObjectiveSettings \N 5723 15363 INSERT -35 246 ome.model.core.Image \N 5723 15364 INSERT -35 296 ome.model.core.OriginalFile \N 5723 15365 INSERT -35 296 ome.model.annotations.FileAnnotation \N 5723 15366 INSERT -35 346 ome.model.annotations.ImageAnnotationLink \N 5723 15367 INSERT -35 246 ome.model.containers.DatasetImageLink \N 5723 15368 INSERT -35 246 ome.model.core.Pixels \N 5723 15369 INSERT -35 278 ome.model.acquisition.DetectorSettings \N 5723 15370 INSERT -35 246 ome.model.acquisition.LightPath \N 5723 15371 INSERT -35 246 ome.model.acquisition.LightPathEmissionFilterLink \N 5723 15372 INSERT -35 246 ome.model.acquisition.LightSettings \N 5723 15373 INSERT -35 378 ome.model.core.LogicalChannel \N 5723 15374 INSERT -35 378 ome.model.core.Channel \N 5723 15375 INSERT -35 6753 ome.model.core.PlaneInfo \N 5723 15376 INSERT -35 6754 ome.model.core.PlaneInfo \N 5723 15377 INSERT -35 6755 ome.model.core.PlaneInfo \N 5723 15378 INSERT -35 6756 ome.model.core.PlaneInfo \N 5723 15379 INSERT -35 6757 ome.model.core.PlaneInfo \N 5723 15380 INSERT -35 6758 ome.model.core.PlaneInfo \N 5723 15381 INSERT -35 6759 ome.model.core.PlaneInfo \N 5723 15382 INSERT -35 6760 ome.model.core.PlaneInfo \N 5723 15383 INSERT -35 6761 ome.model.core.PlaneInfo \N 5723 15384 INSERT -35 6762 ome.model.core.PlaneInfo \N 5723 15385 INSERT -35 6763 ome.model.core.PlaneInfo \N 5723 15386 INSERT -35 6764 ome.model.core.PlaneInfo \N 5723 15387 INSERT -35 6765 ome.model.core.PlaneInfo \N 5723 15388 INSERT -35 6766 ome.model.core.PlaneInfo \N 5723 15389 INSERT -35 6767 ome.model.core.PlaneInfo \N 5723 15390 INSERT -35 6768 ome.model.core.PlaneInfo \N 5723 15391 INSERT -35 6769 ome.model.core.PlaneInfo \N 5723 15392 INSERT -35 6770 ome.model.core.PlaneInfo \N 5723 15393 INSERT -35 6771 ome.model.core.PlaneInfo \N 5723 15394 INSERT -35 6772 ome.model.core.PlaneInfo \N 5723 15395 UPDATE -35 244 ome.model.core.Pixels \N 5727 15396 UPDATE -35 243 ome.model.core.Pixels \N 5728 15397 UPDATE -35 245 ome.model.core.Pixels \N 5728 15398 UPDATE -35 246 ome.model.core.Pixels \N 5728 15399 UPDATE -35 244 ome.model.core.Pixels \N 5728 15400 INSERT -35 375 ome.model.stats.StatsInfo \N 5729 15401 INSERT -35 376 ome.model.stats.StatsInfo \N 5729 15402 INSERT -35 377 ome.model.stats.StatsInfo \N 5729 15403 INSERT -35 378 ome.model.stats.StatsInfo \N 5729 15404 UPDATE -35 375 ome.model.core.Channel \N 5729 15405 UPDATE -35 377 ome.model.core.Channel \N 5729 15406 UPDATE -35 378 ome.model.core.Channel \N 5729 15407 UPDATE -35 376 ome.model.core.Channel \N 5729 15408 INSERT -35 297 ome.model.display.QuantumDef \N 5730 15409 INSERT -35 297 ome.model.display.RenderingDef \N 5730 15410 INSERT -35 433 ome.model.display.ChannelBinding \N 5730 15411 INSERT -35 298 ome.model.display.QuantumDef \N 5730 15412 INSERT -35 298 ome.model.display.RenderingDef \N 5730 15413 INSERT -35 434 ome.model.display.ChannelBinding \N 5730 15414 INSERT -35 299 ome.model.display.QuantumDef \N 5730 15415 INSERT -35 299 ome.model.display.RenderingDef \N 5730 15416 INSERT -35 435 ome.model.display.ChannelBinding \N 5730 15417 INSERT -35 300 ome.model.display.QuantumDef \N 5730 15418 INSERT -35 300 ome.model.display.RenderingDef \N 5730 15419 INSERT -35 436 ome.model.display.ChannelBinding \N 5730 15420 INSERT -35 243 ome.model.display.Thumbnail \N 5731 15421 INSERT -35 244 ome.model.display.Thumbnail \N 5731 15422 INSERT -35 245 ome.model.display.Thumbnail \N 5731 15423 INSERT -35 246 ome.model.display.Thumbnail \N 5731 15424 UPDATE -35 294 ome.model.core.OriginalFile \N 5732 15425 INSERT -35 197 ome.model.acquisition.Microscope \N 5748 15426 INSERT -35 247 ome.model.acquisition.Instrument \N 5748 15427 INSERT -35 279 ome.model.acquisition.Detector \N 5748 15428 INSERT -35 585 ome.model.acquisition.TransmittanceRange \N 5748 15429 INSERT -35 585 ome.model.acquisition.Filter \N 5748 15430 INSERT -35 586 ome.model.acquisition.TransmittanceRange \N 5748 15431 INSERT -35 586 ome.model.acquisition.Filter \N 5748 15432 INSERT -35 587 ome.model.acquisition.TransmittanceRange \N 5748 15433 INSERT -35 587 ome.model.acquisition.Filter \N 5748 15434 INSERT -35 588 ome.model.acquisition.TransmittanceRange \N 5748 15435 INSERT -35 588 ome.model.acquisition.Filter \N 5748 15436 INSERT -35 977 ome.model.acquisition.Laser \N 5748 15437 INSERT -35 978 ome.model.acquisition.Laser \N 5748 15438 INSERT -35 979 ome.model.acquisition.Laser \N 5748 15439 INSERT -35 980 ome.model.acquisition.Laser \N 5748 15440 INSERT -35 981 ome.model.acquisition.Laser \N 5748 15441 INSERT -35 982 ome.model.acquisition.Laser \N 5748 15442 INSERT -35 247 ome.model.acquisition.Objective \N 5748 15443 INSERT -35 247 ome.model.acquisition.ObjectiveSettings \N 5748 15444 INSERT -35 247 ome.model.core.Image \N 5748 15445 INSERT -35 297 ome.model.core.OriginalFile \N 5748 15446 INSERT -35 297 ome.model.annotations.FileAnnotation \N 5748 15447 INSERT -35 347 ome.model.annotations.ImageAnnotationLink \N 5748 15448 INSERT -35 247 ome.model.containers.DatasetImageLink \N 5748 15449 INSERT -35 247 ome.model.core.Pixels \N 5748 15450 INSERT -35 279 ome.model.acquisition.DetectorSettings \N 5748 15451 INSERT -35 247 ome.model.acquisition.LightPath \N 5748 15452 INSERT -35 247 ome.model.acquisition.LightPathEmissionFilterLink \N 5748 15453 INSERT -35 247 ome.model.acquisition.LightSettings \N 5748 15454 INSERT -35 379 ome.model.core.LogicalChannel \N 5748 15455 INSERT -35 379 ome.model.core.Channel \N 5748 15456 INSERT -35 6773 ome.model.core.PlaneInfo \N 5748 15457 INSERT -35 6774 ome.model.core.PlaneInfo \N 5748 15458 INSERT -35 6775 ome.model.core.PlaneInfo \N 5748 15459 INSERT -35 6776 ome.model.core.PlaneInfo \N 5748 15460 INSERT -35 6777 ome.model.core.PlaneInfo \N 5748 15461 INSERT -35 198 ome.model.acquisition.Microscope \N 5748 15462 INSERT -35 248 ome.model.acquisition.Instrument \N 5748 15463 INSERT -35 280 ome.model.acquisition.Detector \N 5748 15464 INSERT -35 589 ome.model.acquisition.TransmittanceRange \N 5748 15465 INSERT -35 589 ome.model.acquisition.Filter \N 5748 15466 INSERT -35 590 ome.model.acquisition.TransmittanceRange \N 5748 15467 INSERT -35 590 ome.model.acquisition.Filter \N 5748 15468 INSERT -35 591 ome.model.acquisition.TransmittanceRange \N 5748 15469 INSERT -35 591 ome.model.acquisition.Filter \N 5748 15470 INSERT -35 592 ome.model.acquisition.TransmittanceRange \N 5748 15471 INSERT -35 592 ome.model.acquisition.Filter \N 5748 15472 INSERT -35 983 ome.model.acquisition.Laser \N 5748 15473 INSERT -35 984 ome.model.acquisition.Laser \N 5748 15474 INSERT -35 985 ome.model.acquisition.Laser \N 5748 15475 INSERT -35 986 ome.model.acquisition.Laser \N 5748 15476 INSERT -35 987 ome.model.acquisition.Laser \N 5748 15477 INSERT -35 988 ome.model.acquisition.Laser \N 5748 15478 INSERT -35 248 ome.model.acquisition.Objective \N 5748 15479 INSERT -35 248 ome.model.acquisition.ObjectiveSettings \N 5748 15480 INSERT -35 248 ome.model.core.Image \N 5748 15481 INSERT -35 298 ome.model.core.OriginalFile \N 5748 15482 INSERT -35 298 ome.model.annotations.FileAnnotation \N 5748 15483 INSERT -35 348 ome.model.annotations.ImageAnnotationLink \N 5748 15484 INSERT -35 248 ome.model.containers.DatasetImageLink \N 5748 15485 INSERT -35 248 ome.model.core.Pixels \N 5748 15486 INSERT -35 280 ome.model.acquisition.DetectorSettings \N 5748 15487 INSERT -35 248 ome.model.acquisition.LightPath \N 5748 15488 INSERT -35 248 ome.model.acquisition.LightPathEmissionFilterLink \N 5748 15489 INSERT -35 248 ome.model.acquisition.LightSettings \N 5748 15490 INSERT -35 380 ome.model.core.LogicalChannel \N 5748 15491 INSERT -35 380 ome.model.core.Channel \N 5748 15492 INSERT -35 6778 ome.model.core.PlaneInfo \N 5748 15493 INSERT -35 6779 ome.model.core.PlaneInfo \N 5748 15494 INSERT -35 6780 ome.model.core.PlaneInfo \N 5748 15495 INSERT -35 6781 ome.model.core.PlaneInfo \N 5748 15496 INSERT -35 6782 ome.model.core.PlaneInfo \N 5748 15497 INSERT -35 6783 ome.model.core.PlaneInfo \N 5748 15498 INSERT -35 6784 ome.model.core.PlaneInfo \N 5748 15499 INSERT -35 6785 ome.model.core.PlaneInfo \N 5748 15500 INSERT -35 6786 ome.model.core.PlaneInfo \N 5748 15501 INSERT -35 6787 ome.model.core.PlaneInfo \N 5748 15502 INSERT -35 6788 ome.model.core.PlaneInfo \N 5748 15503 INSERT -35 6789 ome.model.core.PlaneInfo \N 5748 15504 INSERT -35 6790 ome.model.core.PlaneInfo \N 5748 15505 INSERT -35 6791 ome.model.core.PlaneInfo \N 5748 15506 INSERT -35 6792 ome.model.core.PlaneInfo \N 5748 15507 INSERT -35 6793 ome.model.core.PlaneInfo \N 5748 15508 INSERT -35 6794 ome.model.core.PlaneInfo \N 5748 15509 INSERT -35 6795 ome.model.core.PlaneInfo \N 5748 15510 INSERT -35 6796 ome.model.core.PlaneInfo \N 5748 15511 INSERT -35 6797 ome.model.core.PlaneInfo \N 5748 15512 INSERT -35 25 ome.model.roi.Roi \N 5748 15513 INSERT -35 49 ome.model.roi.Label \N 5748 15514 INSERT -35 50 ome.model.roi.Polygon \N 5748 15515 INSERT -35 199 ome.model.acquisition.Microscope \N 5748 15516 INSERT -35 249 ome.model.acquisition.Instrument \N 5748 15517 INSERT -35 281 ome.model.acquisition.Detector \N 5748 15518 INSERT -35 593 ome.model.acquisition.TransmittanceRange \N 5748 15519 INSERT -35 593 ome.model.acquisition.Filter \N 5748 15520 INSERT -35 594 ome.model.acquisition.TransmittanceRange \N 5748 15521 INSERT -35 594 ome.model.acquisition.Filter \N 5748 15522 INSERT -35 595 ome.model.acquisition.TransmittanceRange \N 5748 15523 INSERT -35 595 ome.model.acquisition.Filter \N 5748 15524 INSERT -35 596 ome.model.acquisition.TransmittanceRange \N 5748 15525 INSERT -35 596 ome.model.acquisition.Filter \N 5748 15526 INSERT -35 989 ome.model.acquisition.Laser \N 5748 15527 INSERT -35 990 ome.model.acquisition.Laser \N 5748 15528 INSERT -35 991 ome.model.acquisition.Laser \N 5748 15529 INSERT -35 992 ome.model.acquisition.Laser \N 5748 15530 INSERT -35 993 ome.model.acquisition.Laser \N 5748 15531 INSERT -35 994 ome.model.acquisition.Laser \N 5748 15532 INSERT -35 249 ome.model.acquisition.Objective \N 5748 15533 INSERT -35 249 ome.model.acquisition.ObjectiveSettings \N 5748 15534 INSERT -35 249 ome.model.core.Image \N 5748 15535 INSERT -35 299 ome.model.core.OriginalFile \N 5748 15536 INSERT -35 299 ome.model.annotations.FileAnnotation \N 5748 15537 INSERT -35 349 ome.model.annotations.ImageAnnotationLink \N 5748 15538 INSERT -35 249 ome.model.containers.DatasetImageLink \N 5748 15539 INSERT -35 249 ome.model.core.Pixels \N 5748 15540 INSERT -35 281 ome.model.acquisition.DetectorSettings \N 5748 15541 INSERT -35 249 ome.model.acquisition.LightPath \N 5748 15542 INSERT -35 249 ome.model.acquisition.LightPathEmissionFilterLink \N 5748 15543 INSERT -35 249 ome.model.acquisition.LightSettings \N 5748 15544 INSERT -35 381 ome.model.core.LogicalChannel \N 5748 15545 INSERT -35 381 ome.model.core.Channel \N 5748 15546 INSERT -35 6798 ome.model.core.PlaneInfo \N 5748 15547 INSERT -35 200 ome.model.acquisition.Microscope \N 5748 15548 INSERT -35 250 ome.model.acquisition.Instrument \N 5748 15549 INSERT -35 282 ome.model.acquisition.Detector \N 5748 15550 INSERT -35 597 ome.model.acquisition.TransmittanceRange \N 5748 15551 INSERT -35 597 ome.model.acquisition.Filter \N 5748 15552 INSERT -35 598 ome.model.acquisition.TransmittanceRange \N 5748 15553 INSERT -35 598 ome.model.acquisition.Filter \N 5748 15554 INSERT -35 599 ome.model.acquisition.TransmittanceRange \N 5748 15555 INSERT -35 599 ome.model.acquisition.Filter \N 5748 15556 INSERT -35 600 ome.model.acquisition.TransmittanceRange \N 5748 15557 INSERT -35 600 ome.model.acquisition.Filter \N 5748 15558 INSERT -35 995 ome.model.acquisition.Laser \N 5748 15559 INSERT -35 996 ome.model.acquisition.Laser \N 5748 15560 INSERT -35 997 ome.model.acquisition.Laser \N 5748 15561 INSERT -35 998 ome.model.acquisition.Laser \N 5748 15562 INSERT -35 999 ome.model.acquisition.Laser \N 5748 15563 INSERT -35 1000 ome.model.acquisition.Laser \N 5748 15564 INSERT -35 250 ome.model.acquisition.Objective \N 5748 15565 INSERT -35 250 ome.model.acquisition.ObjectiveSettings \N 5748 15566 INSERT -35 250 ome.model.core.Image \N 5748 15567 INSERT -35 300 ome.model.core.OriginalFile \N 5748 15568 INSERT -35 300 ome.model.annotations.FileAnnotation \N 5748 15569 INSERT -35 350 ome.model.annotations.ImageAnnotationLink \N 5748 15570 INSERT -35 250 ome.model.containers.DatasetImageLink \N 5748 15571 INSERT -35 250 ome.model.core.Pixels \N 5748 15572 INSERT -35 282 ome.model.acquisition.DetectorSettings \N 5748 15573 INSERT -35 250 ome.model.acquisition.LightPath \N 5748 15574 INSERT -35 250 ome.model.acquisition.LightPathEmissionFilterLink \N 5748 15575 INSERT -35 250 ome.model.acquisition.LightSettings \N 5748 15576 INSERT -35 382 ome.model.core.LogicalChannel \N 5748 15577 INSERT -35 382 ome.model.core.Channel \N 5748 15578 INSERT -35 6799 ome.model.core.PlaneInfo \N 5748 15579 INSERT -35 6800 ome.model.core.PlaneInfo \N 5748 15580 INSERT -35 6801 ome.model.core.PlaneInfo \N 5748 15581 INSERT -35 6802 ome.model.core.PlaneInfo \N 5748 15582 INSERT -35 6803 ome.model.core.PlaneInfo \N 5748 15583 INSERT -35 6804 ome.model.core.PlaneInfo \N 5748 15584 INSERT -35 6805 ome.model.core.PlaneInfo \N 5748 15585 INSERT -35 6806 ome.model.core.PlaneInfo \N 5748 15586 INSERT -35 6807 ome.model.core.PlaneInfo \N 5748 15587 INSERT -35 6808 ome.model.core.PlaneInfo \N 5748 15588 INSERT -35 6809 ome.model.core.PlaneInfo \N 5748 15589 INSERT -35 6810 ome.model.core.PlaneInfo \N 5748 15590 INSERT -35 6811 ome.model.core.PlaneInfo \N 5748 15591 INSERT -35 6812 ome.model.core.PlaneInfo \N 5748 15592 INSERT -35 6813 ome.model.core.PlaneInfo \N 5748 15593 INSERT -35 6814 ome.model.core.PlaneInfo \N 5748 15594 INSERT -35 6815 ome.model.core.PlaneInfo \N 5748 15595 INSERT -35 6816 ome.model.core.PlaneInfo \N 5748 15596 INSERT -35 6817 ome.model.core.PlaneInfo \N 5748 15597 INSERT -35 6818 ome.model.core.PlaneInfo \N 5748 15598 UPDATE -35 248 ome.model.core.Pixels \N 5749 15599 UPDATE -35 247 ome.model.core.Pixels \N 5750 15600 UPDATE -35 249 ome.model.core.Pixels \N 5750 15601 UPDATE -35 250 ome.model.core.Pixels \N 5750 15602 UPDATE -35 248 ome.model.core.Pixels \N 5750 15603 INSERT -35 379 ome.model.stats.StatsInfo \N 5751 15604 INSERT -35 380 ome.model.stats.StatsInfo \N 5751 15605 INSERT -35 381 ome.model.stats.StatsInfo \N 5751 15606 INSERT -35 382 ome.model.stats.StatsInfo \N 5751 15607 UPDATE -35 379 ome.model.core.Channel \N 5751 15608 UPDATE -35 381 ome.model.core.Channel \N 5751 15609 UPDATE -35 382 ome.model.core.Channel \N 5751 15610 UPDATE -35 380 ome.model.core.Channel \N 5751 15611 INSERT -35 301 ome.model.display.QuantumDef \N 5752 15612 INSERT -35 301 ome.model.display.RenderingDef \N 5752 15613 INSERT -35 437 ome.model.display.ChannelBinding \N 5752 15614 INSERT -35 302 ome.model.display.QuantumDef \N 5752 15615 INSERT -35 302 ome.model.display.RenderingDef \N 5752 15616 INSERT -35 438 ome.model.display.ChannelBinding \N 5752 15617 INSERT -35 303 ome.model.display.QuantumDef \N 5752 15618 INSERT -35 303 ome.model.display.RenderingDef \N 5752 15619 INSERT -35 439 ome.model.display.ChannelBinding \N 5752 15620 INSERT -35 304 ome.model.display.QuantumDef \N 5752 15621 INSERT -35 304 ome.model.display.RenderingDef \N 5752 15622 INSERT -35 440 ome.model.display.ChannelBinding \N 5752 15623 INSERT -35 247 ome.model.display.Thumbnail \N 5753 15624 INSERT -35 248 ome.model.display.Thumbnail \N 5753 15625 INSERT -35 249 ome.model.display.Thumbnail \N 5753 15626 INSERT -35 250 ome.model.display.Thumbnail \N 5753 15627 UPDATE -35 298 ome.model.core.OriginalFile \N 5754 15628 INSERT -35 201 ome.model.acquisition.Microscope \N 5770 15629 INSERT -35 251 ome.model.acquisition.Instrument \N 5770 15630 INSERT -35 283 ome.model.acquisition.Detector \N 5770 15631 INSERT -35 601 ome.model.acquisition.TransmittanceRange \N 5770 15632 INSERT -35 601 ome.model.acquisition.Filter \N 5770 15633 INSERT -35 602 ome.model.acquisition.TransmittanceRange \N 5770 15634 INSERT -35 602 ome.model.acquisition.Filter \N 5770 15635 INSERT -35 603 ome.model.acquisition.TransmittanceRange \N 5770 15636 INSERT -35 603 ome.model.acquisition.Filter \N 5770 15637 INSERT -35 604 ome.model.acquisition.TransmittanceRange \N 5770 15638 INSERT -35 604 ome.model.acquisition.Filter \N 5770 15639 INSERT -35 1001 ome.model.acquisition.Laser \N 5770 15640 INSERT -35 1002 ome.model.acquisition.Laser \N 5770 15641 INSERT -35 1003 ome.model.acquisition.Laser \N 5770 15642 INSERT -35 1004 ome.model.acquisition.Laser \N 5770 15643 INSERT -35 1005 ome.model.acquisition.Laser \N 5770 15644 INSERT -35 1006 ome.model.acquisition.Laser \N 5770 15645 INSERT -35 251 ome.model.acquisition.Objective \N 5770 15646 INSERT -35 251 ome.model.acquisition.ObjectiveSettings \N 5770 15647 INSERT -35 251 ome.model.core.Image \N 5770 15648 INSERT -35 301 ome.model.core.OriginalFile \N 5770 15649 INSERT -35 301 ome.model.annotations.FileAnnotation \N 5770 15650 INSERT -35 351 ome.model.annotations.ImageAnnotationLink \N 5770 15651 INSERT -35 251 ome.model.containers.DatasetImageLink \N 5770 15652 INSERT -35 251 ome.model.core.Pixels \N 5770 15653 INSERT -35 283 ome.model.acquisition.DetectorSettings \N 5770 15654 INSERT -35 251 ome.model.acquisition.LightPath \N 5770 15655 INSERT -35 251 ome.model.acquisition.LightPathEmissionFilterLink \N 5770 15656 INSERT -35 251 ome.model.acquisition.LightSettings \N 5770 15657 INSERT -35 383 ome.model.core.LogicalChannel \N 5770 15658 INSERT -35 383 ome.model.core.Channel \N 5770 15659 INSERT -35 6819 ome.model.core.PlaneInfo \N 5770 15660 INSERT -35 6820 ome.model.core.PlaneInfo \N 5770 15661 INSERT -35 6821 ome.model.core.PlaneInfo \N 5770 15662 INSERT -35 6822 ome.model.core.PlaneInfo \N 5770 15663 INSERT -35 6823 ome.model.core.PlaneInfo \N 5770 15664 INSERT -35 202 ome.model.acquisition.Microscope \N 5770 15665 INSERT -35 252 ome.model.acquisition.Instrument \N 5770 15666 INSERT -35 284 ome.model.acquisition.Detector \N 5770 15667 INSERT -35 605 ome.model.acquisition.TransmittanceRange \N 5770 15668 INSERT -35 605 ome.model.acquisition.Filter \N 5770 15669 INSERT -35 606 ome.model.acquisition.TransmittanceRange \N 5770 15670 INSERT -35 606 ome.model.acquisition.Filter \N 5770 15671 INSERT -35 607 ome.model.acquisition.TransmittanceRange \N 5770 15672 INSERT -35 607 ome.model.acquisition.Filter \N 5770 15673 INSERT -35 608 ome.model.acquisition.TransmittanceRange \N 5770 15674 INSERT -35 608 ome.model.acquisition.Filter \N 5770 15675 INSERT -35 1007 ome.model.acquisition.Laser \N 5770 15676 INSERT -35 1008 ome.model.acquisition.Laser \N 5770 15677 INSERT -35 1009 ome.model.acquisition.Laser \N 5770 15678 INSERT -35 1010 ome.model.acquisition.Laser \N 5770 15679 INSERT -35 1011 ome.model.acquisition.Laser \N 5770 15680 INSERT -35 1012 ome.model.acquisition.Laser \N 5770 15681 INSERT -35 252 ome.model.acquisition.Objective \N 5770 15682 INSERT -35 252 ome.model.acquisition.ObjectiveSettings \N 5770 15683 INSERT -35 252 ome.model.core.Image \N 5770 15684 INSERT -35 302 ome.model.core.OriginalFile \N 5770 15685 INSERT -35 302 ome.model.annotations.FileAnnotation \N 5770 15686 INSERT -35 352 ome.model.annotations.ImageAnnotationLink \N 5770 15687 INSERT -35 252 ome.model.containers.DatasetImageLink \N 5770 15688 INSERT -35 252 ome.model.core.Pixels \N 5770 15689 INSERT -35 284 ome.model.acquisition.DetectorSettings \N 5770 15690 INSERT -35 252 ome.model.acquisition.LightPath \N 5770 15691 INSERT -35 252 ome.model.acquisition.LightPathEmissionFilterLink \N 5770 15692 INSERT -35 252 ome.model.acquisition.LightSettings \N 5770 15693 INSERT -35 384 ome.model.core.LogicalChannel \N 5770 15694 INSERT -35 384 ome.model.core.Channel \N 5770 15695 INSERT -35 6824 ome.model.core.PlaneInfo \N 5770 15696 INSERT -35 6825 ome.model.core.PlaneInfo \N 5770 15697 INSERT -35 6826 ome.model.core.PlaneInfo \N 5770 15698 INSERT -35 6827 ome.model.core.PlaneInfo \N 5770 15699 INSERT -35 6828 ome.model.core.PlaneInfo \N 5770 15700 INSERT -35 6829 ome.model.core.PlaneInfo \N 5770 15701 INSERT -35 6830 ome.model.core.PlaneInfo \N 5770 15702 INSERT -35 6831 ome.model.core.PlaneInfo \N 5770 15703 INSERT -35 6832 ome.model.core.PlaneInfo \N 5770 15704 INSERT -35 6833 ome.model.core.PlaneInfo \N 5770 15705 INSERT -35 6834 ome.model.core.PlaneInfo \N 5770 15706 INSERT -35 6835 ome.model.core.PlaneInfo \N 5770 15707 INSERT -35 6836 ome.model.core.PlaneInfo \N 5770 15708 INSERT -35 6837 ome.model.core.PlaneInfo \N 5770 15709 INSERT -35 6838 ome.model.core.PlaneInfo \N 5770 15710 INSERT -35 6839 ome.model.core.PlaneInfo \N 5770 15711 INSERT -35 6840 ome.model.core.PlaneInfo \N 5770 15712 INSERT -35 6841 ome.model.core.PlaneInfo \N 5770 15713 INSERT -35 6842 ome.model.core.PlaneInfo \N 5770 15714 INSERT -35 6843 ome.model.core.PlaneInfo \N 5770 15715 INSERT -35 26 ome.model.roi.Roi \N 5770 15716 INSERT -35 51 ome.model.roi.Label \N 5770 15717 INSERT -35 52 ome.model.roi.Polygon \N 5770 15718 INSERT -35 203 ome.model.acquisition.Microscope \N 5770 15719 INSERT -35 253 ome.model.acquisition.Instrument \N 5770 15720 INSERT -35 285 ome.model.acquisition.Detector \N 5770 15721 INSERT -35 609 ome.model.acquisition.TransmittanceRange \N 5770 15722 INSERT -35 609 ome.model.acquisition.Filter \N 5770 15723 INSERT -35 610 ome.model.acquisition.TransmittanceRange \N 5770 15724 INSERT -35 610 ome.model.acquisition.Filter \N 5770 15725 INSERT -35 611 ome.model.acquisition.TransmittanceRange \N 5770 15726 INSERT -35 611 ome.model.acquisition.Filter \N 5770 15727 INSERT -35 612 ome.model.acquisition.TransmittanceRange \N 5770 15728 INSERT -35 612 ome.model.acquisition.Filter \N 5770 15729 INSERT -35 1013 ome.model.acquisition.Laser \N 5770 15730 INSERT -35 1014 ome.model.acquisition.Laser \N 5770 15731 INSERT -35 1015 ome.model.acquisition.Laser \N 5770 15732 INSERT -35 1016 ome.model.acquisition.Laser \N 5770 15733 INSERT -35 1017 ome.model.acquisition.Laser \N 5770 15734 INSERT -35 1018 ome.model.acquisition.Laser \N 5770 15735 INSERT -35 253 ome.model.acquisition.Objective \N 5770 15736 INSERT -35 253 ome.model.acquisition.ObjectiveSettings \N 5770 15737 INSERT -35 253 ome.model.core.Image \N 5770 15738 INSERT -35 303 ome.model.core.OriginalFile \N 5770 15739 INSERT -35 303 ome.model.annotations.FileAnnotation \N 5770 15740 INSERT -35 353 ome.model.annotations.ImageAnnotationLink \N 5770 15741 INSERT -35 253 ome.model.containers.DatasetImageLink \N 5770 15742 INSERT -35 253 ome.model.core.Pixels \N 5770 15743 INSERT -35 285 ome.model.acquisition.DetectorSettings \N 5770 15744 INSERT -35 253 ome.model.acquisition.LightPath \N 5770 15745 INSERT -35 253 ome.model.acquisition.LightPathEmissionFilterLink \N 5770 15746 INSERT -35 253 ome.model.acquisition.LightSettings \N 5770 15747 INSERT -35 385 ome.model.core.LogicalChannel \N 5770 15748 INSERT -35 385 ome.model.core.Channel \N 5770 15749 INSERT -35 6844 ome.model.core.PlaneInfo \N 5770 15750 INSERT -35 204 ome.model.acquisition.Microscope \N 5770 15751 INSERT -35 254 ome.model.acquisition.Instrument \N 5770 15752 INSERT -35 286 ome.model.acquisition.Detector \N 5770 15753 INSERT -35 613 ome.model.acquisition.TransmittanceRange \N 5770 15754 INSERT -35 613 ome.model.acquisition.Filter \N 5770 15755 INSERT -35 614 ome.model.acquisition.TransmittanceRange \N 5770 15756 INSERT -35 614 ome.model.acquisition.Filter \N 5770 15757 INSERT -35 615 ome.model.acquisition.TransmittanceRange \N 5770 15758 INSERT -35 615 ome.model.acquisition.Filter \N 5770 15759 INSERT -35 616 ome.model.acquisition.TransmittanceRange \N 5770 15760 INSERT -35 616 ome.model.acquisition.Filter \N 5770 15761 INSERT -35 1019 ome.model.acquisition.Laser \N 5770 15762 INSERT -35 1020 ome.model.acquisition.Laser \N 5770 15763 INSERT -35 1021 ome.model.acquisition.Laser \N 5770 15764 INSERT -35 1022 ome.model.acquisition.Laser \N 5770 15765 INSERT -35 1023 ome.model.acquisition.Laser \N 5770 15766 INSERT -35 1024 ome.model.acquisition.Laser \N 5770 15767 INSERT -35 254 ome.model.acquisition.Objective \N 5770 15768 INSERT -35 254 ome.model.acquisition.ObjectiveSettings \N 5770 15769 INSERT -35 254 ome.model.core.Image \N 5770 15770 INSERT -35 304 ome.model.core.OriginalFile \N 5770 15771 INSERT -35 304 ome.model.annotations.FileAnnotation \N 5770 15772 INSERT -35 354 ome.model.annotations.ImageAnnotationLink \N 5770 15773 INSERT -35 254 ome.model.containers.DatasetImageLink \N 5770 15774 INSERT -35 254 ome.model.core.Pixels \N 5770 15775 INSERT -35 286 ome.model.acquisition.DetectorSettings \N 5770 15776 INSERT -35 254 ome.model.acquisition.LightPath \N 5770 15777 INSERT -35 254 ome.model.acquisition.LightPathEmissionFilterLink \N 5770 15778 INSERT -35 254 ome.model.acquisition.LightSettings \N 5770 15779 INSERT -35 386 ome.model.core.LogicalChannel \N 5770 15780 INSERT -35 386 ome.model.core.Channel \N 5770 15781 INSERT -35 6845 ome.model.core.PlaneInfo \N 5770 15782 INSERT -35 6846 ome.model.core.PlaneInfo \N 5770 15783 INSERT -35 6847 ome.model.core.PlaneInfo \N 5770 15784 INSERT -35 6848 ome.model.core.PlaneInfo \N 5770 15785 INSERT -35 6849 ome.model.core.PlaneInfo \N 5770 15786 INSERT -35 6850 ome.model.core.PlaneInfo \N 5770 15787 INSERT -35 6851 ome.model.core.PlaneInfo \N 5770 15788 INSERT -35 6852 ome.model.core.PlaneInfo \N 5770 15789 INSERT -35 6853 ome.model.core.PlaneInfo \N 5770 15790 INSERT -35 6854 ome.model.core.PlaneInfo \N 5770 15791 INSERT -35 6855 ome.model.core.PlaneInfo \N 5770 15792 INSERT -35 6856 ome.model.core.PlaneInfo \N 5770 15793 INSERT -35 6857 ome.model.core.PlaneInfo \N 5770 15794 INSERT -35 6858 ome.model.core.PlaneInfo \N 5770 15795 INSERT -35 6859 ome.model.core.PlaneInfo \N 5770 15796 INSERT -35 6860 ome.model.core.PlaneInfo \N 5770 15797 INSERT -35 6861 ome.model.core.PlaneInfo \N 5770 15798 INSERT -35 6862 ome.model.core.PlaneInfo \N 5770 15799 INSERT -35 6863 ome.model.core.PlaneInfo \N 5770 15800 INSERT -35 6864 ome.model.core.PlaneInfo \N 5770 15801 UPDATE -35 252 ome.model.core.Pixels \N 5771 15802 UPDATE -35 251 ome.model.core.Pixels \N 5772 15803 UPDATE -35 253 ome.model.core.Pixels \N 5772 15804 UPDATE -35 254 ome.model.core.Pixels \N 5772 15805 UPDATE -35 252 ome.model.core.Pixels \N 5772 15806 INSERT -35 383 ome.model.stats.StatsInfo \N 5773 15807 INSERT -35 384 ome.model.stats.StatsInfo \N 5773 15808 INSERT -35 385 ome.model.stats.StatsInfo \N 5773 15809 INSERT -35 386 ome.model.stats.StatsInfo \N 5773 15810 UPDATE -35 383 ome.model.core.Channel \N 5773 15811 UPDATE -35 385 ome.model.core.Channel \N 5773 15812 UPDATE -35 386 ome.model.core.Channel \N 5773 15813 UPDATE -35 384 ome.model.core.Channel \N 5773 15814 INSERT -35 305 ome.model.display.QuantumDef \N 5774 15815 INSERT -35 305 ome.model.display.RenderingDef \N 5774 15816 INSERT -35 441 ome.model.display.ChannelBinding \N 5774 15817 INSERT -35 306 ome.model.display.QuantumDef \N 5774 15818 INSERT -35 306 ome.model.display.RenderingDef \N 5774 15819 INSERT -35 442 ome.model.display.ChannelBinding \N 5774 15820 INSERT -35 307 ome.model.display.QuantumDef \N 5774 15821 INSERT -35 307 ome.model.display.RenderingDef \N 5774 15822 INSERT -35 443 ome.model.display.ChannelBinding \N 5774 15823 INSERT -35 308 ome.model.display.QuantumDef \N 5774 15824 INSERT -35 308 ome.model.display.RenderingDef \N 5774 15825 INSERT -35 444 ome.model.display.ChannelBinding \N 5774 15826 INSERT -35 251 ome.model.display.Thumbnail \N 5775 15827 INSERT -35 252 ome.model.display.Thumbnail \N 5775 15828 INSERT -35 253 ome.model.display.Thumbnail \N 5775 15829 INSERT -35 254 ome.model.display.Thumbnail \N 5775 15830 UPDATE -35 302 ome.model.core.OriginalFile \N 5776 15831 INSERT -35 205 ome.model.acquisition.Microscope \N 5792 15832 INSERT -35 255 ome.model.acquisition.Instrument \N 5792 15833 INSERT -35 287 ome.model.acquisition.Detector \N 5792 15834 INSERT -35 617 ome.model.acquisition.TransmittanceRange \N 5792 15835 INSERT -35 617 ome.model.acquisition.Filter \N 5792 15836 INSERT -35 618 ome.model.acquisition.TransmittanceRange \N 5792 15837 INSERT -35 618 ome.model.acquisition.Filter \N 5792 15838 INSERT -35 619 ome.model.acquisition.TransmittanceRange \N 5792 15839 INSERT -35 619 ome.model.acquisition.Filter \N 5792 15840 INSERT -35 620 ome.model.acquisition.TransmittanceRange \N 5792 15841 INSERT -35 620 ome.model.acquisition.Filter \N 5792 15842 INSERT -35 1025 ome.model.acquisition.Laser \N 5792 15843 INSERT -35 1026 ome.model.acquisition.Laser \N 5792 15844 INSERT -35 1027 ome.model.acquisition.Laser \N 5792 15845 INSERT -35 1028 ome.model.acquisition.Laser \N 5792 15846 INSERT -35 1029 ome.model.acquisition.Laser \N 5792 15847 INSERT -35 1030 ome.model.acquisition.Laser \N 5792 15848 INSERT -35 255 ome.model.acquisition.Objective \N 5792 15849 INSERT -35 255 ome.model.acquisition.ObjectiveSettings \N 5792 15850 INSERT -35 255 ome.model.core.Image \N 5792 15851 INSERT -35 305 ome.model.core.OriginalFile \N 5792 15852 INSERT -35 305 ome.model.annotations.FileAnnotation \N 5792 15853 INSERT -35 355 ome.model.annotations.ImageAnnotationLink \N 5792 15854 INSERT -35 255 ome.model.containers.DatasetImageLink \N 5792 15855 INSERT -35 255 ome.model.core.Pixels \N 5792 15856 INSERT -35 287 ome.model.acquisition.DetectorSettings \N 5792 15857 INSERT -35 255 ome.model.acquisition.LightPath \N 5792 15858 INSERT -35 255 ome.model.acquisition.LightPathEmissionFilterLink \N 5792 15859 INSERT -35 255 ome.model.acquisition.LightSettings \N 5792 15860 INSERT -35 387 ome.model.core.LogicalChannel \N 5792 15861 INSERT -35 387 ome.model.core.Channel \N 5792 15862 INSERT -35 6865 ome.model.core.PlaneInfo \N 5792 15863 INSERT -35 6866 ome.model.core.PlaneInfo \N 5792 15864 INSERT -35 6867 ome.model.core.PlaneInfo \N 5792 15865 INSERT -35 6868 ome.model.core.PlaneInfo \N 5792 15866 INSERT -35 6869 ome.model.core.PlaneInfo \N 5792 15867 INSERT -35 206 ome.model.acquisition.Microscope \N 5792 15868 INSERT -35 256 ome.model.acquisition.Instrument \N 5792 15869 INSERT -35 288 ome.model.acquisition.Detector \N 5792 15870 INSERT -35 621 ome.model.acquisition.TransmittanceRange \N 5792 15871 INSERT -35 621 ome.model.acquisition.Filter \N 5792 15872 INSERT -35 622 ome.model.acquisition.TransmittanceRange \N 5792 15873 INSERT -35 622 ome.model.acquisition.Filter \N 5792 15874 INSERT -35 623 ome.model.acquisition.TransmittanceRange \N 5792 15875 INSERT -35 623 ome.model.acquisition.Filter \N 5792 15876 INSERT -35 624 ome.model.acquisition.TransmittanceRange \N 5792 15877 INSERT -35 624 ome.model.acquisition.Filter \N 5792 15878 INSERT -35 1031 ome.model.acquisition.Laser \N 5792 15879 INSERT -35 1032 ome.model.acquisition.Laser \N 5792 15880 INSERT -35 1033 ome.model.acquisition.Laser \N 5792 15881 INSERT -35 1034 ome.model.acquisition.Laser \N 5792 15882 INSERT -35 1035 ome.model.acquisition.Laser \N 5792 15883 INSERT -35 1036 ome.model.acquisition.Laser \N 5792 15884 INSERT -35 256 ome.model.acquisition.Objective \N 5792 15885 INSERT -35 256 ome.model.acquisition.ObjectiveSettings \N 5792 15886 INSERT -35 256 ome.model.core.Image \N 5792 15887 INSERT -35 306 ome.model.core.OriginalFile \N 5792 15888 INSERT -35 306 ome.model.annotations.FileAnnotation \N 5792 15889 INSERT -35 356 ome.model.annotations.ImageAnnotationLink \N 5792 15890 INSERT -35 256 ome.model.containers.DatasetImageLink \N 5792 15891 INSERT -35 256 ome.model.core.Pixels \N 5792 15892 INSERT -35 288 ome.model.acquisition.DetectorSettings \N 5792 15893 INSERT -35 256 ome.model.acquisition.LightPath \N 5792 15894 INSERT -35 256 ome.model.acquisition.LightPathEmissionFilterLink \N 5792 15895 INSERT -35 256 ome.model.acquisition.LightSettings \N 5792 15896 INSERT -35 388 ome.model.core.LogicalChannel \N 5792 15897 INSERT -35 388 ome.model.core.Channel \N 5792 15898 INSERT -35 6870 ome.model.core.PlaneInfo \N 5792 15899 INSERT -35 6871 ome.model.core.PlaneInfo \N 5792 15900 INSERT -35 6872 ome.model.core.PlaneInfo \N 5792 15901 INSERT -35 6873 ome.model.core.PlaneInfo \N 5792 15902 INSERT -35 6874 ome.model.core.PlaneInfo \N 5792 15903 INSERT -35 6875 ome.model.core.PlaneInfo \N 5792 15904 INSERT -35 6876 ome.model.core.PlaneInfo \N 5792 15905 INSERT -35 6877 ome.model.core.PlaneInfo \N 5792 15906 INSERT -35 6878 ome.model.core.PlaneInfo \N 5792 15907 INSERT -35 6879 ome.model.core.PlaneInfo \N 5792 15908 INSERT -35 6880 ome.model.core.PlaneInfo \N 5792 15909 INSERT -35 6881 ome.model.core.PlaneInfo \N 5792 15910 INSERT -35 6882 ome.model.core.PlaneInfo \N 5792 15911 INSERT -35 6883 ome.model.core.PlaneInfo \N 5792 15912 INSERT -35 6884 ome.model.core.PlaneInfo \N 5792 15913 INSERT -35 6885 ome.model.core.PlaneInfo \N 5792 15914 INSERT -35 6886 ome.model.core.PlaneInfo \N 5792 15915 INSERT -35 6887 ome.model.core.PlaneInfo \N 5792 15916 INSERT -35 6888 ome.model.core.PlaneInfo \N 5792 15917 INSERT -35 6889 ome.model.core.PlaneInfo \N 5792 15918 INSERT -35 27 ome.model.roi.Roi \N 5792 15919 INSERT -35 53 ome.model.roi.Label \N 5792 15920 INSERT -35 54 ome.model.roi.Polygon \N 5792 15921 INSERT -35 207 ome.model.acquisition.Microscope \N 5792 15922 INSERT -35 257 ome.model.acquisition.Instrument \N 5792 15923 INSERT -35 289 ome.model.acquisition.Detector \N 5792 15924 INSERT -35 625 ome.model.acquisition.TransmittanceRange \N 5792 15925 INSERT -35 625 ome.model.acquisition.Filter \N 5792 15926 INSERT -35 626 ome.model.acquisition.TransmittanceRange \N 5792 15927 INSERT -35 626 ome.model.acquisition.Filter \N 5792 15928 INSERT -35 627 ome.model.acquisition.TransmittanceRange \N 5792 15929 INSERT -35 627 ome.model.acquisition.Filter \N 5792 15930 INSERT -35 628 ome.model.acquisition.TransmittanceRange \N 5792 15931 INSERT -35 628 ome.model.acquisition.Filter \N 5792 15932 INSERT -35 1037 ome.model.acquisition.Laser \N 5792 15933 INSERT -35 1038 ome.model.acquisition.Laser \N 5792 15934 INSERT -35 1039 ome.model.acquisition.Laser \N 5792 15935 INSERT -35 1040 ome.model.acquisition.Laser \N 5792 15936 INSERT -35 1041 ome.model.acquisition.Laser \N 5792 15937 INSERT -35 1042 ome.model.acquisition.Laser \N 5792 15938 INSERT -35 257 ome.model.acquisition.Objective \N 5792 15939 INSERT -35 257 ome.model.acquisition.ObjectiveSettings \N 5792 15940 INSERT -35 257 ome.model.core.Image \N 5792 15941 INSERT -35 307 ome.model.core.OriginalFile \N 5792 15942 INSERT -35 307 ome.model.annotations.FileAnnotation \N 5792 15943 INSERT -35 357 ome.model.annotations.ImageAnnotationLink \N 5792 15944 INSERT -35 257 ome.model.containers.DatasetImageLink \N 5792 15945 INSERT -35 257 ome.model.core.Pixels \N 5792 15946 INSERT -35 289 ome.model.acquisition.DetectorSettings \N 5792 15947 INSERT -35 257 ome.model.acquisition.LightPath \N 5792 15948 INSERT -35 257 ome.model.acquisition.LightPathEmissionFilterLink \N 5792 15949 INSERT -35 257 ome.model.acquisition.LightSettings \N 5792 15950 INSERT -35 389 ome.model.core.LogicalChannel \N 5792 15951 INSERT -35 389 ome.model.core.Channel \N 5792 15952 INSERT -35 6890 ome.model.core.PlaneInfo \N 5792 15953 INSERT -35 208 ome.model.acquisition.Microscope \N 5792 15954 INSERT -35 258 ome.model.acquisition.Instrument \N 5792 15955 INSERT -35 290 ome.model.acquisition.Detector \N 5792 15956 INSERT -35 629 ome.model.acquisition.TransmittanceRange \N 5792 15957 INSERT -35 629 ome.model.acquisition.Filter \N 5792 15958 INSERT -35 630 ome.model.acquisition.TransmittanceRange \N 5792 15959 INSERT -35 630 ome.model.acquisition.Filter \N 5792 15960 INSERT -35 631 ome.model.acquisition.TransmittanceRange \N 5792 15961 INSERT -35 631 ome.model.acquisition.Filter \N 5792 15962 INSERT -35 632 ome.model.acquisition.TransmittanceRange \N 5792 15963 INSERT -35 632 ome.model.acquisition.Filter \N 5792 15964 INSERT -35 1043 ome.model.acquisition.Laser \N 5792 15965 INSERT -35 1044 ome.model.acquisition.Laser \N 5792 15966 INSERT -35 1045 ome.model.acquisition.Laser \N 5792 15967 INSERT -35 1046 ome.model.acquisition.Laser \N 5792 15968 INSERT -35 1047 ome.model.acquisition.Laser \N 5792 15969 INSERT -35 1048 ome.model.acquisition.Laser \N 5792 15970 INSERT -35 258 ome.model.acquisition.Objective \N 5792 15971 INSERT -35 258 ome.model.acquisition.ObjectiveSettings \N 5792 15972 INSERT -35 258 ome.model.core.Image \N 5792 15973 INSERT -35 308 ome.model.core.OriginalFile \N 5792 15974 INSERT -35 308 ome.model.annotations.FileAnnotation \N 5792 15975 INSERT -35 358 ome.model.annotations.ImageAnnotationLink \N 5792 15976 INSERT -35 258 ome.model.containers.DatasetImageLink \N 5792 15977 INSERT -35 258 ome.model.core.Pixels \N 5792 15978 INSERT -35 290 ome.model.acquisition.DetectorSettings \N 5792 15979 INSERT -35 258 ome.model.acquisition.LightPath \N 5792 15980 INSERT -35 258 ome.model.acquisition.LightPathEmissionFilterLink \N 5792 15981 INSERT -35 258 ome.model.acquisition.LightSettings \N 5792 15982 INSERT -35 390 ome.model.core.LogicalChannel \N 5792 15983 INSERT -35 390 ome.model.core.Channel \N 5792 15984 INSERT -35 6891 ome.model.core.PlaneInfo \N 5792 15985 INSERT -35 6892 ome.model.core.PlaneInfo \N 5792 15986 INSERT -35 6893 ome.model.core.PlaneInfo \N 5792 15987 INSERT -35 6894 ome.model.core.PlaneInfo \N 5792 15988 INSERT -35 6895 ome.model.core.PlaneInfo \N 5792 15989 INSERT -35 6896 ome.model.core.PlaneInfo \N 5792 15990 INSERT -35 6897 ome.model.core.PlaneInfo \N 5792 15991 INSERT -35 6898 ome.model.core.PlaneInfo \N 5792 15992 INSERT -35 6899 ome.model.core.PlaneInfo \N 5792 15993 INSERT -35 6900 ome.model.core.PlaneInfo \N 5792 15994 INSERT -35 6901 ome.model.core.PlaneInfo \N 5792 15995 INSERT -35 6902 ome.model.core.PlaneInfo \N 5792 15996 INSERT -35 6903 ome.model.core.PlaneInfo \N 5792 15997 INSERT -35 6904 ome.model.core.PlaneInfo \N 5792 15998 INSERT -35 6905 ome.model.core.PlaneInfo \N 5792 15999 INSERT -35 6906 ome.model.core.PlaneInfo \N 5792 16000 INSERT -35 6907 ome.model.core.PlaneInfo \N 5792 16001 INSERT -35 6908 ome.model.core.PlaneInfo \N 5792 16002 INSERT -35 6909 ome.model.core.PlaneInfo \N 5792 16003 INSERT -35 6910 ome.model.core.PlaneInfo \N 5792 16004 UPDATE -35 256 ome.model.core.Pixels \N 5793 16005 UPDATE -35 255 ome.model.core.Pixels \N 5794 16006 UPDATE -35 257 ome.model.core.Pixels \N 5794 16007 UPDATE -35 258 ome.model.core.Pixels \N 5794 16008 UPDATE -35 256 ome.model.core.Pixels \N 5794 16009 INSERT -35 387 ome.model.stats.StatsInfo \N 5795 16010 INSERT -35 388 ome.model.stats.StatsInfo \N 5795 16011 INSERT -35 389 ome.model.stats.StatsInfo \N 5795 16012 INSERT -35 390 ome.model.stats.StatsInfo \N 5795 16013 UPDATE -35 387 ome.model.core.Channel \N 5795 16014 UPDATE -35 389 ome.model.core.Channel \N 5795 16015 UPDATE -35 390 ome.model.core.Channel \N 5795 16016 UPDATE -35 388 ome.model.core.Channel \N 5795 16017 INSERT -35 309 ome.model.display.QuantumDef \N 5796 16018 INSERT -35 309 ome.model.display.RenderingDef \N 5796 16019 INSERT -35 445 ome.model.display.ChannelBinding \N 5796 16020 INSERT -35 310 ome.model.display.QuantumDef \N 5796 16021 INSERT -35 310 ome.model.display.RenderingDef \N 5796 16022 INSERT -35 446 ome.model.display.ChannelBinding \N 5796 16023 INSERT -35 311 ome.model.display.QuantumDef \N 5796 16024 INSERT -35 311 ome.model.display.RenderingDef \N 5796 16025 INSERT -35 447 ome.model.display.ChannelBinding \N 5796 16026 INSERT -35 312 ome.model.display.QuantumDef \N 5796 16027 INSERT -35 312 ome.model.display.RenderingDef \N 5796 16028 INSERT -35 448 ome.model.display.ChannelBinding \N 5796 16029 INSERT -35 255 ome.model.display.Thumbnail \N 5797 16030 INSERT -35 256 ome.model.display.Thumbnail \N 5797 16031 INSERT -35 257 ome.model.display.Thumbnail \N 5797 16032 INSERT -35 258 ome.model.display.Thumbnail \N 5797 16033 UPDATE -35 306 ome.model.core.OriginalFile \N 5798 16034 INSERT -35 209 ome.model.acquisition.Microscope \N 5814 16035 INSERT -35 259 ome.model.acquisition.Instrument \N 5814 16036 INSERT -35 291 ome.model.acquisition.Detector \N 5814 16037 INSERT -35 633 ome.model.acquisition.TransmittanceRange \N 5814 16038 INSERT -35 633 ome.model.acquisition.Filter \N 5814 16039 INSERT -35 634 ome.model.acquisition.TransmittanceRange \N 5814 16040 INSERT -35 634 ome.model.acquisition.Filter \N 5814 16041 INSERT -35 635 ome.model.acquisition.TransmittanceRange \N 5814 16042 INSERT -35 635 ome.model.acquisition.Filter \N 5814 16043 INSERT -35 636 ome.model.acquisition.TransmittanceRange \N 5814 16044 INSERT -35 636 ome.model.acquisition.Filter \N 5814 16045 INSERT -35 1049 ome.model.acquisition.Laser \N 5814 16046 INSERT -35 1050 ome.model.acquisition.Laser \N 5814 16047 INSERT -35 1051 ome.model.acquisition.Laser \N 5814 16048 INSERT -35 1052 ome.model.acquisition.Laser \N 5814 16049 INSERT -35 1053 ome.model.acquisition.Laser \N 5814 16050 INSERT -35 1054 ome.model.acquisition.Laser \N 5814 16051 INSERT -35 259 ome.model.acquisition.Objective \N 5814 16052 INSERT -35 259 ome.model.acquisition.ObjectiveSettings \N 5814 16053 INSERT -35 259 ome.model.core.Image \N 5814 16054 INSERT -35 309 ome.model.core.OriginalFile \N 5814 16055 INSERT -35 309 ome.model.annotations.FileAnnotation \N 5814 16056 INSERT -35 359 ome.model.annotations.ImageAnnotationLink \N 5814 16057 INSERT -35 259 ome.model.containers.DatasetImageLink \N 5814 16058 INSERT -35 259 ome.model.core.Pixels \N 5814 16059 INSERT -35 291 ome.model.acquisition.DetectorSettings \N 5814 16060 INSERT -35 259 ome.model.acquisition.LightPath \N 5814 16061 INSERT -35 259 ome.model.acquisition.LightPathEmissionFilterLink \N 5814 16062 INSERT -35 259 ome.model.acquisition.LightSettings \N 5814 16063 INSERT -35 391 ome.model.core.LogicalChannel \N 5814 16064 INSERT -35 391 ome.model.core.Channel \N 5814 16065 INSERT -35 6911 ome.model.core.PlaneInfo \N 5814 16066 INSERT -35 6912 ome.model.core.PlaneInfo \N 5814 16067 INSERT -35 6913 ome.model.core.PlaneInfo \N 5814 16068 INSERT -35 6914 ome.model.core.PlaneInfo \N 5814 16069 INSERT -35 6915 ome.model.core.PlaneInfo \N 5814 16070 INSERT -35 210 ome.model.acquisition.Microscope \N 5814 16071 INSERT -35 260 ome.model.acquisition.Instrument \N 5814 16072 INSERT -35 292 ome.model.acquisition.Detector \N 5814 16073 INSERT -35 637 ome.model.acquisition.TransmittanceRange \N 5814 16074 INSERT -35 637 ome.model.acquisition.Filter \N 5814 16075 INSERT -35 638 ome.model.acquisition.TransmittanceRange \N 5814 16076 INSERT -35 638 ome.model.acquisition.Filter \N 5814 16077 INSERT -35 639 ome.model.acquisition.TransmittanceRange \N 5814 16078 INSERT -35 639 ome.model.acquisition.Filter \N 5814 16079 INSERT -35 640 ome.model.acquisition.TransmittanceRange \N 5814 16080 INSERT -35 640 ome.model.acquisition.Filter \N 5814 16081 INSERT -35 1055 ome.model.acquisition.Laser \N 5814 16082 INSERT -35 1056 ome.model.acquisition.Laser \N 5814 16083 INSERT -35 1057 ome.model.acquisition.Laser \N 5814 16084 INSERT -35 1058 ome.model.acquisition.Laser \N 5814 16085 INSERT -35 1059 ome.model.acquisition.Laser \N 5814 16086 INSERT -35 1060 ome.model.acquisition.Laser \N 5814 16087 INSERT -35 260 ome.model.acquisition.Objective \N 5814 16088 INSERT -35 260 ome.model.acquisition.ObjectiveSettings \N 5814 16089 INSERT -35 260 ome.model.core.Image \N 5814 16090 INSERT -35 310 ome.model.core.OriginalFile \N 5814 16091 INSERT -35 310 ome.model.annotations.FileAnnotation \N 5814 16092 INSERT -35 360 ome.model.annotations.ImageAnnotationLink \N 5814 16093 INSERT -35 260 ome.model.containers.DatasetImageLink \N 5814 16094 INSERT -35 260 ome.model.core.Pixels \N 5814 16095 INSERT -35 292 ome.model.acquisition.DetectorSettings \N 5814 16096 INSERT -35 260 ome.model.acquisition.LightPath \N 5814 16097 INSERT -35 260 ome.model.acquisition.LightPathEmissionFilterLink \N 5814 16098 INSERT -35 260 ome.model.acquisition.LightSettings \N 5814 16099 INSERT -35 392 ome.model.core.LogicalChannel \N 5814 16100 INSERT -35 392 ome.model.core.Channel \N 5814 16101 INSERT -35 6916 ome.model.core.PlaneInfo \N 5814 16102 INSERT -35 6917 ome.model.core.PlaneInfo \N 5814 16103 INSERT -35 6918 ome.model.core.PlaneInfo \N 5814 16104 INSERT -35 6919 ome.model.core.PlaneInfo \N 5814 16105 INSERT -35 6920 ome.model.core.PlaneInfo \N 5814 16106 INSERT -35 6921 ome.model.core.PlaneInfo \N 5814 16107 INSERT -35 6922 ome.model.core.PlaneInfo \N 5814 16108 INSERT -35 6923 ome.model.core.PlaneInfo \N 5814 16109 INSERT -35 6924 ome.model.core.PlaneInfo \N 5814 16110 INSERT -35 6925 ome.model.core.PlaneInfo \N 5814 16111 INSERT -35 6926 ome.model.core.PlaneInfo \N 5814 16112 INSERT -35 6927 ome.model.core.PlaneInfo \N 5814 16113 INSERT -35 6928 ome.model.core.PlaneInfo \N 5814 16114 INSERT -35 6929 ome.model.core.PlaneInfo \N 5814 16115 INSERT -35 6930 ome.model.core.PlaneInfo \N 5814 16116 INSERT -35 6931 ome.model.core.PlaneInfo \N 5814 16117 INSERT -35 6932 ome.model.core.PlaneInfo \N 5814 16118 INSERT -35 6933 ome.model.core.PlaneInfo \N 5814 16119 INSERT -35 6934 ome.model.core.PlaneInfo \N 5814 16120 INSERT -35 6935 ome.model.core.PlaneInfo \N 5814 16121 INSERT -35 28 ome.model.roi.Roi \N 5814 16122 INSERT -35 55 ome.model.roi.Label \N 5814 16123 INSERT -35 56 ome.model.roi.Polygon \N 5814 16124 INSERT -35 211 ome.model.acquisition.Microscope \N 5814 16125 INSERT -35 261 ome.model.acquisition.Instrument \N 5814 16126 INSERT -35 293 ome.model.acquisition.Detector \N 5814 16127 INSERT -35 641 ome.model.acquisition.TransmittanceRange \N 5814 16128 INSERT -35 641 ome.model.acquisition.Filter \N 5814 16129 INSERT -35 642 ome.model.acquisition.TransmittanceRange \N 5814 16130 INSERT -35 642 ome.model.acquisition.Filter \N 5814 16131 INSERT -35 643 ome.model.acquisition.TransmittanceRange \N 5814 16132 INSERT -35 643 ome.model.acquisition.Filter \N 5814 16133 INSERT -35 644 ome.model.acquisition.TransmittanceRange \N 5814 16134 INSERT -35 644 ome.model.acquisition.Filter \N 5814 16135 INSERT -35 1061 ome.model.acquisition.Laser \N 5814 16136 INSERT -35 1062 ome.model.acquisition.Laser \N 5814 16137 INSERT -35 1063 ome.model.acquisition.Laser \N 5814 16138 INSERT -35 1064 ome.model.acquisition.Laser \N 5814 16139 INSERT -35 1065 ome.model.acquisition.Laser \N 5814 16140 INSERT -35 1066 ome.model.acquisition.Laser \N 5814 16141 INSERT -35 261 ome.model.acquisition.Objective \N 5814 16142 INSERT -35 261 ome.model.acquisition.ObjectiveSettings \N 5814 16143 INSERT -35 261 ome.model.core.Image \N 5814 16144 INSERT -35 311 ome.model.core.OriginalFile \N 5814 16145 INSERT -35 311 ome.model.annotations.FileAnnotation \N 5814 16146 INSERT -35 361 ome.model.annotations.ImageAnnotationLink \N 5814 16147 INSERT -35 261 ome.model.containers.DatasetImageLink \N 5814 16148 INSERT -35 261 ome.model.core.Pixels \N 5814 16149 INSERT -35 293 ome.model.acquisition.DetectorSettings \N 5814 16150 INSERT -35 261 ome.model.acquisition.LightPath \N 5814 16151 INSERT -35 261 ome.model.acquisition.LightPathEmissionFilterLink \N 5814 16152 INSERT -35 261 ome.model.acquisition.LightSettings \N 5814 16153 INSERT -35 393 ome.model.core.LogicalChannel \N 5814 16154 INSERT -35 393 ome.model.core.Channel \N 5814 16155 INSERT -35 6936 ome.model.core.PlaneInfo \N 5814 16156 INSERT -35 212 ome.model.acquisition.Microscope \N 5814 16157 INSERT -35 262 ome.model.acquisition.Instrument \N 5814 16158 INSERT -35 294 ome.model.acquisition.Detector \N 5814 16159 INSERT -35 645 ome.model.acquisition.TransmittanceRange \N 5814 16160 INSERT -35 645 ome.model.acquisition.Filter \N 5814 16161 INSERT -35 646 ome.model.acquisition.TransmittanceRange \N 5814 16162 INSERT -35 646 ome.model.acquisition.Filter \N 5814 16163 INSERT -35 647 ome.model.acquisition.TransmittanceRange \N 5814 16164 INSERT -35 647 ome.model.acquisition.Filter \N 5814 16165 INSERT -35 648 ome.model.acquisition.TransmittanceRange \N 5814 16166 INSERT -35 648 ome.model.acquisition.Filter \N 5814 16167 INSERT -35 1067 ome.model.acquisition.Laser \N 5814 16168 INSERT -35 1068 ome.model.acquisition.Laser \N 5814 16169 INSERT -35 1069 ome.model.acquisition.Laser \N 5814 16170 INSERT -35 1070 ome.model.acquisition.Laser \N 5814 16171 INSERT -35 1071 ome.model.acquisition.Laser \N 5814 16172 INSERT -35 1072 ome.model.acquisition.Laser \N 5814 16173 INSERT -35 262 ome.model.acquisition.Objective \N 5814 16174 INSERT -35 262 ome.model.acquisition.ObjectiveSettings \N 5814 16175 INSERT -35 262 ome.model.core.Image \N 5814 16176 INSERT -35 312 ome.model.core.OriginalFile \N 5814 16177 INSERT -35 312 ome.model.annotations.FileAnnotation \N 5814 16178 INSERT -35 362 ome.model.annotations.ImageAnnotationLink \N 5814 16179 INSERT -35 262 ome.model.containers.DatasetImageLink \N 5814 16180 INSERT -35 262 ome.model.core.Pixels \N 5814 16181 INSERT -35 294 ome.model.acquisition.DetectorSettings \N 5814 16182 INSERT -35 262 ome.model.acquisition.LightPath \N 5814 16183 INSERT -35 262 ome.model.acquisition.LightPathEmissionFilterLink \N 5814 16184 INSERT -35 262 ome.model.acquisition.LightSettings \N 5814 16185 INSERT -35 394 ome.model.core.LogicalChannel \N 5814 16186 INSERT -35 394 ome.model.core.Channel \N 5814 16187 INSERT -35 6937 ome.model.core.PlaneInfo \N 5814 16188 INSERT -35 6938 ome.model.core.PlaneInfo \N 5814 16189 INSERT -35 6939 ome.model.core.PlaneInfo \N 5814 16190 INSERT -35 6940 ome.model.core.PlaneInfo \N 5814 16191 INSERT -35 6941 ome.model.core.PlaneInfo \N 5814 16192 INSERT -35 6942 ome.model.core.PlaneInfo \N 5814 16193 INSERT -35 6943 ome.model.core.PlaneInfo \N 5814 16194 INSERT -35 6944 ome.model.core.PlaneInfo \N 5814 16195 INSERT -35 6945 ome.model.core.PlaneInfo \N 5814 16196 INSERT -35 6946 ome.model.core.PlaneInfo \N 5814 16197 INSERT -35 6947 ome.model.core.PlaneInfo \N 5814 16198 INSERT -35 6948 ome.model.core.PlaneInfo \N 5814 16199 INSERT -35 6949 ome.model.core.PlaneInfo \N 5814 16200 INSERT -35 6950 ome.model.core.PlaneInfo \N 5814 16201 INSERT -35 6951 ome.model.core.PlaneInfo \N 5814 16202 INSERT -35 6952 ome.model.core.PlaneInfo \N 5814 16203 INSERT -35 6953 ome.model.core.PlaneInfo \N 5814 16204 INSERT -35 6954 ome.model.core.PlaneInfo \N 5814 16205 INSERT -35 6955 ome.model.core.PlaneInfo \N 5814 16206 INSERT -35 6956 ome.model.core.PlaneInfo \N 5814 16207 UPDATE -35 260 ome.model.core.Pixels \N 5815 16208 UPDATE -35 259 ome.model.core.Pixels \N 5816 16209 UPDATE -35 261 ome.model.core.Pixels \N 5816 16210 UPDATE -35 262 ome.model.core.Pixels \N 5816 16211 UPDATE -35 260 ome.model.core.Pixels \N 5816 16212 INSERT -35 391 ome.model.stats.StatsInfo \N 5817 16213 INSERT -35 392 ome.model.stats.StatsInfo \N 5817 16214 INSERT -35 393 ome.model.stats.StatsInfo \N 5817 16215 INSERT -35 394 ome.model.stats.StatsInfo \N 5817 16216 UPDATE -35 391 ome.model.core.Channel \N 5817 16217 UPDATE -35 393 ome.model.core.Channel \N 5817 16218 UPDATE -35 394 ome.model.core.Channel \N 5817 16219 UPDATE -35 392 ome.model.core.Channel \N 5817 16220 INSERT -35 313 ome.model.display.QuantumDef \N 5818 16221 INSERT -35 313 ome.model.display.RenderingDef \N 5818 16222 INSERT -35 449 ome.model.display.ChannelBinding \N 5818 16223 INSERT -35 314 ome.model.display.QuantumDef \N 5818 16224 INSERT -35 314 ome.model.display.RenderingDef \N 5818 16225 INSERT -35 450 ome.model.display.ChannelBinding \N 5818 16226 INSERT -35 315 ome.model.display.QuantumDef \N 5818 16227 INSERT -35 315 ome.model.display.RenderingDef \N 5818 16228 INSERT -35 451 ome.model.display.ChannelBinding \N 5818 16229 INSERT -35 316 ome.model.display.QuantumDef \N 5818 16230 INSERT -35 316 ome.model.display.RenderingDef \N 5818 16231 INSERT -35 452 ome.model.display.ChannelBinding \N 5818 16232 INSERT -35 259 ome.model.display.Thumbnail \N 5819 16233 INSERT -35 260 ome.model.display.Thumbnail \N 5819 16234 INSERT -35 261 ome.model.display.Thumbnail \N 5819 16235 INSERT -35 262 ome.model.display.Thumbnail \N 5819 16236 UPDATE -35 310 ome.model.core.OriginalFile \N 5821 16237 INSERT -35 213 ome.model.acquisition.Microscope \N 5837 16238 INSERT -35 263 ome.model.acquisition.Instrument \N 5837 16239 INSERT -35 295 ome.model.acquisition.Detector \N 5837 16240 INSERT -35 649 ome.model.acquisition.TransmittanceRange \N 5837 16241 INSERT -35 649 ome.model.acquisition.Filter \N 5837 16242 INSERT -35 650 ome.model.acquisition.TransmittanceRange \N 5837 16243 INSERT -35 650 ome.model.acquisition.Filter \N 5837 16244 INSERT -35 651 ome.model.acquisition.TransmittanceRange \N 5837 16245 INSERT -35 651 ome.model.acquisition.Filter \N 5837 16246 INSERT -35 652 ome.model.acquisition.TransmittanceRange \N 5837 16247 INSERT -35 652 ome.model.acquisition.Filter \N 5837 16248 INSERT -35 1073 ome.model.acquisition.Laser \N 5837 16249 INSERT -35 1074 ome.model.acquisition.Laser \N 5837 16250 INSERT -35 1075 ome.model.acquisition.Laser \N 5837 16251 INSERT -35 1076 ome.model.acquisition.Laser \N 5837 16252 INSERT -35 1077 ome.model.acquisition.Laser \N 5837 16253 INSERT -35 1078 ome.model.acquisition.Laser \N 5837 16254 INSERT -35 263 ome.model.acquisition.Objective \N 5837 16255 INSERT -35 263 ome.model.acquisition.ObjectiveSettings \N 5837 16256 INSERT -35 263 ome.model.core.Image \N 5837 16257 INSERT -35 313 ome.model.core.OriginalFile \N 5837 16258 INSERT -35 313 ome.model.annotations.FileAnnotation \N 5837 16259 INSERT -35 363 ome.model.annotations.ImageAnnotationLink \N 5837 16260 INSERT -35 263 ome.model.containers.DatasetImageLink \N 5837 16261 INSERT -35 263 ome.model.core.Pixels \N 5837 16262 INSERT -35 295 ome.model.acquisition.DetectorSettings \N 5837 16263 INSERT -35 263 ome.model.acquisition.LightPath \N 5837 16264 INSERT -35 263 ome.model.acquisition.LightPathEmissionFilterLink \N 5837 16265 INSERT -35 263 ome.model.acquisition.LightSettings \N 5837 16266 INSERT -35 395 ome.model.core.LogicalChannel \N 5837 16267 INSERT -35 395 ome.model.core.Channel \N 5837 16268 INSERT -35 6957 ome.model.core.PlaneInfo \N 5837 16269 INSERT -35 6958 ome.model.core.PlaneInfo \N 5837 16270 INSERT -35 6959 ome.model.core.PlaneInfo \N 5837 16271 INSERT -35 6960 ome.model.core.PlaneInfo \N 5837 16272 INSERT -35 6961 ome.model.core.PlaneInfo \N 5837 16273 INSERT -35 214 ome.model.acquisition.Microscope \N 5837 16274 INSERT -35 264 ome.model.acquisition.Instrument \N 5837 16275 INSERT -35 296 ome.model.acquisition.Detector \N 5837 16276 INSERT -35 653 ome.model.acquisition.TransmittanceRange \N 5837 16277 INSERT -35 653 ome.model.acquisition.Filter \N 5837 16278 INSERT -35 654 ome.model.acquisition.TransmittanceRange \N 5837 16279 INSERT -35 654 ome.model.acquisition.Filter \N 5837 16280 INSERT -35 655 ome.model.acquisition.TransmittanceRange \N 5837 16281 INSERT -35 655 ome.model.acquisition.Filter \N 5837 16282 INSERT -35 656 ome.model.acquisition.TransmittanceRange \N 5837 16283 INSERT -35 656 ome.model.acquisition.Filter \N 5837 16284 INSERT -35 1079 ome.model.acquisition.Laser \N 5837 16285 INSERT -35 1080 ome.model.acquisition.Laser \N 5837 16286 INSERT -35 1081 ome.model.acquisition.Laser \N 5837 16287 INSERT -35 1082 ome.model.acquisition.Laser \N 5837 16288 INSERT -35 1083 ome.model.acquisition.Laser \N 5837 16289 INSERT -35 1084 ome.model.acquisition.Laser \N 5837 16290 INSERT -35 264 ome.model.acquisition.Objective \N 5837 16291 INSERT -35 264 ome.model.acquisition.ObjectiveSettings \N 5837 16292 INSERT -35 264 ome.model.core.Image \N 5837 16293 INSERT -35 314 ome.model.core.OriginalFile \N 5837 16294 INSERT -35 314 ome.model.annotations.FileAnnotation \N 5837 16295 INSERT -35 364 ome.model.annotations.ImageAnnotationLink \N 5837 16296 INSERT -35 264 ome.model.containers.DatasetImageLink \N 5837 16297 INSERT -35 264 ome.model.core.Pixels \N 5837 16298 INSERT -35 296 ome.model.acquisition.DetectorSettings \N 5837 16299 INSERT -35 264 ome.model.acquisition.LightPath \N 5837 16300 INSERT -35 264 ome.model.acquisition.LightPathEmissionFilterLink \N 5837 16301 INSERT -35 264 ome.model.acquisition.LightSettings \N 5837 16302 INSERT -35 396 ome.model.core.LogicalChannel \N 5837 16303 INSERT -35 396 ome.model.core.Channel \N 5837 16304 INSERT -35 6962 ome.model.core.PlaneInfo \N 5837 16305 INSERT -35 6963 ome.model.core.PlaneInfo \N 5837 16306 INSERT -35 6964 ome.model.core.PlaneInfo \N 5837 16307 INSERT -35 6965 ome.model.core.PlaneInfo \N 5837 16308 INSERT -35 6966 ome.model.core.PlaneInfo \N 5837 16309 INSERT -35 6967 ome.model.core.PlaneInfo \N 5837 16310 INSERT -35 6968 ome.model.core.PlaneInfo \N 5837 16311 INSERT -35 6969 ome.model.core.PlaneInfo \N 5837 16312 INSERT -35 6970 ome.model.core.PlaneInfo \N 5837 16313 INSERT -35 6971 ome.model.core.PlaneInfo \N 5837 16314 INSERT -35 6972 ome.model.core.PlaneInfo \N 5837 16315 INSERT -35 6973 ome.model.core.PlaneInfo \N 5837 16316 INSERT -35 6974 ome.model.core.PlaneInfo \N 5837 16317 INSERT -35 6975 ome.model.core.PlaneInfo \N 5837 16318 INSERT -35 6976 ome.model.core.PlaneInfo \N 5837 16319 INSERT -35 6977 ome.model.core.PlaneInfo \N 5837 16320 INSERT -35 6978 ome.model.core.PlaneInfo \N 5837 16321 INSERT -35 6979 ome.model.core.PlaneInfo \N 5837 16322 INSERT -35 6980 ome.model.core.PlaneInfo \N 5837 16323 INSERT -35 6981 ome.model.core.PlaneInfo \N 5837 16324 INSERT -35 29 ome.model.roi.Roi \N 5837 16325 INSERT -35 57 ome.model.roi.Label \N 5837 16326 INSERT -35 58 ome.model.roi.Polygon \N 5837 16327 INSERT -35 215 ome.model.acquisition.Microscope \N 5837 16328 INSERT -35 265 ome.model.acquisition.Instrument \N 5837 16329 INSERT -35 297 ome.model.acquisition.Detector \N 5837 16330 INSERT -35 657 ome.model.acquisition.TransmittanceRange \N 5837 16331 INSERT -35 657 ome.model.acquisition.Filter \N 5837 16332 INSERT -35 658 ome.model.acquisition.TransmittanceRange \N 5837 16333 INSERT -35 658 ome.model.acquisition.Filter \N 5837 16334 INSERT -35 659 ome.model.acquisition.TransmittanceRange \N 5837 16335 INSERT -35 659 ome.model.acquisition.Filter \N 5837 16336 INSERT -35 660 ome.model.acquisition.TransmittanceRange \N 5837 16337 INSERT -35 660 ome.model.acquisition.Filter \N 5837 16338 INSERT -35 1085 ome.model.acquisition.Laser \N 5837 16339 INSERT -35 1086 ome.model.acquisition.Laser \N 5837 16340 INSERT -35 1087 ome.model.acquisition.Laser \N 5837 16341 INSERT -35 1088 ome.model.acquisition.Laser \N 5837 16342 INSERT -35 1089 ome.model.acquisition.Laser \N 5837 16343 INSERT -35 1090 ome.model.acquisition.Laser \N 5837 16344 INSERT -35 265 ome.model.acquisition.Objective \N 5837 16345 INSERT -35 265 ome.model.acquisition.ObjectiveSettings \N 5837 16346 INSERT -35 265 ome.model.core.Image \N 5837 16347 INSERT -35 315 ome.model.core.OriginalFile \N 5837 16348 INSERT -35 315 ome.model.annotations.FileAnnotation \N 5837 16349 INSERT -35 365 ome.model.annotations.ImageAnnotationLink \N 5837 16350 INSERT -35 265 ome.model.containers.DatasetImageLink \N 5837 16351 INSERT -35 265 ome.model.core.Pixels \N 5837 16352 INSERT -35 297 ome.model.acquisition.DetectorSettings \N 5837 16353 INSERT -35 265 ome.model.acquisition.LightPath \N 5837 16354 INSERT -35 265 ome.model.acquisition.LightPathEmissionFilterLink \N 5837 16355 INSERT -35 265 ome.model.acquisition.LightSettings \N 5837 16356 INSERT -35 397 ome.model.core.LogicalChannel \N 5837 16357 INSERT -35 397 ome.model.core.Channel \N 5837 16358 INSERT -35 6982 ome.model.core.PlaneInfo \N 5837 16359 INSERT -35 216 ome.model.acquisition.Microscope \N 5837 16360 INSERT -35 266 ome.model.acquisition.Instrument \N 5837 16361 INSERT -35 298 ome.model.acquisition.Detector \N 5837 16362 INSERT -35 661 ome.model.acquisition.TransmittanceRange \N 5837 16363 INSERT -35 661 ome.model.acquisition.Filter \N 5837 16364 INSERT -35 662 ome.model.acquisition.TransmittanceRange \N 5837 16365 INSERT -35 662 ome.model.acquisition.Filter \N 5837 16366 INSERT -35 663 ome.model.acquisition.TransmittanceRange \N 5837 16367 INSERT -35 663 ome.model.acquisition.Filter \N 5837 16368 INSERT -35 664 ome.model.acquisition.TransmittanceRange \N 5837 16369 INSERT -35 664 ome.model.acquisition.Filter \N 5837 16370 INSERT -35 1091 ome.model.acquisition.Laser \N 5837 16371 INSERT -35 1092 ome.model.acquisition.Laser \N 5837 16372 INSERT -35 1093 ome.model.acquisition.Laser \N 5837 16373 INSERT -35 1094 ome.model.acquisition.Laser \N 5837 16374 INSERT -35 1095 ome.model.acquisition.Laser \N 5837 16375 INSERT -35 1096 ome.model.acquisition.Laser \N 5837 16376 INSERT -35 266 ome.model.acquisition.Objective \N 5837 16377 INSERT -35 266 ome.model.acquisition.ObjectiveSettings \N 5837 16378 INSERT -35 266 ome.model.core.Image \N 5837 16379 INSERT -35 316 ome.model.core.OriginalFile \N 5837 16380 INSERT -35 316 ome.model.annotations.FileAnnotation \N 5837 16381 INSERT -35 366 ome.model.annotations.ImageAnnotationLink \N 5837 16382 INSERT -35 266 ome.model.containers.DatasetImageLink \N 5837 16383 INSERT -35 266 ome.model.core.Pixels \N 5837 16384 INSERT -35 298 ome.model.acquisition.DetectorSettings \N 5837 16385 INSERT -35 266 ome.model.acquisition.LightPath \N 5837 16386 INSERT -35 266 ome.model.acquisition.LightPathEmissionFilterLink \N 5837 16387 INSERT -35 266 ome.model.acquisition.LightSettings \N 5837 16388 INSERT -35 398 ome.model.core.LogicalChannel \N 5837 16389 INSERT -35 398 ome.model.core.Channel \N 5837 16390 INSERT -35 6983 ome.model.core.PlaneInfo \N 5837 16391 INSERT -35 6984 ome.model.core.PlaneInfo \N 5837 16392 INSERT -35 6985 ome.model.core.PlaneInfo \N 5837 16393 INSERT -35 6986 ome.model.core.PlaneInfo \N 5837 16394 INSERT -35 6987 ome.model.core.PlaneInfo \N 5837 16395 INSERT -35 6988 ome.model.core.PlaneInfo \N 5837 16396 INSERT -35 6989 ome.model.core.PlaneInfo \N 5837 16397 INSERT -35 6990 ome.model.core.PlaneInfo \N 5837 16398 INSERT -35 6991 ome.model.core.PlaneInfo \N 5837 16399 INSERT -35 6992 ome.model.core.PlaneInfo \N 5837 16400 INSERT -35 6993 ome.model.core.PlaneInfo \N 5837 16401 INSERT -35 6994 ome.model.core.PlaneInfo \N 5837 16402 INSERT -35 6995 ome.model.core.PlaneInfo \N 5837 16403 INSERT -35 6996 ome.model.core.PlaneInfo \N 5837 16404 INSERT -35 6997 ome.model.core.PlaneInfo \N 5837 16405 INSERT -35 6998 ome.model.core.PlaneInfo \N 5837 16406 INSERT -35 6999 ome.model.core.PlaneInfo \N 5837 16407 INSERT -35 7000 ome.model.core.PlaneInfo \N 5837 16408 INSERT -35 7001 ome.model.core.PlaneInfo \N 5837 16409 INSERT -35 7002 ome.model.core.PlaneInfo \N 5837 16410 UPDATE -35 264 ome.model.core.Pixels \N 5838 16411 UPDATE -35 263 ome.model.core.Pixels \N 5840 16412 UPDATE -35 265 ome.model.core.Pixels \N 5840 16413 UPDATE -35 266 ome.model.core.Pixels \N 5840 16414 UPDATE -35 264 ome.model.core.Pixels \N 5840 16415 INSERT -35 395 ome.model.stats.StatsInfo \N 5841 16416 INSERT -35 396 ome.model.stats.StatsInfo \N 5841 16417 INSERT -35 397 ome.model.stats.StatsInfo \N 5841 16418 INSERT -35 398 ome.model.stats.StatsInfo \N 5841 16419 UPDATE -35 395 ome.model.core.Channel \N 5841 16420 UPDATE -35 397 ome.model.core.Channel \N 5841 16421 UPDATE -35 398 ome.model.core.Channel \N 5841 16422 UPDATE -35 396 ome.model.core.Channel \N 5841 16423 INSERT -35 317 ome.model.display.QuantumDef \N 5844 16424 INSERT -35 317 ome.model.display.RenderingDef \N 5844 16425 INSERT -35 453 ome.model.display.ChannelBinding \N 5844 16426 INSERT -35 318 ome.model.display.QuantumDef \N 5844 16427 INSERT -35 318 ome.model.display.RenderingDef \N 5844 16428 INSERT -35 454 ome.model.display.ChannelBinding \N 5844 16429 INSERT -35 319 ome.model.display.QuantumDef \N 5844 16430 INSERT -35 319 ome.model.display.RenderingDef \N 5844 16431 INSERT -35 455 ome.model.display.ChannelBinding \N 5844 16432 INSERT -35 320 ome.model.display.QuantumDef \N 5844 16433 INSERT -35 320 ome.model.display.RenderingDef \N 5844 16434 INSERT -35 456 ome.model.display.ChannelBinding \N 5844 16435 INSERT -35 263 ome.model.display.Thumbnail \N 5845 16436 INSERT -35 264 ome.model.display.Thumbnail \N 5845 16437 INSERT -35 265 ome.model.display.Thumbnail \N 5845 16438 INSERT -35 266 ome.model.display.Thumbnail \N 5845 16439 UPDATE -35 314 ome.model.core.OriginalFile \N 5847 16440 INSERT -35 217 ome.model.acquisition.Microscope \N 5864 16441 INSERT -35 267 ome.model.acquisition.Instrument \N 5864 16442 INSERT -35 299 ome.model.acquisition.Detector \N 5864 16443 INSERT -35 665 ome.model.acquisition.TransmittanceRange \N 5864 16444 INSERT -35 665 ome.model.acquisition.Filter \N 5864 16445 INSERT -35 666 ome.model.acquisition.TransmittanceRange \N 5864 16446 INSERT -35 666 ome.model.acquisition.Filter \N 5864 16447 INSERT -35 667 ome.model.acquisition.TransmittanceRange \N 5864 16448 INSERT -35 667 ome.model.acquisition.Filter \N 5864 16449 INSERT -35 668 ome.model.acquisition.TransmittanceRange \N 5864 16450 INSERT -35 668 ome.model.acquisition.Filter \N 5864 16451 INSERT -35 1097 ome.model.acquisition.Laser \N 5864 16452 INSERT -35 1098 ome.model.acquisition.Laser \N 5864 16453 INSERT -35 1099 ome.model.acquisition.Laser \N 5864 16454 INSERT -35 1100 ome.model.acquisition.Laser \N 5864 16455 INSERT -35 1101 ome.model.acquisition.Laser \N 5864 16456 INSERT -35 1102 ome.model.acquisition.Laser \N 5864 16457 INSERT -35 267 ome.model.acquisition.Objective \N 5864 16458 INSERT -35 267 ome.model.acquisition.ObjectiveSettings \N 5864 16459 INSERT -35 267 ome.model.core.Image \N 5864 16460 INSERT -35 317 ome.model.core.OriginalFile \N 5864 16461 INSERT -35 317 ome.model.annotations.FileAnnotation \N 5864 16462 INSERT -35 367 ome.model.annotations.ImageAnnotationLink \N 5864 16463 INSERT -35 267 ome.model.containers.DatasetImageLink \N 5864 16464 INSERT -35 267 ome.model.core.Pixels \N 5864 16465 INSERT -35 299 ome.model.acquisition.DetectorSettings \N 5864 16466 INSERT -35 267 ome.model.acquisition.LightPath \N 5864 16467 INSERT -35 267 ome.model.acquisition.LightPathEmissionFilterLink \N 5864 16468 INSERT -35 267 ome.model.acquisition.LightSettings \N 5864 16469 INSERT -35 399 ome.model.core.LogicalChannel \N 5864 16470 INSERT -35 399 ome.model.core.Channel \N 5864 16471 INSERT -35 7003 ome.model.core.PlaneInfo \N 5864 16472 INSERT -35 7004 ome.model.core.PlaneInfo \N 5864 16473 INSERT -35 7005 ome.model.core.PlaneInfo \N 5864 16474 INSERT -35 7006 ome.model.core.PlaneInfo \N 5864 16475 INSERT -35 7007 ome.model.core.PlaneInfo \N 5864 16476 INSERT -35 218 ome.model.acquisition.Microscope \N 5864 16477 INSERT -35 268 ome.model.acquisition.Instrument \N 5864 16478 INSERT -35 300 ome.model.acquisition.Detector \N 5864 16479 INSERT -35 669 ome.model.acquisition.TransmittanceRange \N 5864 16480 INSERT -35 669 ome.model.acquisition.Filter \N 5864 16481 INSERT -35 670 ome.model.acquisition.TransmittanceRange \N 5864 16482 INSERT -35 670 ome.model.acquisition.Filter \N 5864 16483 INSERT -35 671 ome.model.acquisition.TransmittanceRange \N 5864 16484 INSERT -35 671 ome.model.acquisition.Filter \N 5864 16485 INSERT -35 672 ome.model.acquisition.TransmittanceRange \N 5864 16486 INSERT -35 672 ome.model.acquisition.Filter \N 5864 16487 INSERT -35 1103 ome.model.acquisition.Laser \N 5864 16488 INSERT -35 1104 ome.model.acquisition.Laser \N 5864 16489 INSERT -35 1105 ome.model.acquisition.Laser \N 5864 16490 INSERT -35 1106 ome.model.acquisition.Laser \N 5864 16491 INSERT -35 1107 ome.model.acquisition.Laser \N 5864 16492 INSERT -35 1108 ome.model.acquisition.Laser \N 5864 16493 INSERT -35 268 ome.model.acquisition.Objective \N 5864 16494 INSERT -35 268 ome.model.acquisition.ObjectiveSettings \N 5864 16495 INSERT -35 268 ome.model.core.Image \N 5864 16496 INSERT -35 318 ome.model.core.OriginalFile \N 5864 16497 INSERT -35 318 ome.model.annotations.FileAnnotation \N 5864 16498 INSERT -35 368 ome.model.annotations.ImageAnnotationLink \N 5864 16499 INSERT -35 268 ome.model.containers.DatasetImageLink \N 5864 16500 INSERT -35 268 ome.model.core.Pixels \N 5864 16501 INSERT -35 300 ome.model.acquisition.DetectorSettings \N 5864 16502 INSERT -35 268 ome.model.acquisition.LightPath \N 5864 16503 INSERT -35 268 ome.model.acquisition.LightPathEmissionFilterLink \N 5864 16504 INSERT -35 268 ome.model.acquisition.LightSettings \N 5864 16505 INSERT -35 400 ome.model.core.LogicalChannel \N 5864 16506 INSERT -35 400 ome.model.core.Channel \N 5864 16507 INSERT -35 7008 ome.model.core.PlaneInfo \N 5864 16508 INSERT -35 7009 ome.model.core.PlaneInfo \N 5864 16509 INSERT -35 7010 ome.model.core.PlaneInfo \N 5864 16510 INSERT -35 7011 ome.model.core.PlaneInfo \N 5864 16511 INSERT -35 7012 ome.model.core.PlaneInfo \N 5864 16512 INSERT -35 7013 ome.model.core.PlaneInfo \N 5864 16513 INSERT -35 7014 ome.model.core.PlaneInfo \N 5864 16514 INSERT -35 7015 ome.model.core.PlaneInfo \N 5864 16515 INSERT -35 7016 ome.model.core.PlaneInfo \N 5864 16516 INSERT -35 7017 ome.model.core.PlaneInfo \N 5864 16517 INSERT -35 7018 ome.model.core.PlaneInfo \N 5864 16518 INSERT -35 7019 ome.model.core.PlaneInfo \N 5864 16519 INSERT -35 7020 ome.model.core.PlaneInfo \N 5864 16520 INSERT -35 7021 ome.model.core.PlaneInfo \N 5864 16521 INSERT -35 7022 ome.model.core.PlaneInfo \N 5864 16522 INSERT -35 7023 ome.model.core.PlaneInfo \N 5864 16523 INSERT -35 7024 ome.model.core.PlaneInfo \N 5864 16524 INSERT -35 7025 ome.model.core.PlaneInfo \N 5864 16525 INSERT -35 7026 ome.model.core.PlaneInfo \N 5864 16526 INSERT -35 7027 ome.model.core.PlaneInfo \N 5864 16527 INSERT -35 30 ome.model.roi.Roi \N 5864 16528 INSERT -35 59 ome.model.roi.Label \N 5864 16529 INSERT -35 60 ome.model.roi.Polygon \N 5864 16530 INSERT -35 219 ome.model.acquisition.Microscope \N 5864 16531 INSERT -35 269 ome.model.acquisition.Instrument \N 5864 16532 INSERT -35 301 ome.model.acquisition.Detector \N 5864 16533 INSERT -35 673 ome.model.acquisition.TransmittanceRange \N 5864 16534 INSERT -35 673 ome.model.acquisition.Filter \N 5864 16535 INSERT -35 674 ome.model.acquisition.TransmittanceRange \N 5864 16536 INSERT -35 674 ome.model.acquisition.Filter \N 5864 16537 INSERT -35 675 ome.model.acquisition.TransmittanceRange \N 5864 16538 INSERT -35 675 ome.model.acquisition.Filter \N 5864 16539 INSERT -35 676 ome.model.acquisition.TransmittanceRange \N 5864 16540 INSERT -35 676 ome.model.acquisition.Filter \N 5864 16541 INSERT -35 1109 ome.model.acquisition.Laser \N 5864 16542 INSERT -35 1110 ome.model.acquisition.Laser \N 5864 16543 INSERT -35 1111 ome.model.acquisition.Laser \N 5864 16544 INSERT -35 1112 ome.model.acquisition.Laser \N 5864 16545 INSERT -35 1113 ome.model.acquisition.Laser \N 5864 16546 INSERT -35 1114 ome.model.acquisition.Laser \N 5864 16547 INSERT -35 269 ome.model.acquisition.Objective \N 5864 16548 INSERT -35 269 ome.model.acquisition.ObjectiveSettings \N 5864 16549 INSERT -35 269 ome.model.core.Image \N 5864 16550 INSERT -35 319 ome.model.core.OriginalFile \N 5864 16551 INSERT -35 319 ome.model.annotations.FileAnnotation \N 5864 16552 INSERT -35 369 ome.model.annotations.ImageAnnotationLink \N 5864 16553 INSERT -35 269 ome.model.containers.DatasetImageLink \N 5864 16554 INSERT -35 269 ome.model.core.Pixels \N 5864 16555 INSERT -35 301 ome.model.acquisition.DetectorSettings \N 5864 16556 INSERT -35 269 ome.model.acquisition.LightPath \N 5864 16557 INSERT -35 269 ome.model.acquisition.LightPathEmissionFilterLink \N 5864 16558 INSERT -35 269 ome.model.acquisition.LightSettings \N 5864 16559 INSERT -35 401 ome.model.core.LogicalChannel \N 5864 16560 INSERT -35 401 ome.model.core.Channel \N 5864 16561 INSERT -35 7028 ome.model.core.PlaneInfo \N 5864 16562 INSERT -35 220 ome.model.acquisition.Microscope \N 5864 16563 INSERT -35 270 ome.model.acquisition.Instrument \N 5864 16564 INSERT -35 302 ome.model.acquisition.Detector \N 5864 16565 INSERT -35 677 ome.model.acquisition.TransmittanceRange \N 5864 16566 INSERT -35 677 ome.model.acquisition.Filter \N 5864 16567 INSERT -35 678 ome.model.acquisition.TransmittanceRange \N 5864 16568 INSERT -35 678 ome.model.acquisition.Filter \N 5864 16569 INSERT -35 679 ome.model.acquisition.TransmittanceRange \N 5864 16570 INSERT -35 679 ome.model.acquisition.Filter \N 5864 16571 INSERT -35 680 ome.model.acquisition.TransmittanceRange \N 5864 16572 INSERT -35 680 ome.model.acquisition.Filter \N 5864 16573 INSERT -35 1115 ome.model.acquisition.Laser \N 5864 16574 INSERT -35 1116 ome.model.acquisition.Laser \N 5864 16575 INSERT -35 1117 ome.model.acquisition.Laser \N 5864 16576 INSERT -35 1118 ome.model.acquisition.Laser \N 5864 16577 INSERT -35 1119 ome.model.acquisition.Laser \N 5864 16578 INSERT -35 1120 ome.model.acquisition.Laser \N 5864 16579 INSERT -35 270 ome.model.acquisition.Objective \N 5864 16580 INSERT -35 270 ome.model.acquisition.ObjectiveSettings \N 5864 16581 INSERT -35 270 ome.model.core.Image \N 5864 16582 INSERT -35 320 ome.model.core.OriginalFile \N 5864 16583 INSERT -35 320 ome.model.annotations.FileAnnotation \N 5864 16584 INSERT -35 370 ome.model.annotations.ImageAnnotationLink \N 5864 16585 INSERT -35 270 ome.model.containers.DatasetImageLink \N 5864 16586 INSERT -35 270 ome.model.core.Pixels \N 5864 16587 INSERT -35 302 ome.model.acquisition.DetectorSettings \N 5864 16588 INSERT -35 270 ome.model.acquisition.LightPath \N 5864 16589 INSERT -35 270 ome.model.acquisition.LightPathEmissionFilterLink \N 5864 16590 INSERT -35 270 ome.model.acquisition.LightSettings \N 5864 16591 INSERT -35 402 ome.model.core.LogicalChannel \N 5864 16592 INSERT -35 402 ome.model.core.Channel \N 5864 16593 INSERT -35 7029 ome.model.core.PlaneInfo \N 5864 16594 INSERT -35 7030 ome.model.core.PlaneInfo \N 5864 16595 INSERT -35 7031 ome.model.core.PlaneInfo \N 5864 16596 INSERT -35 7032 ome.model.core.PlaneInfo \N 5864 16597 INSERT -35 7033 ome.model.core.PlaneInfo \N 5864 16598 INSERT -35 7034 ome.model.core.PlaneInfo \N 5864 16599 INSERT -35 7035 ome.model.core.PlaneInfo \N 5864 16600 INSERT -35 7036 ome.model.core.PlaneInfo \N 5864 16601 INSERT -35 7037 ome.model.core.PlaneInfo \N 5864 16602 INSERT -35 7038 ome.model.core.PlaneInfo \N 5864 16603 INSERT -35 7039 ome.model.core.PlaneInfo \N 5864 16604 INSERT -35 7040 ome.model.core.PlaneInfo \N 5864 16605 INSERT -35 7041 ome.model.core.PlaneInfo \N 5864 16606 INSERT -35 7042 ome.model.core.PlaneInfo \N 5864 16607 INSERT -35 7043 ome.model.core.PlaneInfo \N 5864 16608 INSERT -35 7044 ome.model.core.PlaneInfo \N 5864 16609 INSERT -35 7045 ome.model.core.PlaneInfo \N 5864 16610 INSERT -35 7046 ome.model.core.PlaneInfo \N 5864 16611 INSERT -35 7047 ome.model.core.PlaneInfo \N 5864 16612 INSERT -35 7048 ome.model.core.PlaneInfo \N 5864 16613 UPDATE -35 268 ome.model.core.Pixels \N 5868 16614 UPDATE -35 267 ome.model.core.Pixels \N 5869 16615 UPDATE -35 269 ome.model.core.Pixels \N 5869 16616 UPDATE -35 270 ome.model.core.Pixels \N 5869 16617 UPDATE -35 268 ome.model.core.Pixels \N 5869 16618 INSERT -35 399 ome.model.stats.StatsInfo \N 5870 16619 INSERT -35 400 ome.model.stats.StatsInfo \N 5870 16620 INSERT -35 401 ome.model.stats.StatsInfo \N 5870 16621 INSERT -35 402 ome.model.stats.StatsInfo \N 5870 16622 UPDATE -35 399 ome.model.core.Channel \N 5870 16623 UPDATE -35 401 ome.model.core.Channel \N 5870 16624 UPDATE -35 402 ome.model.core.Channel \N 5870 16625 UPDATE -35 400 ome.model.core.Channel \N 5870 16626 INSERT -35 321 ome.model.display.QuantumDef \N 5871 16627 INSERT -35 321 ome.model.display.RenderingDef \N 5871 16628 INSERT -35 457 ome.model.display.ChannelBinding \N 5871 16629 INSERT -35 322 ome.model.display.QuantumDef \N 5871 16630 INSERT -35 322 ome.model.display.RenderingDef \N 5871 16631 INSERT -35 458 ome.model.display.ChannelBinding \N 5871 16632 INSERT -35 323 ome.model.display.QuantumDef \N 5871 16633 INSERT -35 323 ome.model.display.RenderingDef \N 5871 16634 INSERT -35 459 ome.model.display.ChannelBinding \N 5871 16635 INSERT -35 324 ome.model.display.QuantumDef \N 5871 16636 INSERT -35 324 ome.model.display.RenderingDef \N 5871 16637 INSERT -35 460 ome.model.display.ChannelBinding \N 5871 16638 INSERT -35 267 ome.model.display.Thumbnail \N 5872 16639 INSERT -35 268 ome.model.display.Thumbnail \N 5872 16640 INSERT -35 269 ome.model.display.Thumbnail \N 5872 16641 INSERT -35 270 ome.model.display.Thumbnail \N 5872 16642 UPDATE -35 318 ome.model.core.OriginalFile \N 5873 16643 INSERT -35 104 ome.model.containers.Dataset \N 5955 16644 INSERT -35 103 ome.model.containers.ProjectDatasetLink \N 5956 16645 INSERT -35 221 ome.model.acquisition.Microscope \N 5962 16646 INSERT -35 271 ome.model.acquisition.Instrument \N 5962 16647 INSERT -35 303 ome.model.acquisition.Detector \N 5962 16648 INSERT -35 681 ome.model.acquisition.TransmittanceRange \N 5962 16649 INSERT -35 681 ome.model.acquisition.Filter \N 5962 16650 INSERT -35 682 ome.model.acquisition.TransmittanceRange \N 5962 16651 INSERT -35 682 ome.model.acquisition.Filter \N 5962 16652 INSERT -35 683 ome.model.acquisition.TransmittanceRange \N 5962 16653 INSERT -35 683 ome.model.acquisition.Filter \N 5962 16654 INSERT -35 684 ome.model.acquisition.TransmittanceRange \N 5962 16655 INSERT -35 684 ome.model.acquisition.Filter \N 5962 16656 INSERT -35 1121 ome.model.acquisition.Laser \N 5962 16657 INSERT -35 1122 ome.model.acquisition.Laser \N 5962 16658 INSERT -35 1123 ome.model.acquisition.Laser \N 5962 16659 INSERT -35 1124 ome.model.acquisition.Laser \N 5962 16660 INSERT -35 1125 ome.model.acquisition.Laser \N 5962 16661 INSERT -35 1126 ome.model.acquisition.Laser \N 5962 16662 INSERT -35 271 ome.model.acquisition.Objective \N 5962 16663 INSERT -35 271 ome.model.acquisition.ObjectiveSettings \N 5962 16664 INSERT -35 271 ome.model.core.Image \N 5962 16665 INSERT -35 321 ome.model.core.OriginalFile \N 5962 16666 INSERT -35 321 ome.model.annotations.FileAnnotation \N 5962 16667 INSERT -35 371 ome.model.annotations.ImageAnnotationLink \N 5962 16668 INSERT -35 271 ome.model.containers.DatasetImageLink \N 5962 16669 INSERT -35 271 ome.model.core.Pixels \N 5962 16670 INSERT -35 303 ome.model.acquisition.DetectorSettings \N 5962 16671 INSERT -35 271 ome.model.acquisition.LightPath \N 5962 16672 INSERT -35 271 ome.model.acquisition.LightPathEmissionFilterLink \N 5962 16673 INSERT -35 271 ome.model.acquisition.LightSettings \N 5962 16674 INSERT -35 403 ome.model.core.LogicalChannel \N 5962 16675 INSERT -35 403 ome.model.core.Channel \N 5962 16676 INSERT -35 7049 ome.model.core.PlaneInfo \N 5962 16677 INSERT -35 7050 ome.model.core.PlaneInfo \N 5962 16678 INSERT -35 7051 ome.model.core.PlaneInfo \N 5962 16679 INSERT -35 7052 ome.model.core.PlaneInfo \N 5962 16680 INSERT -35 7053 ome.model.core.PlaneInfo \N 5962 16681 INSERT -35 222 ome.model.acquisition.Microscope \N 5962 16682 INSERT -35 272 ome.model.acquisition.Instrument \N 5962 16683 INSERT -35 304 ome.model.acquisition.Detector \N 5962 16684 INSERT -35 685 ome.model.acquisition.TransmittanceRange \N 5962 16685 INSERT -35 685 ome.model.acquisition.Filter \N 5962 16686 INSERT -35 686 ome.model.acquisition.TransmittanceRange \N 5962 16687 INSERT -35 686 ome.model.acquisition.Filter \N 5962 16688 INSERT -35 687 ome.model.acquisition.TransmittanceRange \N 5962 16689 INSERT -35 687 ome.model.acquisition.Filter \N 5962 16690 INSERT -35 688 ome.model.acquisition.TransmittanceRange \N 5962 16691 INSERT -35 688 ome.model.acquisition.Filter \N 5962 16692 INSERT -35 1127 ome.model.acquisition.Laser \N 5962 16693 INSERT -35 1128 ome.model.acquisition.Laser \N 5962 16694 INSERT -35 1129 ome.model.acquisition.Laser \N 5962 16695 INSERT -35 1130 ome.model.acquisition.Laser \N 5962 16696 INSERT -35 1131 ome.model.acquisition.Laser \N 5962 16697 INSERT -35 1132 ome.model.acquisition.Laser \N 5962 16698 INSERT -35 272 ome.model.acquisition.Objective \N 5962 16699 INSERT -35 272 ome.model.acquisition.ObjectiveSettings \N 5962 16700 INSERT -35 272 ome.model.core.Image \N 5962 16701 INSERT -35 322 ome.model.core.OriginalFile \N 5962 16702 INSERT -35 322 ome.model.annotations.FileAnnotation \N 5962 16703 INSERT -35 372 ome.model.annotations.ImageAnnotationLink \N 5962 16704 INSERT -35 272 ome.model.containers.DatasetImageLink \N 5962 16705 INSERT -35 272 ome.model.core.Pixels \N 5962 16706 INSERT -35 304 ome.model.acquisition.DetectorSettings \N 5962 16707 INSERT -35 272 ome.model.acquisition.LightPath \N 5962 16708 INSERT -35 272 ome.model.acquisition.LightPathEmissionFilterLink \N 5962 16709 INSERT -35 272 ome.model.acquisition.LightSettings \N 5962 16710 INSERT -35 404 ome.model.core.LogicalChannel \N 5962 16711 INSERT -35 404 ome.model.core.Channel \N 5962 16712 INSERT -35 7054 ome.model.core.PlaneInfo \N 5962 16713 INSERT -35 7055 ome.model.core.PlaneInfo \N 5962 16714 INSERT -35 7056 ome.model.core.PlaneInfo \N 5962 16715 INSERT -35 7057 ome.model.core.PlaneInfo \N 5962 16716 INSERT -35 7058 ome.model.core.PlaneInfo \N 5962 16717 INSERT -35 7059 ome.model.core.PlaneInfo \N 5962 16718 INSERT -35 7060 ome.model.core.PlaneInfo \N 5962 16719 INSERT -35 7061 ome.model.core.PlaneInfo \N 5962 16720 INSERT -35 7062 ome.model.core.PlaneInfo \N 5962 16721 INSERT -35 7063 ome.model.core.PlaneInfo \N 5962 16722 INSERT -35 7064 ome.model.core.PlaneInfo \N 5962 16723 INSERT -35 7065 ome.model.core.PlaneInfo \N 5962 16724 INSERT -35 7066 ome.model.core.PlaneInfo \N 5962 16725 INSERT -35 7067 ome.model.core.PlaneInfo \N 5962 16726 INSERT -35 7068 ome.model.core.PlaneInfo \N 5962 16727 INSERT -35 7069 ome.model.core.PlaneInfo \N 5962 16728 INSERT -35 7070 ome.model.core.PlaneInfo \N 5962 16729 INSERT -35 7071 ome.model.core.PlaneInfo \N 5962 16730 INSERT -35 7072 ome.model.core.PlaneInfo \N 5962 16731 INSERT -35 7073 ome.model.core.PlaneInfo \N 5962 16732 INSERT -35 31 ome.model.roi.Roi \N 5962 16733 INSERT -35 61 ome.model.roi.Label \N 5962 16734 INSERT -35 62 ome.model.roi.Polygon \N 5962 16735 INSERT -35 223 ome.model.acquisition.Microscope \N 5962 16736 INSERT -35 273 ome.model.acquisition.Instrument \N 5962 16737 INSERT -35 305 ome.model.acquisition.Detector \N 5962 16738 INSERT -35 689 ome.model.acquisition.TransmittanceRange \N 5962 16739 INSERT -35 689 ome.model.acquisition.Filter \N 5962 16740 INSERT -35 690 ome.model.acquisition.TransmittanceRange \N 5962 16741 INSERT -35 690 ome.model.acquisition.Filter \N 5962 16742 INSERT -35 691 ome.model.acquisition.TransmittanceRange \N 5962 16743 INSERT -35 691 ome.model.acquisition.Filter \N 5962 16744 INSERT -35 692 ome.model.acquisition.TransmittanceRange \N 5962 16745 INSERT -35 692 ome.model.acquisition.Filter \N 5962 16746 INSERT -35 1133 ome.model.acquisition.Laser \N 5962 16747 INSERT -35 1134 ome.model.acquisition.Laser \N 5962 16748 INSERT -35 1135 ome.model.acquisition.Laser \N 5962 16749 INSERT -35 1136 ome.model.acquisition.Laser \N 5962 16750 INSERT -35 1137 ome.model.acquisition.Laser \N 5962 16751 INSERT -35 1138 ome.model.acquisition.Laser \N 5962 16752 INSERT -35 273 ome.model.acquisition.Objective \N 5962 16753 INSERT -35 273 ome.model.acquisition.ObjectiveSettings \N 5962 16754 INSERT -35 273 ome.model.core.Image \N 5962 16755 INSERT -35 323 ome.model.core.OriginalFile \N 5962 16756 INSERT -35 323 ome.model.annotations.FileAnnotation \N 5962 16757 INSERT -35 373 ome.model.annotations.ImageAnnotationLink \N 5962 16758 INSERT -35 273 ome.model.containers.DatasetImageLink \N 5962 16759 INSERT -35 273 ome.model.core.Pixels \N 5962 16760 INSERT -35 305 ome.model.acquisition.DetectorSettings \N 5962 16761 INSERT -35 273 ome.model.acquisition.LightPath \N 5962 16762 INSERT -35 273 ome.model.acquisition.LightPathEmissionFilterLink \N 5962 16763 INSERT -35 273 ome.model.acquisition.LightSettings \N 5962 16764 INSERT -35 405 ome.model.core.LogicalChannel \N 5962 16765 INSERT -35 405 ome.model.core.Channel \N 5962 16766 INSERT -35 7074 ome.model.core.PlaneInfo \N 5962 16767 INSERT -35 224 ome.model.acquisition.Microscope \N 5962 16768 INSERT -35 274 ome.model.acquisition.Instrument \N 5962 16769 INSERT -35 306 ome.model.acquisition.Detector \N 5962 16770 INSERT -35 693 ome.model.acquisition.TransmittanceRange \N 5962 16771 INSERT -35 693 ome.model.acquisition.Filter \N 5962 16772 INSERT -35 694 ome.model.acquisition.TransmittanceRange \N 5962 16773 INSERT -35 694 ome.model.acquisition.Filter \N 5962 16774 INSERT -35 695 ome.model.acquisition.TransmittanceRange \N 5962 16775 INSERT -35 695 ome.model.acquisition.Filter \N 5962 16776 INSERT -35 696 ome.model.acquisition.TransmittanceRange \N 5962 16777 INSERT -35 696 ome.model.acquisition.Filter \N 5962 16778 INSERT -35 1139 ome.model.acquisition.Laser \N 5962 16779 INSERT -35 1140 ome.model.acquisition.Laser \N 5962 16780 INSERT -35 1141 ome.model.acquisition.Laser \N 5962 16781 INSERT -35 1142 ome.model.acquisition.Laser \N 5962 16782 INSERT -35 1143 ome.model.acquisition.Laser \N 5962 16783 INSERT -35 1144 ome.model.acquisition.Laser \N 5962 16784 INSERT -35 274 ome.model.acquisition.Objective \N 5962 16785 INSERT -35 274 ome.model.acquisition.ObjectiveSettings \N 5962 16786 INSERT -35 274 ome.model.core.Image \N 5962 16787 INSERT -35 324 ome.model.core.OriginalFile \N 5962 16788 INSERT -35 324 ome.model.annotations.FileAnnotation \N 5962 16789 INSERT -35 374 ome.model.annotations.ImageAnnotationLink \N 5962 16790 INSERT -35 274 ome.model.containers.DatasetImageLink \N 5962 16791 INSERT -35 274 ome.model.core.Pixels \N 5962 16792 INSERT -35 306 ome.model.acquisition.DetectorSettings \N 5962 16793 INSERT -35 274 ome.model.acquisition.LightPath \N 5962 16794 INSERT -35 274 ome.model.acquisition.LightPathEmissionFilterLink \N 5962 16795 INSERT -35 274 ome.model.acquisition.LightSettings \N 5962 16796 INSERT -35 406 ome.model.core.LogicalChannel \N 5962 16797 INSERT -35 406 ome.model.core.Channel \N 5962 16798 INSERT -35 7075 ome.model.core.PlaneInfo \N 5962 16799 INSERT -35 7076 ome.model.core.PlaneInfo \N 5962 16800 INSERT -35 7077 ome.model.core.PlaneInfo \N 5962 16801 INSERT -35 7078 ome.model.core.PlaneInfo \N 5962 16802 INSERT -35 7079 ome.model.core.PlaneInfo \N 5962 16803 INSERT -35 7080 ome.model.core.PlaneInfo \N 5962 16804 INSERT -35 7081 ome.model.core.PlaneInfo \N 5962 16805 INSERT -35 7082 ome.model.core.PlaneInfo \N 5962 16806 INSERT -35 7083 ome.model.core.PlaneInfo \N 5962 16807 INSERT -35 7084 ome.model.core.PlaneInfo \N 5962 16808 INSERT -35 7085 ome.model.core.PlaneInfo \N 5962 16809 INSERT -35 7086 ome.model.core.PlaneInfo \N 5962 16810 INSERT -35 7087 ome.model.core.PlaneInfo \N 5962 16811 INSERT -35 7088 ome.model.core.PlaneInfo \N 5962 16812 INSERT -35 7089 ome.model.core.PlaneInfo \N 5962 16813 INSERT -35 7090 ome.model.core.PlaneInfo \N 5962 16814 INSERT -35 7091 ome.model.core.PlaneInfo \N 5962 16815 INSERT -35 7092 ome.model.core.PlaneInfo \N 5962 16816 INSERT -35 7093 ome.model.core.PlaneInfo \N 5962 16817 INSERT -35 7094 ome.model.core.PlaneInfo \N 5962 16818 UPDATE -35 272 ome.model.core.Pixels \N 5963 16819 UPDATE -35 271 ome.model.core.Pixels \N 5964 16820 UPDATE -35 273 ome.model.core.Pixels \N 5964 16821 UPDATE -35 274 ome.model.core.Pixels \N 5964 16822 UPDATE -35 272 ome.model.core.Pixels \N 5964 16823 INSERT -35 403 ome.model.stats.StatsInfo \N 5965 16824 INSERT -35 404 ome.model.stats.StatsInfo \N 5965 16825 INSERT -35 405 ome.model.stats.StatsInfo \N 5965 16826 INSERT -35 406 ome.model.stats.StatsInfo \N 5965 16827 UPDATE -35 403 ome.model.core.Channel \N 5965 16828 UPDATE -35 405 ome.model.core.Channel \N 5965 16829 UPDATE -35 406 ome.model.core.Channel \N 5965 16830 UPDATE -35 404 ome.model.core.Channel \N 5965 16831 INSERT -35 325 ome.model.display.QuantumDef \N 5966 16832 INSERT -35 325 ome.model.display.RenderingDef \N 5966 16833 INSERT -35 461 ome.model.display.ChannelBinding \N 5966 16834 INSERT -35 326 ome.model.display.QuantumDef \N 5966 16835 INSERT -35 326 ome.model.display.RenderingDef \N 5966 16836 INSERT -35 462 ome.model.display.ChannelBinding \N 5966 16837 INSERT -35 327 ome.model.display.QuantumDef \N 5966 16838 INSERT -35 327 ome.model.display.RenderingDef \N 5966 16839 INSERT -35 463 ome.model.display.ChannelBinding \N 5966 16840 INSERT -35 328 ome.model.display.QuantumDef \N 5966 16841 INSERT -35 328 ome.model.display.RenderingDef \N 5966 16842 INSERT -35 464 ome.model.display.ChannelBinding \N 5966 16843 INSERT -35 271 ome.model.display.Thumbnail \N 5967 16844 INSERT -35 272 ome.model.display.Thumbnail \N 5967 16845 INSERT -35 273 ome.model.display.Thumbnail \N 5967 16846 INSERT -35 274 ome.model.display.Thumbnail \N 5967 16847 UPDATE -35 322 ome.model.core.OriginalFile \N 5968 16848 UPDATE -35 327 ome.model.display.RenderingDef \N 5991 16849 UPDATE -35 327 ome.model.display.QuantumDef \N 5991 16850 UPDATE -35 463 ome.model.display.ChannelBinding \N 5991 16851 UPDATE -35 271 ome.model.display.Thumbnail \N 5993 16852 INSERT -35 577 ome.model.meta.Session \N 5994 16853 INSERT -35 105 ome.model.containers.Dataset \N 5999 16854 INSERT -35 104 ome.model.containers.ProjectDatasetLink \N 6000 16855 INSERT -35 225 ome.model.acquisition.Microscope \N 6006 16856 INSERT -35 275 ome.model.acquisition.Instrument \N 6006 16857 INSERT -35 307 ome.model.acquisition.Detector \N 6006 16858 INSERT -35 697 ome.model.acquisition.Filter \N 6006 16859 INSERT -35 698 ome.model.acquisition.Filter \N 6006 16860 INSERT -35 699 ome.model.acquisition.Filter \N 6006 16861 INSERT -35 1145 ome.model.acquisition.Arc \N 6006 16862 INSERT -35 1146 ome.model.acquisition.Arc \N 6006 16863 INSERT -35 1147 ome.model.acquisition.Arc \N 6006 16864 INSERT -35 1148 ome.model.acquisition.LightEmittingDiode \N 6006 16865 INSERT -35 1149 ome.model.acquisition.Arc \N 6006 16866 INSERT -35 1150 ome.model.acquisition.Arc \N 6006 16867 INSERT -35 1151 ome.model.acquisition.Arc \N 6006 16868 INSERT -35 275 ome.model.acquisition.Objective \N 6006 16869 INSERT -35 276 ome.model.acquisition.Objective \N 6006 16870 INSERT -35 277 ome.model.acquisition.Objective \N 6006 16871 INSERT -35 278 ome.model.acquisition.Objective \N 6006 16872 INSERT -35 1 ome.model.acquisition.StageLabel \N 6006 16873 INSERT -35 275 ome.model.core.Image \N 6006 16874 INSERT -35 275 ome.model.containers.DatasetImageLink \N 6006 16875 INSERT -35 275 ome.model.core.Pixels \N 6006 16876 INSERT -35 307 ome.model.acquisition.DetectorSettings \N 6006 16877 INSERT -35 275 ome.model.acquisition.LightPath \N 6006 16878 INSERT -35 1 ome.model.acquisition.LightPathExcitationFilterLink \N 6006 16879 INSERT -35 275 ome.model.acquisition.LightSettings \N 6006 16880 INSERT -35 407 ome.model.core.LogicalChannel \N 6006 16881 INSERT -35 407 ome.model.core.Channel \N 6006 16882 INSERT -35 7095 ome.model.core.PlaneInfo \N 6006 16883 INSERT -35 7096 ome.model.core.PlaneInfo \N 6006 16884 INSERT -35 7097 ome.model.core.PlaneInfo \N 6006 16885 UPDATE -35 275 ome.model.core.Pixels \N 6007 16886 UPDATE -35 275 ome.model.core.Pixels \N 6008 16887 INSERT -35 407 ome.model.stats.StatsInfo \N 6009 16888 UPDATE -35 407 ome.model.core.Channel \N 6009 16889 INSERT -35 329 ome.model.display.QuantumDef \N 6010 16890 INSERT -35 329 ome.model.display.RenderingDef \N 6010 16891 INSERT -35 465 ome.model.display.ChannelBinding \N 6010 16892 INSERT -35 275 ome.model.display.Thumbnail \N 6011 16893 REINDEX -52 271 ome.model.core.Image \N 6027 16894 REINDEX -52 272 ome.model.core.Image \N 6027 16895 REINDEX -52 273 ome.model.core.Image \N 6027 16896 REINDEX -52 274 ome.model.core.Image \N 6027 16897 INSERT -35 325 ome.model.annotations.TagAnnotation \N 6028 16898 INSERT -35 51 ome.model.annotations.ProjectAnnotationLink \N 6029 16899 INSERT -35 326 ome.model.annotations.TagAnnotation \N 6030 16900 INSERT -35 52 ome.model.annotations.ProjectAnnotationLink \N 6031 16901 INSERT -35 327 ome.model.annotations.TagAnnotation \N 6032 16902 INSERT -35 53 ome.model.annotations.ProjectAnnotationLink \N 6033 16903 REINDEX -52 51 ome.model.containers.Project \N 6034 16904 DELETE -35 52 ome.model.annotations.ProjectAnnotationLink \N 6034 16905 INSERT -35 101 ome.model.annotations.DatasetAnnotationLink \N 6095 16906 INSERT -35 328 ome.model.annotations.TagAnnotation \N 6156 16907 INSERT -35 102 ome.model.annotations.DatasetAnnotationLink \N 6157 16908 UPDATE -35 51 ome.model.containers.Project \N 6158 16909 INSERT -35 51 ome.model.jobs.ParseJob \N 6222 16910 INSERT -35 51 ome.model.jobs.JobOriginalFileLink \N 6222 16911 INSERT -35 578 ome.model.meta.Session \N 6223 16912 UPDATE -35 578 ome.model.meta.Session \N 6225 16913 UPDATE -35 51 ome.model.jobs.ParseJob \N 6226 16914 UPDATE -35 51 ome.model.jobs.ParseJob \N 6227 16915 INSERT -35 325 ome.model.core.OriginalFile \N 6228 16916 INSERT -35 52 ome.model.jobs.JobOriginalFileLink \N 6230 16917 UPDATE -35 51 ome.model.jobs.ParseJob \N 6231 16918 UPDATE -35 51 ome.model.jobs.ParseJob \N 6232 16919 INSERT -35 579 ome.model.meta.Session \N 6233 16920 INSERT -35 580 ome.model.meta.Session \N 6235 16921 INSERT -35 581 ome.model.meta.Session \N 6237 16922 INSERT -35 582 ome.model.meta.Session \N 6247 16923 INSERT -35 583 ome.model.meta.Session \N 6249 16924 INSERT -35 584 ome.model.meta.Session \N 6251 16925 INSERT -35 585 ome.model.meta.Session \N 6253 16926 INSERT -35 586 ome.model.meta.Session \N 6255 16927 INSERT -35 587 ome.model.meta.Session \N 6257 16928 INSERT -35 588 ome.model.meta.Session \N 6259 16929 INSERT -35 589 ome.model.meta.Session \N 6261 16930 UPDATE -35 2 ome.model.meta.Experimenter \N 6266 16931 DELETE -35 14 ome.model.meta.GroupExperimenterMap \N 6268 16932 UPDATE -35 52 ome.model.meta.Experimenter \N 6269 16933 INSERT -35 106 ome.model.meta.GroupExperimenterMap \N 6270 16934 UPDATE -35 2 ome.model.meta.Experimenter \N 6273 16935 UPDATE -35 3 ome.model.meta.GroupExperimenterMap \N 6278 16936 DELETE -35 8 ome.model.meta.GroupExperimenterMap \N 6279 16937 DELETE -35 6 ome.model.meta.GroupExperimenterMap \N 6280 16938 DELETE -35 53 ome.model.meta.GroupExperimenterMap \N 6281 16939 DELETE -35 4 ome.model.meta.GroupExperimenterMap \N 6282 16940 DELETE -35 3 ome.model.meta.GroupExperimenterMap \N 6283 16941 DELETE -35 12 ome.model.meta.GroupExperimenterMap \N 6284 16942 DELETE -35 10 ome.model.meta.GroupExperimenterMap \N 6285 16943 UPDATE -35 3 ome.model.meta.ExperimenterGroup \N 6286 16944 INSERT -35 107 ome.model.meta.GroupExperimenterMap \N 6288 16945 UPDATE -35 107 ome.model.meta.GroupExperimenterMap \N 6288 16946 INSERT -35 108 ome.model.meta.GroupExperimenterMap \N 6291 16947 INSERT -35 109 ome.model.meta.GroupExperimenterMap \N 6292 16948 INSERT -35 110 ome.model.meta.GroupExperimenterMap \N 6293 16949 UPDATE -35 53 ome.model.meta.ExperimenterGroup \N 6294 16950 INSERT -35 111 ome.model.meta.GroupExperimenterMap \N 6298 16951 INSERT -35 112 ome.model.meta.GroupExperimenterMap \N 6299 16952 INSERT -35 113 ome.model.meta.GroupExperimenterMap \N 6300 16953 INSERT -35 114 ome.model.meta.GroupExperimenterMap \N 6301 16954 INSERT -35 115 ome.model.meta.GroupExperimenterMap \N 6302 16955 INSERT -35 116 ome.model.meta.GroupExperimenterMap \N 6303 16956 INSERT -35 117 ome.model.meta.GroupExperimenterMap \N 6304 16957 INSERT -35 103 ome.model.meta.Experimenter \N 6305 16958 INSERT -35 118 ome.model.meta.GroupExperimenterMap \N 6305 16959 INSERT -35 119 ome.model.meta.GroupExperimenterMap \N 6305 16960 INSERT -35 120 ome.model.meta.GroupExperimenterMap \N 6307 16961 UPDATE -35 120 ome.model.meta.GroupExperimenterMap \N 6307 16962 INSERT -35 121 ome.model.meta.GroupExperimenterMap \N 6308 16963 INSERT -35 122 ome.model.meta.GroupExperimenterMap \N 6309 16964 UPDATE -35 102 ome.model.meta.Experimenter \N 6310 16965 INSERT -35 104 ome.model.meta.Experimenter \N 6312 16966 INSERT -35 123 ome.model.meta.GroupExperimenterMap \N 6312 16967 INSERT -35 124 ome.model.meta.GroupExperimenterMap \N 6312 16968 INSERT -35 125 ome.model.meta.GroupExperimenterMap \N 6317 16969 UPDATE -35 125 ome.model.meta.GroupExperimenterMap \N 6317 16970 INSERT -35 126 ome.model.meta.GroupExperimenterMap \N 6318 16971 INSERT -35 590 ome.model.meta.Session \N 6320 16972 INSERT -35 591 ome.model.meta.Session \N 6322 16973 INSERT -35 592 ome.model.meta.Session \N 6340 16974 INSERT -35 593 ome.model.meta.Session \N 6342 16975 INSERT -35 594 ome.model.meta.Session \N 6404 16976 INSERT -35 595 ome.model.meta.Session \N 6406 16977 INSERT -35 127 ome.model.meta.GroupExperimenterMap \N 6414 16978 INSERT -35 596 ome.model.meta.Session \N 6420 16979 INSERT -35 597 ome.model.meta.Session \N 6422 16980 INSERT -35 598 ome.model.meta.Session \N 6426 16981 INSERT -35 599 ome.model.meta.Session \N 6428 16982 REINDEX -52 51 ome.model.containers.Project \N 6432 16987 UPDATE -35 51 ome.model.containers.Project \N 6435 16988 INSERT -35 600 ome.model.meta.Session \N 6436 16989 INSERT -35 601 ome.model.meta.Session \N 6438 16992 INSERT -35 201 ome.model.meta.Node \N 6454 16993 INSERT -35 715 ome.model.meta.Session \N 6458 16994 INSERT -35 716 ome.model.meta.Session \N 6460 16995 INSERT -35 717 ome.model.meta.Session \N 6461 16996 INSERT -35 718 ome.model.meta.Session \N 6463 16999 INSERT -35 719 ome.model.meta.Session \N 6466 17000 INSERT -35 720 ome.model.meta.Session \N 6468 17001 INSERT -35 721 ome.model.meta.Session \N 6470 17002 INSERT -35 722 ome.model.meta.Session \N 6472 \. -- -- Data for Name: eventtype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY eventtype (id, permissions, value, external_id) FROM stdin; 0 -52 Bootstrap \N 1 -52 Import \N 2 -52 Internal \N 3 -52 Shoola \N 4 -52 User \N 5 -52 Task \N 6 -52 Test \N 7 -52 Processing \N 8 -52 FullText \N 9 -52 Sessions \N \. -- -- Data for Name: experiment; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY experiment (id, description, permissions, version, creation_id, external_id, group_id, owner_id, update_id, type) FROM stdin; \. -- -- Data for Name: experimenter; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY experimenter (id, permissions, email, firstname, institution, lastname, middlename, omename, version, external_id) FROM stdin; 0 0 \N root \N root \N root 0 \N 1 0 \N Guest \N Account \N guest 0 \N 3 -120 frarocca@fbk.eu Francesco IBF Rocca frarocca 0 \N 4 -120 paredes@fbk.eu José IBF Martinez Paredes paredes 0 \N 6 -120 Droghetti \N Droghetti droghetti 0 \N 5 -120 daniele.arosio@cnr.it Daniele CNR-IBF Arosio dan 0 \N 52 -40 gigi.ga90@gmail.com Gabriele CNR-IBF (UNITN) Girelli girelli 0 \N 2 -120 ashwanth.francis@gmail.com Francis CIBIO Ashwant ashwant 0 \N 103 -120 cereseto@science.unitn.it Anna CIBIO Cereseto cereseto 0 \N 102 -40 vidalino@science.unitn.it Laura CIBIO Vidalino vidalino 0 \N 104 -120 Paolo CIBIO Macchi Pasquale macchi 0 \N \. -- -- Data for Name: experimenterannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY experimenterannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 1 -40 0 151 5020 \N 1 2 5020 2 \. -- -- Data for Name: experimentergroup; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY experimentergroup (id, description, permissions, name, version, external_id) FROM stdin; 0 \N -120 system 0 \N 1 \N -52 user 0 \N 2 \N -120 guest 0 \N 3 Arosio's Lab -40 Arosio 0 \N 53 General private group (security) -120 General 0 \N 54 Cereseto's lab -40 Cereseto 0 \N 55 Macchi's lab -40 Macchi 0 \N \. -- -- Data for Name: experimentergroupannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY experimentergroupannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: experimenttype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY experimenttype (id, permissions, value, external_id) FROM stdin; 1 -52 FP \N 2 -52 FRET \N 3 -52 TimeLapse \N 4 -52 FourDPlus \N 5 -52 Screen \N 6 -52 Immunocytochemistry \N 7 -52 Immunofluorescence \N 8 -52 FISH \N 9 -52 Electrophysiology \N 10 -52 IonImaging \N 11 -52 Colocalization \N 12 -52 PGIDocumentation \N 13 -52 FluorescenceLifetime \N 14 -52 SpectralImaging \N 15 -52 Photobleaching \N 16 -52 Other \N 17 -52 Unknown \N \. -- -- Data for Name: externalinfo; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY externalinfo (id, permissions, entityid, entitytype, lsid, uuid, creation_id, external_id, group_id, owner_id) FROM stdin; \. -- -- Data for Name: family; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY family (id, permissions, value, external_id) FROM stdin; 1 -52 linear \N 2 -52 polynomial \N 3 -52 exponential \N 4 -52 logarithmic \N \. -- -- Data for Name: filament; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filament (lightsource_id, type) FROM stdin; \. -- -- Data for Name: filamenttype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filamenttype (id, permissions, value, external_id) FROM stdin; 1 -52 Incandescent \N 2 -52 Halogen \N 3 -52 Other \N 4 -52 Unknown \N \. -- -- Data for Name: filter; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filter (id, permissions, filterwheel, lotnumber, manufacturer, model, serialnumber, version, creation_id, external_id, group_id, owner_id, update_id, instrument, transmittancerange, type) FROM stdin; 112 -40 \N \N \N SP Mirror Channel 1 \N \N 1055 \N 3 2 1055 38 112 \N 113 -40 \N \N \N SP Mirror Channel 3 \N \N 1055 \N 3 2 1055 38 113 \N 114 -40 \N \N \N SP Mirror Channel 2 \N \N 1055 \N 3 2 1055 38 114 \N 115 -40 \N \N \N SP Mirror Channel 2 \N \N 1055 \N 3 2 1055 39 115 \N 116 -40 \N \N \N SP Mirror Channel 3 \N \N 1055 \N 3 2 1055 39 116 \N 117 -40 \N \N \N SP Mirror Channel 1 \N \N 1055 \N 3 2 1055 39 117 \N 118 -40 \N \N \N SP Mirror Channel 1 \N \N 1055 \N 3 2 1055 40 118 \N 119 -40 \N \N \N SP Mirror Channel 2 \N \N 1055 \N 3 2 1055 40 119 \N 120 -40 \N \N \N SP Mirror Channel 3 \N \N 1055 \N 3 2 1055 40 120 \N 121 -40 \N \N \N SP Mirror Channel 1 \N \N 1055 \N 3 2 1055 41 121 \N 122 -40 \N \N \N SP Mirror Channel 2 \N \N 1055 \N 3 2 1055 41 122 \N 123 -40 \N \N \N SP Mirror Channel 3 \N \N 1055 \N 3 2 1055 41 123 \N 124 -40 \N \N \N SP Mirror Channel 1 \N \N 1055 \N 3 2 1055 42 124 \N 125 -40 \N \N \N SP Mirror Channel 3 \N \N 1055 \N 3 2 1055 42 125 \N 126 -40 \N \N \N SP Mirror Channel 2 \N \N 1055 \N 3 2 1055 42 126 \N 127 -40 \N \N \N SP Mirror Channel 3 \N \N 1055 \N 3 2 1055 43 127 \N 128 -40 \N \N \N SP Mirror Channel 1 \N \N 1055 \N 3 2 1055 43 128 \N 129 -40 \N \N \N SP Mirror Channel 2 \N \N 1055 \N 3 2 1055 43 129 \N 130 -40 \N \N \N SP Mirror Channel 2 \N \N 1118 \N 3 2 1118 44 130 \N 131 -40 \N \N \N SP Mirror Channel 3 \N \N 1118 \N 3 2 1118 44 131 \N 132 -40 \N \N \N SP Mirror Channel 1 \N \N 1118 \N 3 2 1118 44 132 \N 133 -40 \N \N \N SP Mirror Channel 2 \N \N 1118 \N 3 2 1118 45 133 \N 134 -40 \N \N \N SP Mirror Channel 3 \N \N 1118 \N 3 2 1118 45 134 \N 135 -40 \N \N \N SP Mirror Channel 1 \N \N 1118 \N 3 2 1118 45 135 \N 136 -40 \N \N \N SP Mirror Channel 1 \N \N 1118 \N 3 2 1118 46 136 \N 137 -40 \N \N \N SP Mirror Channel 2 \N \N 1118 \N 3 2 1118 46 137 \N 138 -40 \N \N \N SP Mirror Channel 3 \N \N 1118 \N 3 2 1118 46 138 \N 139 -40 \N \N \N SP Mirror Channel 2 \N \N 1118 \N 3 2 1118 47 139 \N 140 -40 \N \N \N SP Mirror Channel 3 \N \N 1118 \N 3 2 1118 47 140 \N 141 -40 \N \N \N SP Mirror Channel 1 \N \N 1118 \N 3 2 1118 47 141 \N 142 -40 \N \N \N SP Mirror Channel 1 \N \N 1118 \N 3 2 1118 48 142 \N 143 -40 \N \N \N SP Mirror Channel 2 \N \N 1118 \N 3 2 1118 48 143 \N 144 -40 \N \N \N SP Mirror Channel 3 \N \N 1118 \N 3 2 1118 48 144 \N 145 -40 \N \N \N SP Mirror Channel 3 \N \N 1118 \N 3 2 1118 49 145 \N 146 -40 \N \N \N SP Mirror Channel 1 \N \N 1118 \N 3 2 1118 49 146 \N 147 -40 \N \N \N SP Mirror Channel 2 \N \N 1118 \N 3 2 1118 49 147 \N 148 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 50 148 \N 149 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 50 149 \N 150 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 50 150 \N 151 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 51 151 \N 152 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 51 152 \N 153 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 51 153 \N 154 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 52 154 \N 155 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 52 155 \N 156 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 52 156 \N 157 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 53 157 \N 158 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 53 158 \N 159 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 53 159 \N 160 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 54 160 \N 161 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 54 161 \N 162 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 54 162 \N 163 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 55 163 \N 164 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 55 164 \N 165 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 55 165 \N 166 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 56 166 \N 167 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 56 167 \N 168 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 56 168 \N 169 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 57 169 \N 170 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 57 170 \N 171 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 57 171 \N 172 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 58 172 \N 173 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 58 173 \N 174 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 58 174 \N 175 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 59 175 \N 176 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 59 176 \N 252 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 252 \N 177 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 59 177 \N 178 -40 \N \N \N SP Mirror Channel 3 \N \N 1143 \N 3 2 1143 60 178 \N 179 -40 \N \N \N SP Mirror Channel 2 \N \N 1143 \N 3 2 1143 60 179 \N 180 -40 \N \N \N SP Mirror Channel 1 \N \N 1143 \N 3 2 1143 60 180 \N 181 -40 \N \N \N SP Mirror Channel 3 \N \N 1614 \N 3 2 1614 61 181 \N 182 -40 \N \N \N SP Mirror Channel 1 \N \N 1614 \N 3 2 1614 61 182 \N 183 -40 \N \N \N SP Mirror Channel 2 \N \N 1614 \N 3 2 1614 61 183 \N 184 -40 \N \N \N SP Mirror Channel 2 \N \N 1614 \N 3 2 1614 62 184 \N 185 -40 \N \N \N SP Mirror Channel 3 \N \N 1614 \N 3 2 1614 62 185 \N 186 -40 \N \N \N SP Mirror Channel 1 \N \N 1614 \N 3 2 1614 62 186 \N 187 -40 \N \N \N SP Mirror Channel 1 \N \N 1614 \N 3 2 1614 63 187 \N 188 -40 \N \N \N SP Mirror Channel 3 \N \N 1614 \N 3 2 1614 63 188 \N 189 -40 \N \N \N SP Mirror Channel 2 \N \N 1614 \N 3 2 1614 63 189 \N 190 -40 \N \N \N SP Mirror Channel 2 \N \N 1614 \N 3 2 1614 64 190 \N 191 -40 \N \N \N SP Mirror Channel 3 \N \N 1614 \N 3 2 1614 64 191 \N 192 -40 \N \N \N SP Mirror Channel 1 \N \N 1614 \N 3 2 1614 64 192 \N 201 -120 \N \N \N SP Mirror Channel 2 \N \N 5151 \N 53 102 5151 151 201 \N 202 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 202 \N 203 -120 \N \N \N SP Mirror Channel 1 \N \N 5151 \N 53 102 5151 151 203 \N 204 -120 \N \N \N SP Mirror Channel 3 \N \N 5151 \N 53 102 5151 151 204 \N 205 -120 \N \N \N SP Mirror Channel 2 \N \N 5151 \N 53 102 5151 152 205 \N 206 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 206 \N 207 -120 \N \N \N SP Mirror Channel 1 \N \N 5151 \N 53 102 5151 152 207 \N 208 -120 \N \N \N SP Mirror Channel 3 \N \N 5151 \N 53 102 5151 152 208 \N 209 -120 \N \N \N SP Mirror Channel 2 \N \N 5151 \N 53 102 5151 153 209 \N 210 -120 \N \N \N SP Mirror Channel 3 \N \N 5151 \N 53 102 5151 153 210 \N 211 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 211 \N 212 -120 \N \N \N SP Mirror Channel 1 \N \N 5151 \N 53 102 5151 153 212 \N 213 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 213 \N 214 -120 \N \N \N SP Mirror Channel 3 \N \N 5151 \N 53 102 5151 154 214 \N 215 -120 \N \N \N SP Mirror Channel 2 \N \N 5151 \N 53 102 5151 154 215 \N 216 -120 \N \N \N SP Mirror Channel 1 \N \N 5151 \N 53 102 5151 154 216 \N 217 -120 \N \N \N SP Mirror Channel 1 \N \N 5173 \N 53 102 5173 155 217 \N 218 -120 \N \N \N SP Mirror Channel 3 \N \N 5173 \N 53 102 5173 155 218 \N 219 -120 \N \N \N SP Mirror Channel 2 \N \N 5173 \N 53 102 5173 155 219 \N 220 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 220 \N 221 -120 \N \N \N SP Mirror Channel 3 \N \N 5173 \N 53 102 5173 156 221 \N 222 -120 \N \N \N SP Mirror Channel 2 \N \N 5173 \N 53 102 5173 156 222 \N 223 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 223 \N 224 -120 \N \N \N SP Mirror Channel 1 \N \N 5173 \N 53 102 5173 156 224 \N 225 -120 \N \N \N SP Mirror Channel 3 \N \N 5173 \N 53 102 5173 157 225 \N 226 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 226 \N 227 -120 \N \N \N SP Mirror Channel 2 \N \N 5173 \N 53 102 5173 157 227 \N 228 -120 \N \N \N SP Mirror Channel 1 \N \N 5173 \N 53 102 5173 157 228 \N 229 -120 \N \N \N SP Mirror Channel 3 \N \N 5173 \N 53 102 5173 158 229 \N 230 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 230 \N 231 -120 \N \N \N SP Mirror Channel 1 \N \N 5173 \N 53 102 5173 158 231 \N 232 -120 \N \N \N SP Mirror Channel 2 \N \N 5173 \N 53 102 5173 158 232 \N 233 -120 \N \N \N SP Mirror Channel 1 \N \N 5195 \N 53 102 5195 159 233 \N 234 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 234 \N 235 -120 \N \N \N SP Mirror Channel 3 \N \N 5195 \N 53 102 5195 159 235 \N 236 -120 \N \N \N SP Mirror Channel 2 \N \N 5195 \N 53 102 5195 159 236 \N 237 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 237 \N 238 -120 \N \N \N SP Mirror Channel 1 \N \N 5195 \N 53 102 5195 160 238 \N 239 -120 \N \N \N SP Mirror Channel 2 \N \N 5195 \N 53 102 5195 160 239 \N 240 -120 \N \N \N SP Mirror Channel 3 \N \N 5195 \N 53 102 5195 160 240 \N 241 -120 \N \N \N SP Mirror Channel 1 \N \N 5195 \N 53 102 5195 161 241 \N 242 -120 \N \N \N SP Mirror Channel 3 \N \N 5195 \N 53 102 5195 161 242 \N 243 -120 \N \N \N SP Mirror Channel 2 \N \N 5195 \N 53 102 5195 161 243 \N 244 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 244 \N 245 -120 \N \N \N SP Mirror Channel 3 \N \N 5195 \N 53 102 5195 162 245 \N 246 -120 \N \N \N SP Mirror Channel 1 \N \N 5195 \N 53 102 5195 162 246 \N 247 -120 \N \N \N SP Mirror Channel 2 \N \N 5195 \N 53 102 5195 162 247 \N 248 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 248 \N 249 -120 \N \N \N SP Mirror Channel 3 \N \N 5218 \N 53 102 5218 163 249 \N 250 -120 \N \N \N SP Mirror Channel 2 \N \N 5218 \N 53 102 5218 163 250 \N 251 -120 \N \N \N SP Mirror Channel 1 \N \N 5218 \N 53 102 5218 163 251 \N 253 -120 \N \N \N SP Mirror Channel 1 \N \N 5218 \N 53 102 5218 164 253 \N 254 -120 \N \N \N SP Mirror Channel 2 \N \N 5218 \N 53 102 5218 164 254 \N 255 -120 \N \N \N SP Mirror Channel 3 \N \N 5218 \N 53 102 5218 164 255 \N 256 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 256 \N 257 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 257 \N 258 -120 \N \N \N SP Mirror Channel 3 \N \N 5218 \N 53 102 5218 165 258 \N 259 -120 \N \N \N SP Mirror Channel 1 \N \N 5218 \N 53 102 5218 165 259 \N 260 -120 \N \N \N SP Mirror Channel 2 \N \N 5218 \N 53 102 5218 165 260 \N 261 -120 \N \N \N SP Mirror Channel 2 \N \N 5218 \N 53 102 5218 166 261 \N 262 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 262 \N 263 -120 \N \N \N SP Mirror Channel 1 \N \N 5218 \N 53 102 5218 166 263 \N 264 -120 \N \N \N SP Mirror Channel 3 \N \N 5218 \N 53 102 5218 166 264 \N 265 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 265 \N 266 -120 \N \N \N SP Mirror Channel 3 \N \N 5241 \N 53 102 5241 167 266 \N 267 -120 \N \N \N SP Mirror Channel 2 \N \N 5241 \N 53 102 5241 167 267 \N 268 -120 \N \N \N SP Mirror Channel 1 \N \N 5241 \N 53 102 5241 167 268 \N 269 -120 \N \N \N SP Mirror Channel 3 \N \N 5241 \N 53 102 5241 168 269 \N 270 -120 \N \N \N SP Mirror Channel 2 \N \N 5241 \N 53 102 5241 168 270 \N 271 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 271 \N 272 -120 \N \N \N SP Mirror Channel 1 \N \N 5241 \N 53 102 5241 168 272 \N 273 -120 \N \N \N SP Mirror Channel 1 \N \N 5241 \N 53 102 5241 169 273 \N 274 -120 \N \N \N SP Mirror Channel 2 \N \N 5241 \N 53 102 5241 169 274 \N 275 -120 \N \N \N SP Mirror Channel 3 \N \N 5241 \N 53 102 5241 169 275 \N 276 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 276 \N 277 -120 \N \N \N SP Mirror Channel 3 \N \N 5241 \N 53 102 5241 170 277 \N 278 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 278 \N 279 -120 \N \N \N SP Mirror Channel 1 \N \N 5241 \N 53 102 5241 170 279 \N 280 -120 \N \N \N SP Mirror Channel 2 \N \N 5241 \N 53 102 5241 170 280 \N 281 -120 \N \N \N SP Mirror Channel 1 \N \N 5263 \N 53 102 5263 171 281 \N 282 -120 \N \N \N SP Mirror Channel 2 \N \N 5263 \N 53 102 5263 171 282 \N 283 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 283 \N 284 -120 \N \N \N SP Mirror Channel 3 \N \N 5263 \N 53 102 5263 171 284 \N 285 -120 \N \N \N SP Mirror Channel 1 \N \N 5263 \N 53 102 5263 172 285 \N 286 -120 \N \N \N SP Mirror Channel 2 \N \N 5263 \N 53 102 5263 172 286 \N 287 -120 \N \N \N SP Mirror Channel 3 \N \N 5263 \N 53 102 5263 172 287 \N 288 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 288 \N 289 -120 \N \N \N SP Mirror Channel 3 \N \N 5263 \N 53 102 5263 173 289 \N 290 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 290 \N 291 -120 \N \N \N SP Mirror Channel 2 \N \N 5263 \N 53 102 5263 173 291 \N 292 -120 \N \N \N SP Mirror Channel 1 \N \N 5263 \N 53 102 5263 173 292 \N 293 -120 \N \N \N SP Mirror Channel 3 \N \N 5263 \N 53 102 5263 174 293 \N 294 -120 \N \N \N SP Mirror Channel 1 \N \N 5263 \N 53 102 5263 174 294 \N 295 -120 \N \N \N SP Mirror Channel 2 \N \N 5263 \N 53 102 5263 174 295 \N 296 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 296 \N 297 -120 \N \N \N SP Mirror Channel 3 \N \N 5285 \N 53 102 5285 175 297 \N 298 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 298 \N 299 -120 \N \N \N SP Mirror Channel 2 \N \N 5285 \N 53 102 5285 175 299 \N 300 -120 \N \N \N SP Mirror Channel 1 \N \N 5285 \N 53 102 5285 175 300 \N 301 -120 \N \N \N SP Mirror Channel 2 \N \N 5285 \N 53 102 5285 176 301 \N 302 -120 \N \N \N SP Mirror Channel 1 \N \N 5285 \N 53 102 5285 176 302 \N 303 -120 \N \N \N SP Mirror Channel 3 \N \N 5285 \N 53 102 5285 176 303 \N 304 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 304 \N 305 -120 \N \N \N SP Mirror Channel 1 \N \N 5285 \N 53 102 5285 177 305 \N 306 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 306 \N 307 -120 \N \N \N SP Mirror Channel 3 \N \N 5285 \N 53 102 5285 177 307 \N 308 -120 \N \N \N SP Mirror Channel 2 \N \N 5285 \N 53 102 5285 177 308 \N 309 -120 \N \N \N SP Mirror Channel 3 \N \N 5285 \N 53 102 5285 178 309 \N 310 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 310 \N 311 -120 \N \N \N SP Mirror Channel 1 \N \N 5285 \N 53 102 5285 178 311 \N 312 -120 \N \N \N SP Mirror Channel 2 \N \N 5285 \N 53 102 5285 178 312 \N 313 -120 \N \N \N SP Mirror Channel 2 \N \N 5307 \N 53 102 5307 179 313 \N 314 -120 \N \N \N SP Mirror Channel 1 \N \N 5307 \N 53 102 5307 179 314 \N 315 -120 \N \N \N SP Mirror Channel 3 \N \N 5307 \N 53 102 5307 179 315 \N 316 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 316 \N 317 -120 \N \N \N SP Mirror Channel 1 \N \N 5307 \N 53 102 5307 180 317 \N 318 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 318 \N 319 -120 \N \N \N SP Mirror Channel 3 \N \N 5307 \N 53 102 5307 180 319 \N 320 -120 \N \N \N SP Mirror Channel 2 \N \N 5307 \N 53 102 5307 180 320 \N 321 -120 \N \N \N SP Mirror Channel 1 \N \N 5307 \N 53 102 5307 181 321 \N 322 -120 \N \N \N SP Mirror Channel 2 \N \N 5307 \N 53 102 5307 181 322 \N 323 -120 \N \N \N SP Mirror Channel 3 \N \N 5307 \N 53 102 5307 181 323 \N 324 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 324 \N 325 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 325 \N 326 -120 \N \N \N SP Mirror Channel 3 \N \N 5307 \N 53 102 5307 182 326 \N 327 -120 \N \N \N SP Mirror Channel 2 \N \N 5307 \N 53 102 5307 182 327 \N 328 -120 \N \N \N SP Mirror Channel 1 \N \N 5307 \N 53 102 5307 182 328 \N 329 -120 \N \N \N SP Mirror Channel 3 \N \N 5329 \N 53 102 5329 183 329 \N 330 -120 \N \N \N SP Mirror Channel 1 \N \N 5329 \N 53 102 5329 183 330 \N 331 -120 \N \N \N SP Mirror Channel 2 \N \N 5329 \N 53 102 5329 183 331 \N 332 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 332 \N 333 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 333 \N 334 -120 \N \N \N SP Mirror Channel 2 \N \N 5329 \N 53 102 5329 184 334 \N 335 -120 \N \N \N SP Mirror Channel 1 \N \N 5329 \N 53 102 5329 184 335 \N 336 -120 \N \N \N SP Mirror Channel 3 \N \N 5329 \N 53 102 5329 184 336 \N 337 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 337 \N 338 -120 \N \N \N SP Mirror Channel 3 \N \N 5329 \N 53 102 5329 185 338 \N 339 -120 \N \N \N SP Mirror Channel 1 \N \N 5329 \N 53 102 5329 185 339 \N 340 -120 \N \N \N SP Mirror Channel 2 \N \N 5329 \N 53 102 5329 185 340 \N 341 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 341 \N 342 -120 \N \N \N SP Mirror Channel 1 \N \N 5329 \N 53 102 5329 186 342 \N 343 -120 \N \N \N SP Mirror Channel 3 \N \N 5329 \N 53 102 5329 186 343 \N 344 -120 \N \N \N SP Mirror Channel 2 \N \N 5329 \N 53 102 5329 186 344 \N 345 -120 \N \N \N SP Mirror Channel 3 \N \N 5397 \N 53 102 5397 187 345 \N 346 -120 \N \N \N SP Mirror Channel 2 \N \N 5397 \N 53 102 5397 187 346 \N 347 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 347 \N 348 -120 \N \N \N SP Mirror Channel 1 \N \N 5397 \N 53 102 5397 187 348 \N 349 -120 \N \N \N SP Mirror Channel 3 \N \N 5397 \N 53 102 5397 188 349 \N 350 -120 \N \N \N SP Mirror Channel 2 \N \N 5397 \N 53 102 5397 188 350 \N 351 -120 \N \N \N SP Mirror Channel 1 \N \N 5397 \N 53 102 5397 188 351 \N 352 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 352 \N 353 -120 \N \N \N SP Mirror Channel 1 \N \N 5397 \N 53 102 5397 189 353 \N 354 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 354 \N 355 -120 \N \N \N SP Mirror Channel 2 \N \N 5397 \N 53 102 5397 189 355 \N 356 -120 \N \N \N SP Mirror Channel 3 \N \N 5397 \N 53 102 5397 189 356 \N 357 -120 \N \N \N SP Mirror Channel 1 \N \N 5397 \N 53 102 5397 190 357 \N 358 -120 \N \N \N SP Mirror Channel 3 \N \N 5397 \N 53 102 5397 190 358 \N 359 -120 \N \N \N SP Mirror Channel 2 \N \N 5397 \N 53 102 5397 190 359 \N 360 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 360 \N 361 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 361 \N 362 -120 \N \N \N SP Mirror Channel 3 \N \N 5421 \N 53 102 5421 191 362 \N 363 -120 \N \N \N SP Mirror Channel 1 \N \N 5421 \N 53 102 5421 191 363 \N 364 -120 \N \N \N SP Mirror Channel 2 \N \N 5421 \N 53 102 5421 191 364 \N 365 -120 \N \N \N SP Mirror Channel 3 \N \N 5421 \N 53 102 5421 192 365 \N 366 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 366 \N 367 -120 \N \N \N SP Mirror Channel 2 \N \N 5421 \N 53 102 5421 192 367 \N 368 -120 \N \N \N SP Mirror Channel 1 \N \N 5421 \N 53 102 5421 192 368 \N 369 -120 \N \N \N SP Mirror Channel 1 \N \N 5421 \N 53 102 5421 193 369 \N 370 -120 \N \N \N SP Mirror Channel 2 \N \N 5421 \N 53 102 5421 193 370 \N 371 -120 \N \N \N SP Mirror Channel 3 \N \N 5421 \N 53 102 5421 193 371 \N 372 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 372 \N 373 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 373 \N 374 -120 \N \N \N SP Mirror Channel 1 \N \N 5421 \N 53 102 5421 194 374 \N 375 -120 \N \N \N SP Mirror Channel 2 \N \N 5421 \N 53 102 5421 194 375 \N 376 -120 \N \N \N SP Mirror Channel 3 \N \N 5421 \N 53 102 5421 194 376 \N 377 -120 \N \N \N SP Mirror Channel 2 \N \N 5446 \N 53 102 5446 195 377 \N 378 -120 \N \N \N SP Mirror Channel 1 \N \N 5446 \N 53 102 5446 195 378 \N 379 -120 \N \N \N SP Mirror Channel 3 \N \N 5446 \N 53 102 5446 195 379 \N 380 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 380 \N 381 -120 \N \N \N SP Mirror Channel 2 \N \N 5446 \N 53 102 5446 196 381 \N 382 -120 \N \N \N SP Mirror Channel 3 \N \N 5446 \N 53 102 5446 196 382 \N 383 -120 \N \N \N SP Mirror Channel 1 \N \N 5446 \N 53 102 5446 196 383 \N 384 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 384 \N 385 -120 \N \N \N SP Mirror Channel 1 \N \N 5446 \N 53 102 5446 197 385 \N 386 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 386 \N 387 -120 \N \N \N SP Mirror Channel 3 \N \N 5446 \N 53 102 5446 197 387 \N 388 -120 \N \N \N SP Mirror Channel 2 \N \N 5446 \N 53 102 5446 197 388 \N 389 -120 \N \N \N SP Mirror Channel 3 \N \N 5446 \N 53 102 5446 198 389 \N 390 -120 \N \N \N SP Mirror Channel 2 \N \N 5446 \N 53 102 5446 198 390 \N 391 -120 \N \N \N SP Mirror Channel 1 \N \N 5446 \N 53 102 5446 198 391 \N 392 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 392 \N 393 -120 \N \N \N SP Mirror Channel 1 \N \N 5471 \N 53 102 5471 199 393 \N 394 -120 \N \N \N SP Mirror Channel 3 \N \N 5471 \N 53 102 5471 199 394 \N 395 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 395 \N 396 -120 \N \N \N SP Mirror Channel 2 \N \N 5471 \N 53 102 5471 199 396 \N 397 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 397 \N 398 -120 \N \N \N SP Mirror Channel 3 \N \N 5471 \N 53 102 5471 200 398 \N 399 -120 \N \N \N SP Mirror Channel 1 \N \N 5471 \N 53 102 5471 200 399 \N 400 -120 \N \N \N SP Mirror Channel 2 \N \N 5471 \N 53 102 5471 200 400 \N 401 -120 \N \N \N SP Mirror Channel 3 \N \N 5471 \N 53 102 5471 201 401 \N 402 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 402 \N 403 -120 \N \N \N SP Mirror Channel 2 \N \N 5471 \N 53 102 5471 201 403 \N 404 -120 \N \N \N SP Mirror Channel 1 \N \N 5471 \N 53 102 5471 201 404 \N 405 -120 \N \N \N SP Mirror Channel 3 \N \N 5471 \N 53 102 5471 202 405 \N 406 -120 \N \N \N SP Mirror Channel 2 \N \N 5471 \N 53 102 5471 202 406 \N 407 -120 \N \N \N SP Mirror Channel 1 \N \N 5471 \N 53 102 5471 202 407 \N 408 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 408 \N 409 -120 \N \N \N SP Mirror Channel 1 \N \N 5493 \N 53 102 5493 203 409 \N 410 -120 \N \N \N SP Mirror Channel 3 \N \N 5493 \N 53 102 5493 203 410 \N 411 -120 \N \N \N SP Mirror Channel 2 \N \N 5493 \N 53 102 5493 203 411 \N 412 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 412 \N 413 -120 \N \N \N SP Mirror Channel 1 \N \N 5493 \N 53 102 5493 204 413 \N 414 -120 \N \N \N SP Mirror Channel 3 \N \N 5493 \N 53 102 5493 204 414 \N 415 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 415 \N 416 -120 \N \N \N SP Mirror Channel 2 \N \N 5493 \N 53 102 5493 204 416 \N 417 -120 \N \N \N SP Mirror Channel 3 \N \N 5493 \N 53 102 5493 205 417 \N 418 -120 \N \N \N SP Mirror Channel 1 \N \N 5493 \N 53 102 5493 205 418 \N 419 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 419 \N 420 -120 \N \N \N SP Mirror Channel 2 \N \N 5493 \N 53 102 5493 205 420 \N 421 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 421 \N 422 -120 \N \N \N SP Mirror Channel 3 \N \N 5493 \N 53 102 5493 206 422 \N 423 -120 \N \N \N SP Mirror Channel 2 \N \N 5493 \N 53 102 5493 206 423 \N 424 -120 \N \N \N SP Mirror Channel 1 \N \N 5493 \N 53 102 5493 206 424 \N 425 -120 \N \N \N SP Mirror Channel 3 \N \N 5515 \N 53 102 5515 207 425 \N 426 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 426 \N 427 -120 \N \N \N SP Mirror Channel 1 \N \N 5515 \N 53 102 5515 207 427 \N 428 -120 \N \N \N SP Mirror Channel 2 \N \N 5515 \N 53 102 5515 207 428 \N 429 -120 \N \N \N SP Mirror Channel 1 \N \N 5515 \N 53 102 5515 208 429 \N 430 -120 \N \N \N SP Mirror Channel 3 \N \N 5515 \N 53 102 5515 208 430 \N 431 -120 \N \N \N SP Mirror Channel 2 \N \N 5515 \N 53 102 5515 208 431 \N 432 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 432 \N 433 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 433 \N 434 -120 \N \N \N SP Mirror Channel 1 \N \N 5515 \N 53 102 5515 209 434 \N 435 -120 \N \N \N SP Mirror Channel 3 \N \N 5515 \N 53 102 5515 209 435 \N 436 -120 \N \N \N SP Mirror Channel 2 \N \N 5515 \N 53 102 5515 209 436 \N 437 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 437 \N 438 -120 \N \N \N SP Mirror Channel 1 \N \N 5515 \N 53 102 5515 210 438 \N 439 -120 \N \N \N SP Mirror Channel 3 \N \N 5515 \N 53 102 5515 210 439 \N 440 -120 \N \N \N SP Mirror Channel 2 \N \N 5515 \N 53 102 5515 210 440 \N 441 -120 \N \N \N SP Mirror Channel 3 \N \N 5539 \N 53 102 5539 211 441 \N 442 -120 \N \N \N SP Mirror Channel 1 \N \N 5539 \N 53 102 5539 211 442 \N 443 -120 \N \N \N SP Mirror Channel 2 \N \N 5539 \N 53 102 5539 211 443 \N 444 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 444 \N 445 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 445 \N 446 -120 \N \N \N SP Mirror Channel 3 \N \N 5539 \N 53 102 5539 212 446 \N 447 -120 \N \N \N SP Mirror Channel 1 \N \N 5539 \N 53 102 5539 212 447 \N 448 -120 \N \N \N SP Mirror Channel 2 \N \N 5539 \N 53 102 5539 212 448 \N 449 -120 \N \N \N SP Mirror Channel 2 \N \N 5539 \N 53 102 5539 213 449 \N 450 -120 \N \N \N SP Mirror Channel 1 \N \N 5539 \N 53 102 5539 213 450 \N 451 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 451 \N 452 -120 \N \N \N SP Mirror Channel 3 \N \N 5539 \N 53 102 5539 213 452 \N 453 -120 \N \N \N SP Mirror Channel 3 \N \N 5539 \N 53 102 5539 214 453 \N 454 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 454 \N 455 -120 \N \N \N SP Mirror Channel 2 \N \N 5539 \N 53 102 5539 214 455 \N 456 -120 \N \N \N SP Mirror Channel 1 \N \N 5539 \N 53 102 5539 214 456 \N 457 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 457 \N 458 -120 \N \N \N SP Mirror Channel 3 \N \N 5561 \N 53 102 5561 215 458 \N 459 -120 \N \N \N SP Mirror Channel 2 \N \N 5561 \N 53 102 5561 215 459 \N 460 -120 \N \N \N SP Mirror Channel 1 \N \N 5561 \N 53 102 5561 215 460 \N 461 -120 \N \N \N SP Mirror Channel 3 \N \N 5561 \N 53 102 5561 216 461 \N 462 -120 \N \N \N SP Mirror Channel 1 \N \N 5561 \N 53 102 5561 216 462 \N 463 -120 \N \N \N SP Mirror Channel 2 \N \N 5561 \N 53 102 5561 216 463 \N 464 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 464 \N 465 -120 \N \N \N SP Mirror Channel 1 \N \N 5561 \N 53 102 5561 217 465 \N 466 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 466 \N 467 -120 \N \N \N SP Mirror Channel 2 \N \N 5561 \N 53 102 5561 217 467 \N 468 -120 \N \N \N SP Mirror Channel 3 \N \N 5561 \N 53 102 5561 217 468 \N 469 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 469 \N 470 -120 \N \N \N SP Mirror Channel 3 \N \N 5561 \N 53 102 5561 218 470 \N 471 -120 \N \N \N SP Mirror Channel 2 \N \N 5561 \N 53 102 5561 218 471 \N 472 -120 \N \N \N SP Mirror Channel 1 \N \N 5561 \N 53 102 5561 218 472 \N 473 -120 \N \N \N SP Mirror Channel 1 \N \N 5583 \N 53 102 5583 219 473 \N 474 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 474 \N 475 -120 \N \N \N SP Mirror Channel 2 \N \N 5583 \N 53 102 5583 219 475 \N 476 -120 \N \N \N SP Mirror Channel 3 \N \N 5583 \N 53 102 5583 219 476 \N 477 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 477 \N 478 -120 \N \N \N SP Mirror Channel 2 \N \N 5583 \N 53 102 5583 220 478 \N 479 -120 \N \N \N SP Mirror Channel 3 \N \N 5583 \N 53 102 5583 220 479 \N 480 -120 \N \N \N SP Mirror Channel 1 \N \N 5583 \N 53 102 5583 220 480 \N 481 -120 \N \N \N SP Mirror Channel 1 \N \N 5583 \N 53 102 5583 221 481 \N 482 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 482 \N 483 -120 \N \N \N SP Mirror Channel 3 \N \N 5583 \N 53 102 5583 221 483 \N 484 -120 \N \N \N SP Mirror Channel 2 \N \N 5583 \N 53 102 5583 221 484 \N 485 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 485 \N 486 -120 \N \N \N SP Mirror Channel 1 \N \N 5583 \N 53 102 5583 222 486 \N 487 -120 \N \N \N SP Mirror Channel 2 \N \N 5583 \N 53 102 5583 222 487 \N 488 -120 \N \N \N SP Mirror Channel 3 \N \N 5583 \N 53 102 5583 222 488 \N 489 -120 \N \N \N SP Mirror Channel 3 \N \N 5605 \N 53 102 5605 223 489 \N 490 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 490 \N 491 -120 \N \N \N SP Mirror Channel 2 \N \N 5605 \N 53 102 5605 223 491 \N 492 -120 \N \N \N SP Mirror Channel 1 \N \N 5605 \N 53 102 5605 223 492 \N 493 -120 \N \N \N SP Mirror Channel 2 \N \N 5605 \N 53 102 5605 224 493 \N 494 -120 \N \N \N SP Mirror Channel 3 \N \N 5605 \N 53 102 5605 224 494 \N 495 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 495 \N 496 -120 \N \N \N SP Mirror Channel 1 \N \N 5605 \N 53 102 5605 224 496 \N 497 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 497 \N 498 -120 \N \N \N SP Mirror Channel 2 \N \N 5605 \N 53 102 5605 225 498 \N 499 -120 \N \N \N SP Mirror Channel 3 \N \N 5605 \N 53 102 5605 225 499 \N 500 -120 \N \N \N SP Mirror Channel 1 \N \N 5605 \N 53 102 5605 225 500 \N 501 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 501 \N 502 -120 \N \N \N SP Mirror Channel 1 \N \N 5605 \N 53 102 5605 226 502 \N 503 -120 \N \N \N SP Mirror Channel 3 \N \N 5605 \N 53 102 5605 226 503 \N 504 -120 \N \N \N SP Mirror Channel 2 \N \N 5605 \N 53 102 5605 226 504 \N 505 -120 \N \N \N SP Mirror Channel 2 \N \N 5628 \N 53 102 5628 227 505 \N 506 -120 \N \N \N SP Mirror Channel 1 \N \N 5628 \N 53 102 5628 227 506 \N 507 -120 \N \N \N SP Mirror Channel 3 \N \N 5628 \N 53 102 5628 227 507 \N 508 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 508 \N 509 -120 \N \N \N SP Mirror Channel 3 \N \N 5628 \N 53 102 5628 228 509 \N 510 -120 \N \N \N SP Mirror Channel 1 \N \N 5628 \N 53 102 5628 228 510 \N 511 -120 \N \N \N SP Mirror Channel 2 \N \N 5628 \N 53 102 5628 228 511 \N 512 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 512 \N 513 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 513 \N 514 -120 \N \N \N SP Mirror Channel 2 \N \N 5628 \N 53 102 5628 229 514 \N 515 -120 \N \N \N SP Mirror Channel 1 \N \N 5628 \N 53 102 5628 229 515 \N 516 -120 \N \N \N SP Mirror Channel 3 \N \N 5628 \N 53 102 5628 229 516 \N 517 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 517 \N 518 -120 \N \N \N SP Mirror Channel 2 \N \N 5628 \N 53 102 5628 230 518 \N 519 -120 \N \N \N SP Mirror Channel 3 \N \N 5628 \N 53 102 5628 230 519 \N 520 -120 \N \N \N SP Mirror Channel 1 \N \N 5628 \N 53 102 5628 230 520 \N 521 -120 \N \N \N SP Mirror Channel 3 \N \N 5651 \N 53 102 5651 231 521 \N 522 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 522 \N 523 -120 \N \N \N SP Mirror Channel 2 \N \N 5651 \N 53 102 5651 231 523 \N 524 -120 \N \N \N SP Mirror Channel 1 \N \N 5651 \N 53 102 5651 231 524 \N 525 -120 \N \N \N SP Mirror Channel 1 \N \N 5651 \N 53 102 5651 232 525 \N 526 -120 \N \N \N SP Mirror Channel 2 \N \N 5651 \N 53 102 5651 232 526 \N 527 -120 \N \N \N SP Mirror Channel 3 \N \N 5651 \N 53 102 5651 232 527 \N 528 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 528 \N 529 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 529 \N 530 -120 \N \N \N SP Mirror Channel 3 \N \N 5651 \N 53 102 5651 233 530 \N 531 -120 \N \N \N SP Mirror Channel 1 \N \N 5651 \N 53 102 5651 233 531 \N 532 -120 \N \N \N SP Mirror Channel 2 \N \N 5651 \N 53 102 5651 233 532 \N 533 -120 \N \N \N SP Mirror Channel 2 \N \N 5651 \N 53 102 5651 234 533 \N 534 -120 \N \N \N SP Mirror Channel 1 \N \N 5651 \N 53 102 5651 234 534 \N 535 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 535 \N 536 -120 \N \N \N SP Mirror Channel 3 \N \N 5651 \N 53 102 5651 234 536 \N 537 -120 \N \N \N SP Mirror Channel 2 \N \N 5676 \N 53 102 5676 235 537 \N 538 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 538 \N 539 -120 \N \N \N SP Mirror Channel 1 \N \N 5676 \N 53 102 5676 235 539 \N 540 -120 \N \N \N SP Mirror Channel 3 \N \N 5676 \N 53 102 5676 235 540 \N 541 -120 \N \N \N SP Mirror Channel 3 \N \N 5676 \N 53 102 5676 236 541 \N 542 -120 \N \N \N SP Mirror Channel 2 \N \N 5676 \N 53 102 5676 236 542 \N 543 -120 \N \N \N SP Mirror Channel 1 \N \N 5676 \N 53 102 5676 236 543 \N 544 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 544 \N 545 -120 \N \N \N SP Mirror Channel 2 \N \N 5676 \N 53 102 5676 237 545 \N 546 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 546 \N 547 -120 \N \N \N SP Mirror Channel 3 \N \N 5676 \N 53 102 5676 237 547 \N 548 -120 \N \N \N SP Mirror Channel 1 \N \N 5676 \N 53 102 5676 237 548 \N 549 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 549 \N 550 -120 \N \N \N SP Mirror Channel 2 \N \N 5676 \N 53 102 5676 238 550 \N 551 -120 \N \N \N SP Mirror Channel 3 \N \N 5676 \N 53 102 5676 238 551 \N 552 -120 \N \N \N SP Mirror Channel 1 \N \N 5676 \N 53 102 5676 238 552 \N 553 -120 \N \N \N SP Mirror Channel 1 \N \N 5701 \N 53 102 5701 239 553 \N 554 -120 \N \N \N SP Mirror Channel 2 \N \N 5701 \N 53 102 5701 239 554 \N 555 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 555 \N 556 -120 \N \N \N SP Mirror Channel 3 \N \N 5701 \N 53 102 5701 239 556 \N 557 -120 \N \N \N SP Mirror Channel 1 \N \N 5701 \N 53 102 5701 240 557 \N 558 -120 \N \N \N SP Mirror Channel 3 \N \N 5701 \N 53 102 5701 240 558 \N 559 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 559 \N 560 -120 \N \N \N SP Mirror Channel 2 \N \N 5701 \N 53 102 5701 240 560 \N 561 -120 \N \N \N SP Mirror Channel 3 \N \N 5701 \N 53 102 5701 241 561 \N 562 -120 \N \N \N SP Mirror Channel 2 \N \N 5701 \N 53 102 5701 241 562 \N 563 -120 \N \N \N SP Mirror Channel 1 \N \N 5701 \N 53 102 5701 241 563 \N 564 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 564 \N 565 -120 \N \N \N SP Mirror Channel 3 \N \N 5701 \N 53 102 5701 242 565 \N 566 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 566 \N 567 -120 \N \N \N SP Mirror Channel 1 \N \N 5701 \N 53 102 5701 242 567 \N 568 -120 \N \N \N SP Mirror Channel 2 \N \N 5701 \N 53 102 5701 242 568 \N 569 -120 \N \N \N SP Mirror Channel 2 \N \N 5723 \N 53 102 5723 243 569 \N 570 -120 \N \N \N SP Mirror Channel 1 \N \N 5723 \N 53 102 5723 243 570 \N 571 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 571 \N 572 -120 \N \N \N SP Mirror Channel 3 \N \N 5723 \N 53 102 5723 243 572 \N 573 -120 \N \N \N SP Mirror Channel 1 \N \N 5723 \N 53 102 5723 244 573 \N 574 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 574 \N 575 -120 \N \N \N SP Mirror Channel 3 \N \N 5723 \N 53 102 5723 244 575 \N 576 -120 \N \N \N SP Mirror Channel 2 \N \N 5723 \N 53 102 5723 244 576 \N 577 -120 \N \N \N SP Mirror Channel 3 \N \N 5723 \N 53 102 5723 245 577 \N 578 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 578 \N 579 -120 \N \N \N SP Mirror Channel 1 \N \N 5723 \N 53 102 5723 245 579 \N 580 -120 \N \N \N SP Mirror Channel 2 \N \N 5723 \N 53 102 5723 245 580 \N 581 -120 \N \N \N SP Mirror Channel 1 \N \N 5723 \N 53 102 5723 246 581 \N 582 -120 \N \N \N SP Mirror Channel 2 \N \N 5723 \N 53 102 5723 246 582 \N 583 -120 \N \N \N SP Mirror Channel 3 \N \N 5723 \N 53 102 5723 246 583 \N 584 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 584 \N 585 -120 \N \N \N SP Mirror Channel 2 \N \N 5748 \N 53 102 5748 247 585 \N 586 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 586 \N 587 -120 \N \N \N SP Mirror Channel 1 \N \N 5748 \N 53 102 5748 247 587 \N 588 -120 \N \N \N SP Mirror Channel 3 \N \N 5748 \N 53 102 5748 247 588 \N 589 -120 \N \N \N SP Mirror Channel 3 \N \N 5748 \N 53 102 5748 248 589 \N 590 -120 \N \N \N SP Mirror Channel 1 \N \N 5748 \N 53 102 5748 248 590 \N 591 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 591 \N 592 -120 \N \N \N SP Mirror Channel 2 \N \N 5748 \N 53 102 5748 248 592 \N 593 -120 \N \N \N SP Mirror Channel 1 \N \N 5748 \N 53 102 5748 249 593 \N 594 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 594 \N 595 -120 \N \N \N SP Mirror Channel 3 \N \N 5748 \N 53 102 5748 249 595 \N 596 -120 \N \N \N SP Mirror Channel 2 \N \N 5748 \N 53 102 5748 249 596 \N 597 -120 \N \N \N SP Mirror Channel 1 \N \N 5748 \N 53 102 5748 250 597 \N 598 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 598 \N 599 -120 \N \N \N SP Mirror Channel 3 \N \N 5748 \N 53 102 5748 250 599 \N 600 -120 \N \N \N SP Mirror Channel 2 \N \N 5748 \N 53 102 5748 250 600 \N 601 -120 \N \N \N SP Mirror Channel 1 \N \N 5770 \N 53 102 5770 251 601 \N 602 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 602 \N 603 -120 \N \N \N SP Mirror Channel 2 \N \N 5770 \N 53 102 5770 251 603 \N 604 -120 \N \N \N SP Mirror Channel 3 \N \N 5770 \N 53 102 5770 251 604 \N 605 -120 \N \N \N SP Mirror Channel 3 \N \N 5770 \N 53 102 5770 252 605 \N 606 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 606 \N 607 -120 \N \N \N SP Mirror Channel 2 \N \N 5770 \N 53 102 5770 252 607 \N 608 -120 \N \N \N SP Mirror Channel 1 \N \N 5770 \N 53 102 5770 252 608 \N 609 -120 \N \N \N SP Mirror Channel 3 \N \N 5770 \N 53 102 5770 253 609 \N 610 -120 \N \N \N SP Mirror Channel 1 \N \N 5770 \N 53 102 5770 253 610 \N 611 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 611 \N 612 -120 \N \N \N SP Mirror Channel 2 \N \N 5770 \N 53 102 5770 253 612 \N 613 -120 \N \N \N SP Mirror Channel 1 \N \N 5770 \N 53 102 5770 254 613 \N 614 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 614 \N 615 -120 \N \N \N SP Mirror Channel 2 \N \N 5770 \N 53 102 5770 254 615 \N 616 -120 \N \N \N SP Mirror Channel 3 \N \N 5770 \N 53 102 5770 254 616 \N 617 -120 \N \N \N SP Mirror Channel 2 \N \N 5792 \N 53 102 5792 255 617 \N 618 -120 \N \N \N SP Mirror Channel 1 \N \N 5792 \N 53 102 5792 255 618 \N 619 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 619 \N 620 -120 \N \N \N SP Mirror Channel 3 \N \N 5792 \N 53 102 5792 255 620 \N 621 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 621 \N 622 -120 \N \N \N SP Mirror Channel 3 \N \N 5792 \N 53 102 5792 256 622 \N 623 -120 \N \N \N SP Mirror Channel 1 \N \N 5792 \N 53 102 5792 256 623 \N 624 -120 \N \N \N SP Mirror Channel 2 \N \N 5792 \N 53 102 5792 256 624 \N 625 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 625 \N 626 -120 \N \N \N SP Mirror Channel 2 \N \N 5792 \N 53 102 5792 257 626 \N 627 -120 \N \N \N SP Mirror Channel 3 \N \N 5792 \N 53 102 5792 257 627 \N 628 -120 \N \N \N SP Mirror Channel 1 \N \N 5792 \N 53 102 5792 257 628 \N 629 -120 \N \N \N SP Mirror Channel 1 \N \N 5792 \N 53 102 5792 258 629 \N 630 -120 \N \N \N SP Mirror Channel 2 \N \N 5792 \N 53 102 5792 258 630 \N 631 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 631 \N 632 -120 \N \N \N SP Mirror Channel 3 \N \N 5792 \N 53 102 5792 258 632 \N 633 -120 \N \N \N SP Mirror Channel 3 \N \N 5814 \N 53 102 5814 259 633 \N 634 -120 \N \N \N SP Mirror Channel 2 \N \N 5814 \N 53 102 5814 259 634 \N 635 -120 \N \N \N SP Mirror Channel 1 \N \N 5814 \N 53 102 5814 259 635 \N 636 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 636 \N 637 -120 \N \N \N SP Mirror Channel 2 \N \N 5814 \N 53 102 5814 260 637 \N 638 -120 \N \N \N SP Mirror Channel 1 \N \N 5814 \N 53 102 5814 260 638 \N 639 -120 \N \N \N SP Mirror Channel 3 \N \N 5814 \N 53 102 5814 260 639 \N 640 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 640 \N 641 -120 \N \N \N SP Mirror Channel 2 \N \N 5814 \N 53 102 5814 261 641 \N 642 -120 \N \N \N SP Mirror Channel 3 \N \N 5814 \N 53 102 5814 261 642 \N 643 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 643 \N 644 -120 \N \N \N SP Mirror Channel 1 \N \N 5814 \N 53 102 5814 261 644 \N 645 -120 \N \N \N SP Mirror Channel 1 \N \N 5814 \N 53 102 5814 262 645 \N 646 -120 \N \N \N SP Mirror Channel 2 \N \N 5814 \N 53 102 5814 262 646 \N 647 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 647 \N 648 -120 \N \N \N SP Mirror Channel 3 \N \N 5814 \N 53 102 5814 262 648 \N 649 -120 \N \N \N SP Mirror Channel 1 \N \N 5837 \N 53 102 5837 263 649 \N 650 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 650 \N 651 -120 \N \N \N SP Mirror Channel 3 \N \N 5837 \N 53 102 5837 263 651 \N 652 -120 \N \N \N SP Mirror Channel 2 \N \N 5837 \N 53 102 5837 263 652 \N 653 -120 \N \N \N SP Mirror Channel 2 \N \N 5837 \N 53 102 5837 264 653 \N 654 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 654 \N 655 -120 \N \N \N SP Mirror Channel 1 \N \N 5837 \N 53 102 5837 264 655 \N 656 -120 \N \N \N SP Mirror Channel 3 \N \N 5837 \N 53 102 5837 264 656 \N 657 -120 \N \N \N SP Mirror Channel 2 \N \N 5837 \N 53 102 5837 265 657 \N 658 -120 \N \N \N SP Mirror Channel 1 \N \N 5837 \N 53 102 5837 265 658 \N 659 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 659 \N 660 -120 \N \N \N SP Mirror Channel 3 \N \N 5837 \N 53 102 5837 265 660 \N 661 -120 \N \N \N SP Mirror Channel 3 \N \N 5837 \N 53 102 5837 266 661 \N 662 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 662 \N 663 -120 \N \N \N SP Mirror Channel 1 \N \N 5837 \N 53 102 5837 266 663 \N 664 -120 \N \N \N SP Mirror Channel 2 \N \N 5837 \N 53 102 5837 266 664 \N 665 -120 \N \N \N SP Mirror Channel 1 \N \N 5864 \N 53 102 5864 267 665 \N 666 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 666 \N 667 -120 \N \N \N SP Mirror Channel 2 \N \N 5864 \N 53 102 5864 267 667 \N 668 -120 \N \N \N SP Mirror Channel 3 \N \N 5864 \N 53 102 5864 267 668 \N 669 -120 \N \N \N SP Mirror Channel 2 \N \N 5864 \N 53 102 5864 268 669 \N 670 -120 \N \N \N SP Mirror Channel 1 \N \N 5864 \N 53 102 5864 268 670 \N 671 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 671 \N 672 -120 \N \N \N SP Mirror Channel 3 \N \N 5864 \N 53 102 5864 268 672 \N 673 -120 \N \N \N SP Mirror Channel 3 \N \N 5864 \N 53 102 5864 269 673 \N 674 -120 \N \N \N SP Mirror Channel 2 \N \N 5864 \N 53 102 5864 269 674 \N 675 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 675 \N 676 -120 \N \N \N SP Mirror Channel 1 \N \N 5864 \N 53 102 5864 269 676 \N 677 -120 \N \N \N SP Mirror Channel 2 \N \N 5864 \N 53 102 5864 270 677 \N 678 -120 \N \N \N SP Mirror Channel 1 \N \N 5864 \N 53 102 5864 270 678 \N 679 -120 \N \N \N SP Mirror Channel 3 \N \N 5864 \N 53 102 5864 270 679 \N 680 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 680 \N \. -- -- Data for Name: filterset; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filterset (id, permissions, lotnumber, manufacturer, model, serialnumber, version, creation_id, external_id, group_id, owner_id, update_id, dichroic, instrument) FROM stdin; \. -- -- Data for Name: filtersetemissionfilterlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filtersetemissionfilterlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: filtersetexcitationfilterlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filtersetexcitationfilterlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: filtertype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY filtertype (id, permissions, value, external_id) FROM stdin; 1 -52 LongPass \N 2 -52 ShortPass \N 3 -52 BandPass \N 4 -52 MultiPass \N 5 -52 Dichroic \N 6 -52 NeutralDensity \N 7 -52 Other \N 8 -52 Unknown \N \. -- -- Data for Name: format; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY format (id, permissions, value, external_id) FROM stdin; 1 -52 PNG \N 2 -52 Companion/PNG \N 3 -52 JPEG \N 4 -52 Companion/JPEG \N 5 -52 PGM \N 6 -52 Companion/PGM \N 7 -52 Fits \N 8 -52 Companion/Fits \N 9 -52 GIF \N 10 -52 Companion/GIF \N 11 -52 BMP \N 12 -52 Companion/BMP \N 13 -52 Dicom \N 14 -52 Companion/Dicom \N 15 -52 BioRad \N 16 -52 Companion/BioRad \N 17 -52 IPLab \N 18 -52 Companion/IPLab \N 19 -52 Deltavision \N 20 -52 Companion/Deltavision \N 21 -52 MRC \N 22 -52 Companion/MRC \N 23 -52 Gatan \N 24 -52 Companion/Gatan \N 25 -52 Imaris \N 26 -52 Companion/Imaris \N 27 -52 OpenlabRaw \N 28 -52 Companion/OpenlabRaw \N 29 -52 OMEXML \N 30 -52 Companion/OMEXML \N 31 -52 LIF \N 32 -52 Companion/LIF \N 33 -52 AVI \N 34 -52 Companion/AVI \N 35 -52 QT \N 36 -52 Companion/QT \N 37 -52 Pict \N 38 -52 Companion/Pict \N 39 -52 SDT \N 40 -52 Companion/SDT \N 41 -52 EPS \N 42 -52 Companion/EPS \N 43 -52 Slidebook \N 44 -52 Companion/Slidebook \N 45 -52 Alicona \N 46 -52 Companion/Alicona \N 47 -52 MNG \N 48 -52 Companion/MNG \N 49 -52 NRRD \N 50 -52 Companion/NRRD \N 51 -52 Khoros \N 52 -52 Companion/Khoros \N 53 -52 Visitech \N 54 -52 Companion/Visitech \N 55 -52 LIM \N 56 -52 Companion/LIM \N 57 -52 PSD \N 58 -52 Companion/PSD \N 59 -52 InCell \N 60 -52 Companion/InCell \N 61 -52 ICS \N 62 -52 Companion/ICS \N 63 -52 PerkinElmer \N 64 -52 Companion/PerkinElmer \N 65 -52 TCS \N 66 -52 Companion/TCS \N 67 -52 FV1000 \N 68 -52 Companion/FV1000 \N 69 -52 ZeissZVI \N 70 -52 Companion/ZeissZVI \N 71 -52 IPW \N 72 -52 Companion/IPW \N 73 -52 LegacyND2 \N 74 -52 Companion/LegacyND2 \N 75 -52 ND2 \N 76 -52 Companion/ND2 \N 77 -52 PCI \N 78 -52 Companion/PCI \N 79 -52 ImarisHDF \N 80 -52 Companion/ImarisHDF \N 81 -52 Metamorph \N 82 -52 Companion/Metamorph \N 83 -52 ZeissLSM \N 84 -52 Companion/ZeissLSM \N 85 -52 SEQ \N 86 -52 Companion/SEQ \N 87 -52 Gel \N 88 -52 Companion/Gel \N 89 -52 ImarisTiff \N 90 -52 Companion/ImarisTiff \N 91 -52 Flex \N 92 -52 Companion/Flex \N 93 -52 SVS \N 94 -52 Companion/SVS \N 95 -52 Leica \N 96 -52 Companion/Leica \N 97 -52 Nikon \N 98 -52 Companion/Nikon \N 99 -52 Fluoview \N 100 -52 Companion/Fluoview \N 101 -52 Prairie \N 102 -52 Companion/Prairie \N 103 -52 Micromanager \N 104 -52 Companion/Micromanager \N 105 -52 ImprovisionTiff \N 106 -52 Companion/ImprovisionTiff \N 107 -52 OMETiff \N 108 -52 Companion/OMETiff \N 109 -52 MetamorphTiff \N 110 -52 Companion/MetamorphTiff \N 111 -52 Tiff \N 112 -52 Companion/Tiff \N 113 -52 Openlab \N 114 -52 Companion/Openlab \N 115 -52 MIAS \N 116 -52 Companion/MIAS \N 117 -35 Zip \N 118 -35 APNG \N 119 -35 PCX \N 120 -35 Ivision \N 121 -35 GatanDM2 \N 122 -35 L2D \N 123 -35 Companion/L2D \N 124 -35 FEI \N 125 -35 NAF \N 126 -35 MINC \N 127 -35 MRW \N 128 -35 TillVision \N 129 -35 Companion/TillVision \N 130 -35 ARF \N 131 -35 Cellomics \N 132 -35 LiFlim \N 133 -35 Targa \N 134 -35 OxfordInstruments \N 135 -35 VGSAM \N 136 -35 HIS \N 137 -35 WATOP \N 138 -35 Seiko \N 139 -35 Topometrix \N 140 -35 UBM \N 141 -35 Quesant \N 142 -35 BioRadGel \N 143 -35 RHK \N 144 -35 MolecularImaging \N 145 -35 CellWorx \N 146 -35 Ecat7 \N 147 -35 VarianFDF \N 148 -35 AIM \N 149 -35 InCell3000 \N 150 -35 Spider \N 151 -35 Volocity \N 152 -35 Imagic \N 153 -35 HamamatsuVMS \N 154 -35 CellSens \N 155 -35 INR \N 156 -35 Kodak \N 157 -35 VolocityClipping \N 158 -35 ZeissCZI \N 159 -35 SIF \N 160 -35 NDPIS \N 161 -35 Povray \N 162 -35 IMOD \N 163 -35 JEOL \N 164 -35 Nifti \N 165 -35 Companion/Nifti \N 166 -35 Analyze \N 167 -35 Companion/Analyze \N 168 -35 APL \N 169 -35 Companion/APL \N 170 -35 Amira \N 171 -35 Scanr \N 172 -35 Companion/Scanr \N 173 -35 BD \N 174 -35 Unisoku \N 175 -35 PDS \N 176 -35 Fuji \N 177 -35 Operetta \N 178 -35 JPEG2000 \N 179 -35 JPX \N 180 -35 Imacon \N 181 -35 LEO \N 182 -35 JPK \N 183 -35 NDPI \N 184 -35 NikonTiff \N 185 -35 PhotoshopTiff \N 186 -35 FEITiff \N 187 -35 SimplePCITiff \N 188 -35 NikonElementsTiff \N 189 -35 Trestle \N 190 -35 SIS \N 191 -35 DNG \N 192 -35 TiffDelegate \N 193 -35 Text \N 194 -35 Burleigh \N 195 -35 SMCamera \N 196 -35 SBIG \N 197 -35 HRDGDF \N 198 -35 Hitachi \N 199 -35 Bruker \N 200 -35 CanonRaw \N \. -- -- Data for Name: groupexperimentermap; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY groupexperimentermap (id, permissions, owner, version, child, external_id, parent, child_index) FROM stdin; 1 -52 f 0 0 \N 1 1 2 -52 f 0 1 \N 2 0 118 -120 f 0 103 \N 53 0 119 -120 f 0 103 \N 1 1 120 -120 t 0 103 \N 54 2 122 -120 f 0 2 \N 54 2 123 -120 f 0 104 \N 53 0 124 -120 f 0 104 \N 1 1 125 -120 t 0 104 \N 55 2 126 -120 f 0 102 \N 55 2 104 -40 f 0 102 \N 53 0 105 -40 f 0 102 \N 1 1 103 -40 t 0 0 \N 53 0 0 -52 t 0 0 \N 0 2 127 -120 f 0 2 \N 3 3 121 -120 f 0 52 \N 54 0 106 -120 f 0 52 \N 0 4 54 -40 f 0 52 \N 1 1 15 -120 f 0 5 \N 0 0 11 -120 f 0 5 \N 1 1 107 -120 t 0 5 \N 3 2 108 -120 f 0 52 \N 3 2 109 -120 f 0 4 \N 3 0 9 -120 f 0 4 \N 1 1 110 -120 f 0 3 \N 3 0 7 -120 f 0 3 \N 1 1 111 -120 f 0 4 \N 53 2 112 -120 f 0 6 \N 53 0 13 -120 f 0 6 \N 1 1 113 -120 f 0 3 \N 53 2 114 -120 f 0 52 \N 53 3 115 -120 f 0 5 \N 53 3 116 -120 f 0 1 \N 53 1 117 -120 f 0 2 \N 53 0 5 -120 f 0 2 \N 1 1 \. -- -- Data for Name: illumination; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY illumination (id, permissions, value, external_id) FROM stdin; 1 -52 Transmitted \N 2 -52 Epifluorescence \N 3 -52 Oblique \N 4 -52 NonLinear \N 5 -52 Other \N 6 -52 Unknown \N \. -- -- Data for Name: image; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY image (id, acquisitiondate, archived, description, permissions, name, partial, version, creation_id, external_id, group_id, owner_id, update_id, experiment, format, imagingenvironment, instrument, objectivesettings, stagelabel) FROM stdin; 71 2012-08-24 16:22:26 f \N -40 s04-decon-colored.ome.tif \N \N 2097 \N 3 2 2097 \N 107 \N \N \N \N 72 2012-08-24 16:25:45 f \N -40 s01-decon-colored.ome.tif \N \N 2249 \N 3 2 2249 \N 107 \N \N \N \N 101 2012-09-04 11:51:10 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series041].ome \N \N 2837 \N 3 2 2837 \N 29 \N \N 101 \N 102 2012-09-04 11:54:17 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series043].ome \N \N 2853 \N 3 2 2853 \N 29 \N \N 102 \N 38 2012-07-27 11:13:18 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series051] \N \N 1055 \N 3 2 1055 \N 31 \N 38 38 \N 39 2012-07-27 11:08:04 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series049] \N \N 1055 \N 3 2 1055 \N 31 \N 39 39 \N 40 2012-07-27 11:02:22 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series047] \N \N 1055 \N 3 2 1055 \N 31 \N 40 40 \N 41 2012-07-27 10:56:49 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series045] \N \N 1055 \N 3 2 1055 \N 31 \N 41 41 \N 42 2012-07-27 10:50:55 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series043] \N \N 1055 \N 3 2 1055 \N 31 \N 42 42 \N 43 2012-07-27 10:45:39 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series041] \N \N 1055 \N 3 2 1055 \N 31 \N 43 43 \N 44 2012-07-27 09:54:35 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series002] \N \N 1118 \N 3 2 1118 \N 31 \N 44 44 \N 45 2012-07-27 10:02:38 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series004] \N \N 1118 \N 3 2 1118 \N 31 \N 45 45 \N 46 2012-07-27 10:09:01 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series006] \N \N 1118 \N 3 2 1118 \N 31 \N 46 46 \N 47 2012-07-27 10:15:42 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series008] \N \N 1118 \N 3 2 1118 \N 31 \N 47 47 \N 48 2012-07-27 10:42:18 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series039] \N \N 1118 \N 3 2 1118 \N 31 \N 48 48 \N 49 2012-07-27 10:30:35 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series037] \N \N 1118 \N 3 2 1118 \N 31 \N 49 49 \N 50 2012-07-27 08:20:22 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series014] \N \N 1143 \N 3 2 1143 \N 31 \N 50 50 \N 51 2012-07-27 08:26:13 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series016] \N \N 1143 \N 3 2 1143 \N 31 \N 51 51 \N 52 2012-07-27 08:33:05 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series019] \N \N 1143 \N 3 2 1143 \N 31 \N 52 52 \N 53 2012-07-27 08:41:06 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series021] \N \N 1143 \N 3 2 1143 \N 31 \N 53 53 \N 54 2012-07-27 08:47:03 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series023] \N \N 1143 \N 3 2 1143 \N 31 \N 54 54 \N 55 2012-07-27 08:52:18 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series025] \N \N 1143 \N 3 2 1143 \N 31 \N 55 55 \N 56 2012-07-27 09:02:14 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series027] \N \N 1143 \N 3 2 1143 \N 31 \N 56 56 \N 57 2012-07-27 09:07:52 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series029] \N \N 1143 \N 3 2 1143 \N 31 \N 57 57 \N 58 2012-07-27 09:13:16 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series031] \N \N 1143 \N 3 2 1143 \N 31 \N 58 58 \N 59 2012-07-27 09:19:38 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series033] \N \N 1143 \N 3 2 1143 \N 31 \N 59 59 \N 60 2012-07-27 10:23:47 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series035] \N \N 1143 \N 3 2 1143 \N 31 \N 60 60 \N 61 2012-05-03 15:49:19 f \N -40 2012.05.03 OS 2+6Hrs P4 Wanny.lif [Series001] \N \N 1614 \N 3 2 1614 \N 31 \N 61 61 \N 62 2012-05-03 15:55:43 f \N -40 2012.05.03 OS 2+6Hrs P4 Wanny.lif [Series004] \N \N 1614 \N 3 2 1614 \N 31 \N 62 62 \N 63 2012-05-03 16:01:38 f \N -40 2012.05.03 OS 2+6Hrs P4 Wanny.lif [Series006] \N \N 1614 \N 3 2 1614 \N 31 \N 63 63 \N 64 2012-05-03 16:08:19 f \N -40 2012.05.03 OS 2+6Hrs P4 Wanny.lif [Series008] \N \N 1614 \N 3 2 1614 \N 31 \N 64 64 \N 69 2012-08-24 16:20:14 f \N -40 s08-decon-colored.ome.tif \N \N 2061 \N 3 2 2061 \N 107 \N \N \N \N 70 2012-08-24 16:21:23 f \N -40 s06-decon-colored.ome.tif \N \N 2079 \N 3 2 2079 \N 107 \N \N \N \N 103 2012-09-04 11:57:35 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series045].ome \N \N 2869 \N 3 2 2869 \N 29 \N \N 103 \N 104 2012-09-04 12:03:59 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series047].ome \N \N 2885 \N 3 2 2885 \N 29 \N \N 104 \N 105 2012-09-04 12:07:31 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series049].ome \N \N 2901 \N 3 2 2901 \N 29 \N \N 105 \N 106 2012-09-04 12:10:01 f \N -40 2012.07.26 ONS 2+6Hrs 0.3RTU ATCC P4.lif [Series051].ome \N \N 2917 \N 3 2 2917 \N 29 \N \N 106 \N 107 2012-09-04 12:59:51 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series002].ome \N \N 3284 \N 3 2 3284 \N 29 \N \N 107 \N 108 2012-09-04 14:05:30 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series004].ome \N \N 3303 \N 3 2 3303 \N 29 \N \N 108 \N 109 2012-09-04 14:08:24 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series006].ome \N \N 3327 \N 3 2 3327 \N 29 \N \N 109 \N 110 2012-09-04 14:11:51 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series008].ome \N \N 3347 \N 3 2 3347 \N 29 \N \N 110 \N 112 2012-09-04 14:19:24 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series037].ome \N \N 3461 \N 3 2 3461 \N 29 \N \N 112 \N 113 2012-09-04 14:23:14 f \N -40 2012.07.26 OS 2+6Hrs 0.3RTU ATCC P4.lif [Series039].ome \N \N 3488 \N 3 2 3488 \N 29 \N \N 113 \N 114 2012-09-04 14:38:38 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series019].ome \N \N 3670 \N 3 2 3670 \N 29 \N \N 114 \N 115 2012-09-04 15:33:16 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series021].ome \N \N 3686 \N 3 2 3686 \N 29 \N \N 115 \N 116 2012-09-04 15:36:37 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series023].ome \N \N 3702 \N 3 2 3702 \N 29 \N \N 116 \N 117 2012-09-04 15:40:17 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series025].ome \N \N 3718 \N 3 2 3718 \N 29 \N \N 117 \N 118 2012-09-04 15:43:50 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series027].ome \N \N 3734 \N 3 2 3734 \N 29 \N \N 118 \N 119 2012-09-04 15:46:38 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series029].ome \N \N 3750 \N 3 2 3750 \N 29 \N \N 119 \N 120 2012-09-04 15:51:17 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series031].ome \N \N 3766 \N 3 2 3766 \N 29 \N \N 120 \N 121 2012-09-04 15:54:21 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series033].ome \N \N 3782 \N 3 2 3782 \N 29 \N \N 121 \N 122 2012-09-04 15:57:19 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series035].ome \N \N 3798 \N 3 2 3798 \N 29 \N \N 122 \N 123 2012-09-04 16:11:43 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series014] Ch1+2.ome \N \N 4112 \N 3 2 4112 \N 29 \N \N 123 \N 124 2012-09-04 16:14:20 f \N -40 2012.07.26 SNS 2+6Hrs 0.1RTU ATCC P4.lif [Series016] Ch1+2.ome \N \N 4128 \N 3 2 4128 \N 29 \N \N 124 \N 151 2012-09-06 08:15:43 f Block -120 c1.lif [FRAP/FRAP Pre Series07] \N \N 5151 \N 53 102 5151 \N 31 \N 151 151 \N 152 2012-09-06 08:16:25 f Block -120 c1.lif [FRAP/FRAP Pb2 Series09] \N \N 5151 \N 53 102 5151 \N 31 \N 152 152 \N 153 2012-09-06 08:15:56 f Block -120 c1.lif [FRAP/FRAP Bleach Series06] \N \N 5151 \N 53 102 5151 \N 31 \N 153 153 \N 154 2012-09-06 08:15:58 f Block -120 c1.lif [FRAP/FRAP Pb1 Series08] \N \N 5151 \N 53 102 5151 \N 31 \N 154 154 \N 155 2012-09-06 09:00:52 f Block -120 c10.lif [FRAP/FRAP Pre Series02] \N \N 5173 \N 53 102 5173 \N 31 \N 155 155 \N 156 2012-09-06 09:01:34 f Block -120 c10.lif [FRAP/FRAP Pb2 Series04] \N \N 5173 \N 53 102 5173 \N 31 \N 156 156 \N 157 2012-09-06 09:01:05 f Block -120 c10.lif [FRAP/FRAP Bleach Series01] \N \N 5173 \N 53 102 5173 \N 31 \N 157 157 \N 158 2012-09-06 09:01:07 f Block -120 c10.lif [FRAP/FRAP Pb1 Series03] \N \N 5173 \N 53 102 5173 \N 31 \N 158 158 \N 159 2012-09-06 09:04:31 f Block -120 c11.lif [FRAP/FRAP Pre Series02] \N \N 5195 \N 53 102 5195 \N 31 \N 159 159 \N 160 2012-09-06 09:05:14 f Block -120 c11.lif [FRAP/FRAP Pb2 Series04] \N \N 5195 \N 53 102 5195 \N 31 \N 160 160 \N 161 2012-09-06 09:04:45 f Block -120 c11.lif [FRAP/FRAP Bleach Series01] \N \N 5195 \N 53 102 5195 \N 31 \N 161 161 \N 162 2012-09-06 09:04:47 f Block -120 c11.lif [FRAP/FRAP Pb1 Series03] \N \N 5195 \N 53 102 5195 \N 31 \N 162 162 \N 163 2012-09-06 09:09:41 f Block -120 c12.lif [FRAP/FRAP Pre Series02] \N \N 5218 \N 53 102 5218 \N 31 \N 163 163 \N 164 2012-09-06 09:10:24 f Block -120 c12.lif [FRAP/FRAP Pb2 Series04] \N \N 5218 \N 53 102 5218 \N 31 \N 164 164 \N 165 2012-09-06 09:09:55 f Block -120 c12.lif [FRAP/FRAP Bleach Series01] \N \N 5218 \N 53 102 5218 \N 31 \N 165 165 \N 166 2012-09-06 09:09:57 f Block -120 c12.lif [FRAP/FRAP Pb1 Series03] \N \N 5218 \N 53 102 5218 \N 31 \N 166 166 \N 167 2012-09-06 09:14:14 f Block -120 c13.lif [FRAP/FRAP Pre Series02] \N \N 5241 \N 53 102 5241 \N 31 \N 167 167 \N 168 2012-09-06 09:14:57 f Block -120 c13.lif [FRAP/FRAP Pb2 Series04] \N \N 5241 \N 53 102 5241 \N 31 \N 168 168 \N 169 2012-09-06 09:14:28 f Block -120 c13.lif [FRAP/FRAP Bleach Series01] \N \N 5241 \N 53 102 5241 \N 31 \N 169 169 \N 170 2012-09-06 09:14:30 f Block -120 c13.lif [FRAP/FRAP Pb1 Series03] \N \N 5241 \N 53 102 5241 \N 31 \N 170 170 \N 171 2012-09-06 09:19:13 f Block -120 c147.lif [FRAP/FRAP Pre Series03] \N \N 5263 \N 53 102 5263 \N 31 \N 171 171 \N 172 2012-09-06 09:19:55 f Block -120 c147.lif [FRAP/FRAP Pb2 Series05] \N \N 5263 \N 53 102 5263 \N 31 \N 172 172 \N 173 2012-09-06 09:19:26 f Block -120 c147.lif [FRAP/FRAP Bleach Series02] \N \N 5263 \N 53 102 5263 \N 31 \N 173 173 \N 174 2012-09-06 09:19:28 f Block -120 c147.lif [FRAP/FRAP Pb1 Series04] \N \N 5263 \N 53 102 5263 \N 31 \N 174 174 \N 175 2012-09-06 09:23:16 f Block -120 c15.lif [FRAP/FRAP Pre Series02] \N \N 5285 \N 53 102 5285 \N 31 \N 175 175 \N 176 2012-09-06 09:23:58 f Block -120 c15.lif [FRAP/FRAP Pb2 Series04] \N \N 5285 \N 53 102 5285 \N 31 \N 176 176 \N 177 2012-09-06 09:23:30 f Block -120 c15.lif [FRAP/FRAP Bleach Series01] \N \N 5285 \N 53 102 5285 \N 31 \N 177 177 \N 178 2012-09-06 09:23:32 f Block -120 c15.lif [FRAP/FRAP Pb1 Series03] \N \N 5285 \N 53 102 5285 \N 31 \N 178 178 \N 179 2012-09-06 08:20:44 f Block -120 c2.lif [FRAP/FRAP Pre Series02] \N \N 5307 \N 53 102 5307 \N 31 \N 179 179 \N 180 2012-09-06 08:21:27 f Block -120 c2.lif [FRAP/FRAP Pb2 Series04] \N \N 5307 \N 53 102 5307 \N 31 \N 180 180 \N 181 2012-09-06 08:20:58 f Block -120 c2.lif [FRAP/FRAP Bleach Series01] \N \N 5307 \N 53 102 5307 \N 31 \N 181 181 \N 182 2012-09-06 08:21:00 f Block -120 c2.lif [FRAP/FRAP Pb1 Series03] \N \N 5307 \N 53 102 5307 \N 31 \N 182 182 \N 183 2012-09-06 08:27:13 f Block -120 c3.lif [FRAP/FRAP Pre Series03] \N \N 5329 \N 53 102 5329 \N 31 \N 183 183 \N 184 2012-09-06 08:27:56 f Block -120 c3.lif [FRAP/FRAP Pb2 Series05] \N \N 5329 \N 53 102 5329 \N 31 \N 184 184 \N 185 2012-09-06 08:27:27 f Block -120 c3.lif [FRAP/FRAP Bleach Series02] \N \N 5329 \N 53 102 5329 \N 31 \N 185 185 \N 186 2012-09-06 08:27:29 f Block -120 c3.lif [FRAP/FRAP Pb1 Series04] \N \N 5329 \N 53 102 5329 \N 31 \N 186 186 \N 187 2012-09-06 08:33:02 f Block -120 c4.lif [FRAP/FRAP Pre Series03] \N \N 5397 \N 53 102 5397 \N 31 \N 187 187 \N 188 2012-09-06 08:33:45 f Block -120 c4.lif [FRAP/FRAP Pb2 Series05] \N \N 5397 \N 53 102 5397 \N 31 \N 188 188 \N 189 2012-09-06 08:33:16 f Block -120 c4.lif [FRAP/FRAP Bleach Series02] \N \N 5397 \N 53 102 5397 \N 31 \N 189 189 \N 190 2012-09-06 08:33:18 f Block -120 c4.lif [FRAP/FRAP Pb1 Series04] \N \N 5397 \N 53 102 5397 \N 31 \N 190 190 \N 191 2012-09-06 08:37:21 f Block -120 c5.lif [FRAP/FRAP Pre Series03] \N \N 5421 \N 53 102 5421 \N 31 \N 191 191 \N 192 2012-09-06 08:38:03 f Block -120 c5.lif [FRAP/FRAP Pb2 Series05] \N \N 5421 \N 53 102 5421 \N 31 \N 192 192 \N 193 2012-09-06 08:37:35 f Block -120 c5.lif [FRAP/FRAP Bleach Series02] \N \N 5421 \N 53 102 5421 \N 31 \N 193 193 \N 194 2012-09-06 08:37:37 f Block -120 c5.lif [FRAP/FRAP Pb1 Series04] \N \N 5421 \N 53 102 5421 \N 31 \N 194 194 \N 195 2012-09-06 08:43:41 f Block -120 c6.lif [FRAP/FRAP Pre Series03] \N \N 5446 \N 53 102 5446 \N 31 \N 195 195 \N 196 2012-09-06 08:44:23 f Block -120 c6.lif [FRAP/FRAP Pb2 Series05] \N \N 5446 \N 53 102 5446 \N 31 \N 196 196 \N 197 2012-09-06 08:43:55 f Block -120 c6.lif [FRAP/FRAP Bleach Series02] \N \N 5446 \N 53 102 5446 \N 31 \N 197 197 \N 198 2012-09-06 08:43:57 f Block -120 c6.lif [FRAP/FRAP Pb1 Series04] \N \N 5446 \N 53 102 5446 \N 31 \N 198 198 \N 199 2012-09-06 08:47:21 f Block -120 c7.lif [FRAP/FRAP Pre Series02] \N \N 5471 \N 53 102 5471 \N 31 \N 199 199 \N 200 2012-09-06 08:48:03 f Block -120 c7.lif [FRAP/FRAP Pb2 Series04] \N \N 5471 \N 53 102 5471 \N 31 \N 200 200 \N 201 2012-09-06 08:47:34 f Block -120 c7.lif [FRAP/FRAP Bleach Series01] \N \N 5471 \N 53 102 5471 \N 31 \N 201 201 \N 202 2012-09-06 08:47:36 f Block -120 c7.lif [FRAP/FRAP Pb1 Series03] \N \N 5471 \N 53 102 5471 \N 31 \N 202 202 \N 203 2012-09-06 08:50:48 f Block -120 c8.lif [FRAP/FRAP Pre Series02] \N \N 5493 \N 53 102 5493 \N 31 \N 203 203 \N 204 2012-09-06 08:51:30 f Block -120 c8.lif [FRAP/FRAP Pb2 Series04] \N \N 5493 \N 53 102 5493 \N 31 \N 204 204 \N 205 2012-09-06 08:51:02 f Block -120 c8.lif [FRAP/FRAP Bleach Series01] \N \N 5493 \N 53 102 5493 \N 31 \N 205 205 \N 206 2012-09-06 08:51:03 f Block -120 c8.lif [FRAP/FRAP Pb1 Series03] \N \N 5493 \N 53 102 5493 \N 31 \N 206 206 \N 207 2012-09-06 08:56:53 f Block -120 c9.lif [FRAP/FRAP Pre Series02] \N \N 5515 \N 53 102 5515 \N 31 \N 207 207 \N 208 2012-09-06 08:57:36 f Block -120 c9.lif [FRAP/FRAP Pb2 Series04] \N \N 5515 \N 53 102 5515 \N 31 \N 208 208 \N 209 2012-09-06 08:57:07 f Block -120 c9.lif [FRAP/FRAP Bleach Series01] \N \N 5515 \N 53 102 5515 \N 31 \N 209 209 \N 210 2012-09-06 08:57:09 f Block -120 c9.lif [FRAP/FRAP Pb1 Series03] \N \N 5515 \N 53 102 5515 \N 31 \N 210 210 \N 211 2012-09-06 09:32:43 f Block -120 c1.lif [FRAP/FRAP Pre Series03] \N \N 5539 \N 53 102 5539 \N 31 \N 211 211 \N 212 2012-09-06 09:33:26 f Block -120 c1.lif [FRAP/FRAP Pb2 Series05] \N \N 5539 \N 53 102 5539 \N 31 \N 212 212 \N 213 2012-09-06 09:32:57 f Block -120 c1.lif [FRAP/FRAP Bleach Series02] \N \N 5539 \N 53 102 5539 \N 31 \N 213 213 \N 214 2012-09-06 09:32:59 f Block -120 c1.lif [FRAP/FRAP Pb1 Series04] \N \N 5539 \N 53 102 5539 \N 31 \N 214 214 \N 215 2012-09-06 10:22:13 f Block -120 c10.lif [FRAP/FRAP Pre Series02] \N \N 5561 \N 53 102 5561 \N 31 \N 215 215 \N 216 2012-09-06 10:22:55 f Block -120 c10.lif [FRAP/FRAP Pb2 Series04] \N \N 5561 \N 53 102 5561 \N 31 \N 216 216 \N 217 2012-09-06 10:22:27 f Block -120 c10.lif [FRAP/FRAP Bleach Series01] \N \N 5561 \N 53 102 5561 \N 31 \N 217 217 \N 218 2012-09-06 10:22:29 f Block -120 c10.lif [FRAP/FRAP Pb1 Series03] \N \N 5561 \N 53 102 5561 \N 31 \N 218 218 \N 219 2012-09-06 10:25:55 f Block -120 c11.lif [FRAP/FRAP Pre Series02] \N \N 5583 \N 53 102 5583 \N 31 \N 219 219 \N 220 2012-09-06 10:26:37 f Block -120 c11.lif [FRAP/FRAP Pb2 Series04] \N \N 5583 \N 53 102 5583 \N 31 \N 220 220 \N 221 2012-09-06 10:26:08 f Block -120 c11.lif [FRAP/FRAP Bleach Series01] \N \N 5583 \N 53 102 5583 \N 31 \N 221 221 \N 222 2012-09-06 10:26:10 f Block -120 c11.lif [FRAP/FRAP Pb1 Series03] \N \N 5583 \N 53 102 5583 \N 31 \N 222 222 \N 223 2012-09-06 10:29:20 f Block -120 c12.lif [FRAP/FRAP Pre Series02] \N \N 5605 \N 53 102 5605 \N 31 \N 223 223 \N 224 2012-09-06 10:30:02 f Block -120 c12.lif [FRAP/FRAP Pb2 Series04] \N \N 5605 \N 53 102 5605 \N 31 \N 224 224 \N 225 2012-09-06 10:29:34 f Block -120 c12.lif [FRAP/FRAP Bleach Series01] \N \N 5605 \N 53 102 5605 \N 31 \N 225 225 \N 226 2012-09-06 10:29:36 f Block -120 c12.lif [FRAP/FRAP Pb1 Series03] \N \N 5605 \N 53 102 5605 \N 31 \N 226 226 \N 227 2012-09-06 10:33:08 f Block -120 c13.lif [FRAP/FRAP Pre Series02] \N \N 5628 \N 53 102 5628 \N 31 \N 227 227 \N 228 2012-09-06 10:33:51 f Block -120 c13.lif [FRAP/FRAP Pb2 Series04] \N \N 5628 \N 53 102 5628 \N 31 \N 228 228 \N 229 2012-09-06 10:33:22 f Block -120 c13.lif [FRAP/FRAP Bleach Series01] \N \N 5628 \N 53 102 5628 \N 31 \N 229 229 \N 230 2012-09-06 10:33:24 f Block -120 c13.lif [FRAP/FRAP Pb1 Series03] \N \N 5628 \N 53 102 5628 \N 31 \N 230 230 \N 231 2012-09-06 10:37:56 f Block -120 c14.lif [FRAP/FRAP Pre Series03] \N \N 5651 \N 53 102 5651 \N 31 \N 231 231 \N 232 2012-09-06 10:38:38 f Block -120 c14.lif [FRAP/FRAP Pb2 Series05] \N \N 5651 \N 53 102 5651 \N 31 \N 232 232 \N 233 2012-09-06 10:38:10 f Block -120 c14.lif [FRAP/FRAP Bleach Series02] \N \N 5651 \N 53 102 5651 \N 31 \N 233 233 \N 234 2012-09-06 10:38:12 f Block -120 c14.lif [FRAP/FRAP Pb1 Series04] \N \N 5651 \N 53 102 5651 \N 31 \N 234 234 \N 235 2012-09-06 10:41:47 f Block -120 c15.lif [FRAP/FRAP Pre Series02] \N \N 5676 \N 53 102 5676 \N 31 \N 235 235 \N 236 2012-09-06 10:42:30 f Block -120 c15.lif [FRAP/FRAP Pb2 Series04] \N \N 5676 \N 53 102 5676 \N 31 \N 236 236 \N 237 2012-09-06 10:42:01 f Block -120 c15.lif [FRAP/FRAP Bleach Series01] \N \N 5676 \N 53 102 5676 \N 31 \N 237 237 \N 238 2012-09-06 10:42:03 f Block -120 c15.lif [FRAP/FRAP Pb1 Series03] \N \N 5676 \N 53 102 5676 \N 31 \N 238 238 \N 239 2012-09-06 09:36:48 f Block -120 c2.lif [FRAP/FRAP Pre Series02] \N \N 5701 \N 53 102 5701 \N 31 \N 239 239 \N 240 2012-09-06 09:37:30 f Block -120 c2.lif [FRAP/FRAP Pb2 Series04] \N \N 5701 \N 53 102 5701 \N 31 \N 240 240 \N 241 2012-09-06 09:37:01 f Block -120 c2.lif [FRAP/FRAP Bleach Series01] \N \N 5701 \N 53 102 5701 \N 31 \N 241 241 \N 242 2012-09-06 09:37:03 f Block -120 c2.lif [FRAP/FRAP Pb1 Series03] \N \N 5701 \N 53 102 5701 \N 31 \N 242 242 \N 243 2012-09-06 09:40:47 f Block -120 c3.lif [FRAP/FRAP Pre Series02] \N \N 5723 \N 53 102 5723 \N 31 \N 243 243 \N 244 2012-09-06 09:41:30 f Block -120 c3.lif [FRAP/FRAP Pb2 Series04] \N \N 5723 \N 53 102 5723 \N 31 \N 244 244 \N 245 2012-09-06 09:41:01 f Block -120 c3.lif [FRAP/FRAP Bleach Series01] \N \N 5723 \N 53 102 5723 \N 31 \N 245 245 \N 246 2012-09-06 09:41:03 f Block -120 c3.lif [FRAP/FRAP Pb1 Series03] \N \N 5723 \N 53 102 5723 \N 31 \N 246 246 \N 247 2012-09-06 09:48:48 f Block -120 c4.lif [FRAP/FRAP Pre Series03] \N \N 5748 \N 53 102 5748 \N 31 \N 247 247 \N 248 2012-09-06 09:49:30 f Block -120 c4.lif [FRAP/FRAP Pb2 Series05] \N \N 5748 \N 53 102 5748 \N 31 \N 248 248 \N 249 2012-09-06 09:49:02 f Block -120 c4.lif [FRAP/FRAP Bleach Series02] \N \N 5748 \N 53 102 5748 \N 31 \N 249 249 \N 250 2012-09-06 09:49:03 f Block -120 c4.lif [FRAP/FRAP Pb1 Series04] \N \N 5748 \N 53 102 5748 \N 31 \N 250 250 \N 251 2012-09-06 09:53:49 f Block -120 c5.lif [FRAP/FRAP Pre Series02] \N \N 5770 \N 53 102 5770 \N 31 \N 251 251 \N 252 2012-09-06 09:54:31 f Block -120 c5.lif [FRAP/FRAP Pb2 Series04] \N \N 5770 \N 53 102 5770 \N 31 \N 252 252 \N 253 2012-09-06 09:54:03 f Block -120 c5.lif [FRAP/FRAP Bleach Series01] \N \N 5770 \N 53 102 5770 \N 31 \N 253 253 \N 254 2012-09-06 09:54:05 f Block -120 c5.lif [FRAP/FRAP Pb1 Series03] \N \N 5770 \N 53 102 5770 \N 31 \N 254 254 \N 255 2012-09-06 10:04:31 f Block -120 c6.lif [FRAP/FRAP Pre Series02] \N \N 5792 \N 53 102 5792 \N 31 \N 255 255 \N 256 2012-09-06 10:05:14 f Block -120 c6.lif [FRAP/FRAP Pb2 Series04] \N \N 5792 \N 53 102 5792 \N 31 \N 256 256 \N 257 2012-09-06 10:04:45 f Block -120 c6.lif [FRAP/FRAP Bleach Series01] \N \N 5792 \N 53 102 5792 \N 31 \N 257 257 \N 258 2012-09-06 10:04:47 f Block -120 c6.lif [FRAP/FRAP Pb1 Series03] \N \N 5792 \N 53 102 5792 \N 31 \N 258 258 \N 259 2012-09-06 10:09:45 f Block -120 c7.lif [FRAP/FRAP Pre Series03] \N \N 5814 \N 53 102 5814 \N 31 \N 259 259 \N 260 2012-09-06 10:10:28 f Block -120 c7.lif [FRAP/FRAP Pb2 Series05] \N \N 5814 \N 53 102 5814 \N 31 \N 260 260 \N 261 2012-09-06 10:09:59 f Block -120 c7.lif [FRAP/FRAP Bleach Series02] \N \N 5814 \N 53 102 5814 \N 31 \N 261 261 \N 262 2012-09-06 10:10:01 f Block -120 c7.lif [FRAP/FRAP Pb1 Series04] \N \N 5814 \N 53 102 5814 \N 31 \N 262 262 \N 263 2012-09-06 10:13:37 f Block -120 c8.lif [FRAP/FRAP Pre Series02] \N \N 5837 \N 53 102 5837 \N 31 \N 263 263 \N 264 2012-09-06 10:14:20 f Block -120 c8.lif [FRAP/FRAP Pb2 Series04] \N \N 5837 \N 53 102 5837 \N 31 \N 264 264 \N 265 2012-09-06 10:13:51 f Block -120 c8.lif [FRAP/FRAP Bleach Series01] \N \N 5837 \N 53 102 5837 \N 31 \N 265 265 \N 266 2012-09-06 10:13:53 f Block -120 c8.lif [FRAP/FRAP Pb1 Series03] \N \N 5837 \N 53 102 5837 \N 31 \N 266 266 \N 267 2012-09-06 10:17:56 f Block -120 c9.lif [FRAP/FRAP Pre Series02] \N \N 5864 \N 53 102 5864 \N 31 \N 267 267 \N 268 2012-09-06 10:18:39 f Block -120 c9.lif [FRAP/FRAP Pb2 Series04] \N \N 5864 \N 53 102 5864 \N 31 \N 268 268 \N 269 2012-09-06 10:18:10 f Block -120 c9.lif [FRAP/FRAP Bleach Series01] \N \N 5864 \N 53 102 5864 \N 31 \N 269 269 \N 270 2012-09-06 10:18:12 f Block -120 c9.lif [FRAP/FRAP Pb1 Series03] \N \N 5864 \N 53 102 5864 \N 31 \N 270 270 \N \. -- -- Data for Name: imageannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY imageannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 39 -40 0 39 1055 \N 3 2 1055 38 40 -40 0 40 1055 \N 3 2 1055 39 41 -40 0 41 1055 \N 3 2 1055 40 42 -40 0 42 1055 \N 3 2 1055 41 43 -40 0 43 1055 \N 3 2 1055 42 44 -40 0 44 1055 \N 3 2 1055 43 45 -40 0 45 1118 \N 3 2 1118 44 46 -40 0 46 1118 \N 3 2 1118 45 47 -40 0 47 1118 \N 3 2 1118 46 48 -40 0 48 1118 \N 3 2 1118 47 49 -40 0 49 1118 \N 3 2 1118 48 50 -40 0 50 1118 \N 3 2 1118 49 51 -40 0 51 1143 \N 3 2 1143 50 52 -40 0 52 1143 \N 3 2 1143 51 53 -40 0 53 1143 \N 3 2 1143 52 54 -40 0 54 1143 \N 3 2 1143 53 55 -40 0 55 1143 \N 3 2 1143 54 56 -40 0 56 1143 \N 3 2 1143 55 57 -40 0 57 1143 \N 3 2 1143 56 58 -40 0 58 1143 \N 3 2 1143 57 59 -40 0 59 1143 \N 3 2 1143 58 60 -40 0 60 1143 \N 3 2 1143 59 61 -40 0 61 1143 \N 3 2 1143 60 62 -40 0 63 1614 \N 3 2 1614 61 63 -40 0 64 1614 \N 3 2 1614 62 64 -40 0 65 1614 \N 3 2 1614 63 65 -40 0 66 1614 \N 3 2 1614 64 70 -40 \N 71 2448 \N 3 2 2448 72 71 -40 \N 71 2451 \N 3 2 2451 71 72 -40 \N 71 2453 \N 3 2 2453 70 73 -40 \N 71 2455 \N 3 2 2455 69 74 -40 \N 72 2466 \N 3 2 2466 61 75 -40 \N 72 2468 \N 3 2 2468 62 76 -40 \N 72 2470 \N 3 2 2470 63 77 -40 \N 72 2472 \N 3 2 2472 64 78 -40 \N 72 2480 \N 3 2 2480 38 79 -40 \N 72 2480 \N 3 2 2480 39 80 -40 \N 72 2480 \N 3 2 2480 40 81 -40 \N 72 2480 \N 3 2 2480 41 82 -40 \N 72 2480 \N 3 2 2480 42 83 -40 \N 72 2480 \N 3 2 2480 43 84 -40 \N 72 2493 \N 3 2 2493 44 85 -40 \N 72 2493 \N 3 2 2493 45 86 -40 \N 72 2493 \N 3 2 2493 46 87 -40 \N 72 2493 \N 3 2 2493 47 88 -40 \N 72 2493 \N 3 2 2493 48 89 -40 \N 72 2493 \N 3 2 2493 49 90 -40 \N 72 2506 \N 3 2 2506 50 91 -40 \N 72 2506 \N 3 2 2506 51 92 -40 \N 72 2506 \N 3 2 2506 52 93 -40 \N 72 2506 \N 3 2 2506 53 94 -40 \N 72 2506 \N 3 2 2506 54 95 -40 \N 72 2506 \N 3 2 2506 55 96 -40 \N 72 2506 \N 3 2 2506 56 97 -40 \N 72 2506 \N 3 2 2506 57 98 -40 \N 72 2506 \N 3 2 2506 58 99 -40 \N 72 2506 \N 3 2 2506 59 100 -40 \N 72 2506 \N 3 2 2506 60 101 -40 0 101 2837 \N 3 2 2837 101 102 -40 0 102 2853 \N 3 2 2853 102 103 -40 0 103 2869 \N 3 2 2869 103 104 -40 0 104 2885 \N 3 2 2885 104 105 -40 0 105 2901 \N 3 2 2901 105 106 -40 0 106 2917 \N 3 2 2917 106 107 -40 \N 71 3087 \N 3 2 3087 101 108 -40 \N 71 3087 \N 3 2 3087 102 109 -40 \N 71 3087 \N 3 2 3087 103 110 -40 \N 71 3087 \N 3 2 3087 104 111 -40 \N 71 3087 \N 3 2 3087 105 112 -40 \N 71 3087 \N 3 2 3087 106 113 -40 \N 107 3184 \N 3 2 3184 61 114 -40 \N 107 3184 \N 3 2 3184 62 115 -40 \N 107 3184 \N 3 2 3184 63 116 -40 \N 107 3184 \N 3 2 3184 64 117 -40 \N 107 3192 \N 3 2 3192 71 118 -40 \N 107 3192 \N 3 2 3192 72 119 -40 \N 107 3192 \N 3 2 3192 69 120 -40 \N 107 3192 \N 3 2 3192 70 121 -40 \N 108 3207 \N 3 2 3207 101 122 -40 \N 108 3207 \N 3 2 3207 102 123 -40 \N 108 3207 \N 3 2 3207 103 124 -40 \N 108 3207 \N 3 2 3207 104 125 -40 \N 108 3207 \N 3 2 3207 105 126 -40 \N 108 3207 \N 3 2 3207 106 127 -40 \N 108 3218 \N 3 2 3218 38 128 -40 \N 108 3218 \N 3 2 3218 39 129 -40 \N 108 3218 \N 3 2 3218 40 130 -40 \N 108 3218 \N 3 2 3218 41 131 -40 \N 108 3218 \N 3 2 3218 42 132 -40 \N 108 3218 \N 3 2 3218 43 133 -40 \N 107 3229 \N 3 2 3229 44 134 -40 \N 107 3229 \N 3 2 3229 45 135 -40 \N 107 3229 \N 3 2 3229 46 136 -40 \N 107 3229 \N 3 2 3229 47 137 -40 \N 107 3229 \N 3 2 3229 48 138 -40 \N 107 3229 \N 3 2 3229 49 139 -40 \N 109 3245 \N 3 2 3245 50 140 -40 \N 109 3245 \N 3 2 3245 51 141 -40 \N 109 3245 \N 3 2 3245 52 142 -40 \N 109 3245 \N 3 2 3245 53 143 -40 \N 109 3245 \N 3 2 3245 54 144 -40 \N 109 3245 \N 3 2 3245 55 145 -40 \N 109 3245 \N 3 2 3245 56 146 -40 \N 109 3245 \N 3 2 3245 57 147 -40 \N 109 3245 \N 3 2 3245 58 148 -40 \N 109 3245 \N 3 2 3245 59 149 -40 \N 109 3245 \N 3 2 3245 60 150 -40 0 110 3284 \N 3 2 3284 107 151 -40 0 111 3303 \N 3 2 3303 108 152 -40 0 112 3327 \N 3 2 3327 109 153 -40 0 113 3347 \N 3 2 3347 110 155 -40 0 115 3461 \N 3 2 3461 112 156 -40 0 116 3488 \N 3 2 3488 113 157 -40 \N 71 3628 \N 3 2 3628 107 158 -40 \N 71 3628 \N 3 2 3628 108 159 -40 \N 71 3628 \N 3 2 3628 109 160 -40 \N 71 3628 \N 3 2 3628 110 161 -40 \N 71 3628 \N 3 2 3628 112 162 -40 \N 71 3628 \N 3 2 3628 113 163 -40 \N 107 3629 \N 3 2 3629 107 164 -40 \N 107 3629 \N 3 2 3629 108 165 -40 \N 107 3629 \N 3 2 3629 109 166 -40 \N 107 3629 \N 3 2 3629 110 167 -40 \N 107 3629 \N 3 2 3629 112 168 -40 \N 107 3629 \N 3 2 3629 113 169 -40 0 117 3670 \N 3 2 3670 114 170 -40 0 118 3686 \N 3 2 3686 115 171 -40 0 119 3702 \N 3 2 3702 116 172 -40 0 120 3718 \N 3 2 3718 117 173 -40 0 121 3734 \N 3 2 3734 118 174 -40 0 122 3750 \N 3 2 3750 119 175 -40 0 123 3766 \N 3 2 3766 120 176 -40 0 124 3782 \N 3 2 3782 121 177 -40 0 125 3798 \N 3 2 3798 122 178 -40 \N 71 4091 \N 3 2 4091 122 179 -40 \N 71 4091 \N 3 2 4091 121 180 -40 \N 71 4091 \N 3 2 4091 120 181 -40 \N 71 4091 \N 3 2 4091 119 182 -40 \N 71 4091 \N 3 2 4091 118 183 -40 \N 71 4091 \N 3 2 4091 117 184 -40 \N 71 4091 \N 3 2 4091 116 185 -40 \N 71 4091 \N 3 2 4091 115 186 -40 \N 71 4091 \N 3 2 4091 114 187 -40 \N 109 4092 \N 3 2 4092 122 188 -40 \N 109 4092 \N 3 2 4092 121 189 -40 \N 109 4092 \N 3 2 4092 120 190 -40 \N 109 4092 \N 3 2 4092 119 191 -40 \N 109 4092 \N 3 2 4092 118 192 -40 \N 109 4092 \N 3 2 4092 117 193 -40 \N 109 4092 \N 3 2 4092 116 194 -40 \N 109 4092 \N 3 2 4092 115 195 -40 \N 109 4092 \N 3 2 4092 114 196 -40 0 126 4112 \N 3 2 4112 123 197 -40 0 127 4128 \N 3 2 4128 124 198 -40 \N 71 4297 \N 3 2 4297 123 199 -40 \N 71 4297 \N 3 2 4297 124 200 -40 \N 109 4298 \N 3 2 4298 123 201 -40 \N 109 4298 \N 3 2 4298 124 251 -120 0 201 5151 \N 53 102 5151 151 252 -120 0 202 5151 \N 53 102 5151 152 253 -120 0 203 5151 \N 53 102 5151 153 254 -120 0 204 5151 \N 53 102 5151 154 255 -120 0 205 5173 \N 53 102 5173 155 256 -120 0 206 5173 \N 53 102 5173 156 257 -120 0 207 5173 \N 53 102 5173 157 258 -120 0 208 5173 \N 53 102 5173 158 259 -120 0 209 5195 \N 53 102 5195 159 260 -120 0 210 5195 \N 53 102 5195 160 261 -120 0 211 5195 \N 53 102 5195 161 262 -120 0 212 5195 \N 53 102 5195 162 263 -120 0 213 5218 \N 53 102 5218 163 264 -120 0 214 5218 \N 53 102 5218 164 265 -120 0 215 5218 \N 53 102 5218 165 266 -120 0 216 5218 \N 53 102 5218 166 267 -120 0 217 5241 \N 53 102 5241 167 268 -120 0 218 5241 \N 53 102 5241 168 269 -120 0 219 5241 \N 53 102 5241 169 270 -120 0 220 5241 \N 53 102 5241 170 271 -120 0 221 5263 \N 53 102 5263 171 272 -120 0 222 5263 \N 53 102 5263 172 273 -120 0 223 5263 \N 53 102 5263 173 274 -120 0 224 5263 \N 53 102 5263 174 275 -120 0 225 5285 \N 53 102 5285 175 276 -120 0 226 5285 \N 53 102 5285 176 277 -120 0 227 5285 \N 53 102 5285 177 278 -120 0 228 5285 \N 53 102 5285 178 279 -120 0 229 5307 \N 53 102 5307 179 280 -120 0 230 5307 \N 53 102 5307 180 281 -120 0 231 5307 \N 53 102 5307 181 282 -120 0 232 5307 \N 53 102 5307 182 283 -120 0 233 5329 \N 53 102 5329 183 284 -120 0 234 5329 \N 53 102 5329 184 285 -120 0 235 5329 \N 53 102 5329 185 286 -120 0 236 5329 \N 53 102 5329 186 287 -120 0 237 5397 \N 53 102 5397 187 288 -120 0 238 5397 \N 53 102 5397 188 289 -120 0 239 5397 \N 53 102 5397 189 290 -120 0 240 5397 \N 53 102 5397 190 291 -120 0 241 5421 \N 53 102 5421 191 292 -120 0 242 5421 \N 53 102 5421 192 293 -120 0 243 5421 \N 53 102 5421 193 294 -120 0 244 5421 \N 53 102 5421 194 295 -120 0 245 5446 \N 53 102 5446 195 296 -120 0 246 5446 \N 53 102 5446 196 297 -120 0 247 5446 \N 53 102 5446 197 298 -120 0 248 5446 \N 53 102 5446 198 299 -120 0 249 5471 \N 53 102 5471 199 300 -120 0 250 5471 \N 53 102 5471 200 301 -120 0 251 5471 \N 53 102 5471 201 302 -120 0 252 5471 \N 53 102 5471 202 303 -120 0 253 5493 \N 53 102 5493 203 304 -120 0 254 5493 \N 53 102 5493 204 305 -120 0 255 5493 \N 53 102 5493 205 306 -120 0 256 5493 \N 53 102 5493 206 307 -120 0 257 5515 \N 53 102 5515 207 308 -120 0 258 5515 \N 53 102 5515 208 309 -120 0 259 5515 \N 53 102 5515 209 310 -120 0 260 5515 \N 53 102 5515 210 311 -120 0 261 5539 \N 53 102 5539 211 312 -120 0 262 5539 \N 53 102 5539 212 313 -120 0 263 5539 \N 53 102 5539 213 314 -120 0 264 5539 \N 53 102 5539 214 315 -120 0 265 5561 \N 53 102 5561 215 316 -120 0 266 5561 \N 53 102 5561 216 317 -120 0 267 5561 \N 53 102 5561 217 318 -120 0 268 5561 \N 53 102 5561 218 319 -120 0 269 5583 \N 53 102 5583 219 320 -120 0 270 5583 \N 53 102 5583 220 321 -120 0 271 5583 \N 53 102 5583 221 322 -120 0 272 5583 \N 53 102 5583 222 323 -120 0 273 5605 \N 53 102 5605 223 324 -120 0 274 5605 \N 53 102 5605 224 325 -120 0 275 5605 \N 53 102 5605 225 326 -120 0 276 5605 \N 53 102 5605 226 327 -120 0 277 5628 \N 53 102 5628 227 328 -120 0 278 5628 \N 53 102 5628 228 329 -120 0 279 5628 \N 53 102 5628 229 330 -120 0 280 5628 \N 53 102 5628 230 331 -120 0 281 5651 \N 53 102 5651 231 332 -120 0 282 5651 \N 53 102 5651 232 333 -120 0 283 5651 \N 53 102 5651 233 334 -120 0 284 5651 \N 53 102 5651 234 335 -120 0 285 5676 \N 53 102 5676 235 336 -120 0 286 5676 \N 53 102 5676 236 337 -120 0 287 5676 \N 53 102 5676 237 338 -120 0 288 5676 \N 53 102 5676 238 339 -120 0 289 5701 \N 53 102 5701 239 340 -120 0 290 5701 \N 53 102 5701 240 341 -120 0 291 5701 \N 53 102 5701 241 342 -120 0 292 5701 \N 53 102 5701 242 343 -120 0 293 5723 \N 53 102 5723 243 344 -120 0 294 5723 \N 53 102 5723 244 345 -120 0 295 5723 \N 53 102 5723 245 346 -120 0 296 5723 \N 53 102 5723 246 347 -120 0 297 5748 \N 53 102 5748 247 348 -120 0 298 5748 \N 53 102 5748 248 349 -120 0 299 5748 \N 53 102 5748 249 350 -120 0 300 5748 \N 53 102 5748 250 351 -120 0 301 5770 \N 53 102 5770 251 352 -120 0 302 5770 \N 53 102 5770 252 353 -120 0 303 5770 \N 53 102 5770 253 354 -120 0 304 5770 \N 53 102 5770 254 355 -120 0 305 5792 \N 53 102 5792 255 356 -120 0 306 5792 \N 53 102 5792 256 357 -120 0 307 5792 \N 53 102 5792 257 358 -120 0 308 5792 \N 53 102 5792 258 359 -120 0 309 5814 \N 53 102 5814 259 360 -120 0 310 5814 \N 53 102 5814 260 361 -120 0 311 5814 \N 53 102 5814 261 362 -120 0 312 5814 \N 53 102 5814 262 363 -120 0 313 5837 \N 53 102 5837 263 364 -120 0 314 5837 \N 53 102 5837 264 365 -120 0 315 5837 \N 53 102 5837 265 366 -120 0 316 5837 \N 53 102 5837 266 367 -120 0 317 5864 \N 53 102 5864 267 368 -120 0 318 5864 \N 53 102 5864 268 369 -120 0 319 5864 \N 53 102 5864 269 370 -120 0 320 5864 \N 53 102 5864 270 \. -- -- Data for Name: imagingenvironment; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY imagingenvironment (id, airpressure, co2percent, permissions, humidity, temperature, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; \. -- -- Data for Name: immersion; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY immersion (id, permissions, value, external_id) FROM stdin; 1 -52 Oil \N 2 -52 Water \N 3 -52 WaterDipping \N 4 -52 Air \N 5 -52 Multi \N 6 -52 Glycerol \N 7 -52 Other \N 8 -52 Unknown \N \. -- -- Data for Name: importjob; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY importjob (imagedescription, imagename, job_id) FROM stdin; \. -- -- Data for Name: instrument; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY instrument (id, permissions, version, creation_id, external_id, group_id, owner_id, update_id, microscope) FROM stdin; 38 -40 \N 1055 \N 3 2 1055 38 39 -40 \N 1055 \N 3 2 1055 39 40 -40 \N 1055 \N 3 2 1055 40 41 -40 \N 1055 \N 3 2 1055 41 42 -40 \N 1055 \N 3 2 1055 42 43 -40 \N 1055 \N 3 2 1055 43 44 -40 \N 1118 \N 3 2 1118 44 45 -40 \N 1118 \N 3 2 1118 45 46 -40 \N 1118 \N 3 2 1118 46 47 -40 \N 1118 \N 3 2 1118 47 48 -40 \N 1118 \N 3 2 1118 48 49 -40 \N 1118 \N 3 2 1118 49 50 -40 \N 1143 \N 3 2 1143 50 51 -40 \N 1143 \N 3 2 1143 51 52 -40 \N 1143 \N 3 2 1143 52 53 -40 \N 1143 \N 3 2 1143 53 54 -40 \N 1143 \N 3 2 1143 54 55 -40 \N 1143 \N 3 2 1143 55 56 -40 \N 1143 \N 3 2 1143 56 57 -40 \N 1143 \N 3 2 1143 57 58 -40 \N 1143 \N 3 2 1143 58 59 -40 \N 1143 \N 3 2 1143 59 60 -40 \N 1143 \N 3 2 1143 60 61 -40 \N 1614 \N 3 2 1614 61 62 -40 \N 1614 \N 3 2 1614 62 63 -40 \N 1614 \N 3 2 1614 63 64 -40 \N 1614 \N 3 2 1614 64 65 -40 \N 1909 \N 3 2 1909 \N 66 -40 \N 1925 \N 3 2 1925 \N 67 -40 \N 1941 \N 3 2 1941 \N 68 -40 \N 1957 \N 3 2 1957 \N 101 -40 \N 2837 \N 3 2 2837 \N 102 -40 \N 2853 \N 3 2 2853 \N 103 -40 \N 2869 \N 3 2 2869 \N 104 -40 \N 2885 \N 3 2 2885 \N 105 -40 \N 2901 \N 3 2 2901 \N 106 -40 \N 2917 \N 3 2 2917 \N 107 -40 \N 3284 \N 3 2 3284 \N 108 -40 \N 3303 \N 3 2 3303 \N 109 -40 \N 3327 \N 3 2 3327 \N 110 -40 \N 3347 \N 3 2 3347 \N 111 -40 \N 3364 \N 3 2 3364 \N 112 -40 \N 3461 \N 3 2 3461 \N 113 -40 \N 3488 \N 3 2 3488 \N 114 -40 \N 3670 \N 3 2 3670 \N 115 -40 \N 3686 \N 3 2 3686 \N 116 -40 \N 3702 \N 3 2 3702 \N 117 -40 \N 3718 \N 3 2 3718 \N 118 -40 \N 3734 \N 3 2 3734 \N 119 -40 \N 3750 \N 3 2 3750 \N 120 -40 \N 3766 \N 3 2 3766 \N 121 -40 \N 3782 \N 3 2 3782 \N 122 -40 \N 3798 \N 3 2 3798 \N 123 -40 \N 4112 \N 3 2 4112 \N 124 -40 \N 4128 \N 3 2 4128 \N 151 -120 \N 5151 \N 53 102 5151 101 152 -120 \N 5151 \N 53 102 5151 102 153 -120 \N 5151 \N 53 102 5151 103 154 -120 \N 5151 \N 53 102 5151 104 155 -120 \N 5173 \N 53 102 5173 105 156 -120 \N 5173 \N 53 102 5173 106 157 -120 \N 5173 \N 53 102 5173 107 158 -120 \N 5173 \N 53 102 5173 108 159 -120 \N 5195 \N 53 102 5195 109 160 -120 \N 5195 \N 53 102 5195 110 161 -120 \N 5195 \N 53 102 5195 111 162 -120 \N 5195 \N 53 102 5195 112 163 -120 \N 5218 \N 53 102 5218 113 164 -120 \N 5218 \N 53 102 5218 114 165 -120 \N 5218 \N 53 102 5218 115 166 -120 \N 5218 \N 53 102 5218 116 167 -120 \N 5241 \N 53 102 5241 117 168 -120 \N 5241 \N 53 102 5241 118 169 -120 \N 5241 \N 53 102 5241 119 170 -120 \N 5241 \N 53 102 5241 120 171 -120 \N 5263 \N 53 102 5263 121 172 -120 \N 5263 \N 53 102 5263 122 173 -120 \N 5263 \N 53 102 5263 123 174 -120 \N 5263 \N 53 102 5263 124 175 -120 \N 5285 \N 53 102 5285 125 176 -120 \N 5285 \N 53 102 5285 126 177 -120 \N 5285 \N 53 102 5285 127 178 -120 \N 5285 \N 53 102 5285 128 179 -120 \N 5307 \N 53 102 5307 129 180 -120 \N 5307 \N 53 102 5307 130 181 -120 \N 5307 \N 53 102 5307 131 182 -120 \N 5307 \N 53 102 5307 132 183 -120 \N 5329 \N 53 102 5329 133 184 -120 \N 5329 \N 53 102 5329 134 185 -120 \N 5329 \N 53 102 5329 135 186 -120 \N 5329 \N 53 102 5329 136 187 -120 \N 5397 \N 53 102 5397 137 188 -120 \N 5397 \N 53 102 5397 138 189 -120 \N 5397 \N 53 102 5397 139 190 -120 \N 5397 \N 53 102 5397 140 191 -120 \N 5421 \N 53 102 5421 141 192 -120 \N 5421 \N 53 102 5421 142 193 -120 \N 5421 \N 53 102 5421 143 194 -120 \N 5421 \N 53 102 5421 144 195 -120 \N 5446 \N 53 102 5446 145 196 -120 \N 5446 \N 53 102 5446 146 197 -120 \N 5446 \N 53 102 5446 147 198 -120 \N 5446 \N 53 102 5446 148 199 -120 \N 5471 \N 53 102 5471 149 200 -120 \N 5471 \N 53 102 5471 150 201 -120 \N 5471 \N 53 102 5471 151 202 -120 \N 5471 \N 53 102 5471 152 203 -120 \N 5493 \N 53 102 5493 153 204 -120 \N 5493 \N 53 102 5493 154 205 -120 \N 5493 \N 53 102 5493 155 206 -120 \N 5493 \N 53 102 5493 156 207 -120 \N 5515 \N 53 102 5515 157 208 -120 \N 5515 \N 53 102 5515 158 209 -120 \N 5515 \N 53 102 5515 159 210 -120 \N 5515 \N 53 102 5515 160 211 -120 \N 5539 \N 53 102 5539 161 212 -120 \N 5539 \N 53 102 5539 162 213 -120 \N 5539 \N 53 102 5539 163 214 -120 \N 5539 \N 53 102 5539 164 215 -120 \N 5561 \N 53 102 5561 165 216 -120 \N 5561 \N 53 102 5561 166 217 -120 \N 5561 \N 53 102 5561 167 218 -120 \N 5561 \N 53 102 5561 168 219 -120 \N 5583 \N 53 102 5583 169 220 -120 \N 5583 \N 53 102 5583 170 221 -120 \N 5583 \N 53 102 5583 171 222 -120 \N 5583 \N 53 102 5583 172 223 -120 \N 5605 \N 53 102 5605 173 224 -120 \N 5605 \N 53 102 5605 174 225 -120 \N 5605 \N 53 102 5605 175 226 -120 \N 5605 \N 53 102 5605 176 227 -120 \N 5628 \N 53 102 5628 177 228 -120 \N 5628 \N 53 102 5628 178 229 -120 \N 5628 \N 53 102 5628 179 230 -120 \N 5628 \N 53 102 5628 180 231 -120 \N 5651 \N 53 102 5651 181 232 -120 \N 5651 \N 53 102 5651 182 233 -120 \N 5651 \N 53 102 5651 183 234 -120 \N 5651 \N 53 102 5651 184 235 -120 \N 5676 \N 53 102 5676 185 236 -120 \N 5676 \N 53 102 5676 186 237 -120 \N 5676 \N 53 102 5676 187 238 -120 \N 5676 \N 53 102 5676 188 239 -120 \N 5701 \N 53 102 5701 189 240 -120 \N 5701 \N 53 102 5701 190 241 -120 \N 5701 \N 53 102 5701 191 242 -120 \N 5701 \N 53 102 5701 192 243 -120 \N 5723 \N 53 102 5723 193 244 -120 \N 5723 \N 53 102 5723 194 245 -120 \N 5723 \N 53 102 5723 195 246 -120 \N 5723 \N 53 102 5723 196 247 -120 \N 5748 \N 53 102 5748 197 248 -120 \N 5748 \N 53 102 5748 198 249 -120 \N 5748 \N 53 102 5748 199 250 -120 \N 5748 \N 53 102 5748 200 251 -120 \N 5770 \N 53 102 5770 201 252 -120 \N 5770 \N 53 102 5770 202 253 -120 \N 5770 \N 53 102 5770 203 254 -120 \N 5770 \N 53 102 5770 204 255 -120 \N 5792 \N 53 102 5792 205 256 -120 \N 5792 \N 53 102 5792 206 257 -120 \N 5792 \N 53 102 5792 207 258 -120 \N 5792 \N 53 102 5792 208 259 -120 \N 5814 \N 53 102 5814 209 260 -120 \N 5814 \N 53 102 5814 210 261 -120 \N 5814 \N 53 102 5814 211 262 -120 \N 5814 \N 53 102 5814 212 263 -120 \N 5837 \N 53 102 5837 213 264 -120 \N 5837 \N 53 102 5837 214 265 -120 \N 5837 \N 53 102 5837 215 266 -120 \N 5837 \N 53 102 5837 216 267 -120 \N 5864 \N 53 102 5864 217 268 -120 \N 5864 \N 53 102 5864 218 269 -120 \N 5864 \N 53 102 5864 219 270 -120 \N 5864 \N 53 102 5864 220 \. -- -- Data for Name: job; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY job (id, permissions, finished, groupname, message, scheduledfor, started, submitted, type, username, version, creation_id, external_id, group_id, owner_id, update_id, status) FROM stdin; 1 -40 2012-08-10 10:01:28.043 General Parsing script 2 2012-08-10 10:01:27.252 2012-08-10 10:01:27.586 2012-08-10 10:01:27.252 User girelli \N 978 \N 3 2 983 6 51 -120 2012-09-06 15:37:58.252 Single_labs Parsing script 12 2012-09-06 15:37:56.953 2012-09-06 15:37:57.484 2012-09-06 15:37:56.953 User macchi \N 6222 \N 53 102 6227 6 \. -- -- Data for Name: joboriginalfilelink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY joboriginalfilelink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 1 -40 \N 2 978 \N 3 2 978 1 2 -40 \N 53 986 \N 3 2 986 1 51 -120 \N 12 6222 \N 53 102 6222 51 52 -120 \N 325 6230 \N 53 102 6230 51 \. -- -- Data for Name: jobstatus; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY jobstatus (id, permissions, value, external_id) FROM stdin; 1 -52 Submitted \N 2 -52 Resubmitted \N 3 -52 Queued \N 4 -52 Requeued \N 5 -52 Running \N 6 -52 Error \N 7 -52 Waiting \N 8 -52 Finished \N 9 -52 Cancelled \N \. -- -- Data for Name: laser; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY laser (frequencymultiplication, pockelcell, repetitionrate, tuneable, wavelength, lightsource_id, lasermedium, pulse, pump, type) FROM stdin; \N \N \N \N 476 223 34 \N \N 8 \N \N \N \N 543 224 34 \N \N 8 \N \N \N \N 514 225 34 \N \N 8 \N \N \N \N 633 226 34 \N \N 8 \N \N \N \N 458 227 34 \N \N 8 \N \N \N \N 488 228 34 \N \N 8 \N \N \N \N 543 229 34 \N \N 8 \N \N \N \N 633 230 34 \N \N 8 \N \N \N \N 458 231 34 \N \N 8 \N \N \N \N 476 232 34 \N \N 8 \N \N \N \N 488 233 34 \N \N 8 \N \N \N \N 514 234 34 \N \N 8 \N \N \N \N 476 235 34 \N \N 8 \N \N \N \N 633 236 34 \N \N 8 \N \N \N \N 458 237 34 \N \N 8 \N \N \N \N 543 238 34 \N \N 8 \N \N \N \N 488 239 34 \N \N 8 \N \N \N \N 514 240 34 \N \N 8 \N \N \N \N 458 241 34 \N \N 8 \N \N \N \N 488 242 34 \N \N 8 \N \N \N \N 514 243 34 \N \N 8 \N \N \N \N 543 244 34 \N \N 8 \N \N \N \N 633 245 34 \N \N 8 \N \N \N \N 476 246 34 \N \N 8 \N \N \N \N 476 247 34 \N \N 8 \N \N \N \N 633 248 34 \N \N 8 \N \N \N \N 458 249 34 \N \N 8 \N \N \N \N 488 250 34 \N \N 8 \N \N \N \N 543 251 34 \N \N 8 \N \N \N \N 514 252 34 \N \N 8 \N \N \N \N 488 253 34 \N \N 8 \N \N \N \N 633 254 34 \N \N 8 \N \N \N \N 514 255 34 \N \N 8 \N \N \N \N 543 256 34 \N \N 8 \N \N \N \N 476 257 34 \N \N 8 \N \N \N \N 458 258 34 \N \N 8 \N \N \N \N 458 259 34 \N \N 8 \N \N \N \N 514 260 34 \N \N 8 \N \N \N \N 543 261 34 \N \N 8 \N \N \N \N 476 262 34 \N \N 8 \N \N \N \N 488 263 34 \N \N 8 \N \N \N \N 633 264 34 \N \N 8 \N \N \N \N 488 265 34 \N \N 8 \N \N \N \N 543 266 34 \N \N 8 \N \N \N \N 458 267 34 \N \N 8 \N \N \N \N 476 268 34 \N \N 8 \N \N \N \N 514 269 34 \N \N 8 \N \N \N \N 633 270 34 \N \N 8 \N \N \N \N 514 271 34 \N \N 8 \N \N \N \N 458 272 34 \N \N 8 \N \N \N \N 543 273 34 \N \N 8 \N \N \N \N 633 274 34 \N \N 8 \N \N \N \N 488 275 34 \N \N 8 \N \N \N \N 476 276 34 \N \N 8 \N \N \N \N 458 277 34 \N \N 8 \N \N \N \N 476 278 34 \N \N 8 \N \N \N \N 633 279 34 \N \N 8 \N \N \N \N 514 280 34 \N \N 8 \N \N \N \N 488 281 34 \N \N 8 \N \N \N \N 543 282 34 \N \N 8 \N \N \N \N 488 283 34 \N \N 8 \N \N \N \N 458 284 34 \N \N 8 \N \N \N \N 633 285 34 \N \N 8 \N \N \N \N 543 286 34 \N \N 8 \N \N \N \N 476 287 34 \N \N 8 \N \N \N \N 514 288 34 \N \N 8 \N \N \N \N 514 289 34 \N \N 8 \N \N \N \N 458 290 34 \N \N 8 \N \N \N \N 488 291 34 \N \N 8 \N \N \N \N 543 292 34 \N \N 8 \N \N \N \N 476 293 34 \N \N 8 \N \N \N \N 633 294 34 \N \N 8 \N \N \N \N 458 361 34 \N \N 8 \N \N \N \N 543 362 34 \N \N 8 \N \N \N \N 488 363 34 \N \N 8 \N \N \N \N 514 364 34 \N \N 8 \N \N \N \N 633 365 34 \N \N 8 \N \N \N \N 476 366 34 \N \N 8 \N \N \N \N 458 367 34 \N \N 8 \N \N \N \N 514 368 34 \N \N 8 \N \N \N \N 488 369 34 \N \N 8 \N \N \N \N 476 370 34 \N \N 8 \N \N \N \N 633 371 34 \N \N 8 \N \N \N \N 543 372 34 \N \N 8 \N \N \N \N 543 373 34 \N \N 8 \N \N \N \N 488 374 34 \N \N 8 \N \N \N \N 514 375 34 \N \N 8 \N \N \N \N 633 376 34 \N \N 8 \N \N \N \N 458 377 34 \N \N 8 \N \N \N \N 476 378 34 \N \N 8 \N \N \N \N 458 379 34 \N \N 8 \N \N \N \N 488 380 34 \N \N 8 \N \N \N \N 633 381 34 \N \N 8 \N \N \N \N 543 382 34 \N \N 8 \N \N \N \N 514 383 34 \N \N 8 \N \N \N \N 476 384 34 \N \N 8 \N \N \N \N 543 295 34 \N \N 8 \N \N \N \N 514 296 34 \N \N 8 \N \N \N \N 633 297 34 \N \N 8 \N \N \N \N 458 298 34 \N \N 8 \N \N \N \N 476 299 34 \N \N 8 \N \N \N \N 488 300 34 \N \N 8 \N \N \N \N 476 301 34 \N \N 8 \N \N \N \N 514 302 34 \N \N 8 \N \N \N \N 633 303 34 \N \N 8 \N \N \N \N 543 304 34 \N \N 8 \N \N \N \N 458 305 34 \N \N 8 \N \N \N \N 488 306 34 \N \N 8 \N \N \N \N 543 307 34 \N \N 8 \N \N \N \N 458 308 34 \N \N 8 \N \N \N \N 514 309 34 \N \N 8 \N \N \N \N 633 310 34 \N \N 8 \N \N \N \N 476 311 34 \N \N 8 \N \N \N \N 488 312 34 \N \N 8 \N \N \N \N 514 313 34 \N \N 8 \N \N \N \N 488 314 34 \N \N 8 \N \N \N \N 458 315 34 \N \N 8 \N \N \N \N 476 316 34 \N \N 8 \N \N \N \N 543 317 34 \N \N 8 \N \N \N \N 633 318 34 \N \N 8 \N \N \N \N 476 319 34 \N \N 8 \N \N \N \N 458 320 34 \N \N 8 \N \N \N \N 514 321 34 \N \N 8 \N \N \N \N 488 322 34 \N \N 8 \N \N \N \N 633 323 34 \N \N 8 \N \N \N \N 543 324 34 \N \N 8 \N \N \N \N 488 325 34 \N \N 8 \N \N \N \N 543 326 34 \N \N 8 \N \N \N \N 633 327 34 \N \N 8 \N \N \N \N 458 328 34 \N \N 8 \N \N \N \N 514 329 34 \N \N 8 \N \N \N \N 476 330 34 \N \N 8 \N \N \N \N 476 331 34 \N \N 8 \N \N \N \N 543 332 34 \N \N 8 \N \N \N \N 514 333 34 \N \N 8 \N \N \N \N 488 334 34 \N \N 8 \N \N \N \N 458 335 34 \N \N 8 \N \N \N \N 633 336 34 \N \N 8 \N \N \N \N 543 337 34 \N \N 8 \N \N \N \N 514 338 34 \N \N 8 \N \N \N \N 476 339 34 \N \N 8 \N \N \N \N 458 340 34 \N \N 8 \N \N \N \N 633 341 34 \N \N 8 \N \N \N \N 488 342 34 \N \N 8 \N \N \N \N 476 343 34 \N \N 8 \N \N \N \N 514 344 34 \N \N 8 \N \N \N \N 633 345 34 \N \N 8 \N \N \N \N 458 346 34 \N \N 8 \N \N \N \N 543 347 34 \N \N 8 \N \N \N \N 488 348 34 \N \N 8 \N \N \N \N 514 349 34 \N \N 8 \N \N \N \N 458 350 34 \N \N 8 \N \N \N \N 543 351 34 \N \N 8 \N \N \N \N 488 352 34 \N \N 8 \N \N \N \N 633 353 34 \N \N 8 \N \N \N \N 476 354 34 \N \N 8 \N \N \N \N 458 355 34 \N \N 8 \N \N \N \N 488 356 34 \N \N 8 \N \N \N \N 543 357 34 \N \N 8 \N \N \N \N 476 358 34 \N \N 8 \N \N \N \N 514 359 34 \N \N 8 \N \N \N \N 633 360 34 \N \N 8 \N \N \N \N 543 401 34 \N \N 8 \N \N \N \N 514 402 34 \N \N 8 \N \N \N \N 476 403 34 \N \N 8 \N \N \N \N 488 404 34 \N \N 8 \N \N \N \N 633 405 34 \N \N 8 \N \N \N \N 458 406 34 \N \N 8 \N \N \N \N 543 407 34 \N \N 8 \N \N \N \N 476 408 34 \N \N 8 \N \N \N \N 514 409 34 \N \N 8 \N \N \N \N 488 410 34 \N \N 8 \N \N \N \N 633 411 34 \N \N 8 \N \N \N \N 458 412 34 \N \N 8 \N \N \N \N 458 413 34 \N \N 8 \N \N \N \N 488 414 34 \N \N 8 \N \N \N \N 633 415 34 \N \N 8 \N \N \N \N 476 416 34 \N \N 8 \N \N \N \N 514 417 34 \N \N 8 \N \N \N \N 543 418 34 \N \N 8 \N \N \N \N 458 419 34 \N \N 8 \N \N \N \N 488 420 34 \N \N 8 \N \N \N \N 476 421 34 \N \N 8 \N \N \N \N 514 422 34 \N \N 8 \N \N \N \N 543 423 34 \N \N 8 \N \N \N \N 633 424 34 \N \N 8 \N \N \N \N 488 425 34 \N \N 8 \N \N \N \N 458 426 34 \N \N 8 \N \N \N \N 514 427 34 \N \N 8 \N \N \N \N 476 428 34 \N \N 8 \N \N \N \N 543 429 34 \N \N 8 \N \N \N \N 633 430 34 \N \N 8 \N \N \N \N 543 431 34 \N \N 8 \N \N \N \N 488 432 34 \N \N 8 \N \N \N \N 458 433 34 \N \N 8 \N \N \N \N 476 434 34 \N \N 8 \N \N \N \N 633 435 34 \N \N 8 \N \N \N \N 514 436 34 \N \N 8 \N \N \N \N 514 437 34 \N \N 8 \N \N \N \N 543 438 34 \N \N 8 \N \N \N \N 476 439 34 \N \N 8 \N \N \N \N 488 440 34 \N \N 8 \N \N \N \N 633 441 34 \N \N 8 \N \N \N \N 458 442 34 \N \N 8 \N \N \N \N 633 443 34 \N \N 8 \N \N \N \N 476 444 34 \N \N 8 \N \N \N \N 488 445 34 \N \N 8 \N \N \N \N 543 446 34 \N \N 8 \N \N \N \N 514 447 34 \N \N 8 \N \N \N \N 458 448 34 \N \N 8 \N \N \N \N 476 449 34 \N \N 8 \N \N \N \N 543 450 34 \N \N 8 \N \N \N \N 633 451 34 \N \N 8 \N \N \N \N 514 452 34 \N \N 8 \N \N \N \N 458 453 34 \N \N 8 \N \N \N \N 488 454 34 \N \N 8 \N \N \N \N 458 455 34 \N \N 8 \N \N \N \N 633 456 34 \N \N 8 \N \N \N \N 514 457 34 \N \N 8 \N \N \N \N 488 458 34 \N \N 8 \N \N \N \N 543 459 34 \N \N 8 \N \N \N \N 476 460 34 \N \N 8 \N \N \N \N 458 461 34 \N \N 8 \N \N \N \N 476 462 34 \N \N 8 \N \N \N \N 514 463 34 \N \N 8 \N \N \N \N 543 464 34 \N \N 8 \N \N \N \N 633 465 34 \N \N 8 \N \N \N \N 488 466 34 \N \N 8 \N \N \N \N 476 467 34 \N \N 8 \N \N \N \N 488 468 34 \N \N 8 \N \N \N \N 633 469 34 \N \N 8 \N \N \N \N 458 470 34 \N \N 8 \N \N \N \N 514 471 34 \N \N 8 \N \N \N \N 543 472 34 \N \N 8 \N \N \N \N 543 473 34 \N \N 8 \N \N \N \N 458 474 34 \N \N 8 \N \N \N \N 476 475 34 \N \N 8 \N \N \N \N 488 476 34 \N \N 8 \N \N \N \N 514 477 34 \N \N 8 \N \N \N \N 633 478 34 \N \N 8 \N \N \N \N 476 479 34 \N \N 8 \N \N \N \N 488 480 34 \N \N 8 \N \N \N \N 458 481 34 \N \N 8 \N \N \N \N 543 482 34 \N \N 8 \N \N \N \N 514 483 34 \N \N 8 \N \N \N \N 633 484 34 \N \N 8 \N \N \N \N 514 485 34 \N \N 8 \N \N \N \N 476 486 34 \N \N 8 \N \N \N \N 488 487 34 \N \N 8 \N \N \N \N 633 488 34 \N \N 8 \N \N \N \N 543 489 34 \N \N 8 \N \N \N \N 458 490 34 \N \N 8 \N \N \N \N 633 491 34 \N \N 8 \N \N \N \N 458 492 34 \N \N 8 \N \N \N \N 543 493 34 \N \N 8 \N \N \N \N 488 494 34 \N \N 8 \N \N \N \N 476 495 34 \N \N 8 \N \N \N \N 514 496 34 \N \N 8 \N \N \N \N 476 497 34 \N \N 8 \N \N \N \N 488 498 34 \N \N 8 \N \N \N \N 458 499 34 \N \N 8 \N \N \N \N 543 500 34 \N \N 8 \N \N \N \N 633 501 34 \N \N 8 \N \N \N \N 514 502 34 \N \N 8 \N \N \N \N 488 503 34 \N \N 8 \N \N \N \N 633 504 34 \N \N 8 \N \N \N \N 458 505 34 \N \N 8 \N \N \N \N 476 506 34 \N \N 8 \N \N \N \N 514 507 34 \N \N 8 \N \N \N \N 543 508 34 \N \N 8 \N \N \N \N 633 509 34 \N \N 8 \N \N \N \N 514 510 34 \N \N 8 \N \N \N \N 488 511 34 \N \N 8 \N \N \N \N 543 512 34 \N \N 8 \N \N \N \N 476 513 34 \N \N 8 \N \N \N \N 458 514 34 \N \N 8 \N \N \N \N 488 515 34 \N \N 8 \N \N \N \N 476 516 34 \N \N 8 \N \N \N \N 458 517 34 \N \N 8 \N \N \N \N 514 518 34 \N \N 8 \N \N \N \N 543 519 34 \N \N 8 \N \N \N \N 633 520 34 \N \N 8 \N \N \N \N 476 521 34 \N \N 8 \N \N \N \N 514 522 34 \N \N 8 \N \N \N \N 488 523 34 \N \N 8 \N \N \N \N 458 524 34 \N \N 8 \N \N \N \N 543 525 34 \N \N 8 \N \N \N \N 633 526 34 \N \N 8 \N \N \N \N 458 527 34 \N \N 8 \N \N \N \N 543 528 34 \N \N 8 \N \N \N \N 514 529 34 \N \N 8 \N \N \N \N 633 530 34 \N \N 8 \N \N \N \N 488 531 34 \N \N 8 \N \N \N \N 476 532 34 \N \N 8 \N \N \N \N 514 533 34 \N \N 8 \N \N \N \N 633 534 34 \N \N 8 \N \N \N \N 543 535 34 \N \N 8 \N \N \N \N 488 536 34 \N \N 8 \N \N \N \N 458 537 34 \N \N 8 \N \N \N \N 476 538 34 \N \N 8 \N \N \N \N 476 539 34 \N \N 8 \N \N \N \N 514 540 34 \N \N 8 \N \N \N \N 633 541 34 \N \N 8 \N \N \N \N 458 542 34 \N \N 8 \N \N \N \N 543 543 34 \N \N 8 \N \N \N \N 488 544 34 \N \N 8 \N \N \N \N 458 545 34 \N \N 8 \N \N \N \N 476 546 34 \N \N 8 \N \N \N \N 543 547 34 \N \N 8 \N \N \N \N 633 548 34 \N \N 8 \N \N \N \N 514 549 34 \N \N 8 \N \N \N \N 488 550 34 \N \N 8 \N \N \N \N 458 551 34 \N \N 8 \N \N \N \N 514 552 34 \N \N 8 \N \N \N \N 543 553 34 \N \N 8 \N \N \N \N 488 554 34 \N \N 8 \N \N \N \N 633 555 34 \N \N 8 \N \N \N \N 476 556 34 \N \N 8 \N \N \N \N 543 557 34 \N \N 8 \N \N \N \N 488 558 34 \N \N 8 \N \N \N \N 458 559 34 \N \N 8 \N \N \N \N 476 560 34 \N \N 8 \N \N \N \N 633 561 34 \N \N 8 \N \N \N \N 514 562 34 \N \N 8 \N \N \N \N 543 563 34 \N \N 8 \N \N \N \N 514 564 34 \N \N 8 \N \N \N \N 458 565 34 \N \N 8 \N \N \N \N 633 566 34 \N \N 8 \N \N \N \N 476 567 34 \N \N 8 \N \N \N \N 488 568 34 \N \N 8 \N \N \N \N 633 569 34 \N \N 8 \N \N \N \N 458 570 34 \N \N 8 \N \N \N \N 476 571 34 \N \N 8 \N \N \N \N 543 572 34 \N \N 8 \N \N \N \N 488 573 34 \N \N 8 \N \N \N \N 514 574 34 \N \N 8 \N \N \N \N 514 575 34 \N \N 8 \N \N \N \N 633 576 34 \N \N 8 \N \N \N \N 543 577 34 \N \N 8 \N \N \N \N 488 578 34 \N \N 8 \N \N \N \N 476 579 34 \N \N 8 \N \N \N \N 458 580 34 \N \N 8 \N \N \N \N 633 581 34 \N \N 8 \N \N \N \N 458 582 34 \N \N 8 \N \N \N \N 488 583 34 \N \N 8 \N \N \N \N 514 584 34 \N \N 8 \N \N \N \N 476 585 34 \N \N 8 \N \N \N \N 543 586 34 \N \N 8 \N \N \N \N 458 587 34 \N \N 8 \N \N \N \N 476 588 34 \N \N 8 \N \N \N \N 543 589 34 \N \N 8 \N \N \N \N 633 590 34 \N \N 8 \N \N \N \N 488 591 34 \N \N 8 \N \N \N \N 514 592 34 \N \N 8 \N \N \N \N 476 593 34 \N \N 8 \N \N \N \N 488 594 34 \N \N 8 \N \N \N \N 514 595 34 \N \N 8 \N \N \N \N 543 596 34 \N \N 8 \N \N \N \N 458 597 34 \N \N 8 \N \N \N \N 633 598 34 \N \N 8 \N \N \N \N 488 599 34 \N \N 8 \N \N \N \N 476 600 34 \N \N 8 \N \N \N \N 543 601 34 \N \N 8 \N \N \N \N 514 602 34 \N \N 8 \N \N \N \N 633 603 34 \N \N 8 \N \N \N \N 458 604 34 \N \N 8 \N \N \N \N 543 605 34 \N \N 8 \N \N \N \N 514 606 34 \N \N 8 \N \N \N \N 488 607 34 \N \N 8 \N \N \N \N 458 608 34 \N \N 8 \N \N \N \N 476 609 34 \N \N 8 \N \N \N \N 633 610 34 \N \N 8 \N \N \N \N 458 611 34 \N \N 8 \N \N \N \N 476 612 34 \N \N 8 \N \N \N \N 514 613 34 \N \N 8 \N \N \N \N 543 614 34 \N \N 8 \N \N \N \N 488 615 34 \N \N 8 \N \N \N \N 633 616 34 \N \N 8 \N \N \N \N 458 617 34 \N \N 8 \N \N \N \N 543 618 34 \N \N 8 \N \N \N \N 488 619 34 \N \N 8 \N \N \N \N 514 620 34 \N \N 8 \N \N \N \N 476 621 34 \N \N 8 \N \N \N \N 633 622 34 \N \N 8 \N \N \N \N 633 623 34 \N \N 8 \N \N \N \N 458 624 34 \N \N 8 \N \N \N \N 514 625 34 \N \N 8 \N \N \N \N 476 626 34 \N \N 8 \N \N \N \N 488 627 34 \N \N 8 \N \N \N \N 543 628 34 \N \N 8 \N \N \N \N 543 629 34 \N \N 8 \N \N \N \N 633 630 34 \N \N 8 \N \N \N \N 514 631 34 \N \N 8 \N \N \N \N 476 632 34 \N \N 8 \N \N \N \N 458 633 34 \N \N 8 \N \N \N \N 488 634 34 \N \N 8 \N \N \N \N 488 635 34 \N \N 8 \N \N \N \N 476 636 34 \N \N 8 \N \N \N \N 543 637 34 \N \N 8 \N \N \N \N 458 638 34 \N \N 8 \N \N \N \N 514 639 34 \N \N 8 \N \N \N \N 633 640 34 \N \N 8 \N \N \N \N 514 641 34 \N \N 8 \N \N \N \N 543 642 34 \N \N 8 \N \N \N \N 633 643 34 \N \N 8 \N \N \N \N 458 644 34 \N \N 8 \N \N \N \N 488 645 34 \N \N 8 \N \N \N \N 476 646 34 \N \N 8 \N \N \N \N 633 647 34 \N \N 8 \N \N \N \N 488 648 34 \N \N 8 \N \N \N \N 476 649 34 \N \N 8 \N \N \N \N 458 650 34 \N \N 8 \N \N \N \N 514 651 34 \N \N 8 \N \N \N \N 543 652 34 \N \N 8 \N \N \N \N 514 653 34 \N \N 8 \N \N \N \N 633 654 34 \N \N 8 \N \N \N \N 476 655 34 \N \N 8 \N \N \N \N 458 656 34 \N \N 8 \N \N \N \N 543 657 34 \N \N 8 \N \N \N \N 488 658 34 \N \N 8 \N \N \N \N 458 659 34 \N \N 8 \N \N \N \N 476 660 34 \N \N 8 \N \N \N \N 514 661 34 \N \N 8 \N \N \N \N 633 662 34 \N \N 8 \N \N \N \N 488 663 34 \N \N 8 \N \N \N \N 543 664 34 \N \N 8 \N \N \N \N 488 665 34 \N \N 8 \N \N \N \N 633 666 34 \N \N 8 \N \N \N \N 458 667 34 \N \N 8 \N \N \N \N 543 668 34 \N \N 8 \N \N \N \N 476 669 34 \N \N 8 \N \N \N \N 514 670 34 \N \N 8 \N \N \N \N 458 671 34 \N \N 8 \N \N \N \N 488 672 34 \N \N 8 \N \N \N \N 514 673 34 \N \N 8 \N \N \N \N 476 674 34 \N \N 8 \N \N \N \N 543 675 34 \N \N 8 \N \N \N \N 633 676 34 \N \N 8 \N \N \N \N 543 677 34 \N \N 8 \N \N \N \N 488 678 34 \N \N 8 \N \N \N \N 458 679 34 \N \N 8 \N \N \N \N 633 680 34 \N \N 8 \N \N \N \N 476 681 34 \N \N 8 \N \N \N \N 514 682 34 \N \N 8 \N \N \N \N 543 683 34 \N \N 8 \N \N \N \N 488 684 34 \N \N 8 \N \N \N \N 633 685 34 \N \N 8 \N \N \N \N 514 686 34 \N \N 8 \N \N \N \N 476 687 34 \N \N 8 \N \N \N \N 458 688 34 \N \N 8 \N \N \N \N 543 689 34 \N \N 8 \N \N \N \N 458 690 34 \N \N 8 \N \N \N \N 514 691 34 \N \N 8 \N \N \N \N 476 692 34 \N \N 8 \N \N \N \N 633 693 34 \N \N 8 \N \N \N \N 488 694 34 \N \N 8 \N \N \N \N 514 695 34 \N \N 8 \N \N \N \N 543 696 34 \N \N 8 \N \N \N \N 476 697 34 \N \N 8 \N \N \N \N 633 698 34 \N \N 8 \N \N \N \N 458 699 34 \N \N 8 \N \N \N \N 488 700 34 \N \N 8 \N \N \N \N 543 701 34 \N \N 8 \N \N \N \N 458 702 34 \N \N 8 \N \N \N \N 488 703 34 \N \N 8 \N \N \N \N 633 704 34 \N \N 8 \N \N \N \N 476 705 34 \N \N 8 \N \N \N \N 514 706 34 \N \N 8 \N \N \N \N 543 707 34 \N \N 8 \N \N \N \N 488 708 34 \N \N 8 \N \N \N \N 476 709 34 \N \N 8 \N \N \N \N 514 710 34 \N \N 8 \N \N \N \N 633 711 34 \N \N 8 \N \N \N \N 458 712 34 \N \N 8 \N \N \N \N 458 713 34 \N \N 8 \N \N \N \N 476 714 34 \N \N 8 \N \N \N \N 633 715 34 \N \N 8 \N \N \N \N 543 716 34 \N \N 8 \N \N \N \N 488 717 34 \N \N 8 \N \N \N \N 514 718 34 \N \N 8 \N \N \N \N 543 719 34 \N \N 8 \N \N \N \N 514 720 34 \N \N 8 \N \N \N \N 633 721 34 \N \N 8 \N \N \N \N 476 722 34 \N \N 8 \N \N \N \N 458 723 34 \N \N 8 \N \N \N \N 488 724 34 \N \N 8 \N \N \N \N 514 725 34 \N \N 8 \N \N \N \N 543 726 34 \N \N 8 \N \N \N \N 458 727 34 \N \N 8 \N \N \N \N 488 728 34 \N \N 8 \N \N \N \N 633 729 34 \N \N 8 \N \N \N \N 476 730 34 \N \N 8 \N \N \N \N 488 731 34 \N \N 8 \N \N \N \N 458 732 34 \N \N 8 \N \N \N \N 543 733 34 \N \N 8 \N \N \N \N 476 734 34 \N \N 8 \N \N \N \N 633 735 34 \N \N 8 \N \N \N \N 514 736 34 \N \N 8 \N \N \N \N 476 737 34 \N \N 8 \N \N \N \N 514 738 34 \N \N 8 \N \N \N \N 543 739 34 \N \N 8 \N \N \N \N 488 740 34 \N \N 8 \N \N \N \N 458 741 34 \N \N 8 \N \N \N \N 633 742 34 \N \N 8 \N \N \N \N 633 743 34 \N \N 8 \N \N \N \N 488 744 34 \N \N 8 \N \N \N \N 514 745 34 \N \N 8 \N \N \N \N 476 746 34 \N \N 8 \N \N \N \N 458 747 34 \N \N 8 \N \N \N \N 543 748 34 \N \N 8 \N \N \N \N 488 749 34 \N \N 8 \N \N \N \N 543 750 34 \N \N 8 \N \N \N \N 633 751 34 \N \N 8 \N \N \N \N 458 752 34 \N \N 8 \N \N \N \N 514 753 34 \N \N 8 \N \N \N \N 476 754 34 \N \N 8 \N \N \N \N 543 755 34 \N \N 8 \N \N \N \N 488 756 34 \N \N 8 \N \N \N \N 633 757 34 \N \N 8 \N \N \N \N 476 758 34 \N \N 8 \N \N \N \N 514 759 34 \N \N 8 \N \N \N \N 458 760 34 \N \N 8 \N \N \N \N 488 761 34 \N \N 8 \N \N \N \N 543 762 34 \N \N 8 \N \N \N \N 476 763 34 \N \N 8 \N \N \N \N 633 764 34 \N \N 8 \N \N \N \N 458 765 34 \N \N 8 \N \N \N \N 514 766 34 \N \N 8 \N \N \N \N 458 767 34 \N \N 8 \N \N \N \N 543 768 34 \N \N 8 \N \N \N \N 476 769 34 \N \N 8 \N \N \N \N 514 770 34 \N \N 8 \N \N \N \N 633 771 34 \N \N 8 \N \N \N \N 488 772 34 \N \N 8 \N \N \N \N 514 773 34 \N \N 8 \N \N \N \N 458 774 34 \N \N 8 \N \N \N \N 488 775 34 \N \N 8 \N \N \N \N 543 776 34 \N \N 8 \N \N \N \N 633 777 34 \N \N 8 \N \N \N \N 476 778 34 \N \N 8 \N \N \N \N 543 779 34 \N \N 8 \N \N \N \N 488 780 34 \N \N 8 \N \N \N \N 458 781 34 \N \N 8 \N \N \N \N 633 782 34 \N \N 8 \N \N \N \N 514 783 34 \N \N 8 \N \N \N \N 476 784 34 \N \N 8 \N \N \N \N 514 785 34 \N \N 8 \N \N \N \N 476 786 34 \N \N 8 \N \N \N \N 543 787 34 \N \N 8 \N \N \N \N 488 788 34 \N \N 8 \N \N \N \N 633 789 34 \N \N 8 \N \N \N \N 458 790 34 \N \N 8 \N \N \N \N 543 791 34 \N \N 8 \N \N \N \N 488 792 34 \N \N 8 \N \N \N \N 514 793 34 \N \N 8 \N \N \N \N 633 794 34 \N \N 8 \N \N \N \N 458 795 34 \N \N 8 \N \N \N \N 476 796 34 \N \N 8 \N \N \N \N 488 797 34 \N \N 8 \N \N \N \N 514 798 34 \N \N 8 \N \N \N \N 543 799 34 \N \N 8 \N \N \N \N 633 800 34 \N \N 8 \N \N \N \N 476 801 34 \N \N 8 \N \N \N \N 458 802 34 \N \N 8 \N \N \N \N 476 803 34 \N \N 8 \N \N \N \N 514 804 34 \N \N 8 \N \N \N \N 543 805 34 \N \N 8 \N \N \N \N 633 806 34 \N \N 8 \N \N \N \N 458 807 34 \N \N 8 \N \N \N \N 488 808 34 \N \N 8 \N \N \N \N 458 809 34 \N \N 8 \N \N \N \N 633 810 34 \N \N 8 \N \N \N \N 543 811 34 \N \N 8 \N \N \N \N 476 812 34 \N \N 8 \N \N \N \N 488 813 34 \N \N 8 \N \N \N \N 514 814 34 \N \N 8 \N \N \N \N 514 815 34 \N \N 8 \N \N \N \N 633 816 34 \N \N 8 \N \N \N \N 543 817 34 \N \N 8 \N \N \N \N 458 818 34 \N \N 8 \N \N \N \N 476 819 34 \N \N 8 \N \N \N \N 488 820 34 \N \N 8 \N \N \N \N 476 821 34 \N \N 8 \N \N \N \N 514 822 34 \N \N 8 \N \N \N \N 458 823 34 \N \N 8 \N \N \N \N 488 824 34 \N \N 8 \N \N \N \N 543 825 34 \N \N 8 \N \N \N \N 633 826 34 \N \N 8 \N \N \N \N 476 827 34 \N \N 8 \N \N \N \N 543 828 34 \N \N 8 \N \N \N \N 633 829 34 \N \N 8 \N \N \N \N 514 830 34 \N \N 8 \N \N \N \N 488 831 34 \N \N 8 \N \N \N \N 458 832 34 \N \N 8 \N \N \N \N 633 833 34 \N \N 8 \N \N \N \N 543 834 34 \N \N 8 \N \N \N \N 458 835 34 \N \N 8 \N \N \N \N 488 836 34 \N \N 8 \N \N \N \N 476 837 34 \N \N 8 \N \N \N \N 514 838 34 \N \N 8 \N \N \N \N 476 839 34 \N \N 8 \N \N \N \N 514 840 34 \N \N 8 \N \N \N \N 458 841 34 \N \N 8 \N \N \N \N 633 842 34 \N \N 8 \N \N \N \N 488 843 34 \N \N 8 \N \N \N \N 543 844 34 \N \N 8 \N \N \N \N 476 845 34 \N \N 8 \N \N \N \N 633 846 34 \N \N 8 \N \N \N \N 514 847 34 \N \N 8 \N \N \N \N 543 848 34 \N \N 8 \N \N \N \N 458 849 34 \N \N 8 \N \N \N \N 488 850 34 \N \N 8 \N \N \N \N 476 851 34 \N \N 8 \N \N \N \N 488 852 34 \N \N 8 \N \N \N \N 633 853 34 \N \N 8 \N \N \N \N 543 854 34 \N \N 8 \N \N \N \N 458 855 34 \N \N 8 \N \N \N \N 514 856 34 \N \N 8 \N \N \N \N 458 857 34 \N \N 8 \N \N \N \N 514 858 34 \N \N 8 \N \N \N \N 476 859 34 \N \N 8 \N \N \N \N 543 860 34 \N \N 8 \N \N \N \N 488 861 34 \N \N 8 \N \N \N \N 633 862 34 \N \N 8 \N \N \N \N 514 863 34 \N \N 8 \N \N \N \N 476 864 34 \N \N 8 \N \N \N \N 633 865 34 \N \N 8 \N \N \N \N 458 866 34 \N \N 8 \N \N \N \N 488 867 34 \N \N 8 \N \N \N \N 543 868 34 \N \N 8 \N \N \N \N 458 869 34 \N \N 8 \N \N \N \N 488 870 34 \N \N 8 \N \N \N \N 476 871 34 \N \N 8 \N \N \N \N 543 872 34 \N \N 8 \N \N \N \N 633 873 34 \N \N 8 \N \N \N \N 514 874 34 \N \N 8 \N \N \N \N 633 875 34 \N \N 8 \N \N \N \N 476 876 34 \N \N 8 \N \N \N \N 514 877 34 \N \N 8 \N \N \N \N 458 878 34 \N \N 8 \N \N \N \N 488 879 34 \N \N 8 \N \N \N \N 543 880 34 \N \N 8 \N \N \N \N 514 881 34 \N \N 8 \N \N \N \N 458 882 34 \N \N 8 \N \N \N \N 543 883 34 \N \N 8 \N \N \N \N 488 884 34 \N \N 8 \N \N \N \N 633 885 34 \N \N 8 \N \N \N \N 476 886 34 \N \N 8 \N \N \N \N 476 887 34 \N \N 8 \N \N \N \N 488 888 34 \N \N 8 \N \N \N \N 458 889 34 \N \N 8 \N \N \N \N 514 890 34 \N \N 8 \N \N \N \N 633 891 34 \N \N 8 \N \N \N \N 543 892 34 \N \N 8 \N \N \N \N 458 893 34 \N \N 8 \N \N \N \N 488 894 34 \N \N 8 \N \N \N \N 543 895 34 \N \N 8 \N \N \N \N 476 896 34 \N \N 8 \N \N \N \N 514 897 34 \N \N 8 \N \N \N \N 633 898 34 \N \N 8 \N \N \N \N 543 899 34 \N \N 8 \N \N \N \N 514 900 34 \N \N 8 \N \N \N \N 476 901 34 \N \N 8 \N \N \N \N 458 902 34 \N \N 8 \N \N \N \N 633 903 34 \N \N 8 \N \N \N \N 488 904 34 \N \N 8 \N \N \N \N 458 905 34 \N \N 8 \N \N \N \N 488 906 34 \N \N 8 \N \N \N \N 514 907 34 \N \N 8 \N \N \N \N 543 908 34 \N \N 8 \N \N \N \N 476 909 34 \N \N 8 \N \N \N \N 633 910 34 \N \N 8 \N \N \N \N 476 911 34 \N \N 8 \N \N \N \N 458 912 34 \N \N 8 \N \N \N \N 514 913 34 \N \N 8 \N \N \N \N 543 914 34 \N \N 8 \N \N \N \N 633 915 34 \N \N 8 \N \N \N \N 488 916 34 \N \N 8 \N \N \N \N 488 917 34 \N \N 8 \N \N \N \N 514 918 34 \N \N 8 \N \N \N \N 543 919 34 \N \N 8 \N \N \N \N 458 920 34 \N \N 8 \N \N \N \N 476 921 34 \N \N 8 \N \N \N \N 633 922 34 \N \N 8 \N \N \N \N 488 923 34 \N \N 8 \N \N \N \N 633 924 34 \N \N 8 \N \N \N \N 514 925 34 \N \N 8 \N \N \N \N 543 926 34 \N \N 8 \N \N \N \N 458 927 34 \N \N 8 \N \N \N \N 476 928 34 \N \N 8 \N \N \N \N 543 929 34 \N \N 8 \N \N \N \N 488 930 34 \N \N 8 \N \N \N \N 514 931 34 \N \N 8 \N \N \N \N 458 932 34 \N \N 8 \N \N \N \N 476 933 34 \N \N 8 \N \N \N \N 633 934 34 \N \N 8 \N \N \N \N 476 935 34 \N \N 8 \N \N \N \N 543 936 34 \N \N 8 \N \N \N \N 633 937 34 \N \N 8 \N \N \N \N 488 938 34 \N \N 8 \N \N \N \N 458 939 34 \N \N 8 \N \N \N \N 514 940 34 \N \N 8 \N \N \N \N 514 941 34 \N \N 8 \N \N \N \N 633 942 34 \N \N 8 \N \N \N \N 543 943 34 \N \N 8 \N \N \N \N 476 944 34 \N \N 8 \N \N \N \N 458 945 34 \N \N 8 \N \N \N \N 488 946 34 \N \N 8 \N \N \N \N 476 947 34 \N \N 8 \N \N \N \N 543 948 34 \N \N 8 \N \N \N \N 488 949 34 \N \N 8 \N \N \N \N 458 950 34 \N \N 8 \N \N \N \N 514 951 34 \N \N 8 \N \N \N \N 633 952 34 \N \N 8 \N \N \N \N 543 953 34 \N \N 8 \N \N \N \N 476 954 34 \N \N 8 \N \N \N \N 514 955 34 \N \N 8 \N \N \N \N 488 956 34 \N \N 8 \N \N \N \N 633 957 34 \N \N 8 \N \N \N \N 458 958 34 \N \N 8 \N \N \N \N 633 959 34 \N \N 8 \N \N \N \N 488 960 34 \N \N 8 \N \N \N \N 543 961 34 \N \N 8 \N \N \N \N 514 962 34 \N \N 8 \N \N \N \N 458 963 34 \N \N 8 \N \N \N \N 476 964 34 \N \N 8 \N \N \N \N 543 965 34 \N \N 8 \N \N \N \N 514 966 34 \N \N 8 \N \N \N \N 458 967 34 \N \N 8 \N \N \N \N 476 968 34 \N \N 8 \N \N \N \N 488 969 34 \N \N 8 \N \N \N \N 633 970 34 \N \N 8 \N \N \N \N 543 971 34 \N \N 8 \N \N \N \N 633 972 34 \N \N 8 \N \N \N \N 488 973 34 \N \N 8 \N \N \N \N 458 974 34 \N \N 8 \N \N \N \N 476 975 34 \N \N 8 \N \N \N \N 514 976 34 \N \N 8 \N \N \N \N 476 977 34 \N \N 8 \N \N \N \N 488 978 34 \N \N 8 \N \N \N \N 514 979 34 \N \N 8 \N \N \N \N 458 980 34 \N \N 8 \N \N \N \N 633 981 34 \N \N 8 \N \N \N \N 543 982 34 \N \N 8 \N \N \N \N 488 983 34 \N \N 8 \N \N \N \N 633 984 34 \N \N 8 \N \N \N \N 458 985 34 \N \N 8 \N \N \N \N 514 986 34 \N \N 8 \N \N \N \N 476 987 34 \N \N 8 \N \N \N \N 543 988 34 \N \N 8 \N \N \N \N 476 989 34 \N \N 8 \N \N \N \N 488 990 34 \N \N 8 \N \N \N \N 633 991 34 \N \N 8 \N \N \N \N 458 992 34 \N \N 8 \N \N \N \N 514 993 34 \N \N 8 \N \N \N \N 543 994 34 \N \N 8 \N \N \N \N 488 995 34 \N \N 8 \N \N \N \N 543 996 34 \N \N 8 \N \N \N \N 458 997 34 \N \N 8 \N \N \N \N 633 998 34 \N \N 8 \N \N \N \N 514 999 34 \N \N 8 \N \N \N \N 476 1000 34 \N \N 8 \N \N \N \N 543 1001 34 \N \N 8 \N \N \N \N 488 1002 34 \N \N 8 \N \N \N \N 458 1003 34 \N \N 8 \N \N \N \N 476 1004 34 \N \N 8 \N \N \N \N 633 1005 34 \N \N 8 \N \N \N \N 514 1006 34 \N \N 8 \N \N \N \N 633 1007 34 \N \N 8 \N \N \N \N 476 1008 34 \N \N 8 \N \N \N \N 488 1009 34 \N \N 8 \N \N \N \N 514 1010 34 \N \N 8 \N \N \N \N 543 1011 34 \N \N 8 \N \N \N \N 458 1012 34 \N \N 8 \N \N \N \N 458 1013 34 \N \N 8 \N \N \N \N 543 1014 34 \N \N 8 \N \N \N \N 476 1015 34 \N \N 8 \N \N \N \N 633 1016 34 \N \N 8 \N \N \N \N 488 1017 34 \N \N 8 \N \N \N \N 514 1018 34 \N \N 8 \N \N \N \N 476 1019 34 \N \N 8 \N \N \N \N 514 1020 34 \N \N 8 \N \N \N \N 543 1021 34 \N \N 8 \N \N \N \N 488 1022 34 \N \N 8 \N \N \N \N 458 1023 34 \N \N 8 \N \N \N \N 633 1024 34 \N \N 8 \N \N \N \N 488 1025 34 \N \N 8 \N \N \N \N 543 1026 34 \N \N 8 \N \N \N \N 514 1027 34 \N \N 8 \N \N \N \N 476 1028 34 \N \N 8 \N \N \N \N 458 1029 34 \N \N 8 \N \N \N \N 633 1030 34 \N \N 8 \N \N \N \N 488 1031 34 \N \N 8 \N \N \N \N 514 1032 34 \N \N 8 \N \N \N \N 458 1033 34 \N \N 8 \N \N \N \N 476 1034 34 \N \N 8 \N \N \N \N 543 1035 34 \N \N 8 \N \N \N \N 633 1036 34 \N \N 8 \N \N \N \N 633 1037 34 \N \N 8 \N \N \N \N 543 1038 34 \N \N 8 \N \N \N \N 476 1039 34 \N \N 8 \N \N \N \N 514 1040 34 \N \N 8 \N \N \N \N 488 1041 34 \N \N 8 \N \N \N \N 458 1042 34 \N \N 8 \N \N \N \N 543 1043 34 \N \N 8 \N \N \N \N 458 1044 34 \N \N 8 \N \N \N \N 476 1045 34 \N \N 8 \N \N \N \N 633 1046 34 \N \N 8 \N \N \N \N 488 1047 34 \N \N 8 \N \N \N \N 514 1048 34 \N \N 8 \N \N \N \N 458 1049 34 \N \N 8 \N \N \N \N 633 1050 34 \N \N 8 \N \N \N \N 488 1051 34 \N \N 8 \N \N \N \N 514 1052 34 \N \N 8 \N \N \N \N 543 1053 34 \N \N 8 \N \N \N \N 476 1054 34 \N \N 8 \N \N \N \N 488 1055 34 \N \N 8 \N \N \N \N 514 1056 34 \N \N 8 \N \N \N \N 458 1057 34 \N \N 8 \N \N \N \N 543 1058 34 \N \N 8 \N \N \N \N 633 1059 34 \N \N 8 \N \N \N \N 476 1060 34 \N \N 8 \N \N \N \N 543 1061 34 \N \N 8 \N \N \N \N 633 1062 34 \N \N 8 \N \N \N \N 514 1063 34 \N \N 8 \N \N \N \N 476 1064 34 \N \N 8 \N \N \N \N 458 1065 34 \N \N 8 \N \N \N \N 488 1066 34 \N \N 8 \N \N \N \N 476 1067 34 \N \N 8 \N \N \N \N 488 1068 34 \N \N 8 \N \N \N \N 633 1069 34 \N \N 8 \N \N \N \N 514 1070 34 \N \N 8 \N \N \N \N 543 1071 34 \N \N 8 \N \N \N \N 458 1072 34 \N \N 8 \N \N \N \N 633 1073 34 \N \N 8 \N \N \N \N 514 1074 34 \N \N 8 \N \N \N \N 543 1075 34 \N \N 8 \N \N \N \N 488 1076 34 \N \N 8 \N \N \N \N 476 1077 34 \N \N 8 \N \N \N \N 458 1078 34 \N \N 8 \N \N \N \N 476 1079 34 \N \N 8 \N \N \N \N 543 1080 34 \N \N 8 \N \N \N \N 633 1081 34 \N \N 8 \N \N \N \N 514 1082 34 \N \N 8 \N \N \N \N 458 1083 34 \N \N 8 \N \N \N \N 488 1084 34 \N \N 8 \N \N \N \N 476 1085 34 \N \N 8 \N \N \N \N 633 1086 34 \N \N 8 \N \N \N \N 543 1087 34 \N \N 8 \N \N \N \N 458 1088 34 \N \N 8 \N \N \N \N 514 1089 34 \N \N 8 \N \N \N \N 488 1090 34 \N \N 8 \N \N \N \N 633 1091 34 \N \N 8 \N \N \N \N 476 1092 34 \N \N 8 \N \N \N \N 488 1093 34 \N \N 8 \N \N \N \N 514 1094 34 \N \N 8 \N \N \N \N 458 1095 34 \N \N 8 \N \N \N \N 543 1096 34 \N \N 8 \N \N \N \N 476 1097 34 \N \N 8 \N \N \N \N 458 1098 34 \N \N 8 \N \N \N \N 488 1099 34 \N \N 8 \N \N \N \N 514 1100 34 \N \N 8 \N \N \N \N 633 1101 34 \N \N 8 \N \N \N \N 543 1102 34 \N \N 8 \N \N \N \N 476 1103 34 \N \N 8 \N \N \N \N 488 1104 34 \N \N 8 \N \N \N \N 543 1105 34 \N \N 8 \N \N \N \N 458 1106 34 \N \N 8 \N \N \N \N 633 1107 34 \N \N 8 \N \N \N \N 514 1108 34 \N \N 8 \N \N \N \N 633 1109 34 \N \N 8 \N \N \N \N 514 1110 34 \N \N 8 \N \N \N \N 543 1111 34 \N \N 8 \N \N \N \N 488 1112 34 \N \N 8 \N \N \N \N 458 1113 34 \N \N 8 \N \N \N \N 476 1114 34 \N \N 8 \N \N \N \N 476 1115 34 \N \N 8 \N \N \N \N 458 1116 34 \N \N 8 \N \N \N \N 543 1117 34 \N \N 8 \N \N \N \N 514 1118 34 \N \N 8 \N \N \N \N 488 1119 34 \N \N 8 \N \N \N \N 633 1120 34 \N \N 8 \. -- -- Data for Name: lasermedium; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lasermedium (id, permissions, value, external_id) FROM stdin; 1 -52 Rhodamine6G \N 2 -52 CoumarinC30 \N 3 -52 ArFl \N 4 -52 ArCl \N 5 -52 KrFl \N 6 -52 KrCl \N 7 -52 XeFl \N 8 -52 XeCl \N 9 -52 XeBr \N 10 -52 GaAs \N 11 -52 GaAlAs \N 12 -52 EMinus \N 13 -52 Cu \N 14 -52 Ag \N 15 -52 N \N 16 -52 Ar \N 17 -52 Kr \N 18 -52 Xe \N 19 -52 HeNe \N 20 -52 HeCd \N 21 -52 CO \N 22 -52 CO2 \N 23 -52 H2O \N 24 -52 HFl \N 25 -52 NdGlass \N 26 -52 NdYAG \N 27 -52 ErGlass \N 28 -52 ErYAG \N 29 -52 HoYLF \N 30 -52 HoYAG \N 31 -52 Ruby \N 32 -52 TiSapphire \N 33 -52 Alexandrite \N 34 -52 Other \N 35 -52 Unknown \N \. -- -- Data for Name: lasertype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lasertype (id, permissions, value, external_id) FROM stdin; 1 -52 Excimer \N 2 -52 Gas \N 3 -52 MetalVapor \N 4 -52 SolidState \N 5 -52 Dye \N 6 -52 Semiconductor \N 7 -52 FreeElectron \N 8 -52 Other \N 9 -52 Unknown \N \. -- -- Data for Name: lightemittingdiode; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lightemittingdiode (lightsource_id) FROM stdin; \. -- -- Data for Name: lightpath; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lightpath (id, permissions, version, creation_id, external_id, group_id, owner_id, update_id, dichroic) FROM stdin; 121 -40 \N 1614 \N 3 2 1614 \N 122 -40 \N 1614 \N 3 2 1614 \N 123 -40 \N 1614 \N 3 2 1614 \N 124 -40 \N 1614 \N 3 2 1614 \N 125 -40 \N 1614 \N 3 2 1614 \N 126 -40 \N 1614 \N 3 2 1614 \N 127 -40 \N 1614 \N 3 2 1614 \N 128 -40 \N 1614 \N 3 2 1614 \N 75 -40 \N 1055 \N 3 2 1055 \N 76 -40 \N 1055 \N 3 2 1055 \N 77 -40 \N 1055 \N 3 2 1055 \N 78 -40 \N 1055 \N 3 2 1055 \N 79 -40 \N 1055 \N 3 2 1055 \N 80 -40 \N 1055 \N 3 2 1055 \N 81 -40 \N 1055 \N 3 2 1055 \N 82 -40 \N 1055 \N 3 2 1055 \N 83 -40 \N 1055 \N 3 2 1055 \N 84 -40 \N 1055 \N 3 2 1055 \N 85 -40 \N 1055 \N 3 2 1055 \N 86 -40 \N 1055 \N 3 2 1055 \N 87 -40 \N 1118 \N 3 2 1118 \N 88 -40 \N 1118 \N 3 2 1118 \N 89 -40 \N 1118 \N 3 2 1118 \N 90 -40 \N 1118 \N 3 2 1118 \N 91 -40 \N 1118 \N 3 2 1118 \N 92 -40 \N 1118 \N 3 2 1118 \N 93 -40 \N 1118 \N 3 2 1118 \N 94 -40 \N 1118 \N 3 2 1118 \N 95 -40 \N 1118 \N 3 2 1118 \N 96 -40 \N 1118 \N 3 2 1118 \N 97 -40 \N 1118 \N 3 2 1118 \N 98 -40 \N 1118 \N 3 2 1118 \N 99 -40 \N 1143 \N 3 2 1143 \N 100 -40 \N 1143 \N 3 2 1143 \N 101 -40 \N 1143 \N 3 2 1143 \N 102 -40 \N 1143 \N 3 2 1143 \N 103 -40 \N 1143 \N 3 2 1143 \N 104 -40 \N 1143 \N 3 2 1143 \N 105 -40 \N 1143 \N 3 2 1143 \N 106 -40 \N 1143 \N 3 2 1143 \N 107 -40 \N 1143 \N 3 2 1143 \N 108 -40 \N 1143 \N 3 2 1143 \N 109 -40 \N 1143 \N 3 2 1143 \N 110 -40 \N 1143 \N 3 2 1143 \N 111 -40 \N 1143 \N 3 2 1143 \N 112 -40 \N 1143 \N 3 2 1143 \N 113 -40 \N 1143 \N 3 2 1143 \N 114 -40 \N 1143 \N 3 2 1143 \N 115 -40 \N 1143 \N 3 2 1143 \N 116 -40 \N 1143 \N 3 2 1143 \N 117 -40 \N 1143 \N 3 2 1143 \N 118 -40 \N 1143 \N 3 2 1143 \N 119 -40 \N 1143 \N 3 2 1143 \N 120 -40 \N 1143 \N 3 2 1143 \N 151 -120 \N 5151 \N 53 102 5151 \N 152 -120 \N 5151 \N 53 102 5151 \N 153 -120 \N 5151 \N 53 102 5151 \N 154 -120 \N 5151 \N 53 102 5151 \N 155 -120 \N 5173 \N 53 102 5173 \N 156 -120 \N 5173 \N 53 102 5173 \N 157 -120 \N 5173 \N 53 102 5173 \N 158 -120 \N 5173 \N 53 102 5173 \N 159 -120 \N 5195 \N 53 102 5195 \N 160 -120 \N 5195 \N 53 102 5195 \N 161 -120 \N 5195 \N 53 102 5195 \N 162 -120 \N 5195 \N 53 102 5195 \N 163 -120 \N 5218 \N 53 102 5218 \N 164 -120 \N 5218 \N 53 102 5218 \N 165 -120 \N 5218 \N 53 102 5218 \N 166 -120 \N 5218 \N 53 102 5218 \N 167 -120 \N 5241 \N 53 102 5241 \N 168 -120 \N 5241 \N 53 102 5241 \N 169 -120 \N 5241 \N 53 102 5241 \N 170 -120 \N 5241 \N 53 102 5241 \N 171 -120 \N 5263 \N 53 102 5263 \N 172 -120 \N 5263 \N 53 102 5263 \N 173 -120 \N 5263 \N 53 102 5263 \N 174 -120 \N 5263 \N 53 102 5263 \N 175 -120 \N 5285 \N 53 102 5285 \N 176 -120 \N 5285 \N 53 102 5285 \N 177 -120 \N 5285 \N 53 102 5285 \N 178 -120 \N 5285 \N 53 102 5285 \N 179 -120 \N 5307 \N 53 102 5307 \N 180 -120 \N 5307 \N 53 102 5307 \N 181 -120 \N 5307 \N 53 102 5307 \N 182 -120 \N 5307 \N 53 102 5307 \N 183 -120 \N 5329 \N 53 102 5329 \N 184 -120 \N 5329 \N 53 102 5329 \N 185 -120 \N 5329 \N 53 102 5329 \N 186 -120 \N 5329 \N 53 102 5329 \N 187 -120 \N 5397 \N 53 102 5397 \N 188 -120 \N 5397 \N 53 102 5397 \N 189 -120 \N 5397 \N 53 102 5397 \N 190 -120 \N 5397 \N 53 102 5397 \N 191 -120 \N 5421 \N 53 102 5421 \N 192 -120 \N 5421 \N 53 102 5421 \N 193 -120 \N 5421 \N 53 102 5421 \N 194 -120 \N 5421 \N 53 102 5421 \N 195 -120 \N 5446 \N 53 102 5446 \N 196 -120 \N 5446 \N 53 102 5446 \N 197 -120 \N 5446 \N 53 102 5446 \N 198 -120 \N 5446 \N 53 102 5446 \N 199 -120 \N 5471 \N 53 102 5471 \N 200 -120 \N 5471 \N 53 102 5471 \N 201 -120 \N 5471 \N 53 102 5471 \N 202 -120 \N 5471 \N 53 102 5471 \N 203 -120 \N 5493 \N 53 102 5493 \N 204 -120 \N 5493 \N 53 102 5493 \N 205 -120 \N 5493 \N 53 102 5493 \N 206 -120 \N 5493 \N 53 102 5493 \N 207 -120 \N 5515 \N 53 102 5515 \N 208 -120 \N 5515 \N 53 102 5515 \N 209 -120 \N 5515 \N 53 102 5515 \N 210 -120 \N 5515 \N 53 102 5515 \N 211 -120 \N 5539 \N 53 102 5539 \N 212 -120 \N 5539 \N 53 102 5539 \N 213 -120 \N 5539 \N 53 102 5539 \N 214 -120 \N 5539 \N 53 102 5539 \N 215 -120 \N 5561 \N 53 102 5561 \N 216 -120 \N 5561 \N 53 102 5561 \N 217 -120 \N 5561 \N 53 102 5561 \N 218 -120 \N 5561 \N 53 102 5561 \N 219 -120 \N 5583 \N 53 102 5583 \N 220 -120 \N 5583 \N 53 102 5583 \N 221 -120 \N 5583 \N 53 102 5583 \N 222 -120 \N 5583 \N 53 102 5583 \N 223 -120 \N 5605 \N 53 102 5605 \N 224 -120 \N 5605 \N 53 102 5605 \N 225 -120 \N 5605 \N 53 102 5605 \N 226 -120 \N 5605 \N 53 102 5605 \N 227 -120 \N 5628 \N 53 102 5628 \N 228 -120 \N 5628 \N 53 102 5628 \N 229 -120 \N 5628 \N 53 102 5628 \N 230 -120 \N 5628 \N 53 102 5628 \N 231 -120 \N 5651 \N 53 102 5651 \N 232 -120 \N 5651 \N 53 102 5651 \N 233 -120 \N 5651 \N 53 102 5651 \N 234 -120 \N 5651 \N 53 102 5651 \N 235 -120 \N 5676 \N 53 102 5676 \N 236 -120 \N 5676 \N 53 102 5676 \N 237 -120 \N 5676 \N 53 102 5676 \N 238 -120 \N 5676 \N 53 102 5676 \N 239 -120 \N 5701 \N 53 102 5701 \N 240 -120 \N 5701 \N 53 102 5701 \N 241 -120 \N 5701 \N 53 102 5701 \N 242 -120 \N 5701 \N 53 102 5701 \N 243 -120 \N 5723 \N 53 102 5723 \N 244 -120 \N 5723 \N 53 102 5723 \N 245 -120 \N 5723 \N 53 102 5723 \N 246 -120 \N 5723 \N 53 102 5723 \N 247 -120 \N 5748 \N 53 102 5748 \N 248 -120 \N 5748 \N 53 102 5748 \N 249 -120 \N 5748 \N 53 102 5748 \N 250 -120 \N 5748 \N 53 102 5748 \N 251 -120 \N 5770 \N 53 102 5770 \N 252 -120 \N 5770 \N 53 102 5770 \N 253 -120 \N 5770 \N 53 102 5770 \N 254 -120 \N 5770 \N 53 102 5770 \N 255 -120 \N 5792 \N 53 102 5792 \N 256 -120 \N 5792 \N 53 102 5792 \N 257 -120 \N 5792 \N 53 102 5792 \N 258 -120 \N 5792 \N 53 102 5792 \N 259 -120 \N 5814 \N 53 102 5814 \N 260 -120 \N 5814 \N 53 102 5814 \N 261 -120 \N 5814 \N 53 102 5814 \N 262 -120 \N 5814 \N 53 102 5814 \N 263 -120 \N 5837 \N 53 102 5837 \N 264 -120 \N 5837 \N 53 102 5837 \N 265 -120 \N 5837 \N 53 102 5837 \N 266 -120 \N 5837 \N 53 102 5837 \N 267 -120 \N 5864 \N 53 102 5864 \N 268 -120 \N 5864 \N 53 102 5864 \N 269 -120 \N 5864 \N 53 102 5864 \N 270 -120 \N 5864 \N 53 102 5864 \N \. -- -- Data for Name: lightpathemissionfilterlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lightpathemissionfilterlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 121 -40 0 183 1614 \N 3 2 1614 121 122 -40 0 181 1614 \N 3 2 1614 122 123 -40 0 184 1614 \N 3 2 1614 123 124 -40 0 185 1614 \N 3 2 1614 124 125 -40 0 189 1614 \N 3 2 1614 125 126 -40 0 188 1614 \N 3 2 1614 126 127 -40 0 190 1614 \N 3 2 1614 127 128 -40 0 191 1614 \N 3 2 1614 128 75 -40 0 114 1055 \N 3 2 1055 75 76 -40 0 113 1055 \N 3 2 1055 76 77 -40 0 115 1055 \N 3 2 1055 77 78 -40 0 116 1055 \N 3 2 1055 78 79 -40 0 119 1055 \N 3 2 1055 79 80 -40 0 120 1055 \N 3 2 1055 80 81 -40 0 122 1055 \N 3 2 1055 81 82 -40 0 123 1055 \N 3 2 1055 82 83 -40 0 126 1055 \N 3 2 1055 83 84 -40 0 125 1055 \N 3 2 1055 84 85 -40 0 129 1055 \N 3 2 1055 85 86 -40 0 127 1055 \N 3 2 1055 86 87 -40 0 130 1118 \N 3 2 1118 87 88 -40 0 131 1118 \N 3 2 1118 88 89 -40 0 133 1118 \N 3 2 1118 89 90 -40 0 134 1118 \N 3 2 1118 90 91 -40 0 137 1118 \N 3 2 1118 91 92 -40 0 138 1118 \N 3 2 1118 92 93 -40 0 139 1118 \N 3 2 1118 93 94 -40 0 140 1118 \N 3 2 1118 94 95 -40 0 143 1118 \N 3 2 1118 95 96 -40 0 144 1118 \N 3 2 1118 96 97 -40 0 147 1118 \N 3 2 1118 97 98 -40 0 145 1118 \N 3 2 1118 98 99 -40 0 149 1143 \N 3 2 1143 99 100 -40 0 148 1143 \N 3 2 1143 100 101 -40 0 151 1143 \N 3 2 1143 101 102 -40 0 152 1143 \N 3 2 1143 102 103 -40 0 156 1143 \N 3 2 1143 103 104 -40 0 154 1143 \N 3 2 1143 104 105 -40 0 158 1143 \N 3 2 1143 105 106 -40 0 157 1143 \N 3 2 1143 106 107 -40 0 160 1143 \N 3 2 1143 107 108 -40 0 162 1143 \N 3 2 1143 108 109 -40 0 164 1143 \N 3 2 1143 109 110 -40 0 165 1143 \N 3 2 1143 110 111 -40 0 168 1143 \N 3 2 1143 111 112 -40 0 166 1143 \N 3 2 1143 112 113 -40 0 170 1143 \N 3 2 1143 113 114 -40 0 171 1143 \N 3 2 1143 114 115 -40 0 172 1143 \N 3 2 1143 115 116 -40 0 174 1143 \N 3 2 1143 116 117 -40 0 176 1143 \N 3 2 1143 117 118 -40 0 177 1143 \N 3 2 1143 118 119 -40 0 179 1143 \N 3 2 1143 119 120 -40 0 178 1143 \N 3 2 1143 120 151 -120 0 202 5151 \N 53 102 5151 151 152 -120 0 206 5151 \N 53 102 5151 152 153 -120 0 211 5151 \N 53 102 5151 153 154 -120 0 213 5151 \N 53 102 5151 154 155 -120 0 217 5173 \N 53 102 5173 155 156 -120 0 224 5173 \N 53 102 5173 156 157 -120 0 228 5173 \N 53 102 5173 157 158 -120 0 231 5173 \N 53 102 5173 158 159 -120 0 233 5195 \N 53 102 5195 159 160 -120 0 238 5195 \N 53 102 5195 160 161 -120 0 241 5195 \N 53 102 5195 161 162 -120 0 246 5195 \N 53 102 5195 162 163 -120 0 251 5218 \N 53 102 5218 163 164 -120 0 253 5218 \N 53 102 5218 164 165 -120 0 259 5218 \N 53 102 5218 165 166 -120 0 263 5218 \N 53 102 5218 166 167 -120 0 268 5241 \N 53 102 5241 167 168 -120 0 272 5241 \N 53 102 5241 168 169 -120 0 273 5241 \N 53 102 5241 169 170 -120 0 279 5241 \N 53 102 5241 170 171 -120 0 281 5263 \N 53 102 5263 171 172 -120 0 285 5263 \N 53 102 5263 172 173 -120 0 292 5263 \N 53 102 5263 173 174 -120 0 294 5263 \N 53 102 5263 174 175 -120 0 300 5285 \N 53 102 5285 175 176 -120 0 302 5285 \N 53 102 5285 176 177 -120 0 305 5285 \N 53 102 5285 177 178 -120 0 311 5285 \N 53 102 5285 178 179 -120 0 316 5307 \N 53 102 5307 179 180 -120 0 318 5307 \N 53 102 5307 180 181 -120 0 324 5307 \N 53 102 5307 181 182 -120 0 325 5307 \N 53 102 5307 182 183 -120 0 332 5329 \N 53 102 5329 183 184 -120 0 333 5329 \N 53 102 5329 184 185 -120 0 337 5329 \N 53 102 5329 185 186 -120 0 341 5329 \N 53 102 5329 186 187 -120 0 347 5397 \N 53 102 5397 187 188 -120 0 352 5397 \N 53 102 5397 188 189 -120 0 354 5397 \N 53 102 5397 189 190 -120 0 360 5397 \N 53 102 5397 190 191 -120 0 361 5421 \N 53 102 5421 191 192 -120 0 366 5421 \N 53 102 5421 192 193 -120 0 372 5421 \N 53 102 5421 193 194 -120 0 373 5421 \N 53 102 5421 194 195 -120 0 380 5446 \N 53 102 5446 195 196 -120 0 384 5446 \N 53 102 5446 196 197 -120 0 386 5446 \N 53 102 5446 197 198 -120 0 392 5446 \N 53 102 5446 198 199 -120 0 395 5471 \N 53 102 5471 199 200 -120 0 397 5471 \N 53 102 5471 200 201 -120 0 402 5471 \N 53 102 5471 201 202 -120 0 408 5471 \N 53 102 5471 202 203 -120 0 412 5493 \N 53 102 5493 203 204 -120 0 415 5493 \N 53 102 5493 204 205 -120 0 419 5493 \N 53 102 5493 205 206 -120 0 421 5493 \N 53 102 5493 206 207 -120 0 427 5515 \N 53 102 5515 207 208 -120 0 429 5515 \N 53 102 5515 208 209 -120 0 434 5515 \N 53 102 5515 209 210 -120 0 438 5515 \N 53 102 5515 210 211 -120 0 442 5539 \N 53 102 5539 211 212 -120 0 447 5539 \N 53 102 5539 212 213 -120 0 450 5539 \N 53 102 5539 213 214 -120 0 456 5539 \N 53 102 5539 214 215 -120 0 460 5561 \N 53 102 5561 215 216 -120 0 462 5561 \N 53 102 5561 216 217 -120 0 465 5561 \N 53 102 5561 217 218 -120 0 472 5561 \N 53 102 5561 218 219 -120 0 473 5583 \N 53 102 5583 219 220 -120 0 480 5583 \N 53 102 5583 220 221 -120 0 481 5583 \N 53 102 5583 221 222 -120 0 486 5583 \N 53 102 5583 222 223 -120 0 492 5605 \N 53 102 5605 223 224 -120 0 496 5605 \N 53 102 5605 224 225 -120 0 500 5605 \N 53 102 5605 225 226 -120 0 502 5605 \N 53 102 5605 226 227 -120 0 506 5628 \N 53 102 5628 227 228 -120 0 510 5628 \N 53 102 5628 228 229 -120 0 515 5628 \N 53 102 5628 229 230 -120 0 520 5628 \N 53 102 5628 230 231 -120 0 524 5651 \N 53 102 5651 231 232 -120 0 525 5651 \N 53 102 5651 232 233 -120 0 531 5651 \N 53 102 5651 233 234 -120 0 534 5651 \N 53 102 5651 234 235 -120 0 539 5676 \N 53 102 5676 235 236 -120 0 543 5676 \N 53 102 5676 236 237 -120 0 548 5676 \N 53 102 5676 237 238 -120 0 552 5676 \N 53 102 5676 238 239 -120 0 553 5701 \N 53 102 5701 239 240 -120 0 557 5701 \N 53 102 5701 240 241 -120 0 563 5701 \N 53 102 5701 241 242 -120 0 567 5701 \N 53 102 5701 242 243 -120 0 570 5723 \N 53 102 5723 243 244 -120 0 573 5723 \N 53 102 5723 244 245 -120 0 579 5723 \N 53 102 5723 245 246 -120 0 581 5723 \N 53 102 5723 246 247 -120 0 587 5748 \N 53 102 5748 247 248 -120 0 590 5748 \N 53 102 5748 248 249 -120 0 593 5748 \N 53 102 5748 249 250 -120 0 597 5748 \N 53 102 5748 250 251 -120 0 601 5770 \N 53 102 5770 251 252 -120 0 608 5770 \N 53 102 5770 252 253 -120 0 610 5770 \N 53 102 5770 253 254 -120 0 613 5770 \N 53 102 5770 254 255 -120 0 618 5792 \N 53 102 5792 255 256 -120 0 623 5792 \N 53 102 5792 256 257 -120 0 628 5792 \N 53 102 5792 257 258 -120 0 629 5792 \N 53 102 5792 258 259 -120 0 635 5814 \N 53 102 5814 259 260 -120 0 638 5814 \N 53 102 5814 260 261 -120 0 644 5814 \N 53 102 5814 261 262 -120 0 645 5814 \N 53 102 5814 262 263 -120 0 649 5837 \N 53 102 5837 263 264 -120 0 655 5837 \N 53 102 5837 264 265 -120 0 658 5837 \N 53 102 5837 265 266 -120 0 663 5837 \N 53 102 5837 266 267 -120 0 665 5864 \N 53 102 5864 267 268 -120 0 670 5864 \N 53 102 5864 268 269 -120 0 676 5864 \N 53 102 5864 269 270 -120 0 678 5864 \N 53 102 5864 270 \. -- -- Data for Name: lightpathexcitationfilterlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lightpathexcitationfilterlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent, parent_index) FROM stdin; \. -- -- Data for Name: lightsettings; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lightsettings (id, attenuation, permissions, version, wavelength, creation_id, external_id, group_id, owner_id, update_id, lightsource, microbeammanipulation) FROM stdin; 114 0.66001343727111816 -40 \N \N 1614 \N 3 2 1614 363 \N 115 0.90001833438873291 -40 \N \N 1614 \N 3 2 1614 365 \N 116 0.66001343727111816 -40 \N \N 1614 \N 3 2 1614 369 \N 117 0.90001833438873291 -40 \N \N 1614 \N 3 2 1614 371 \N 118 0.66001343727111816 -40 \N \N 1614 \N 3 2 1614 374 \N 119 0.90001833438873291 -40 \N \N 1614 \N 3 2 1614 376 \N 120 0.66001343727111816 -40 \N \N 1614 \N 3 2 1614 380 \N 121 0.90001833438873291 -40 \N \N 1614 \N 3 2 1614 381 \N 70 0.7499847412109375 -40 \N \N 1055 \N 3 2 1055 228 \N 71 0.87999755144119263 -40 \N \N 1055 \N 3 2 1055 226 \N 72 0.67002379894256592 -40 \N \N 1055 \N 3 2 1055 230 \N 73 0.87999755144119263 -40 \N \N 1055 \N 3 2 1055 230 \N 74 0.7499847412109375 -40 \N \N 1055 \N 3 2 1055 239 \N 75 0.87999755144119263 -40 \N \N 1055 \N 3 2 1055 236 \N 76 0.67002379894256592 -40 \N \N 1055 \N 3 2 1055 245 \N 77 0.87999755144119263 -40 \N \N 1055 \N 3 2 1055 245 \N 78 0.7499847412109375 -40 \N \N 1055 \N 3 2 1055 250 \N 79 0.85002744197845459 -40 \N \N 1055 \N 3 2 1055 248 \N 80 0.67002379894256592 -40 \N \N 1055 \N 3 2 1055 254 \N 81 0.85002744197845459 -40 \N \N 1055 \N 3 2 1055 254 \N 82 0.7499847412109375 -40 \N \N 1118 \N 3 2 1118 263 \N 83 0.90001833438873291 -40 \N \N 1118 \N 3 2 1118 264 \N 84 0.67002379894256592 -40 \N \N 1118 \N 3 2 1118 270 \N 85 0.90001833438873291 -40 \N \N 1118 \N 3 2 1118 270 \N 86 0.7499847412109375 -40 \N \N 1118 \N 3 2 1118 275 \N 87 0.90001833438873291 -40 \N \N 1118 \N 3 2 1118 274 \N 88 0.67002379894256592 -40 \N \N 1118 \N 3 2 1118 279 \N 89 0.90001833438873291 -40 \N \N 1118 \N 3 2 1118 279 \N 90 0.7499847412109375 -40 \N \N 1118 \N 3 2 1118 283 \N 91 0.85002744197845459 -40 \N \N 1118 \N 3 2 1118 285 \N 92 0.67002379894256592 -40 \N \N 1118 \N 3 2 1118 294 \N 93 0.85002744197845459 -40 \N \N 1118 \N 3 2 1118 294 \N 94 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 300 \N 95 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 306 \N 96 0.83000671863555908 -40 \N \N 1143 \N 3 2 1143 301 \N 97 0.89000791311264038 -40 \N \N 1143 \N 3 2 1143 303 \N 98 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 312 \N 99 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 314 \N 100 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 322 \N 101 0.85997682809829712 -40 \N \N 1143 \N 3 2 1143 323 \N 102 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 325 \N 103 0.85997682809829712 -40 \N \N 1143 \N 3 2 1143 327 \N 104 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 334 \N 105 0.85997682809829712 -40 \N \N 1143 \N 3 2 1143 336 \N 106 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 342 \N 107 0.85997682809829712 -40 \N \N 1143 \N 3 2 1143 341 \N 108 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 348 \N 109 0.85997682809829712 -40 \N \N 1143 \N 3 2 1143 345 \N 110 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 352 \N 111 0.85997682809829712 -40 \N \N 1143 \N 3 2 1143 353 \N 112 0.7499847412109375 -40 \N \N 1143 \N 3 2 1143 356 \N 113 0.85002744197845459 -40 \N \N 1143 \N 3 2 1143 360 \N 151 0 -120 \N \N 5151 \N 53 102 5151 401 \N 152 0 -120 \N \N 5151 \N 53 102 5151 407 \N 153 0 -120 \N \N 5151 \N 53 102 5151 418 \N 154 0 -120 \N \N 5151 \N 53 102 5151 423 \N 155 0 -120 \N \N 5173 \N 53 102 5173 430 \N 156 0 -120 \N \N 5173 \N 53 102 5173 435 \N 157 0 -120 \N \N 5173 \N 53 102 5173 441 \N 158 0 -120 \N \N 5173 \N 53 102 5173 443 \N 159 0 -120 \N \N 5195 \N 53 102 5195 451 \N 160 0 -120 \N \N 5195 \N 53 102 5195 456 \N 161 0 -120 \N \N 5195 \N 53 102 5195 465 \N 162 0 -120 \N \N 5195 \N 53 102 5195 469 \N 163 0 -120 \N \N 5218 \N 53 102 5218 478 \N 164 0 -120 \N \N 5218 \N 53 102 5218 484 \N 165 0 -120 \N \N 5218 \N 53 102 5218 488 \N 166 0 -120 \N \N 5218 \N 53 102 5218 491 \N 167 0 -120 \N \N 5241 \N 53 102 5241 501 \N 168 0 -120 \N \N 5241 \N 53 102 5241 504 \N 169 0 -120 \N \N 5241 \N 53 102 5241 509 \N 170 0 -120 \N \N 5241 \N 53 102 5241 520 \N 171 0 -120 \N \N 5263 \N 53 102 5263 526 \N 172 0 -120 \N \N 5263 \N 53 102 5263 530 \N 173 0 -120 \N \N 5263 \N 53 102 5263 534 \N 174 0 -120 \N \N 5263 \N 53 102 5263 541 \N 175 0 -120 \N \N 5285 \N 53 102 5285 548 \N 176 0 -120 \N \N 5285 \N 53 102 5285 555 \N 177 0 -120 \N \N 5285 \N 53 102 5285 561 \N 178 0 -120 \N \N 5285 \N 53 102 5285 566 \N 179 0 -120 \N \N 5307 \N 53 102 5307 572 \N 180 0 -120 \N \N 5307 \N 53 102 5307 577 \N 181 0 -120 \N \N 5307 \N 53 102 5307 586 \N 182 0 -120 \N \N 5307 \N 53 102 5307 589 \N 183 0 -120 \N \N 5329 \N 53 102 5329 596 \N 184 0 -120 \N \N 5329 \N 53 102 5329 601 \N 185 0 -120 \N \N 5329 \N 53 102 5329 605 \N 186 0 -120 \N \N 5329 \N 53 102 5329 614 \N 187 0 -120 \N \N 5397 \N 53 102 5397 618 \N 188 0 -120 \N \N 5397 \N 53 102 5397 628 \N 189 0 -120 \N \N 5397 \N 53 102 5397 629 \N 190 0 -120 \N \N 5397 \N 53 102 5397 637 \N 191 0 -120 \N \N 5421 \N 53 102 5421 642 \N 192 0 -120 \N \N 5421 \N 53 102 5421 652 \N 193 0 -120 \N \N 5421 \N 53 102 5421 657 \N 194 0 -120 \N \N 5421 \N 53 102 5421 664 \N 195 0 -120 \N \N 5446 \N 53 102 5446 668 \N 196 0 -120 \N \N 5446 \N 53 102 5446 675 \N 197 0 -120 \N \N 5446 \N 53 102 5446 677 \N 198 0 -120 \N \N 5446 \N 53 102 5446 683 \N 199 0 -120 \N \N 5471 \N 53 102 5471 689 \N 200 0 -120 \N \N 5471 \N 53 102 5471 696 \N 201 0 -120 \N \N 5471 \N 53 102 5471 701 \N 202 0 -120 \N \N 5471 \N 53 102 5471 707 \N 203 0 -120 \N \N 5493 \N 53 102 5493 716 \N 204 0 -120 \N \N 5493 \N 53 102 5493 719 \N 205 0 -120 \N \N 5493 \N 53 102 5493 726 \N 206 0 -120 \N \N 5493 \N 53 102 5493 733 \N 207 0 -120 \N \N 5515 \N 53 102 5515 742 \N 208 0 -120 \N \N 5515 \N 53 102 5515 743 \N 209 0 -120 \N \N 5515 \N 53 102 5515 751 \N 210 0 -120 \N \N 5515 \N 53 102 5515 757 \N 211 0 -120 \N \N 5539 \N 53 102 5539 764 \N 212 0 -120 \N \N 5539 \N 53 102 5539 771 \N 213 0 -120 \N \N 5539 \N 53 102 5539 777 \N 214 0 -120 \N \N 5539 \N 53 102 5539 782 \N 215 0 -120 \N \N 5561 \N 53 102 5561 789 \N 216 0 -120 \N \N 5561 \N 53 102 5561 794 \N 217 0 -120 \N \N 5561 \N 53 102 5561 800 \N 218 0 -120 \N \N 5561 \N 53 102 5561 806 \N 219 0 -120 \N \N 5583 \N 53 102 5583 810 \N 220 0 -120 \N \N 5583 \N 53 102 5583 816 \N 221 0 -120 \N \N 5583 \N 53 102 5583 826 \N 222 0 -120 \N \N 5583 \N 53 102 5583 829 \N 223 0 -120 \N \N 5605 \N 53 102 5605 833 \N 224 0 -120 \N \N 5605 \N 53 102 5605 842 \N 225 0 -120 \N \N 5605 \N 53 102 5605 846 \N 226 0 -120 \N \N 5605 \N 53 102 5605 853 \N 227 0 -120 \N \N 5628 \N 53 102 5628 862 \N 228 0 -120 \N \N 5628 \N 53 102 5628 865 \N 229 0 -120 \N \N 5628 \N 53 102 5628 873 \N 230 0 -120 \N \N 5628 \N 53 102 5628 875 \N 231 0 -120 \N \N 5651 \N 53 102 5651 885 \N 232 0 -120 \N \N 5651 \N 53 102 5651 891 \N 233 0 -120 \N \N 5651 \N 53 102 5651 898 \N 234 0 -120 \N \N 5651 \N 53 102 5651 903 \N 235 0 -120 \N \N 5676 \N 53 102 5676 910 \N 236 0 -120 \N \N 5676 \N 53 102 5676 915 \N 237 0 -120 \N \N 5676 \N 53 102 5676 922 \N 238 0 -120 \N \N 5676 \N 53 102 5676 924 \N 239 0 -120 \N \N 5701 \N 53 102 5701 934 \N 240 0 -120 \N \N 5701 \N 53 102 5701 937 \N 241 0 -120 \N \N 5701 \N 53 102 5701 942 \N 242 0 -120 \N \N 5701 \N 53 102 5701 952 \N 243 0 -120 \N \N 5723 \N 53 102 5723 957 \N 244 0 -120 \N \N 5723 \N 53 102 5723 959 \N 245 0 -120 \N \N 5723 \N 53 102 5723 970 \N 246 0 -120 \N \N 5723 \N 53 102 5723 972 \N 247 0 -120 \N \N 5748 \N 53 102 5748 981 \N 248 0 -120 \N \N 5748 \N 53 102 5748 984 \N 249 0 -120 \N \N 5748 \N 53 102 5748 991 \N 250 0 -120 \N \N 5748 \N 53 102 5748 998 \N 251 0 -120 \N \N 5770 \N 53 102 5770 1005 \N 252 0 -120 \N \N 5770 \N 53 102 5770 1007 \N 253 0 -120 \N \N 5770 \N 53 102 5770 1016 \N 254 0 -120 \N \N 5770 \N 53 102 5770 1024 \N 255 0 -120 \N \N 5792 \N 53 102 5792 1030 \N 256 0 -120 \N \N 5792 \N 53 102 5792 1036 \N 257 0 -120 \N \N 5792 \N 53 102 5792 1037 \N 258 0 -120 \N \N 5792 \N 53 102 5792 1046 \N 259 0 -120 \N \N 5814 \N 53 102 5814 1050 \N 260 0 -120 \N \N 5814 \N 53 102 5814 1059 \N 261 0 -120 \N \N 5814 \N 53 102 5814 1062 \N 262 0 -120 \N \N 5814 \N 53 102 5814 1069 \N 263 0 -120 \N \N 5837 \N 53 102 5837 1073 \N 264 0 -120 \N \N 5837 \N 53 102 5837 1081 \N 265 0 -120 \N \N 5837 \N 53 102 5837 1086 \N 266 0 -120 \N \N 5837 \N 53 102 5837 1091 \N 267 0 -120 \N \N 5864 \N 53 102 5864 1101 \N 268 0 -120 \N \N 5864 \N 53 102 5864 1107 \N 269 0 -120 \N \N 5864 \N 53 102 5864 1109 \N 270 0 -120 \N \N 5864 \N 53 102 5864 1120 \N \. -- -- Data for Name: lightsource; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY lightsource (id, permissions, lotnumber, manufacturer, model, power, serialnumber, version, creation_id, external_id, group_id, owner_id, update_id, instrument) FROM stdin; 223 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 38 224 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 38 225 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 38 226 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 38 227 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 38 228 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 38 229 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 39 230 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 39 231 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 39 232 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 39 233 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 39 234 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 39 235 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 40 236 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 40 237 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 40 238 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 40 239 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 40 240 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 40 241 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 41 242 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 41 243 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 41 244 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 41 245 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 41 246 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 41 247 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 42 248 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 42 249 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 42 250 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 42 251 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 42 252 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 42 253 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 43 254 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 43 255 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 43 256 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 43 257 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 43 258 -40 \N \N \N \N \N \N 1055 \N 3 2 1055 43 259 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 44 260 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 44 261 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 44 262 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 44 263 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 44 264 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 44 265 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 45 266 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 45 267 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 45 268 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 45 269 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 45 270 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 45 271 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 46 272 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 46 273 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 46 274 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 46 275 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 46 276 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 46 277 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 47 278 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 47 279 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 47 280 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 47 281 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 47 282 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 47 283 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 48 284 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 48 285 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 48 286 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 48 287 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 48 288 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 48 289 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 49 290 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 49 291 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 49 292 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 49 293 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 49 294 -40 \N \N \N \N \N \N 1118 \N 3 2 1118 49 295 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 50 296 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 50 297 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 50 298 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 50 299 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 50 300 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 50 301 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 51 302 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 51 303 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 51 304 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 51 305 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 51 306 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 51 307 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 52 308 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 52 309 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 52 310 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 52 311 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 52 312 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 52 313 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 53 314 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 53 315 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 53 316 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 53 317 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 53 318 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 53 319 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 54 320 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 54 321 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 54 322 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 54 323 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 54 324 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 54 325 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 55 326 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 55 327 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 55 328 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 55 329 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 55 330 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 55 331 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 56 332 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 56 333 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 56 334 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 56 335 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 56 336 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 56 337 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 57 338 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 57 339 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 57 340 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 57 341 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 57 342 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 57 343 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 58 344 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 58 345 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 58 346 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 58 347 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 58 348 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 58 349 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 59 350 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 59 351 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 59 352 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 59 353 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 59 354 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 59 355 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 60 356 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 60 357 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 60 358 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 60 359 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 60 360 -40 \N \N \N \N \N \N 1143 \N 3 2 1143 60 361 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 61 362 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 61 363 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 61 364 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 61 365 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 61 366 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 61 367 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 62 368 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 62 369 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 62 370 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 62 371 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 62 372 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 62 373 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 63 374 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 63 375 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 63 376 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 63 377 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 63 378 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 63 379 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 64 380 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 64 381 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 64 382 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 64 383 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 64 384 -40 \N \N \N \N \N \N 1614 \N 3 2 1614 64 401 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 402 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 403 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 404 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 405 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 406 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 151 407 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 408 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 409 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 410 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 411 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 412 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 152 413 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 414 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 415 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 416 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 417 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 418 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 153 419 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 420 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 421 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 422 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 423 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 424 -120 \N \N \N \N \N \N 5151 \N 53 102 5151 154 425 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 426 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 427 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 428 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 429 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 430 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 155 431 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 432 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 433 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 434 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 435 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 436 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 156 437 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 438 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 439 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 440 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 441 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 442 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 157 443 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 444 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 445 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 446 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 447 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 448 -120 \N \N \N \N \N \N 5173 \N 53 102 5173 158 449 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 450 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 451 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 452 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 453 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 454 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 159 455 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 456 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 457 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 458 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 459 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 460 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 160 461 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 462 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 463 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 464 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 465 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 466 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 161 467 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 468 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 469 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 470 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 471 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 472 -120 \N \N \N \N \N \N 5195 \N 53 102 5195 162 473 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 474 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 475 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 476 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 477 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 478 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 163 479 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 480 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 481 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 482 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 483 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 484 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 164 485 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 486 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 487 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 488 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 489 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 490 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 165 491 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 492 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 493 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 494 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 495 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 496 -120 \N \N \N \N \N \N 5218 \N 53 102 5218 166 497 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 498 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 499 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 500 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 501 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 502 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 167 503 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 504 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 505 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 506 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 507 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 508 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 168 509 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 510 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 511 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 512 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 513 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 514 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 169 515 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 516 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 517 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 518 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 519 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 520 -120 \N \N \N \N \N \N 5241 \N 53 102 5241 170 521 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 522 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 523 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 524 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 525 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 526 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 171 527 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 528 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 529 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 530 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 531 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 532 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 172 533 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 534 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 535 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 536 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 537 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 538 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 173 539 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 540 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 541 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 542 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 543 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 544 -120 \N \N \N \N \N \N 5263 \N 53 102 5263 174 545 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 546 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 547 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 548 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 549 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 550 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 175 551 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 552 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 553 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 554 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 555 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 556 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 176 557 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 558 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 559 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 560 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 561 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 562 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 177 563 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 564 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 565 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 566 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 567 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 568 -120 \N \N \N \N \N \N 5285 \N 53 102 5285 178 569 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 570 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 571 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 572 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 573 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 574 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 179 575 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 576 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 577 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 578 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 579 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 580 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 180 581 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 582 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 583 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 584 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 585 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 586 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 181 587 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 588 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 589 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 590 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 591 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 592 -120 \N \N \N \N \N \N 5307 \N 53 102 5307 182 593 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 594 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 595 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 596 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 597 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 598 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 183 599 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 600 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 601 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 602 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 603 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 604 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 184 605 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 606 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 607 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 608 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 609 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 610 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 185 611 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 612 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 613 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 614 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 615 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 616 -120 \N \N \N \N \N \N 5329 \N 53 102 5329 186 617 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 618 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 619 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 620 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 621 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 622 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 187 623 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 624 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 625 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 626 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 627 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 628 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 188 629 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 630 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 631 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 632 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 633 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 634 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 189 635 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 636 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 637 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 638 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 639 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 640 -120 \N \N \N \N \N \N 5397 \N 53 102 5397 190 641 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 642 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 643 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 644 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 645 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 646 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 191 647 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 648 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 649 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 650 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 651 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 652 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 192 653 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 654 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 655 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 656 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 657 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 658 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 193 659 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 660 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 661 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 662 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 663 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 664 -120 \N \N \N \N \N \N 5421 \N 53 102 5421 194 665 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 666 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 667 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 668 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 669 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 670 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 195 671 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 672 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 673 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 674 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 675 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 676 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 196 677 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 678 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 679 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 680 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 681 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 682 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 197 683 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 684 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 685 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 686 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 687 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 688 -120 \N \N \N \N \N \N 5446 \N 53 102 5446 198 689 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 690 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 691 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 692 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 693 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 694 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 199 695 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 696 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 697 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 698 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 699 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 700 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 200 701 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 702 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 703 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 704 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 705 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 706 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 201 707 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 708 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 709 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 710 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 711 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 712 -120 \N \N \N \N \N \N 5471 \N 53 102 5471 202 713 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 714 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 715 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 716 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 717 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 718 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 203 719 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 720 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 721 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 722 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 723 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 724 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 204 725 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 726 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 727 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 728 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 729 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 730 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 205 731 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 732 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 733 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 734 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 735 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 736 -120 \N \N \N \N \N \N 5493 \N 53 102 5493 206 737 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 738 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 739 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 740 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 741 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 742 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 207 743 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 744 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 745 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 746 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 747 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 748 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 208 749 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 750 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 751 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 752 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 753 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 754 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 209 755 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 756 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 757 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 758 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 759 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 760 -120 \N \N \N \N \N \N 5515 \N 53 102 5515 210 761 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 762 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 763 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 764 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 765 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 766 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 211 767 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 768 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 769 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 770 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 771 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 772 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 212 773 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 774 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 775 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 776 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 777 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 778 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 213 779 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 780 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 781 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 782 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 783 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 784 -120 \N \N \N \N \N \N 5539 \N 53 102 5539 214 785 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 786 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 787 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 788 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 789 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 790 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 215 791 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 792 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 793 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 794 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 795 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 796 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 216 797 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 798 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 799 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 800 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 801 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 802 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 217 803 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 804 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 805 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 806 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 807 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 808 -120 \N \N \N \N \N \N 5561 \N 53 102 5561 218 809 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 810 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 811 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 812 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 813 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 814 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 219 815 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 816 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 817 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 818 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 819 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 820 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 220 821 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 822 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 823 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 824 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 825 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 826 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 221 827 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 828 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 829 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 830 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 831 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 832 -120 \N \N \N \N \N \N 5583 \N 53 102 5583 222 833 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 834 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 835 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 836 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 837 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 838 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 223 839 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 840 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 841 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 842 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 843 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 844 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 224 845 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 846 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 847 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 848 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 849 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 850 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 225 851 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 852 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 853 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 854 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 855 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 856 -120 \N \N \N \N \N \N 5605 \N 53 102 5605 226 857 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 858 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 859 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 860 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 861 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 862 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 227 863 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 864 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 865 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 866 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 867 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 868 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 228 869 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 870 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 871 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 872 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 873 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 874 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 229 875 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 876 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 877 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 878 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 879 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 880 -120 \N \N \N \N \N \N 5628 \N 53 102 5628 230 881 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 882 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 883 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 884 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 885 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 886 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 231 887 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 888 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 889 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 890 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 891 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 892 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 232 893 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 894 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 895 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 896 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 897 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 898 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 233 899 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 900 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 901 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 902 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 903 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 904 -120 \N \N \N \N \N \N 5651 \N 53 102 5651 234 905 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 906 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 907 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 908 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 909 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 910 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 235 911 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 912 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 913 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 914 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 915 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 916 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 236 917 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 918 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 919 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 920 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 921 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 922 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 237 923 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 924 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 925 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 926 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 927 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 928 -120 \N \N \N \N \N \N 5676 \N 53 102 5676 238 929 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 930 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 931 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 932 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 933 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 934 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 239 935 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 936 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 937 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 938 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 939 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 940 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 240 941 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 942 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 943 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 944 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 945 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 946 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 241 947 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 948 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 949 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 950 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 951 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 952 -120 \N \N \N \N \N \N 5701 \N 53 102 5701 242 953 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 954 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 955 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 956 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 957 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 958 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 243 959 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 960 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 961 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 962 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 963 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 964 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 244 965 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 966 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 967 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 968 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 969 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 970 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 245 971 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 972 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 973 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 974 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 975 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 976 -120 \N \N \N \N \N \N 5723 \N 53 102 5723 246 977 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 978 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 979 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 980 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 981 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 982 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 247 983 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 984 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 985 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 986 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 987 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 988 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 248 989 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 990 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 991 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 992 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 993 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 994 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 249 995 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 996 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 997 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 998 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 999 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 1000 -120 \N \N \N \N \N \N 5748 \N 53 102 5748 250 1001 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 1002 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 1003 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 1004 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 1005 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 1006 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 251 1007 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 1008 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 1009 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 1010 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 1011 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 1012 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 252 1013 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 1014 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 1015 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 1016 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 1017 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 1018 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 253 1019 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 1020 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 1021 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 1022 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 1023 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 1024 -120 \N \N \N \N \N \N 5770 \N 53 102 5770 254 1025 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 1026 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 1027 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 1028 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 1029 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 1030 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 255 1031 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 1032 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 1033 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 1034 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 1035 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 1036 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 256 1037 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 1038 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 1039 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 1040 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 1041 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 1042 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 257 1043 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 1044 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 1045 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 1046 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 1047 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 1048 -120 \N \N \N \N \N \N 5792 \N 53 102 5792 258 1049 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 1050 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 1051 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 1052 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 1053 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 1054 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 259 1055 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 1056 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 1057 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 1058 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 1059 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 1060 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 260 1061 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 1062 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 1063 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 1064 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 1065 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 1066 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 261 1067 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 1068 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 1069 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 1070 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 1071 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 1072 -120 \N \N \N \N \N \N 5814 \N 53 102 5814 262 1073 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 1074 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 1075 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 1076 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 1077 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 1078 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 263 1079 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 1080 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 1081 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 1082 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 1083 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 1084 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 264 1085 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 1086 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 1087 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 1088 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 1089 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 1090 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 265 1091 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 1092 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 1093 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 1094 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 1095 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 1096 -120 \N \N \N \N \N \N 5837 \N 53 102 5837 266 1097 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 1098 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 1099 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 1100 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 1101 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 1102 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 267 1103 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 1104 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 1105 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 1106 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 1107 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 1108 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 268 1109 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 1110 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 1111 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 1112 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 1113 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 1114 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 269 1115 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 1116 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 1117 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 1118 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 1119 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 1120 -120 \N \N \N \N \N \N 5864 \N 53 102 5864 270 \. -- -- Data for Name: link; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY link (id, permissions, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; \. -- -- Data for Name: logicalchannel; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY logicalchannel (id, permissions, emissionwave, excitationwave, fluor, name, ndfilter, pinholesize, pockelcellsetting, samplesperpixel, version, contrastmethod, creation_id, external_id, group_id, owner_id, update_id, detectorsettings, filterset, illumination, lightpath, lightsourcesettings, mode, otf, photometricinterpretation) FROM stdin; 92 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 92 \N \N 75 70 \N \N 5 93 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 93 \N \N 76 71 \N \N 5 94 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 94 \N \N 77 72 \N \N 5 95 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 95 \N \N 78 73 \N \N 5 96 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 96 \N \N 79 74 \N \N 5 97 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 97 \N \N 80 75 \N \N 5 98 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 98 \N \N 81 76 \N \N 5 99 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 99 \N \N 82 77 \N \N 5 100 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 100 \N \N 83 78 \N \N 5 101 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 101 \N \N 84 79 \N \N 5 102 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 102 \N \N 85 80 \N \N 5 103 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1055 \N 3 2 1055 103 \N \N 86 81 \N \N 5 104 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 104 \N \N 87 82 \N \N 5 105 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 105 \N \N 88 83 \N \N 5 106 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 106 \N \N 89 84 \N \N 5 107 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 107 \N \N 90 85 \N \N 5 108 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 108 \N \N 91 86 \N \N 5 109 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 109 \N \N 92 87 \N \N 5 110 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 110 \N \N 93 88 \N \N 5 111 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 111 \N \N 94 89 \N \N 5 112 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 112 \N \N 95 90 \N \N 5 113 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 113 \N \N 96 91 \N \N 5 114 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 114 \N \N 97 92 \N \N 5 115 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1118 \N 3 2 1118 115 \N \N 98 93 \N \N 5 116 -40 \N 488 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 116 \N \N 99 94 \N \N 5 117 -40 \N \N \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 117 \N \N 100 \N \N \N 5 118 -40 \N \N \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 118 \N \N \N \N \N \N 5 119 -40 \N 488 \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 119 \N \N 101 95 \N \N 5 120 -40 \N 476 \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 120 \N \N 102 96 \N \N 5 121 -40 \N 633 \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 121 \N \N \N 97 \N \N 5 122 -40 \N 488 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 122 \N \N 103 98 \N \N 5 123 -40 \N \N \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 123 \N \N 104 \N \N \N 5 124 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 124 \N \N 105 99 \N \N 5 125 -40 \N \N \N \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 125 \N \N 106 \N \N \N 5 126 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 126 \N \N 107 100 \N \N 5 127 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 127 \N \N 108 101 \N \N 5 128 -40 \N 488 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 128 \N \N 109 102 \N \N 5 129 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 129 \N \N 110 103 \N \N 5 130 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 130 \N \N 111 104 \N \N 5 131 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 131 \N \N 112 105 \N \N 5 132 -40 \N 488 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 132 \N \N 113 106 \N \N 5 133 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 133 \N \N 114 107 \N \N 5 134 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 134 \N \N 115 108 \N \N 5 135 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 135 \N \N 116 109 \N \N 5 136 -40 \N 488 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 136 \N \N 117 110 \N \N 5 137 -40 \N 633 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 137 \N \N 118 111 \N \N 5 138 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 138 \N \N 119 112 \N \N 5 139 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1143 \N 3 2 1143 139 \N \N 120 113 \N \N 5 140 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 140 \N \N 121 114 \N \N 5 141 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 141 \N \N 122 115 \N \N 5 142 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 142 \N \N 123 116 \N \N 5 143 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 143 \N \N 124 117 \N \N 5 144 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 144 \N \N 125 118 \N \N 5 145 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 145 \N \N 126 119 \N \N 5 146 -40 \N 488 \N Leica/EGFP \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 146 \N \N 127 120 \N \N 5 258 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 158 \N \N \N \N \N \N 5 147 -40 \N 633 \N Leica/Cy5 \N 149.98596598084802 \N 1 \N \N 1614 \N 3 2 1614 147 \N \N 128 121 \N \N 5 156 -40 \N \N \N \N \N \N \N 1 \N \N 2061 \N 3 2 2061 \N \N \N \N \N \N \N 5 157 -40 \N \N \N \N \N \N \N 1 \N \N 2061 \N 3 2 2061 \N \N \N \N \N \N \N 5 158 -40 \N \N \N \N \N \N \N 1 \N \N 2079 \N 3 2 2079 \N \N \N \N \N \N \N 5 159 -40 \N \N \N \N \N \N \N 1 \N \N 2079 \N 3 2 2079 \N \N \N \N \N \N \N 5 160 -40 \N \N \N \N \N \N \N 1 \N \N 2097 \N 3 2 2097 \N \N \N \N \N \N \N 5 161 -40 \N \N \N \N \N \N \N 1 \N \N 2097 \N 3 2 2097 \N \N \N \N \N \N \N 5 162 -40 \N \N \N \N \N \N \N 1 \N \N 2249 \N 3 2 2249 \N \N \N \N \N \N \N 5 163 -40 \N \N \N \N \N \N \N 1 \N \N 2249 \N 3 2 2249 \N \N \N \N \N \N \N 5 201 -40 520 488 \N 520 \N 500 \N 1 \N \N 2837 \N 3 2 2837 \N \N \N \N \N 2 \N 5 202 -40 659 633 \N 659 \N 500 \N 1 \N \N 2837 \N 3 2 2837 \N \N \N \N \N 2 \N 5 203 -40 520 488 \N 520 \N 500 \N 1 \N \N 2853 \N 3 2 2853 \N \N \N \N \N 2 \N 5 204 -40 659 633 \N 659 \N 500 \N 1 \N \N 2853 \N 3 2 2853 \N \N \N \N \N 2 \N 5 205 -40 520 488 \N 520 \N 500 \N 1 \N \N 2869 \N 3 2 2869 \N \N \N \N \N 2 \N 5 206 -40 659 633 \N 659 \N 500 \N 1 \N \N 2869 \N 3 2 2869 \N \N \N \N \N 2 \N 5 207 -40 520 488 \N 520 \N 500 \N 1 \N \N 2885 \N 3 2 2885 \N \N \N \N \N 2 \N 5 208 -40 659 633 \N 659 \N 500 \N 1 \N \N 2885 \N 3 2 2885 \N \N \N \N \N 2 \N 5 209 -40 520 488 \N 520 \N 500 \N 1 \N \N 2901 \N 3 2 2901 \N \N \N \N \N 2 \N 5 210 -40 659 633 \N 659 \N 500 \N 1 \N \N 2901 \N 3 2 2901 \N \N \N \N \N 2 \N 5 211 -40 520 488 \N 520 \N 500 \N 1 \N \N 2917 \N 3 2 2917 \N \N \N \N \N 2 \N 5 212 -40 659 633 \N 659 \N 500 \N 1 \N \N 2917 \N 3 2 2917 \N \N \N \N \N 2 \N 5 213 -40 520 488 \N 520 \N 500 \N 1 \N \N 3284 \N 3 2 3284 \N \N \N \N \N 2 \N 5 214 -40 659 633 \N 659 \N 500 \N 1 \N \N 3284 \N 3 2 3284 \N \N \N \N \N 2 \N 5 215 -40 520 488 \N 520 \N 500 \N 1 \N \N 3303 \N 3 2 3303 \N \N \N \N \N 2 \N 5 216 -40 659 633 \N 659 \N 500 \N 1 \N \N 3303 \N 3 2 3303 \N \N \N \N \N 2 \N 5 217 -40 520 488 \N 520 \N 500 \N 1 \N \N 3327 \N 3 2 3327 \N \N \N \N \N 2 \N 5 218 -40 659 633 \N 659 \N 500 \N 1 \N \N 3327 \N 3 2 3327 \N \N \N \N \N 2 \N 5 219 -40 520 488 \N 520 \N 500 \N 1 \N \N 3347 \N 3 2 3347 \N \N \N \N \N 2 \N 5 220 -40 659 633 \N 659 \N 500 \N 1 \N \N 3347 \N 3 2 3347 \N \N \N \N \N 2 \N 5 223 -40 520 488 \N 520 \N 500 \N 1 \N \N 3461 \N 3 2 3461 \N \N \N \N \N 2 \N 5 224 -40 659 633 \N 659 \N 500 \N 1 \N \N 3461 \N 3 2 3461 \N \N \N \N \N 2 \N 5 225 -40 520 488 \N 520 \N 500 \N 1 \N \N 3488 \N 3 2 3488 \N \N \N \N \N 2 \N 5 226 -40 659 633 \N 659 \N 500 \N 1 \N \N 3488 \N 3 2 3488 \N \N \N \N \N 2 \N 5 227 -40 520 488 \N 520 \N 500 \N 1 \N \N 3670 \N 3 2 3670 \N \N \N \N \N 2 \N 5 228 -40 659 633 \N 659 \N 500 \N 1 \N \N 3670 \N 3 2 3670 \N \N \N \N \N 2 \N 5 229 -40 520 488 \N 520 \N 500 \N 1 \N \N 3686 \N 3 2 3686 \N \N \N \N \N 2 \N 5 230 -40 659 633 \N 659 \N 500 \N 1 \N \N 3686 \N 3 2 3686 \N \N \N \N \N 2 \N 5 231 -40 520 488 \N 520 \N 500 \N 1 \N \N 3702 \N 3 2 3702 \N \N \N \N \N 2 \N 5 232 -40 659 633 \N 659 \N 500 \N 1 \N \N 3702 \N 3 2 3702 \N \N \N \N \N 2 \N 5 233 -40 520 488 \N 520 \N 500 \N 1 \N \N 3718 \N 3 2 3718 \N \N \N \N \N 2 \N 5 234 -40 659 633 \N 659 \N 500 \N 1 \N \N 3718 \N 3 2 3718 \N \N \N \N \N 2 \N 5 235 -40 520 488 \N 520 \N 500 \N 1 \N \N 3734 \N 3 2 3734 \N \N \N \N \N 2 \N 5 236 -40 659 633 \N 659 \N 500 \N 1 \N \N 3734 \N 3 2 3734 \N \N \N \N \N 2 \N 5 237 -40 520 488 \N 520 \N 500 \N 1 \N \N 3750 \N 3 2 3750 \N \N \N \N \N 2 \N 5 238 -40 659 633 \N 659 \N 500 \N 1 \N \N 3750 \N 3 2 3750 \N \N \N \N \N 2 \N 5 239 -40 520 488 \N 520 \N 500 \N 1 \N \N 3766 \N 3 2 3766 \N \N \N \N \N 2 \N 5 240 -40 659 633 \N 659 \N 500 \N 1 \N \N 3766 \N 3 2 3766 \N \N \N \N \N 2 \N 5 241 -40 520 488 \N 520 \N 500 \N 1 \N \N 3782 \N 3 2 3782 \N \N \N \N \N 2 \N 5 242 -40 659 633 \N 659 \N 500 \N 1 \N \N 3782 \N 3 2 3782 \N \N \N \N \N 2 \N 5 243 -40 520 488 \N 520 \N 500 \N 1 \N \N 3798 \N 3 2 3798 \N \N \N \N \N 2 \N 5 244 -40 659 633 \N 659 \N 500 \N 1 \N \N 3798 \N 3 2 3798 \N \N \N \N \N 2 \N 5 245 -40 520 488 \N 520 \N 500 \N 1 \N \N 4112 \N 3 2 4112 \N \N \N \N \N 2 \N 5 246 -40 659 633 \N 659 \N 500 \N 1 \N \N 4112 \N 3 2 4112 \N \N \N \N \N 2 \N 5 247 -40 520 488 \N 520 \N 500 \N 1 \N \N 4128 \N 3 2 4128 \N \N \N \N \N 2 \N 5 248 -40 659 633 \N 659 \N 500 \N 1 \N \N 4128 \N 3 2 4128 \N \N \N \N \N 2 \N 5 251 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 151 \N \N 151 151 \N \N 5 252 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 152 \N \N \N \N \N \N 5 253 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 153 \N \N 152 152 \N \N 5 254 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 154 \N \N \N \N \N \N 5 255 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 155 \N \N 153 153 \N \N 5 256 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 156 \N \N \N \N \N \N 5 257 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5151 \N 53 102 5151 157 \N \N 154 154 \N \N 5 259 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5173 \N 53 102 5173 159 \N \N 155 155 \N \N 5 260 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5173 \N 53 102 5173 160 \N \N 156 156 \N \N 5 261 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5173 \N 53 102 5173 161 \N \N 157 157 \N \N 5 262 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5173 \N 53 102 5173 162 \N \N 158 158 \N \N 5 263 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5195 \N 53 102 5195 163 \N \N 159 159 \N \N 5 264 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5195 \N 53 102 5195 164 \N \N 160 160 \N \N 5 265 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5195 \N 53 102 5195 165 \N \N 161 161 \N \N 5 266 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5195 \N 53 102 5195 166 \N \N 162 162 \N \N 5 267 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5218 \N 53 102 5218 167 \N \N 163 163 \N \N 5 268 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5218 \N 53 102 5218 168 \N \N 164 164 \N \N 5 269 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5218 \N 53 102 5218 169 \N \N 165 165 \N \N 5 270 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5218 \N 53 102 5218 170 \N \N 166 166 \N \N 5 271 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5241 \N 53 102 5241 171 \N \N 167 167 \N \N 5 272 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5241 \N 53 102 5241 172 \N \N 168 168 \N \N 5 273 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5241 \N 53 102 5241 173 \N \N 169 169 \N \N 5 274 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5241 \N 53 102 5241 174 \N \N 170 170 \N \N 5 275 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5263 \N 53 102 5263 175 \N \N 171 171 \N \N 5 276 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5263 \N 53 102 5263 176 \N \N 172 172 \N \N 5 277 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5263 \N 53 102 5263 177 \N \N 173 173 \N \N 5 278 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5263 \N 53 102 5263 178 \N \N 174 174 \N \N 5 279 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5285 \N 53 102 5285 179 \N \N 175 175 \N \N 5 280 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5285 \N 53 102 5285 180 \N \N 176 176 \N \N 5 281 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5285 \N 53 102 5285 181 \N \N 177 177 \N \N 5 282 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5285 \N 53 102 5285 182 \N \N 178 178 \N \N 5 283 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 183 \N \N 179 179 \N \N 5 284 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 184 \N \N \N \N \N \N 5 285 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 185 \N \N 180 180 \N \N 5 286 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 186 \N \N \N \N \N \N 5 287 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 187 \N \N 181 181 \N \N 5 288 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 188 \N \N \N \N \N \N 5 289 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 189 \N \N 182 182 \N \N 5 290 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5307 \N 53 102 5307 190 \N \N \N \N \N \N 5 291 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 191 \N \N 183 183 \N \N 5 292 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 192 \N \N \N \N \N \N 5 293 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 193 \N \N 184 184 \N \N 5 294 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 194 \N \N \N \N \N \N 5 295 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 195 \N \N 185 185 \N \N 5 296 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 196 \N \N \N \N \N \N 5 297 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 197 \N \N 186 186 \N \N 5 298 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5329 \N 53 102 5329 198 \N \N \N \N \N \N 5 299 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 199 \N \N 187 187 \N \N 5 300 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 200 \N \N \N \N \N \N 5 301 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 201 \N \N 188 188 \N \N 5 302 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 202 \N \N \N \N \N \N 5 303 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 203 \N \N 189 189 \N \N 5 304 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 204 \N \N \N \N \N \N 5 305 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 205 \N \N 190 190 \N \N 5 306 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5397 \N 53 102 5397 206 \N \N \N \N \N \N 5 307 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 207 \N \N 191 191 \N \N 5 308 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 208 \N \N \N \N \N \N 5 309 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 209 \N \N 192 192 \N \N 5 310 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 210 \N \N \N \N \N \N 5 311 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 211 \N \N 193 193 \N \N 5 312 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 212 \N \N \N \N \N \N 5 313 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 213 \N \N 194 194 \N \N 5 314 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5421 \N 53 102 5421 214 \N \N \N \N \N \N 5 315 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 215 \N \N 195 195 \N \N 5 316 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 216 \N \N \N \N \N \N 5 317 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 217 \N \N 196 196 \N \N 5 318 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 218 \N \N \N \N \N \N 5 319 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 219 \N \N 197 197 \N \N 5 320 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 220 \N \N \N \N \N \N 5 321 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 221 \N \N 198 198 \N \N 5 322 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5446 \N 53 102 5446 222 \N \N \N \N \N \N 5 323 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 223 \N \N 199 199 \N \N 5 324 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 224 \N \N \N \N \N \N 5 325 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 225 \N \N 200 200 \N \N 5 326 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 226 \N \N \N \N \N \N 5 327 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 227 \N \N 201 201 \N \N 5 328 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 228 \N \N \N \N \N \N 5 329 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 229 \N \N 202 202 \N \N 5 330 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5471 \N 53 102 5471 230 \N \N \N \N \N \N 5 331 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 231 \N \N 203 203 \N \N 5 332 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 232 \N \N \N \N \N \N 5 333 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 233 \N \N 204 204 \N \N 5 334 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 234 \N \N \N \N \N \N 5 335 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 235 \N \N 205 205 \N \N 5 336 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 236 \N \N \N \N \N \N 5 337 -120 \N 543 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 237 \N \N 206 206 \N \N 5 338 -120 \N \N \N \N 557.24818360876202 \N 1 \N \N 5493 \N 53 102 5493 238 \N \N \N \N \N \N 5 339 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5515 \N 53 102 5515 239 \N \N 207 207 \N \N 5 340 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5515 \N 53 102 5515 240 \N \N 208 208 \N \N 5 341 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5515 \N 53 102 5515 241 \N \N 209 209 \N \N 5 342 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5515 \N 53 102 5515 242 \N \N 210 210 \N \N 5 343 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5539 \N 53 102 5539 243 \N \N 211 211 \N \N 5 344 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5539 \N 53 102 5539 244 \N \N 212 212 \N \N 5 345 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5539 \N 53 102 5539 245 \N \N 213 213 \N \N 5 346 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5539 \N 53 102 5539 246 \N \N 214 214 \N \N 5 347 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5561 \N 53 102 5561 247 \N \N 215 215 \N \N 5 348 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5561 \N 53 102 5561 248 \N \N 216 216 \N \N 5 349 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5561 \N 53 102 5561 249 \N \N 217 217 \N \N 5 350 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5561 \N 53 102 5561 250 \N \N 218 218 \N \N 5 351 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5583 \N 53 102 5583 251 \N \N 219 219 \N \N 5 352 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5583 \N 53 102 5583 252 \N \N 220 220 \N \N 5 353 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5583 \N 53 102 5583 253 \N \N 221 221 \N \N 5 354 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5583 \N 53 102 5583 254 \N \N 222 222 \N \N 5 355 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5605 \N 53 102 5605 255 \N \N 223 223 \N \N 5 356 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5605 \N 53 102 5605 256 \N \N 224 224 \N \N 5 357 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5605 \N 53 102 5605 257 \N \N 225 225 \N \N 5 358 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5605 \N 53 102 5605 258 \N \N 226 226 \N \N 5 359 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5628 \N 53 102 5628 259 \N \N 227 227 \N \N 5 360 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5628 \N 53 102 5628 260 \N \N 228 228 \N \N 5 361 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5628 \N 53 102 5628 261 \N \N 229 229 \N \N 5 362 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5628 \N 53 102 5628 262 \N \N 230 230 \N \N 5 363 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5651 \N 53 102 5651 263 \N \N 231 231 \N \N 5 364 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5651 \N 53 102 5651 264 \N \N 232 232 \N \N 5 365 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5651 \N 53 102 5651 265 \N \N 233 233 \N \N 5 366 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5651 \N 53 102 5651 266 \N \N 234 234 \N \N 5 367 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5676 \N 53 102 5676 267 \N \N 235 235 \N \N 5 368 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5676 \N 53 102 5676 268 \N \N 236 236 \N \N 5 369 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5676 \N 53 102 5676 269 \N \N 237 237 \N \N 5 370 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5676 \N 53 102 5676 270 \N \N 238 238 \N \N 5 371 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5701 \N 53 102 5701 271 \N \N 239 239 \N \N 5 372 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5701 \N 53 102 5701 272 \N \N 240 240 \N \N 5 373 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5701 \N 53 102 5701 273 \N \N 241 241 \N \N 5 374 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5701 \N 53 102 5701 274 \N \N 242 242 \N \N 5 375 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5723 \N 53 102 5723 275 \N \N 243 243 \N \N 5 376 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5723 \N 53 102 5723 276 \N \N 244 244 \N \N 5 377 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5723 \N 53 102 5723 277 \N \N 245 245 \N \N 5 378 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5723 \N 53 102 5723 278 \N \N 246 246 \N \N 5 379 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5748 \N 53 102 5748 279 \N \N 247 247 \N \N 5 380 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5748 \N 53 102 5748 280 \N \N 248 248 \N \N 5 381 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5748 \N 53 102 5748 281 \N \N 249 249 \N \N 5 382 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5748 \N 53 102 5748 282 \N \N 250 250 \N \N 5 383 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5770 \N 53 102 5770 283 \N \N 251 251 \N \N 5 384 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5770 \N 53 102 5770 284 \N \N 252 252 \N \N 5 385 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5770 \N 53 102 5770 285 \N \N 253 253 \N \N 5 386 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5770 \N 53 102 5770 286 \N \N 254 254 \N \N 5 387 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5792 \N 53 102 5792 287 \N \N 255 255 \N \N 5 388 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5792 \N 53 102 5792 288 \N \N 256 256 \N \N 5 389 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5792 \N 53 102 5792 289 \N \N 257 257 \N \N 5 390 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5792 \N 53 102 5792 290 \N \N 258 258 \N \N 5 391 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5814 \N 53 102 5814 291 \N \N 259 259 \N \N 5 392 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5814 \N 53 102 5814 292 \N \N 260 260 \N \N 5 393 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5814 \N 53 102 5814 293 \N \N 261 261 \N \N 5 394 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5814 \N 53 102 5814 294 \N \N 262 262 \N \N 5 395 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5837 \N 53 102 5837 295 \N \N 263 263 \N \N 5 396 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5837 \N 53 102 5837 296 \N \N 264 264 \N \N 5 397 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5837 \N 53 102 5837 297 \N \N 265 265 \N \N 5 398 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5837 \N 53 102 5837 298 \N \N 266 266 \N \N 5 399 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5864 \N 53 102 5864 299 \N \N 267 267 \N \N 5 400 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5864 \N 53 102 5864 300 \N \N 268 268 \N \N 5 401 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5864 \N 53 102 5864 301 \N \N 269 269 \N \N 5 402 -120 \N 633 \N Leica/EGFP \N 557.24818360876202 \N 1 \N \N 5864 \N 53 102 5864 302 \N \N 270 270 \N \N 5 \. -- -- Data for Name: medium; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY medium (id, permissions, value, external_id) FROM stdin; 1 -52 Air \N 2 -52 Oil \N 3 -52 Water \N 4 -52 Glycerol \N 5 -52 Other \N 6 -52 Unknown \N \. -- -- Data for Name: microbeammanipulation; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY microbeammanipulation (id, description, permissions, version, creation_id, external_id, group_id, owner_id, update_id, experiment, type) FROM stdin; \. -- -- Data for Name: microbeammanipulationtype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY microbeammanipulationtype (id, permissions, value, external_id) FROM stdin; 1 -52 FRAP \N 2 -52 Photoablation \N 3 -52 Photoactivation \N 4 -52 Uncaging \N 5 -52 OpticalTrapping \N 6 -52 FLIP \N 7 -52 InverseFRAP \N 8 -52 Other \N 9 -52 Unknown \N \. -- -- Data for Name: microscope; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY microscope (id, permissions, lotnumber, manufacturer, model, serialnumber, version, creation_id, external_id, group_id, owner_id, update_id, type) FROM stdin; 38 -40 \N \N TCS SP5 \N \N 1055 \N 3 2 1055 5 39 -40 \N \N TCS SP5 \N \N 1055 \N 3 2 1055 5 40 -40 \N \N TCS SP5 \N \N 1055 \N 3 2 1055 5 41 -40 \N \N TCS SP5 \N \N 1055 \N 3 2 1055 5 42 -40 \N \N TCS SP5 \N \N 1055 \N 3 2 1055 5 43 -40 \N \N TCS SP5 \N \N 1055 \N 3 2 1055 5 44 -40 \N \N TCS SP5 \N \N 1118 \N 3 2 1118 5 45 -40 \N \N TCS SP5 \N \N 1118 \N 3 2 1118 5 46 -40 \N \N TCS SP5 \N \N 1118 \N 3 2 1118 5 47 -40 \N \N TCS SP5 \N \N 1118 \N 3 2 1118 5 48 -40 \N \N TCS SP5 \N \N 1118 \N 3 2 1118 5 49 -40 \N \N TCS SP5 \N \N 1118 \N 3 2 1118 5 50 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 51 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 52 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 53 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 54 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 55 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 56 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 57 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 58 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 59 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 60 -40 \N \N TCS SP5 \N \N 1143 \N 3 2 1143 5 61 -40 \N \N TCS SP5 \N \N 1614 \N 3 2 1614 5 62 -40 \N \N TCS SP5 \N \N 1614 \N 3 2 1614 5 63 -40 \N \N TCS SP5 \N \N 1614 \N 3 2 1614 5 64 -40 \N \N TCS SP5 \N \N 1614 \N 3 2 1614 5 101 -120 \N \N TCS SP5 \N \N 5151 \N 53 102 5151 5 102 -120 \N \N TCS SP5 \N \N 5151 \N 53 102 5151 5 103 -120 \N \N TCS SP5 \N \N 5151 \N 53 102 5151 5 104 -120 \N \N TCS SP5 \N \N 5151 \N 53 102 5151 5 105 -120 \N \N TCS SP5 \N \N 5173 \N 53 102 5173 5 106 -120 \N \N TCS SP5 \N \N 5173 \N 53 102 5173 5 107 -120 \N \N TCS SP5 \N \N 5173 \N 53 102 5173 5 108 -120 \N \N TCS SP5 \N \N 5173 \N 53 102 5173 5 109 -120 \N \N TCS SP5 \N \N 5195 \N 53 102 5195 5 110 -120 \N \N TCS SP5 \N \N 5195 \N 53 102 5195 5 111 -120 \N \N TCS SP5 \N \N 5195 \N 53 102 5195 5 112 -120 \N \N TCS SP5 \N \N 5195 \N 53 102 5195 5 113 -120 \N \N TCS SP5 \N \N 5218 \N 53 102 5218 5 114 -120 \N \N TCS SP5 \N \N 5218 \N 53 102 5218 5 115 -120 \N \N TCS SP5 \N \N 5218 \N 53 102 5218 5 116 -120 \N \N TCS SP5 \N \N 5218 \N 53 102 5218 5 117 -120 \N \N TCS SP5 \N \N 5241 \N 53 102 5241 5 118 -120 \N \N TCS SP5 \N \N 5241 \N 53 102 5241 5 119 -120 \N \N TCS SP5 \N \N 5241 \N 53 102 5241 5 120 -120 \N \N TCS SP5 \N \N 5241 \N 53 102 5241 5 121 -120 \N \N TCS SP5 \N \N 5263 \N 53 102 5263 5 122 -120 \N \N TCS SP5 \N \N 5263 \N 53 102 5263 5 123 -120 \N \N TCS SP5 \N \N 5263 \N 53 102 5263 5 124 -120 \N \N TCS SP5 \N \N 5263 \N 53 102 5263 5 125 -120 \N \N TCS SP5 \N \N 5285 \N 53 102 5285 5 126 -120 \N \N TCS SP5 \N \N 5285 \N 53 102 5285 5 127 -120 \N \N TCS SP5 \N \N 5285 \N 53 102 5285 5 128 -120 \N \N TCS SP5 \N \N 5285 \N 53 102 5285 5 129 -120 \N \N TCS SP5 \N \N 5307 \N 53 102 5307 5 130 -120 \N \N TCS SP5 \N \N 5307 \N 53 102 5307 5 131 -120 \N \N TCS SP5 \N \N 5307 \N 53 102 5307 5 132 -120 \N \N TCS SP5 \N \N 5307 \N 53 102 5307 5 133 -120 \N \N TCS SP5 \N \N 5329 \N 53 102 5329 5 134 -120 \N \N TCS SP5 \N \N 5329 \N 53 102 5329 5 135 -120 \N \N TCS SP5 \N \N 5329 \N 53 102 5329 5 136 -120 \N \N TCS SP5 \N \N 5329 \N 53 102 5329 5 137 -120 \N \N TCS SP5 \N \N 5397 \N 53 102 5397 5 138 -120 \N \N TCS SP5 \N \N 5397 \N 53 102 5397 5 139 -120 \N \N TCS SP5 \N \N 5397 \N 53 102 5397 5 140 -120 \N \N TCS SP5 \N \N 5397 \N 53 102 5397 5 141 -120 \N \N TCS SP5 \N \N 5421 \N 53 102 5421 5 142 -120 \N \N TCS SP5 \N \N 5421 \N 53 102 5421 5 143 -120 \N \N TCS SP5 \N \N 5421 \N 53 102 5421 5 144 -120 \N \N TCS SP5 \N \N 5421 \N 53 102 5421 5 145 -120 \N \N TCS SP5 \N \N 5446 \N 53 102 5446 5 146 -120 \N \N TCS SP5 \N \N 5446 \N 53 102 5446 5 147 -120 \N \N TCS SP5 \N \N 5446 \N 53 102 5446 5 148 -120 \N \N TCS SP5 \N \N 5446 \N 53 102 5446 5 149 -120 \N \N TCS SP5 \N \N 5471 \N 53 102 5471 5 150 -120 \N \N TCS SP5 \N \N 5471 \N 53 102 5471 5 151 -120 \N \N TCS SP5 \N \N 5471 \N 53 102 5471 5 152 -120 \N \N TCS SP5 \N \N 5471 \N 53 102 5471 5 153 -120 \N \N TCS SP5 \N \N 5493 \N 53 102 5493 5 154 -120 \N \N TCS SP5 \N \N 5493 \N 53 102 5493 5 155 -120 \N \N TCS SP5 \N \N 5493 \N 53 102 5493 5 156 -120 \N \N TCS SP5 \N \N 5493 \N 53 102 5493 5 157 -120 \N \N TCS SP5 \N \N 5515 \N 53 102 5515 5 158 -120 \N \N TCS SP5 \N \N 5515 \N 53 102 5515 5 159 -120 \N \N TCS SP5 \N \N 5515 \N 53 102 5515 5 160 -120 \N \N TCS SP5 \N \N 5515 \N 53 102 5515 5 161 -120 \N \N TCS SP5 \N \N 5539 \N 53 102 5539 5 162 -120 \N \N TCS SP5 \N \N 5539 \N 53 102 5539 5 163 -120 \N \N TCS SP5 \N \N 5539 \N 53 102 5539 5 164 -120 \N \N TCS SP5 \N \N 5539 \N 53 102 5539 5 165 -120 \N \N TCS SP5 \N \N 5561 \N 53 102 5561 5 166 -120 \N \N TCS SP5 \N \N 5561 \N 53 102 5561 5 167 -120 \N \N TCS SP5 \N \N 5561 \N 53 102 5561 5 168 -120 \N \N TCS SP5 \N \N 5561 \N 53 102 5561 5 169 -120 \N \N TCS SP5 \N \N 5583 \N 53 102 5583 5 170 -120 \N \N TCS SP5 \N \N 5583 \N 53 102 5583 5 171 -120 \N \N TCS SP5 \N \N 5583 \N 53 102 5583 5 172 -120 \N \N TCS SP5 \N \N 5583 \N 53 102 5583 5 173 -120 \N \N TCS SP5 \N \N 5605 \N 53 102 5605 5 174 -120 \N \N TCS SP5 \N \N 5605 \N 53 102 5605 5 175 -120 \N \N TCS SP5 \N \N 5605 \N 53 102 5605 5 176 -120 \N \N TCS SP5 \N \N 5605 \N 53 102 5605 5 177 -120 \N \N TCS SP5 \N \N 5628 \N 53 102 5628 5 178 -120 \N \N TCS SP5 \N \N 5628 \N 53 102 5628 5 179 -120 \N \N TCS SP5 \N \N 5628 \N 53 102 5628 5 180 -120 \N \N TCS SP5 \N \N 5628 \N 53 102 5628 5 181 -120 \N \N TCS SP5 \N \N 5651 \N 53 102 5651 5 182 -120 \N \N TCS SP5 \N \N 5651 \N 53 102 5651 5 183 -120 \N \N TCS SP5 \N \N 5651 \N 53 102 5651 5 184 -120 \N \N TCS SP5 \N \N 5651 \N 53 102 5651 5 185 -120 \N \N TCS SP5 \N \N 5676 \N 53 102 5676 5 186 -120 \N \N TCS SP5 \N \N 5676 \N 53 102 5676 5 187 -120 \N \N TCS SP5 \N \N 5676 \N 53 102 5676 5 188 -120 \N \N TCS SP5 \N \N 5676 \N 53 102 5676 5 189 -120 \N \N TCS SP5 \N \N 5701 \N 53 102 5701 5 190 -120 \N \N TCS SP5 \N \N 5701 \N 53 102 5701 5 191 -120 \N \N TCS SP5 \N \N 5701 \N 53 102 5701 5 192 -120 \N \N TCS SP5 \N \N 5701 \N 53 102 5701 5 193 -120 \N \N TCS SP5 \N \N 5723 \N 53 102 5723 5 194 -120 \N \N TCS SP5 \N \N 5723 \N 53 102 5723 5 195 -120 \N \N TCS SP5 \N \N 5723 \N 53 102 5723 5 196 -120 \N \N TCS SP5 \N \N 5723 \N 53 102 5723 5 197 -120 \N \N TCS SP5 \N \N 5748 \N 53 102 5748 5 198 -120 \N \N TCS SP5 \N \N 5748 \N 53 102 5748 5 199 -120 \N \N TCS SP5 \N \N 5748 \N 53 102 5748 5 200 -120 \N \N TCS SP5 \N \N 5748 \N 53 102 5748 5 201 -120 \N \N TCS SP5 \N \N 5770 \N 53 102 5770 5 202 -120 \N \N TCS SP5 \N \N 5770 \N 53 102 5770 5 203 -120 \N \N TCS SP5 \N \N 5770 \N 53 102 5770 5 204 -120 \N \N TCS SP5 \N \N 5770 \N 53 102 5770 5 205 -120 \N \N TCS SP5 \N \N 5792 \N 53 102 5792 5 206 -120 \N \N TCS SP5 \N \N 5792 \N 53 102 5792 5 207 -120 \N \N TCS SP5 \N \N 5792 \N 53 102 5792 5 208 -120 \N \N TCS SP5 \N \N 5792 \N 53 102 5792 5 209 -120 \N \N TCS SP5 \N \N 5814 \N 53 102 5814 5 210 -120 \N \N TCS SP5 \N \N 5814 \N 53 102 5814 5 211 -120 \N \N TCS SP5 \N \N 5814 \N 53 102 5814 5 212 -120 \N \N TCS SP5 \N \N 5814 \N 53 102 5814 5 213 -120 \N \N TCS SP5 \N \N 5837 \N 53 102 5837 5 214 -120 \N \N TCS SP5 \N \N 5837 \N 53 102 5837 5 215 -120 \N \N TCS SP5 \N \N 5837 \N 53 102 5837 5 216 -120 \N \N TCS SP5 \N \N 5837 \N 53 102 5837 5 217 -120 \N \N TCS SP5 \N \N 5864 \N 53 102 5864 5 218 -120 \N \N TCS SP5 \N \N 5864 \N 53 102 5864 5 219 -120 \N \N TCS SP5 \N \N 5864 \N 53 102 5864 5 220 -120 \N \N TCS SP5 \N \N 5864 \N 53 102 5864 5 \. -- -- Data for Name: microscopetype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY microscopetype (id, permissions, value, external_id) FROM stdin; 1 -52 Upright \N 2 -52 Inverted \N 3 -52 Dissection \N 4 -52 Electrophysiology \N 5 -52 Other \N 6 -52 Unknown \N \. -- -- Data for Name: namespace; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY namespace (id, description, permissions, display, keywords, multivalued, name, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; 1 \N -120 \N {Cell,Background} f openmicroscopy.org/omero/analysis/flim 0 1 \N 1 0 1 \. -- -- Data for Name: namespaceannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY namespaceannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: node; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY node (id, conn, permissions, down, scale, up, uuid, version, external_id) FROM stdin; 0 unknown -52 2012-08-01 15:36:31.766131 \N 2012-08-01 15:36:31.766131 000000000000000000000000000000000000 \N \N 1 BlitzManager -t:tcp -h 192.168.138.45 -p 43119 -120 2012-09-04 10:14:01.435203 \N 2012-08-01 15:37:07.398 7842eb5e-6203-41e0-9a62-477d6a0d23b0 0 \N 51 BlitzManager -t:tcp -h 192.168.138.45 -p 54345 -120 2012-09-05 09:56:32.957045 \N 2012-09-04 10:14:01.458 8a58bcc1-74e2-42d9-96ed-3f1eef13f803 0 \N 101 BlitzManager -t:tcp -h 192.168.50.2 -p 58795 -120 2012-09-05 17:07:05.023626 \N 2012-09-05 09:56:32.973 3f2aec97-881e-4f5b-91aa-7b1c2d4156e2 0 \N 151 BlitzManager -t:tcp -h 192.168.50.2 -p 35581 -120 2012-09-07 10:58:26.301998 \N 2012-09-05 17:07:05.043 280a6914-c21f-43c2-b374-54f51b9274de 0 \N 201 BlitzManager -t:tcp -h 192.168.50.2 -p 48956 -120 \N \N 2012-09-07 10:58:26.318 f0a1cafc-dfe4-4e8e-9733-e57b8ea086fb 0 \N \. -- -- Data for Name: nodeannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY nodeannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: objective; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY objective (id, calibratedmagnification, permissions, iris, lensna, lotnumber, manufacturer, model, nominalmagnification, serialnumber, version, workingdistance, correction, creation_id, external_id, group_id, owner_id, update_id, immersion, instrument) FROM stdin; 38 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1055 \N 3 2 1055 1 38 39 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1055 \N 3 2 1055 1 39 40 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1055 \N 3 2 1055 1 40 41 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1055 \N 3 2 1055 1 41 42 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1055 \N 3 2 1055 1 42 43 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1055 \N 3 2 1055 1 43 44 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1118 \N 3 2 1118 1 44 45 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1118 \N 3 2 1118 1 45 46 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1118 \N 3 2 1118 1 46 47 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1118 \N 3 2 1118 1 47 48 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1118 \N 3 2 1118 1 48 49 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1118 \N 3 2 1118 1 49 50 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 50 51 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 51 52 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 52 53 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 53 54 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 54 55 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 55 56 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 56 57 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 57 58 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 58 59 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 59 60 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1143 \N 3 2 1143 1 60 61 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1614 \N 3 2 1614 1 61 62 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1614 \N 3 2 1614 1 62 63 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1614 \N 3 2 1614 1 63 64 \N -40 \N 1.3999999999999999 \N \N HCX PL APO CS 63 11506188 \N \N 1 1614 \N 3 2 1614 1 64 65 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 1909 \N 3 2 1909 1 65 66 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 1925 \N 3 2 1925 1 66 67 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 1941 \N 3 2 1941 1 67 68 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 1957 \N 3 2 1957 1 68 101 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 2837 \N 3 2 2837 1 101 102 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 2853 \N 3 2 2853 1 102 103 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 2869 \N 3 2 2869 1 103 104 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 2885 \N 3 2 2885 1 104 105 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 2901 \N 3 2 2901 1 105 106 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 2917 \N 3 2 2917 1 106 107 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3284 \N 3 2 3284 1 107 108 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3303 \N 3 2 3303 1 108 109 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3327 \N 3 2 3327 1 109 110 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3347 \N 3 2 3347 1 110 111 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3364 \N 3 2 3364 1 111 112 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3461 \N 3 2 3461 1 112 113 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3488 \N 3 2 3488 1 113 114 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3670 \N 3 2 3670 1 114 115 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3686 \N 3 2 3686 1 115 116 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3702 \N 3 2 3702 1 116 117 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3718 \N 3 2 3718 1 117 118 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3734 \N 3 2 3734 1 118 119 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3750 \N 3 2 3750 1 119 120 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3766 \N 3 2 3766 1 120 121 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3782 \N 3 2 3782 1 121 122 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 3798 \N 3 2 3798 1 122 123 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 4112 \N 3 2 4112 1 123 124 \N -40 \N 1.3999999999999999 \N \N \N \N \N \N \N 14 4128 \N 3 2 4128 1 124 151 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5151 \N 53 102 5151 2 151 152 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5151 \N 53 102 5151 2 152 153 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5151 \N 53 102 5151 2 153 154 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5151 \N 53 102 5151 2 154 155 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5173 \N 53 102 5173 2 155 156 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5173 \N 53 102 5173 2 156 157 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5173 \N 53 102 5173 2 157 158 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5173 \N 53 102 5173 2 158 159 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5195 \N 53 102 5195 2 159 160 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5195 \N 53 102 5195 2 160 161 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5195 \N 53 102 5195 2 161 162 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5195 \N 53 102 5195 2 162 163 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5218 \N 53 102 5218 2 163 164 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5218 \N 53 102 5218 2 164 165 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5218 \N 53 102 5218 2 165 166 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5218 \N 53 102 5218 2 166 167 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5241 \N 53 102 5241 2 167 168 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5241 \N 53 102 5241 2 168 169 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5241 \N 53 102 5241 2 169 170 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5241 \N 53 102 5241 2 170 171 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5263 \N 53 102 5263 2 171 172 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5263 \N 53 102 5263 2 172 173 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5263 \N 53 102 5263 2 173 174 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5263 \N 53 102 5263 2 174 175 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5285 \N 53 102 5285 2 175 176 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5285 \N 53 102 5285 2 176 177 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5285 \N 53 102 5285 2 177 178 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5285 \N 53 102 5285 2 178 179 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5307 \N 53 102 5307 2 179 180 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5307 \N 53 102 5307 2 180 181 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5307 \N 53 102 5307 2 181 182 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5307 \N 53 102 5307 2 182 183 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5329 \N 53 102 5329 2 183 184 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5329 \N 53 102 5329 2 184 185 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5329 \N 53 102 5329 2 185 186 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5329 \N 53 102 5329 2 186 187 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5397 \N 53 102 5397 2 187 188 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5397 \N 53 102 5397 2 188 189 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5397 \N 53 102 5397 2 189 190 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5397 \N 53 102 5397 2 190 191 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5421 \N 53 102 5421 2 191 192 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5421 \N 53 102 5421 2 192 193 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5421 \N 53 102 5421 2 193 194 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5421 \N 53 102 5421 2 194 195 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5446 \N 53 102 5446 2 195 196 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5446 \N 53 102 5446 2 196 197 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5446 \N 53 102 5446 2 197 198 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5446 \N 53 102 5446 2 198 199 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5471 \N 53 102 5471 2 199 200 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5471 \N 53 102 5471 2 200 201 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5471 \N 53 102 5471 2 201 202 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5471 \N 53 102 5471 2 202 203 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5493 \N 53 102 5493 2 203 204 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5493 \N 53 102 5493 2 204 205 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5493 \N 53 102 5493 2 205 206 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5493 \N 53 102 5493 2 206 207 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5515 \N 53 102 5515 2 207 208 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5515 \N 53 102 5515 2 208 209 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5515 \N 53 102 5515 2 209 210 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5515 \N 53 102 5515 2 210 211 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5539 \N 53 102 5539 2 211 212 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5539 \N 53 102 5539 2 212 213 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5539 \N 53 102 5539 2 213 214 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5539 \N 53 102 5539 2 214 215 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5561 \N 53 102 5561 2 215 216 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5561 \N 53 102 5561 2 216 217 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5561 \N 53 102 5561 2 217 218 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5561 \N 53 102 5561 2 218 219 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5583 \N 53 102 5583 2 219 220 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5583 \N 53 102 5583 2 220 221 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5583 \N 53 102 5583 2 221 222 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5583 \N 53 102 5583 2 222 223 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5605 \N 53 102 5605 2 223 224 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5605 \N 53 102 5605 2 224 225 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5605 \N 53 102 5605 2 225 226 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5605 \N 53 102 5605 2 226 227 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5628 \N 53 102 5628 2 227 228 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5628 \N 53 102 5628 2 228 229 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5628 \N 53 102 5628 2 229 230 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5628 \N 53 102 5628 2 230 231 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5651 \N 53 102 5651 2 231 232 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5651 \N 53 102 5651 2 232 233 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5651 \N 53 102 5651 2 233 234 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5651 \N 53 102 5651 2 234 235 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5676 \N 53 102 5676 2 235 236 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5676 \N 53 102 5676 2 236 237 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5676 \N 53 102 5676 2 237 238 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5676 \N 53 102 5676 2 238 239 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5701 \N 53 102 5701 2 239 240 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5701 \N 53 102 5701 2 240 241 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5701 \N 53 102 5701 2 241 242 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5701 \N 53 102 5701 2 242 243 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5723 \N 53 102 5723 2 243 244 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5723 \N 53 102 5723 2 244 245 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5723 \N 53 102 5723 2 245 246 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5723 \N 53 102 5723 2 246 247 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5748 \N 53 102 5748 2 247 248 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5748 \N 53 102 5748 2 248 249 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5748 \N 53 102 5748 2 249 250 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5748 \N 53 102 5748 2 250 251 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5770 \N 53 102 5770 2 251 252 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5770 \N 53 102 5770 2 252 253 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5770 \N 53 102 5770 2 253 254 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5770 \N 53 102 5770 2 254 255 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5792 \N 53 102 5792 2 255 256 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5792 \N 53 102 5792 2 256 257 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5792 \N 53 102 5792 2 257 258 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5792 \N 53 102 5792 2 258 259 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5814 \N 53 102 5814 2 259 260 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5814 \N 53 102 5814 2 260 261 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5814 \N 53 102 5814 2 261 262 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5814 \N 53 102 5814 2 262 263 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5837 \N 53 102 5837 2 263 264 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5837 \N 53 102 5837 2 264 265 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5837 \N 53 102 5837 2 265 266 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5837 \N 53 102 5837 2 266 267 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5864 \N 53 102 5864 2 267 268 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5864 \N 53 102 5864 2 268 269 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5864 \N 53 102 5864 2 269 270 \N -120 \N 1.2 \N \N HCX PL APO CS 63 11506281 \N \N 1 5864 \N 53 102 5864 2 270 \. -- -- Data for Name: objectivesettings; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY objectivesettings (id, correctioncollar, permissions, refractiveindex, version, creation_id, external_id, group_id, owner_id, update_id, medium, objective) FROM stdin; 38 \N -40 1.518 \N 1055 \N 3 2 1055 \N 38 39 \N -40 1.518 \N 1055 \N 3 2 1055 \N 39 40 \N -40 1.518 \N 1055 \N 3 2 1055 \N 40 41 \N -40 1.518 \N 1055 \N 3 2 1055 \N 41 42 \N -40 1.518 \N 1055 \N 3 2 1055 \N 42 43 \N -40 1.518 \N 1055 \N 3 2 1055 \N 43 44 \N -40 1.518 \N 1118 \N 3 2 1118 \N 44 45 \N -40 1.518 \N 1118 \N 3 2 1118 \N 45 46 \N -40 1.518 \N 1118 \N 3 2 1118 \N 46 47 \N -40 1.518 \N 1118 \N 3 2 1118 \N 47 48 \N -40 1.518 \N 1118 \N 3 2 1118 \N 48 49 \N -40 1.518 \N 1118 \N 3 2 1118 \N 49 50 \N -40 1.518 \N 1143 \N 3 2 1143 \N 50 51 \N -40 1.518 \N 1143 \N 3 2 1143 \N 51 52 \N -40 1.518 \N 1143 \N 3 2 1143 \N 52 53 \N -40 1.518 \N 1143 \N 3 2 1143 \N 53 54 \N -40 1.518 \N 1143 \N 3 2 1143 \N 54 55 \N -40 1.518 \N 1143 \N 3 2 1143 \N 55 56 \N -40 1.518 \N 1143 \N 3 2 1143 \N 56 57 \N -40 1.518 \N 1143 \N 3 2 1143 \N 57 58 \N -40 1.518 \N 1143 \N 3 2 1143 \N 58 59 \N -40 1.518 \N 1143 \N 3 2 1143 \N 59 60 \N -40 1.518 \N 1143 \N 3 2 1143 \N 60 61 \N -40 1.518 \N 1614 \N 3 2 1614 \N 61 62 \N -40 1.518 \N 1614 \N 3 2 1614 \N 62 63 \N -40 1.518 \N 1614 \N 3 2 1614 \N 63 64 \N -40 1.518 \N 1614 \N 3 2 1614 \N 64 101 \N -40 1.5149999999999999 \N 2837 \N 3 2 2837 \N 101 102 \N -40 1.5149999999999999 \N 2853 \N 3 2 2853 \N 102 103 \N -40 1.5149999999999999 \N 2869 \N 3 2 2869 \N 103 104 \N -40 1.5149999999999999 \N 2885 \N 3 2 2885 \N 104 105 \N -40 1.5149999999999999 \N 2901 \N 3 2 2901 \N 105 106 \N -40 1.5149999999999999 \N 2917 \N 3 2 2917 \N 106 107 \N -40 1.5149999999999999 \N 3284 \N 3 2 3284 \N 107 108 \N -40 1.5149999999999999 \N 3303 \N 3 2 3303 \N 108 109 \N -40 1.5149999999999999 \N 3327 \N 3 2 3327 \N 109 110 \N -40 1.5149999999999999 \N 3347 \N 3 2 3347 \N 110 112 \N -40 1.5149999999999999 \N 3461 \N 3 2 3461 \N 112 113 \N -40 1.5149999999999999 \N 3488 \N 3 2 3488 \N 113 114 \N -40 1.5149999999999999 \N 3670 \N 3 2 3670 \N 114 115 \N -40 1.5149999999999999 \N 3686 \N 3 2 3686 \N 115 116 \N -40 1.5149999999999999 \N 3702 \N 3 2 3702 \N 116 117 \N -40 1.5149999999999999 \N 3718 \N 3 2 3718 \N 117 118 \N -40 1.5149999999999999 \N 3734 \N 3 2 3734 \N 118 119 \N -40 1.5149999999999999 \N 3750 \N 3 2 3750 \N 119 120 \N -40 1.5149999999999999 \N 3766 \N 3 2 3766 \N 120 121 \N -40 1.5149999999999999 \N 3782 \N 3 2 3782 \N 121 122 \N -40 1.5149999999999999 \N 3798 \N 3 2 3798 \N 122 123 \N -40 1.5149999999999999 \N 4112 \N 3 2 4112 \N 123 124 \N -40 1.5149999999999999 \N 4128 \N 3 2 4128 \N 124 151 \N -120 1.3300000000000001 \N 5151 \N 53 102 5151 \N 151 152 \N -120 1.3300000000000001 \N 5151 \N 53 102 5151 \N 152 153 \N -120 1.3300000000000001 \N 5151 \N 53 102 5151 \N 153 154 \N -120 1.3300000000000001 \N 5151 \N 53 102 5151 \N 154 155 \N -120 1.3300000000000001 \N 5173 \N 53 102 5173 \N 155 156 \N -120 1.3300000000000001 \N 5173 \N 53 102 5173 \N 156 157 \N -120 1.3300000000000001 \N 5173 \N 53 102 5173 \N 157 158 \N -120 1.3300000000000001 \N 5173 \N 53 102 5173 \N 158 159 \N -120 1.3300000000000001 \N 5195 \N 53 102 5195 \N 159 160 \N -120 1.3300000000000001 \N 5195 \N 53 102 5195 \N 160 161 \N -120 1.3300000000000001 \N 5195 \N 53 102 5195 \N 161 162 \N -120 1.3300000000000001 \N 5195 \N 53 102 5195 \N 162 163 \N -120 1.3300000000000001 \N 5218 \N 53 102 5218 \N 163 164 \N -120 1.3300000000000001 \N 5218 \N 53 102 5218 \N 164 165 \N -120 1.3300000000000001 \N 5218 \N 53 102 5218 \N 165 166 \N -120 1.3300000000000001 \N 5218 \N 53 102 5218 \N 166 167 \N -120 1.3300000000000001 \N 5241 \N 53 102 5241 \N 167 168 \N -120 1.3300000000000001 \N 5241 \N 53 102 5241 \N 168 169 \N -120 1.3300000000000001 \N 5241 \N 53 102 5241 \N 169 170 \N -120 1.3300000000000001 \N 5241 \N 53 102 5241 \N 170 171 \N -120 1.3300000000000001 \N 5263 \N 53 102 5263 \N 171 172 \N -120 1.3300000000000001 \N 5263 \N 53 102 5263 \N 172 173 \N -120 1.3300000000000001 \N 5263 \N 53 102 5263 \N 173 174 \N -120 1.3300000000000001 \N 5263 \N 53 102 5263 \N 174 175 \N -120 1.3300000000000001 \N 5285 \N 53 102 5285 \N 175 176 \N -120 1.3300000000000001 \N 5285 \N 53 102 5285 \N 176 177 \N -120 1.3300000000000001 \N 5285 \N 53 102 5285 \N 177 178 \N -120 1.3300000000000001 \N 5285 \N 53 102 5285 \N 178 179 \N -120 1.3300000000000001 \N 5307 \N 53 102 5307 \N 179 180 \N -120 1.3300000000000001 \N 5307 \N 53 102 5307 \N 180 181 \N -120 1.3300000000000001 \N 5307 \N 53 102 5307 \N 181 182 \N -120 1.3300000000000001 \N 5307 \N 53 102 5307 \N 182 183 \N -120 1.3300000000000001 \N 5329 \N 53 102 5329 \N 183 184 \N -120 1.3300000000000001 \N 5329 \N 53 102 5329 \N 184 185 \N -120 1.3300000000000001 \N 5329 \N 53 102 5329 \N 185 186 \N -120 1.3300000000000001 \N 5329 \N 53 102 5329 \N 186 187 \N -120 1.3300000000000001 \N 5397 \N 53 102 5397 \N 187 188 \N -120 1.3300000000000001 \N 5397 \N 53 102 5397 \N 188 189 \N -120 1.3300000000000001 \N 5397 \N 53 102 5397 \N 189 190 \N -120 1.3300000000000001 \N 5397 \N 53 102 5397 \N 190 191 \N -120 1.3300000000000001 \N 5421 \N 53 102 5421 \N 191 192 \N -120 1.3300000000000001 \N 5421 \N 53 102 5421 \N 192 193 \N -120 1.3300000000000001 \N 5421 \N 53 102 5421 \N 193 194 \N -120 1.3300000000000001 \N 5421 \N 53 102 5421 \N 194 195 \N -120 1.3300000000000001 \N 5446 \N 53 102 5446 \N 195 196 \N -120 1.3300000000000001 \N 5446 \N 53 102 5446 \N 196 197 \N -120 1.3300000000000001 \N 5446 \N 53 102 5446 \N 197 198 \N -120 1.3300000000000001 \N 5446 \N 53 102 5446 \N 198 199 \N -120 1.3300000000000001 \N 5471 \N 53 102 5471 \N 199 200 \N -120 1.3300000000000001 \N 5471 \N 53 102 5471 \N 200 201 \N -120 1.3300000000000001 \N 5471 \N 53 102 5471 \N 201 202 \N -120 1.3300000000000001 \N 5471 \N 53 102 5471 \N 202 203 \N -120 1.3300000000000001 \N 5493 \N 53 102 5493 \N 203 204 \N -120 1.3300000000000001 \N 5493 \N 53 102 5493 \N 204 205 \N -120 1.3300000000000001 \N 5493 \N 53 102 5493 \N 205 206 \N -120 1.3300000000000001 \N 5493 \N 53 102 5493 \N 206 207 \N -120 1.3300000000000001 \N 5515 \N 53 102 5515 \N 207 208 \N -120 1.3300000000000001 \N 5515 \N 53 102 5515 \N 208 209 \N -120 1.3300000000000001 \N 5515 \N 53 102 5515 \N 209 210 \N -120 1.3300000000000001 \N 5515 \N 53 102 5515 \N 210 211 \N -120 1.3300000000000001 \N 5539 \N 53 102 5539 \N 211 212 \N -120 1.3300000000000001 \N 5539 \N 53 102 5539 \N 212 213 \N -120 1.3300000000000001 \N 5539 \N 53 102 5539 \N 213 214 \N -120 1.3300000000000001 \N 5539 \N 53 102 5539 \N 214 215 \N -120 1.3300000000000001 \N 5561 \N 53 102 5561 \N 215 216 \N -120 1.3300000000000001 \N 5561 \N 53 102 5561 \N 216 217 \N -120 1.3300000000000001 \N 5561 \N 53 102 5561 \N 217 218 \N -120 1.3300000000000001 \N 5561 \N 53 102 5561 \N 218 219 \N -120 1.3300000000000001 \N 5583 \N 53 102 5583 \N 219 220 \N -120 1.3300000000000001 \N 5583 \N 53 102 5583 \N 220 221 \N -120 1.3300000000000001 \N 5583 \N 53 102 5583 \N 221 222 \N -120 1.3300000000000001 \N 5583 \N 53 102 5583 \N 222 223 \N -120 1.3300000000000001 \N 5605 \N 53 102 5605 \N 223 224 \N -120 1.3300000000000001 \N 5605 \N 53 102 5605 \N 224 225 \N -120 1.3300000000000001 \N 5605 \N 53 102 5605 \N 225 226 \N -120 1.3300000000000001 \N 5605 \N 53 102 5605 \N 226 227 \N -120 1.3300000000000001 \N 5628 \N 53 102 5628 \N 227 228 \N -120 1.3300000000000001 \N 5628 \N 53 102 5628 \N 228 229 \N -120 1.3300000000000001 \N 5628 \N 53 102 5628 \N 229 230 \N -120 1.3300000000000001 \N 5628 \N 53 102 5628 \N 230 231 \N -120 1.3300000000000001 \N 5651 \N 53 102 5651 \N 231 232 \N -120 1.3300000000000001 \N 5651 \N 53 102 5651 \N 232 233 \N -120 1.3300000000000001 \N 5651 \N 53 102 5651 \N 233 234 \N -120 1.3300000000000001 \N 5651 \N 53 102 5651 \N 234 235 \N -120 1.3300000000000001 \N 5676 \N 53 102 5676 \N 235 236 \N -120 1.3300000000000001 \N 5676 \N 53 102 5676 \N 236 237 \N -120 1.3300000000000001 \N 5676 \N 53 102 5676 \N 237 238 \N -120 1.3300000000000001 \N 5676 \N 53 102 5676 \N 238 239 \N -120 1.3300000000000001 \N 5701 \N 53 102 5701 \N 239 240 \N -120 1.3300000000000001 \N 5701 \N 53 102 5701 \N 240 241 \N -120 1.3300000000000001 \N 5701 \N 53 102 5701 \N 241 242 \N -120 1.3300000000000001 \N 5701 \N 53 102 5701 \N 242 243 \N -120 1.3300000000000001 \N 5723 \N 53 102 5723 \N 243 244 \N -120 1.3300000000000001 \N 5723 \N 53 102 5723 \N 244 245 \N -120 1.3300000000000001 \N 5723 \N 53 102 5723 \N 245 246 \N -120 1.3300000000000001 \N 5723 \N 53 102 5723 \N 246 247 \N -120 1.3300000000000001 \N 5748 \N 53 102 5748 \N 247 248 \N -120 1.3300000000000001 \N 5748 \N 53 102 5748 \N 248 249 \N -120 1.3300000000000001 \N 5748 \N 53 102 5748 \N 249 250 \N -120 1.3300000000000001 \N 5748 \N 53 102 5748 \N 250 251 \N -120 1.3300000000000001 \N 5770 \N 53 102 5770 \N 251 252 \N -120 1.3300000000000001 \N 5770 \N 53 102 5770 \N 252 253 \N -120 1.3300000000000001 \N 5770 \N 53 102 5770 \N 253 254 \N -120 1.3300000000000001 \N 5770 \N 53 102 5770 \N 254 255 \N -120 1.3300000000000001 \N 5792 \N 53 102 5792 \N 255 256 \N -120 1.3300000000000001 \N 5792 \N 53 102 5792 \N 256 257 \N -120 1.3300000000000001 \N 5792 \N 53 102 5792 \N 257 258 \N -120 1.3300000000000001 \N 5792 \N 53 102 5792 \N 258 259 \N -120 1.3300000000000001 \N 5814 \N 53 102 5814 \N 259 260 \N -120 1.3300000000000001 \N 5814 \N 53 102 5814 \N 260 261 \N -120 1.3300000000000001 \N 5814 \N 53 102 5814 \N 261 262 \N -120 1.3300000000000001 \N 5814 \N 53 102 5814 \N 262 263 \N -120 1.3300000000000001 \N 5837 \N 53 102 5837 \N 263 264 \N -120 1.3300000000000001 \N 5837 \N 53 102 5837 \N 264 265 \N -120 1.3300000000000001 \N 5837 \N 53 102 5837 \N 265 266 \N -120 1.3300000000000001 \N 5837 \N 53 102 5837 \N 266 267 \N -120 1.3300000000000001 \N 5864 \N 53 102 5864 \N 267 268 \N -120 1.3300000000000001 \N 5864 \N 53 102 5864 \N 268 269 \N -120 1.3300000000000001 \N 5864 \N 53 102 5864 \N 269 270 \N -120 1.3300000000000001 \N 5864 \N 53 102 5864 \N 270 \. -- -- Data for Name: originalfile; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY originalfile (id, atime, ctime, permissions, mimetype, mtime, name, path, sha1, size, version, creation_id, external_id, group_id, owner_id, update_id, repo, params) FROM stdin; 1 \N \N -120 text/x-python \N FLIM_initialise.py /omero/setup_scripts/ 2b1fe30cfd463071c9eed879c7259ddb8d9ec310 2927 0 3 \N 1 0 3 ScriptRepo \N 112 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/5e02f9da-8e29-42d5-9e88-00473b0ded98/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3461 \N 3 2 3478 \N \N 2 \N \N -120 text/x-python \N Populate_ROI.py /omero/import_scripts/ 795e86929b5297e689df9a336b73170bf0ed28df 1244 0 3 \N 1 0 3 ScriptRepo \N 3 \N \N -120 text/x-python \N Channel_Offsets.py /omero/util_scripts/ a4b2ec44e3f5beb20a40d347b1329272a7175435 14190 0 3 \N 1 0 3 ScriptRepo \N 113 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/35265beb-f2fc-4f8b-ba5f-4156d4ee27a2/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3488 \N 3 2 3494 \N \N 4 \N \N -120 text/x-python \N Images_From_ROIs.py /omero/util_scripts/ e0fc59e270e94ad5fca266fc78573bce9e3900c1 15738 0 3 \N 1 0 3 ScriptRepo \N 5 \N \N -120 text/x-python \N Dataset_To_Plate.py /omero/util_scripts/ c77222e3ba781f101bf84863091750b2fb0e7a7a 10613 0 3 \N 1 0 3 ScriptRepo \N 114 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/a3bf097c-2131-48c2-b7c6-1ceb3e6e5c97/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3670 \N 3 2 3676 \N \N 6 \N \N -120 text/x-python \N Combine_Images.py /omero/util_scripts/ c7a3edeb9ac95850904a7c0e2f7aa1028f4fd0dd 22185 0 3 \N 1 0 3 ScriptRepo \N 7 \N \N -120 text/x-python \N ROI_Split_Figure.py /omero/figure_scripts/ 60b612f15ae41a857f179d7e1d3d2052096154b8 33737 0 3 \N 1 0 3 ScriptRepo \N 115 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/d91f6067-9d44-4c11-bd1e-0edd0dd7b3a3/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3686 \N 3 2 3692 \N \N 8 \N \N -120 text/x-python \N Thumbnail_Figure.py /omero/figure_scripts/ a22faefee179b6d7c5f62e8585b8470910373688 14560 0 3 \N 1 0 3 ScriptRepo \N 9 \N \N -120 text/x-python \N Movie_ROI_Figure.py /omero/figure_scripts/ e86435697a384837ada92ca22da7d56638efc8c6 29890 0 3 \N 1 0 3 ScriptRepo \N 116 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/4e898855-4433-4d96-9cff-bda8e95bcfad/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3702 \N 3 2 3708 \N \N 10 \N \N -120 text/x-python \N Movie_Figure.py /omero/figure_scripts/ daa687c0912fc88ad51140ca6be2a4b1c6da65fb 23026 0 3 \N 1 0 3 ScriptRepo \N 11 \N \N -120 text/x-python \N Split_View_Figure.py /omero/figure_scripts/ 4d1a6142fb8c814bfa6c9fc6f5f9fc873960c9c6 29858 0 3 \N 1 0 3 ScriptRepo \N 117 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7f16f279-c454-4d26-9699-ad7c2bd2a0ec/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3718 \N 3 2 3724 \N \N 12 \N \N -120 text/x-python \N Batch_Image_Export.py /omero/export_scripts/ 4b4a39a1e52ba24ec41e373049fcff4b21c37655 19859 0 3 \N 1 0 3 ScriptRepo \N 13 \N \N -120 text/x-python \N Make_Movie.py /omero/export_scripts/ 26b7aa02d2e6b6b971132eb5cba839a6bba4e506 24884 0 3 \N 1 0 3 ScriptRepo \N 118 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/75251952-0739-4018-b6de-b869ca1f4d06/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3734 \N 3 2 3740 \N \N 14 2012-08-01 15:37:08.031 2012-08-01 15:37:08.031 -120 Repository 2012-08-01 15:37:08.031 OMERO / 997382c5-a6c8-4f73-adf5-8b8741fd4e65 0 0 4 \N 1 0 4 \N \N 15 2012-08-01 15:37:08.042 2012-08-01 15:37:08.042 -120 Repository 2012-08-01 15:37:08.042 scripts /data/omerorun/lib/ ScriptRepo 0 0 5 \N 1 0 5 \N \N 119 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c2c79f04-0e9a-4420-b5ef-f927b304cf49/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3750 \N 3 2 3756 \N \N 120 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/383d90fd-0f2e-438b-ac17-939546f7f37f/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3766 \N 3 2 3772 \N \N 121 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c80df4f3-25f5-4d89-845a-14e5e6b66742/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3782 \N 3 2 3788 \N \N 122 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/0d517bb0-766f-4800-a11c-1646b3d113be/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3798 \N 3 2 3851 \N \N 123 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/86ac57c6-2046-4b55-9b02-cd796bc5b619/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 4112 \N 3 2 4118 \N \N 124 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ab49b3b7-a039-47f5-bc95-13ec993bced2/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 4128 \N 3 2 4134 \N \N 69 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/85f4ab5d-0765-4a4e-ac6d-01aea17ec72c/ Pending 153494 \N 1143 \N 3 2 1143 \N \N 70 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/3b5c588d-0edd-464f-9a4f-be6a95df59c6/ Pending 98803 \N 1143 \N 3 2 1143 \N \N 53 \N \N -40 text/plain \N stderr /home/omerorun/omero/tmp/omero_omerorun/28690/processnK5Ch0.dir/ 008cf65ed135faf710da790949bc0d584154ade1 339 \N 984 \N 3 2 984 \N \N 54 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c68f0054-5299-475c-bced-0c45cf1c7894/ Pending 98986 \N 1055 \N 3 2 1055 \N \N 55 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6ba0b6dc-bb56-4217-8e98-a798b5ca5e03/ Pending 153714 \N 1055 \N 3 2 1055 \N \N 56 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/d81988ed-8f4a-4c54-ade4-d67f73fa09ad/ Pending 98977 \N 1055 \N 3 2 1055 \N \N 57 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/917bd2e3-3562-46ca-baea-97e89be9d6b4/ Pending 153732 \N 1055 \N 3 2 1055 \N \N 58 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/655b4c83-2010-499d-8679-4862790e45ab/ Pending 98975 \N 1055 \N 3 2 1055 \N \N 59 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e05a6f80-fb60-4869-bc7d-237c1df16a77/ 88f3eba6cedaf710f6b135c83397b4bd597ebd6b 153706 \N 1055 \N 3 2 1061 \N \N 60 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/dad36b31-f0cf-4203-82d6-b2cc8f1ca010/ Pending 98984 \N 1118 \N 3 2 1118 \N \N 61 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e133758e-7302-4787-add1-d89c6b7f03a2/ Pending 153708 \N 1118 \N 3 2 1118 \N \N 62 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2afdac57-50ed-4bd6-b430-a476aaeb23d0/ Pending 98974 \N 1118 \N 3 2 1118 \N \N 63 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/49ea6521-d72c-45fa-8c59-3fe57ce64526/ Pending 153718 \N 1118 \N 3 2 1118 \N \N 64 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c39f8fc5-3a57-4493-aaa3-07a30949ed34/ Pending 98971 \N 1118 \N 3 2 1118 \N \N 65 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2b03579b-28b6-4dc5-9fe2-518d14f57102/ e095117ef8ade3950e7b6dd559eb3a5583d92462 153713 \N 1118 \N 3 2 1125 \N \N 66 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/51475a52-e02c-4965-936e-71639ac1b838/ Pending 99529 \N 1143 \N 3 2 1143 \N \N 67 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9812ef30-2651-407b-bc87-c81b292190b0/ Pending 154244 \N 1143 \N 3 2 1143 \N \N 68 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e5079f36-1f43-4bc0-adf0-3404c12e3e80/ Pending 98827 \N 1143 \N 3 2 1143 \N \N 71 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/1f31618d-9eab-46fc-a199-35ca8732d731/ Pending 153477 \N 1143 \N 3 2 1143 \N \N 72 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ed0e0e8b-d640-4119-9194-6449415d3fcc/ Pending 98852 \N 1143 \N 3 2 1143 \N \N 73 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/b3805616-b111-4b67-883b-3734a039db13/ Pending 153477 \N 1143 \N 3 2 1143 \N \N 74 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/11c805c9-2555-474d-876b-532ec5e47bb7/ Pending 98800 \N 1143 \N 3 2 1143 \N \N 75 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7208c5fa-1d8a-4902-96e1-c8ae0875cf41/ Pending 153467 \N 1143 \N 3 2 1143 \N \N 76 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ac1bf6b8-857c-4be2-a151-65a086a9796c/ 3bc468b7e40264db3f19e314ec6f91a56fc40640 99023 \N 1143 \N 3 2 1151 \N \N 77 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/cb454b1e-d6ba-4a84-b3cb-9b5f9b646668/ Pending 98467 \N 1614 \N 3 2 1614 \N \N 78 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/d357d5aa-cb92-49ed-905d-a66ca7be3b85/ Pending 153116 \N 1614 \N 3 2 1614 \N \N 79 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/545852cd-217f-4229-a9da-88fb0408d4ab/ Pending 98458 \N 1614 \N 3 2 1614 \N \N 80 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/be952d65-52ba-4641-be25-ee587e1231bc/ f5cb704ddbb3c065ad206d3f9e0a6d6a3c4e1ab4 153112 \N 1614 \N 3 2 1620 \N \N 101 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/322fc02d-7f9d-4895-a00f-b061a8666a37/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 2837 \N 3 2 2843 \N \N 102 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9a04c4a3-8128-468a-a1bc-7660a00c71d8/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 2853 \N 3 2 2859 \N \N 103 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/70d5357a-0dba-4ceb-a67a-b10dc4ab6348/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 2869 \N 3 2 2875 \N \N 104 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c1de0d7b-77ad-47eb-b00c-4e4d88e32b47/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 2885 \N 3 2 2891 \N \N 105 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ab0b744d-c534-4876-bd1b-6a2ee9c11ba4/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 2901 \N 3 2 2907 \N \N 106 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7bee401f-1446-42cd-95a1-99341ed6d973/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 2917 \N 3 2 2923 \N \N 107 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9bc94990-5186-446e-af53-0abb396ef03b/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3284 \N 3 2 3293 \N \N 108 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/dbbf8c05-3637-473a-996f-f46aa7b8188e/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3303 \N 3 2 3316 \N \N 109 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2611ec58-6cfb-4a45-a4cb-a7a8422b42a9/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3327 \N 3 2 3337 \N \N 110 \N \N -40 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/484c06fc-9cba-4516-b661-84bc5854d3c4/ 95589adde223bf140c59f2e8fba37a6bee7ac19f 52 \N 3347 \N 3 2 3354 \N \N 151 2012-09-05 09:56:33.428 2012-09-05 09:56:33.428 -120 Repository 2012-09-05 09:56:33.428 OMERO / 015a011b-9a04-43ad-bdc5-3c0326dfe589 0 0 4957 \N 1 0 4957 \N \N 152 \N \N -40 JPEG \N Hagi_Iconed_by_qerubin.jpg Hagi_Iconed_by_qerubin.jpg 361fd18ad3f53c3376ddfbb962c04270ed0a3c75 5551 0 5020 \N 1 2 5020 \N \N 201 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/fae422eb-1aac-4e50-a73c-44d7baffa17a/ Pending 62687 \N 5151 \N 53 102 5151 \N \N 203 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e7b2fa44-7d54-4a2e-8175-5f796fda4288/ Pending 62763 \N 5151 \N 53 102 5151 \N \N 204 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7cc6573e-6e83-46b8-81a3-70c0ef7f1543/ Pending 62750 \N 5151 \N 53 102 5151 \N \N 202 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/756a146d-5c04-44d9-aab4-fdeb4e220a7f/ 758e83deec4d82bba0a47233e45beacbfa94c3c0 62690 \N 5151 \N 53 102 5157 \N \N 205 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ddadb6e8-4ede-45b8-91e7-6a1088e0bf3b/ Pending 61953 \N 5173 \N 53 102 5173 \N \N 207 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/042f6bea-9801-4264-91ce-5625551656e6/ Pending 62025 \N 5173 \N 53 102 5173 \N \N 208 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7dae8078-9079-4976-9411-a1f3dc234cc0/ Pending 62016 \N 5173 \N 53 102 5173 \N \N 206 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/4c4aac6c-7bed-44a0-b9db-357532b71fb3/ 4bb52ba74d72a714dec259e71101128b85e743f1 61956 \N 5173 \N 53 102 5179 \N \N 209 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/fc01f05f-da0b-4266-8632-611dc9c24dd5/ Pending 62038 \N 5195 \N 53 102 5195 \N \N 211 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/5b593ce4-7429-4acb-b9e3-c14dfbf395ff/ Pending 62111 \N 5195 \N 53 102 5195 \N \N 212 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e6f782d2-deb3-4ead-9306-154163b8ae52/ Pending 62101 \N 5195 \N 53 102 5195 \N \N 210 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6dafbcb2-4569-4d10-9533-d43db6f962d0/ caee6373135c288ec32cc18a36098ad175d581ca 62041 \N 5195 \N 53 102 5202 \N \N 213 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/d89543c1-3087-4f97-abb9-e1e8fe09a5b9/ Pending 62052 \N 5218 \N 53 102 5218 \N \N 215 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8c60fd0a-5fd2-48a9-842d-1bd81908298e/ Pending 62129 \N 5218 \N 53 102 5218 \N \N 216 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e6768724-2208-4153-8e73-8c4f9a6d5f5d/ Pending 62115 \N 5218 \N 53 102 5218 \N \N 214 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/393bf0ee-9472-4cad-b779-f0e7e8ddd5b0/ 0ee2c2b4fceb6daeb2b09ce5f842481d3cd0798c 62055 \N 5218 \N 53 102 5225 \N \N 217 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6e01e334-3058-4084-ad58-3ff7776e568f/ Pending 62063 \N 5241 \N 53 102 5241 \N \N 219 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c7945307-5cae-4eb7-a7f6-f5b25cb84229/ Pending 62138 \N 5241 \N 53 102 5241 \N \N 220 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8819a292-29d4-4982-a51d-c76fac675ff8/ Pending 62126 \N 5241 \N 53 102 5241 \N \N 218 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2cdfa2c0-e637-4389-b080-73db475fa467/ 0b698337612fad1eb3da791ac8af45a8f03b12c0 62066 \N 5241 \N 53 102 5247 \N \N 221 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/d1f28e3a-6cc3-40e2-a410-0ac78067b4c5/ Pending 62063 \N 5263 \N 53 102 5263 \N \N 223 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/32dc31de-5a91-4981-a225-6525410ae6a8/ Pending 62141 \N 5263 \N 53 102 5263 \N \N 224 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7d2b25ee-867f-4194-8ff0-4c1f9cccfdad/ Pending 62126 \N 5263 \N 53 102 5263 \N \N 222 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/32b1ac59-6155-4734-91fe-9bdfc216a20f/ dcc29c7032a18908ecd4130cf422624edbeed796 62066 \N 5263 \N 53 102 5269 \N \N 225 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f3ddc3bd-3340-4b52-8c77-930bc7ede873/ Pending 62036 \N 5285 \N 53 102 5285 \N \N 227 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/a670c402-5d58-4408-a1da-0d93676afa0f/ Pending 62058 \N 5285 \N 53 102 5285 \N \N 228 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/58e429d5-c3dc-493c-9856-8a307a5ebac2/ Pending 62099 \N 5285 \N 53 102 5285 \N \N 226 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6cd71b80-5437-4f65-bace-9c484c3bc795/ f27470cdc8b489f53dfc328101b7eb8e8ea05e72 62039 \N 5285 \N 53 102 5291 \N \N 229 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/0bbf0da1-4e1e-490a-92c0-d455c71a7427/ Pending 62654 \N 5307 \N 53 102 5307 \N \N 231 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/bbf2fe5a-8440-4d64-8b96-01bb8480b7c0/ Pending 62732 \N 5307 \N 53 102 5307 \N \N 232 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/91929663-2439-40fe-b1eb-1a5e10319eb6/ Pending 62717 \N 5307 \N 53 102 5307 \N \N 230 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f5e1e588-f9b2-4deb-8c35-5033a972146a/ 6c100ed80e0e08a423f553ac05abe04e811500b6 62657 \N 5307 \N 53 102 5313 \N \N 233 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8149afef-3d0b-4bd2-83cd-5f5f8d742bb0/ Pending 62700 \N 5329 \N 53 102 5329 \N \N 235 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/0bfdc9b7-9c61-47b0-950c-acb8c328f3bb/ Pending 62775 \N 5329 \N 53 102 5329 \N \N 236 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/13dbd8ba-e3b5-423d-b978-3c3dd73867dc/ Pending 62763 \N 5329 \N 53 102 5329 \N \N 234 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/321037d4-b2b0-4f72-b81a-7c699a13e9a2/ f10ba5d970e16aeca0be434d7e52936474a54f71 62703 \N 5329 \N 53 102 5381 \N \N 237 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6d9e8050-e5d1-435c-bcaa-63177df0ba58/ Pending 62659 \N 5397 \N 53 102 5397 \N \N 239 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/b88375cf-42da-4b80-bb78-f0c145ab7651/ Pending 62730 \N 5397 \N 53 102 5397 \N \N 240 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f31eaf87-3c60-45f5-a068-30124b381d46/ Pending 62722 \N 5397 \N 53 102 5397 \N \N 238 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/921facd3-fcde-4f67-904e-7d4baea98a24/ 2a60e8f8c29b56786174452f3261013245b4179d 62662 \N 5397 \N 53 102 5405 \N \N 241 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/5d2437d5-a826-4ca9-8e14-779a21b1dd86/ Pending 62654 \N 5421 \N 53 102 5421 \N \N 243 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ce9cdd18-f245-4388-ac44-6347e1482dde/ Pending 62727 \N 5421 \N 53 102 5421 \N \N 244 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/94b6cb74-1a73-4a7f-99cf-0171e78f6053/ Pending 62717 \N 5421 \N 53 102 5421 \N \N 242 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/3fa8b89f-d92e-4cb3-ae3b-aa436e3e84dc/ 1e8129d394ae0d2b3bdf2a9ec58cd05a4ab6455e 62657 \N 5421 \N 53 102 5429 \N \N 245 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/0194e0b8-9438-4607-928d-6384dfb9f3d5/ Pending 62663 \N 5446 \N 53 102 5446 \N \N 247 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/aa9f4755-3aa2-4d57-abd0-e0f020b27424/ Pending 62732 \N 5446 \N 53 102 5446 \N \N 248 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/c46a4055-c5ce-4b8a-a194-716098c8847f/ Pending 62726 \N 5446 \N 53 102 5446 \N \N 246 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/fd4cb1aa-c939-473d-a1ef-bb63ed081992/ ee06f5b8d09aac0565cf1c3a55d7efcb854d6a1c 62666 \N 5446 \N 53 102 5455 \N \N 249 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/55a34bc8-0873-4641-8822-09bfbf496cce/ Pending 62693 \N 5471 \N 53 102 5471 \N \N 251 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f4106a55-f536-43be-a129-5712dd5e6860/ Pending 62714 \N 5471 \N 53 102 5471 \N \N 252 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/b097ae49-e1c8-49f3-972c-1f646058a7ea/ Pending 62756 \N 5471 \N 53 102 5471 \N \N 250 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f35a4edf-ae1f-4ffe-9f6e-6c8f85e5b688/ ddb9c7d06718d846dbfc6653effdbb44d0af4465 62696 \N 5471 \N 53 102 5477 \N \N 253 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/cf13953e-601f-4415-8615-73bf9d75f492/ Pending 62650 \N 5493 \N 53 102 5493 \N \N 255 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/96317ee7-922f-4332-a417-89fde735afb6/ Pending 62723 \N 5493 \N 53 102 5493 \N \N 256 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/a5b052d1-66fa-4fef-b06a-d016e183a2a2/ Pending 62713 \N 5493 \N 53 102 5493 \N \N 254 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ff6d3f39-5075-44fe-bb9f-84e88604210c/ 2dcaba7f817ab1c4acdadd99fb634ab3d8d59a9f 62653 \N 5493 \N 53 102 5499 \N \N 257 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2420e952-afb2-4689-a665-1d659298debb/ Pending 62038 \N 5515 \N 53 102 5515 \N \N 259 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6907b6ac-6e7d-4a33-a41c-ce0a5c307d2a/ Pending 62114 \N 5515 \N 53 102 5515 \N \N 260 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6df083c1-25d6-424b-9b75-d7a928ac5724/ Pending 62101 \N 5515 \N 53 102 5515 \N \N 258 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/196eed60-e6bd-49ac-9586-16f690361df2/ 49266711fd4ebe8ed604e0e7ea724d33ed69359c 62041 \N 5515 \N 53 102 5521 \N \N 261 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/bd87e157-5598-472e-8cfc-c54128649e10/ Pending 62085 \N 5539 \N 53 102 5539 \N \N 263 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9d9468f6-d580-47ef-9017-7dd9507fd32c/ Pending 62154 \N 5539 \N 53 102 5539 \N \N 264 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7ba3f860-17a0-4163-98b8-91dce5d8e62b/ Pending 62148 \N 5539 \N 53 102 5539 \N \N 262 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/3d29334b-0bb0-40ff-823f-662b780a8ec8/ cbaee94c61e4807a1c7dc6d37a62d97df30bc835 62088 \N 5539 \N 53 102 5545 \N \N 265 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ca00c190-2a03-4263-9e49-ad12c57134a6/ Pending 62028 \N 5561 \N 53 102 5561 \N \N 267 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/dd375c31-44c5-4c88-89f1-2ab63be8eb21/ Pending 62047 \N 5561 \N 53 102 5561 \N \N 268 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/01b7708f-a9e7-4c31-a077-89fc1da1bfbf/ Pending 62091 \N 5561 \N 53 102 5561 \N \N 266 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2adcf40d-7b2b-4105-a526-f3fe05fd67b2/ 1c2df19c850df422418cf805563fa55bb414eeb8 62031 \N 5561 \N 53 102 5567 \N \N 269 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/e3f80eba-0896-496b-9625-9842f6084f91/ Pending 61974 \N 5583 \N 53 102 5583 \N \N 271 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2a6b13c2-04d8-4b54-8fc8-a050cde3557e/ Pending 62053 \N 5583 \N 53 102 5583 \N \N 272 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/4aa30115-5570-4403-b33c-1337c5a6a5df/ Pending 62037 \N 5583 \N 53 102 5583 \N \N 270 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/86a226f1-f55a-407a-b670-03e3579f06c4/ dee153e70ed9cb2284b75c9aae51168a65944bfc 61977 \N 5583 \N 53 102 5589 \N \N 273 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8fa1edec-ed59-425f-8178-1cacfe61e6f6/ Pending 62034 \N 5605 \N 53 102 5605 \N \N 275 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/4fbd0076-eb22-4456-85f1-580346c2abe7/ Pending 62114 \N 5605 \N 53 102 5605 \N \N 276 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/3f074d9a-ac89-4e4f-a388-ac69d28c10cf/ Pending 62097 \N 5605 \N 53 102 5605 \N \N 274 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8b28cd30-2992-4c2c-8d36-51e8fabd5551/ 39f4db025cd1fafd69781a7bd547d6134924018a 62037 \N 5605 \N 53 102 5612 \N \N 277 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/109ea178-820c-4bbb-9f7d-913004b73832/ Pending 61974 \N 5628 \N 53 102 5628 \N \N 279 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2345dc80-7888-46d7-9268-662ecca7c2dc/ Pending 61993 \N 5628 \N 53 102 5628 \N \N 280 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/3eb0ae8f-aef8-4986-a6c2-82ef4a29fbb1/ Pending 62037 \N 5628 \N 53 102 5628 \N \N 278 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9a83e309-ed36-4602-a128-084208574638/ 670cdf498bd54a63f3e9efebeba14eac718d5313 61977 \N 5628 \N 53 102 5635 \N \N 281 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6b37d565-da2e-471f-951d-cbb6b88b3387/ Pending 62097 \N 5651 \N 53 102 5651 \N \N 283 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/3c2c77d9-564a-4376-af5a-44a35328ac6d/ Pending 62172 \N 5651 \N 53 102 5651 \N \N 284 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/1f091d6c-eafb-4c07-8542-999c70831de7/ Pending 62160 \N 5651 \N 53 102 5651 \N \N 282 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/b1c67134-893a-47db-91ad-2aa03d6e62c8/ 6a2a7d1f615bc2998a46d2a5704c947a1534b473 62100 \N 5651 \N 53 102 5660 \N \N 285 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/fb309757-fa1d-44ae-8e66-5d12e1b87eda/ Pending 62011 \N 5676 \N 53 102 5676 \N \N 287 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/49bae0f4-13e5-4a3b-b8f7-31c2b202c7b4/ Pending 62031 \N 5676 \N 53 102 5676 \N \N 288 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2bd1b346-a959-4dd9-b465-adafe77418ad/ Pending 62074 \N 5676 \N 53 102 5676 \N \N 286 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8943b27f-0e42-475e-949c-cd802979ef5a/ 83407ebdbc773d191278020b0154bcbac92a27b4 62014 \N 5676 \N 53 102 5685 \N \N 289 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9fc9dafe-9d2d-498f-99c9-52812416e7fb/ Pending 62029 \N 5701 \N 53 102 5701 \N \N 291 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/5cee8e3d-820c-4e76-8917-22f2252f92e5/ Pending 62048 \N 5701 \N 53 102 5701 \N \N 292 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/acba45ff-0f84-4cce-b1b0-6a7804f0db90/ Pending 62092 \N 5701 \N 53 102 5701 \N \N 290 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ea1964e3-1e09-4681-aa60-56156140140a/ 7fc7400e13ce6a2f75e7facd20a3884c1dbe0f94 62032 \N 5701 \N 53 102 5707 \N \N 293 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/33c4e598-5564-4da3-87c5-95a460796157/ Pending 61969 \N 5723 \N 53 102 5723 \N \N 295 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8ee02397-c149-4ee4-8ed6-82e33e96b976/ Pending 61991 \N 5723 \N 53 102 5723 \N \N 296 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/59e39ecf-4a1d-4022-bef0-ef12f8c9701f/ Pending 62032 \N 5723 \N 53 102 5723 \N \N 294 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/0c63c75e-06ce-4bf9-be40-70cae4525c3c/ 20118e005799eae0335eabcfcbfa56ea8ae17b54 61972 \N 5723 \N 53 102 5732 \N \N 297 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ec42527f-fa58-4252-b740-111173a6af8e/ Pending 61997 \N 5748 \N 53 102 5748 \N \N 299 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/22a6006d-090f-4cb9-8fa3-1ef4847edab0/ Pending 62016 \N 5748 \N 53 102 5748 \N \N 300 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/85bae68a-e9ff-419f-9e44-3dded0628a92/ Pending 62060 \N 5748 \N 53 102 5748 \N \N 298 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/d107af71-fbab-4e10-a5dc-315f09860af1/ d6c6a4fcfe435bfab7802f4be88a28718baff7f6 62000 \N 5748 \N 53 102 5754 \N \N 301 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/1fb57fd6-03fb-4685-b412-319d0b973d6b/ Pending 61980 \N 5770 \N 53 102 5770 \N \N 303 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f6446bae-ceb0-49ff-810d-173337e923f8/ Pending 61999 \N 5770 \N 53 102 5770 \N \N 304 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/2e204bcc-5fe0-4341-9443-48bb600948e2/ Pending 62043 \N 5770 \N 53 102 5770 \N \N 302 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/79257cff-08a6-4702-abc0-c5979cafba05/ c1ddef5dc16af67e7815362fd9df45585baa1f8f 61983 \N 5770 \N 53 102 5776 \N \N 305 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/798ac3a7-45ee-450e-94b0-b9ecf856077a/ Pending 61987 \N 5792 \N 53 102 5792 \N \N 307 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/08670cb0-6190-43d0-ae33-0b4a9b918f3a/ Pending 62006 \N 5792 \N 53 102 5792 \N \N 308 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/211609e4-ab53-4356-a9e6-727e8dd5efbc/ Pending 62050 \N 5792 \N 53 102 5792 \N \N 306 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/1d3daa4d-972c-4758-bcef-60720f56544f/ cebbe3a0996be58bba0e1069e50fcd8c415991d1 61990 \N 5792 \N 53 102 5798 \N \N 309 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/8182d0e8-a561-439c-8c5c-c9a4a0822734/ Pending 61977 \N 5814 \N 53 102 5814 \N \N 311 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/65a7b2ce-c5cb-40dc-b8f1-48ab49165b40/ Pending 61998 \N 5814 \N 53 102 5814 \N \N 312 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/b2d90f12-b961-4dee-b059-b72c5e302697/ Pending 62040 \N 5814 \N 53 102 5814 \N \N 310 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/f3c69f45-7ea0-4b52-b2f9-095a3f960842/ c83d23b644bf32bfc1e855868ae06abcc9a25673 61980 \N 5814 \N 53 102 5821 \N \N 313 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ffef7f8f-1469-407c-a99c-aed842c95295/ Pending 62020 \N 5837 \N 53 102 5837 \N \N 315 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/6d58ecb7-f769-423b-b0c8-ca7f0214d304/ Pending 62092 \N 5837 \N 53 102 5837 \N \N 316 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/12e5b0c1-c55d-4c4b-8e1e-253b4747eaef/ Pending 62083 \N 5837 \N 53 102 5837 \N \N 314 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/9a52b022-8994-4be3-85fd-3bccb7f9b9d2/ 0f4642c571c3d90f7f9e2e69d69f9a65ddfc2c50 62023 \N 5837 \N 53 102 5847 \N \N 317 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/ae2c8d22-554d-43e9-919f-086bc28cc011/ Pending 62049 \N 5864 \N 53 102 5864 \N \N 319 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/7973a0a7-274f-4ba9-9899-26826c361a15/ Pending 62124 \N 5864 \N 53 102 5864 \N \N 320 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/0df53f84-7035-47f4-bba2-41218c39fba0/ Pending 62112 \N 5864 \N 53 102 5864 \N \N 318 \N \N -120 text/plain \N original_metadata.txt /openmicroscopy.org/omero/image_files/21f0f057-0f7e-44c6-bcdd-93dcf36fbd68/ 44b09c3d5bfb486e586519f463cbaeb215b721f6 62052 \N 5864 \N 53 102 5873 \N \N 325 \N \N -120 text/plain \N stderr /home/imaging/omero/tmp/omero_imaging/9309/process5H_fUN.dir/ c3ac8fdd61f1c1d90390678a1125dcfda88c33db 493 \N 6228 \N 53 102 6228 \N \N \. -- -- Data for Name: originalfileannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY originalfileannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: otf; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY otf (id, permissions, opticalaxisaveraged, path, sizex, sizey, version, creation_id, external_id, group_id, owner_id, update_id, filterset, instrument, objective, pixelstype) FROM stdin; \. -- -- Data for Name: parsejob; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY parsejob (params, job_id) FROM stdin; \\377\\377\\377\\377\\001\\001\\000\\000\\000\\000\\030::omero::grid::JobParams&\\001\\000\\000\\017Populate_ROI.py\\0054.2.0\\274Generates regions of interest from the measurement files associated with a plate\\012\\012This script is executed by the server on initial import, and should typically not need\\012to be run by users.%ome-users@lists.openmicroscopy.org.uk\\000\\000\\000\\001\\010Plate_ID\\376\\377\\377\\377\\000\\012text/plain\\012text/plain\\000\\000\\021::omero::Internal\\004\\000\\000\\000\\000\\015::Ice::Object\\005\\000\\000\\000\\000\\001\\002\\000\\000\\000\\000\\024::omero::grid::ParamH\\000\\000\\000/ID of a valid plate with attached results files\\000\\000\\375\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\001\\003\\000\\000\\000\\000\\016::omero::RLong\\014\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\016::omero::RType\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\000 1 \\377\\377\\377\\377\\001\\001\\000\\000\\000\\000\\030::omero::grid::JobParams\\307\\002\\000\\000\\025Batch_Image_Export.py\\0054.3.0\\323Save multiple images as jpegs or pngs in a zip\\012file available for download as a batch export. \\012See http://www.openmicroscopy.org/site/support/omero4/getting-started/tutorial/running-scripts/running-util-scripts/%ome-users@lists.openmicroscopy.org.uk\\002\\015William Moore\\010OME Team\\001\\024University of Dundee\\000\\021\\031OR_specify_T_start_AND...\\376\\377\\377\\377\\011Data_Type\\375\\377\\377\\377\\006Format\\374\\377\\377\\377\\013Image_Width\\373\\377\\377\\377\\020Choose_T_Section\\372\\377\\377\\377\\030Individual_Channels_Grey\\371\\377\\377\\377\\020...specify_T_end\\370\\377\\377\\377\\013Folder_Name\\367\\377\\377\\377\\022OR_specify_Z_index\\366\\377\\377\\377\\020...specify_Z_end\\365\\377\\377\\377\\015Channel_Names\\364\\377\\377\\377\\003IDs\\363\\377\\377\\377\\022OR_specify_T_index\\362\\377\\377\\377\\023Export_Merged_Image\\361\\377\\377\\377\\032Export_Individual_Channels\\360\\377\\377\\377\\031OR_specify_Z_start_AND...\\357\\377\\377\\377\\020Choose_Z_Section\\356\\377\\377\\377\\000\\012text/plain\\012text/plain\\000\\000\\021::omero::Internal\\004\\000\\000\\000\\000\\015::Ice::Object\\005\\000\\000\\000\\000\\021\\004\\000\\000\\000\\000\\024::omero::grid::Param.\\000\\000\\000\\024Format to save image\\001\\001\\355\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\354\\377\\377\\377\\0018\\000\\001\\003\\005\\000\\000\\000\\000\\011\\000\\000\\000\\001\\004G\\000\\000\\000-Name of folder (and zip file) to store images\\001\\001\\353\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\0019\\000\\001\\003\\005\\000\\000\\000\\000\\016\\000\\000\\000\\001\\004?\\000\\000\\000#Choose a specific T-index to export\\001\\000\\352\\377\\377\\377\\351\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0036.1\\000\\001\\003\\005\\000\\000\\000\\000\\017\\000\\000\\000\\001\\004M\\000\\000\\0003Save merged image, using current rendering settings\\001\\001\\350\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\0014\\000\\001\\003\\005\\000\\000\\000\\000\\002\\000\\000\\000\\001\\004?\\000\\000\\000#Choose a specific T-index to export\\001\\000\\352\\377\\377\\377\\347\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0036.2\\000\\001\\003\\005\\000\\000\\000\\000\\003\\000\\000\\000\\001\\0049\\000\\000\\000\\037The data you want to work with.\\000\\001\\346\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\345\\377\\377\\377\\0011\\000\\001\\003\\005\\000\\000\\000\\000\\012\\000\\000\\000\\001\\004?\\000\\000\\000#Choose a specific Z-index to export\\001\\000\\352\\377\\377\\377\\344\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0035.1\\000\\001\\003\\005\\000\\000\\000\\000\\020\\000\\000\\000\\001\\004E\\000\\000\\000+Save individual channels as separate images\\001\\001\\350\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\0013\\000\\001\\003\\005\\000\\000\\000\\000\\010\\000\\000\\000\\001\\004?\\000\\000\\000#Choose a specific T-index to export\\001\\000\\352\\377\\377\\377\\343\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0036.3\\000\\001\\003\\005\\000\\000\\000\\000\\014\\000\\000\\000\\001\\004F\\000\\000\\000*Names for saving individual channel images\\001\\000\\342\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\0033.2\\000\\001\\003\\005\\000\\000\\000\\000\\005\\000\\000\\000\\001\\004S\\000\\000\\0009The max width of each image panel. Default is actual size\\001\\000\\352\\377\\377\\377\\341\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0017\\000\\001\\003\\005\\000\\000\\000\\000\\022\\000\\000\\000\\001\\004W\\000\\000\\000=Default Z is last viewed Z for each image, OR choose Z below.\\001\\001\\340\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\337\\377\\377\\377\\0015\\000\\001\\003\\005\\000\\000\\000\\000\\007\\000\\000\\000\\001\\004T\\000\\000\\0008If true, all individual channel images will be greyscale\\001\\001\\336\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\0033.1\\000\\001\\003\\005\\000\\000\\000\\000\\015\\000\\000\\000\\001\\004:\\000\\000\\000 List of Dataset IDs or Image IDs\\000\\000\\335\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\0012\\000\\001\\003\\005\\000\\000\\000\\000\\013\\000\\000\\000\\001\\004?\\000\\000\\000#Choose a specific Z-index to export\\001\\000\\352\\377\\377\\377\\334\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0035.3\\000\\001\\003\\005\\000\\000\\000\\000\\006\\000\\000\\000\\001\\004W\\000\\000\\000=Default T is last viewed T for each image, OR choose T below.\\001\\001\\333\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\332\\377\\377\\377\\0016\\000\\001\\003\\005\\000\\000\\000\\000\\021\\000\\000\\000\\001\\004?\\000\\000\\000#Choose a specific Z-index to export\\001\\000\\352\\377\\377\\377\\331\\377\\377\\377\\000\\000\\000\\000\\000\\000\\000\\000\\0035.2\\000\\001\\003\\005\\000\\000\\000\\000\\025\\026\\000\\000\\000\\000\\015::omero::RInt\\010\\000\\000\\000\\000\\000\\000\\000\\000\\016::omero::RType\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000$\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\031\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\036\\000\\000\\000\\000\\016::omero::RList\\004\\000\\000\\000\\000\\024::omero::RCollection\\005\\000\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\024\\000\\000\\000\\001\\007\\004\\000\\000\\000\\001\\010\\021\\000\\000\\000\\003\\330\\377\\377\\377\\327\\377\\377\\377\\326\\377\\377\\377\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000 \\000\\000\\000\\000\\020::omero::RString\\034\\000\\000\\000\\027Default-Z (last-viewed)\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\030\\000\\000\\000\\000\\016::omero::RBool\\005\\000\\000\\000\\001\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000%\\000\\000\\000\\001\\011\\034\\000\\000\\000\\027Default-T (last-viewed)\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\037\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000#\\000\\000\\000\\001\\007\\004\\000\\000\\000\\001\\010\\011\\000\\000\\000\\001\\325\\377\\377\\377\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\032\\000\\000\\000\\001\\011\\012\\000\\000\\000\\005Image\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\025\\000\\000\\000\\001\\011\\027\\000\\000\\000\\022Batch_Image_Export\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\033\\000\\000\\000\\001\\007\\004\\000\\000\\000\\001\\010\\015\\000\\000\\000\\002\\324\\377\\377\\377\\323\\377\\377\\377\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000&\\000\\000\\000\\001\\007\\004\\000\\000\\000\\001\\010\\021\\000\\000\\000\\003\\322\\377\\377\\377\\321\\377\\377\\377\\320\\377\\377\\377\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000'\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\034\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\035\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\027\\000\\000\\000\\001\\005\\010\\000\\000\\000\\001\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\023\\000\\000\\000\\001\\011\\010\\000\\000\\000\\003PNG\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000!\\000\\000\\000\\001\\007\\004\\000\\000\\000\\001\\010\\025\\000\\000\\000\\004\\317\\377\\377\\377\\316\\377\\377\\377\\315\\377\\377\\377\\314\\377\\377\\377\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000"\\000\\000\\000\\001\\012\\005\\000\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\015,\\000\\000\\000\\001\\011\\014\\000\\000\\000\\007Dataset\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000*\\000\\000\\000\\001\\011\\015\\000\\000\\000\\010OME-TIFF\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000)\\000\\000\\000\\001\\011\\010\\000\\000\\000\\003PNG\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000+\\000\\000\\000\\000\\016::omero::RLong\\014\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\000\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000.\\000\\000\\000\\001\\011\\034\\000\\000\\000\\027Default-T (last-viewed)\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\0002\\000\\000\\000\\001\\011\\021\\000\\000\\000\\014ALL Z planes\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000(\\000\\000\\000\\001\\011\\011\\000\\000\\000\\004JPEG\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\0000\\000\\000\\000\\001\\011\\026\\000\\000\\000\\021Other (see below)\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\0003\\000\\000\\000\\001\\011\\023\\000\\000\\000\\016Max projection\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\0001\\000\\000\\000\\001\\011\\034\\000\\000\\000\\027Default-Z (last-viewed)\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000-\\000\\000\\000\\001\\011\\012\\000\\000\\000\\005Image\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\0004\\000\\000\\000\\001\\011\\026\\000\\000\\000\\021Other (see below)\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000/\\000\\000\\000\\001\\011\\021\\000\\000\\000\\014ALL T planes\\001\\006\\004\\000\\000\\000\\001\\003\\005\\000\\000\\000\\000\\000 51 \. -- -- Data for Name: password; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY password (experimenter_id, hash, dn) FROM stdin; 1 \N 0 2VsDdfiQtEEeq4geDNUCSA== \N 3 neqYvMprslyiEtaUOMqVUA== \N 4 SPxognriMMWzZ8v0FrlEtg== \N 5 2iOFlHp4OzLeo6LFsg4wQg== \N 6 K4ie24ja4gBfh4dV6MiZ6w== \N 52 taDD2qxYmthzDy3Hc8+6/Q== \N 2 ewT9JGIcbXzhLP3wFK64Zg== \N 103 YEhM4aUay/ofWY5ZYPyeMw== \N 104 iwGUusSm5Smfukq7eh4F8w== \N 102 uGsOqhM4liXOeRJKteo8KA== \N \. -- -- Data for Name: photometricinterpretation; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY photometricinterpretation (id, permissions, value, external_id) FROM stdin; 1 -52 RGB \N 2 -52 ARGB \N 3 -52 CMYK \N 4 -52 HSV \N 5 -52 Monochrome \N 6 -52 ColorMap \N \. -- -- Data for Name: pixels; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY pixels (id, permissions, methodology, physicalsizex, physicalsizey, physicalsizez, sha1, sizec, sizet, sizex, sizey, sizez, timeincrement, version, waveincrement, wavestart, creation_id, external_id, group_id, owner_id, update_id, dimensionorder, image, pixelstype, relatedto, image_index, path, name, repo, params) FROM stdin; 119 -40 \N 0.059499999999999997 0.059499999999999997 0.2964 e3d0d94ecb3b412f47e36458a0b468671ec043bd 2 1 512 512 32 1 \N \N \N 3750 \N 3 2 3751 1 119 8 \N 0 \N \N \N \N 113 -40 \N 0.086499999999999994 0.086499999999999994 0.2964 dead0d10010551b2d9809bada376b643932928f4 2 1 512 512 21 1 \N \N \N 3488 \N 3 2 3489 1 113 8 \N 0 \N \N \N \N 69 -40 \N 0.11756 0.11756 0.2964 da7ad9a95aff1f524754717310248ca04b872a3b 2 1 512 512 39 1 \N \N \N 2061 \N 3 2 2062 1 69 8 \N 0 \N \N \N \N 70 -40 \N 0.11774999999999999 0.11774999999999999 0.2964 57219ed073024769aa5899d7052b898474e8d51c 2 1 512 512 37 1 \N \N \N 2079 \N 3 2 2080 1 70 8 \N 0 \N \N \N \N 114 -40 \N 0.0402 0.0402 0.2964 0b14e04b4bc87f8087f1ba185362b939ae142ebb 2 1 1024 1024 36 1 \N \N \N 3670 \N 3 2 3671 1 114 8 \N 0 \N \N \N \N 71 -40 \N 0.11846 0.11846 0.2964 0de95de68814fb59d85a9843a9dd62fce5a71d1a 2 1 512 512 32 1 \N \N \N 2097 \N 3 2 2098 1 71 8 \N 0 \N \N \N \N 60 -40 \N 0.090742011718750001 0.090742011718750001 0.2964 310dd098f20c7263f2f4e97abb5a55883529f81e 2 1 512 512 45 \N \N \N \N 1143 \N 3 2 1146 1 60 5 \N 0 \N \N \N \N 50 -40 \N 0.092053574218750003 0.092053574218750003 0.2964 71c756ec4a03d390dbbbc51f35e625fafaf179d7 3 1 512 512 38 \N \N \N \N 1143 \N 3 2 1147 1 50 5 \N 0 \N \N \N \N 51 -40 \N 0.080736152343750006 0.080736152343750006 0.2964 3c04740d1b4f42b3f5349d20fbec80f0744da852 3 1 512 512 36 \N \N \N \N 1143 \N 3 2 1147 1 51 5 \N 0 \N \N \N \N 52 -40 \N 0.040230595703124997 0.040230595703124997 0.2964 f8f6ee3bd1724da61babf7fc6381a202db249523 2 1 1024 1024 36 \N \N \N \N 1143 \N 3 2 1147 1 52 5 \N 0 \N \N \N \N 53 -40 \N 0.052299589843750001 0.052299589843750001 0.2964 cfad59685343549f61701f7c5a014fe28d1b4fcb 2 1 512 512 39 \N \N \N \N 1143 \N 3 2 1147 1 53 5 \N 0 \N \N \N \N 54 -40 \N 0.085377968750000005 0.085377968750000005 0.2964 be7a6c6a4084a5647099966c90ffa382ec67ce58 2 1 512 512 34 \N \N \N \N 1143 \N 3 2 1147 1 54 5 \N 0 \N \N \N \N 55 -40 \N 0.094048417968749992 0.094048417968749992 0.2964 1e0a21e8d7e5eccb9fc5039a54804b2c2c7735a6 2 1 512 512 32 \N \N \N \N 1143 \N 3 2 1147 1 55 5 \N 0 \N \N \N \N 56 -40 \N 0.088828281249999988 0.088828281249999988 0.2964 880c9536c4816d06c5c85d4cfec9f6b479f1d7cf 2 1 512 512 35 \N \N \N \N 1143 \N 3 2 1147 1 56 5 \N 0 \N \N \N \N 57 -40 \N 0.059451796874999997 0.059451796874999997 0.2964 86881dd51c0fe1edf76e17210403827c38c42671 2 1 512 512 32 \N \N \N \N 1143 \N 3 2 1147 1 57 5 \N 0 \N \N \N \N 58 -40 \N 0.086272050781249998 0.086272050781249998 0.2964 0a0ceee6f91173f344d7c50da67402d5f4645729 2 1 512 512 39 \N \N \N \N 1143 \N 3 2 1147 1 58 5 \N 0 \N \N \N \N 59 -40 \N 0.090503261718750005 0.090503261718750005 0.2964 d764aed9003c5063e058b4ce6f183d2cc3bb7a19 2 1 512 512 35 \N \N \N \N 1143 \N 3 2 1147 1 59 5 \N 0 \N \N \N \N 72 -40 \N 0.11756 0.11756 0.2964 da7ad9a95aff1f524754717310248ca04b872a3b 2 1 512 512 39 1 \N \N \N 2249 \N 3 2 2255 1 72 8 \N 0 \N \N \N \N 123 -40 \N 0.092100000000000001 0.092100000000000001 0.2964 a9f6cc90e83abe2ca0b6f02e6c4cda9bc1db84de 2 1 512 512 38 1 \N \N \N 4112 \N 3 2 4113 1 123 8 \N 0 \N \N \N \N 115 -40 \N 0.052299999999999999 0.052299999999999999 0.2964 ea86615963903f9ff334c308051a9aeced891daa 2 1 512 512 39 1 \N \N \N 3686 \N 3 2 3687 1 115 8 \N 0 \N \N \N \N 120 -40 \N 0.086300000000000002 0.086300000000000002 0.2964 7806fe07f2ff488feba3d2e26cd35dd63e238d35 2 1 512 512 39 1 \N \N \N 3766 \N 3 2 3767 1 120 8 \N 0 \N \N \N \N 110 -40 \N 0.089099999999999999 0.089099999999999999 0.2964 3d921c9c5f9c650d533b32126e258c1de10a6f6d 2 1 512 512 46 1 \N \N \N 3347 \N 3 2 3349 1 110 8 \N 0 \N \N \N \N 116 -40 \N 0.085400000000000004 0.085400000000000004 0.2964 edaeae8ed169e221482d8746c7f10a2594d8f466 2 1 512 512 34 1 \N \N \N 3702 \N 3 2 3703 1 116 8 \N 0 \N \N \N \N 112 -40 \N 0.054100000000000002 0.054100000000000002 0.2964 08483a70914069939ec0a0f3e947f8f852f19046 2 1 1024 1024 49 1 \N \N \N 3461 \N 3 2 3473 1 112 8 \N 0 \N \N \N \N 117 -40 \N 0.094 0.094 0.2964 59caeae41c13051e6113f144c3dd790f913a5988 2 1 512 512 32 1 \N \N \N 3718 \N 3 2 3719 1 117 8 \N 0 \N \N \N \N 118 -40 \N 0.088800000000000004 0.088800000000000004 0.2964 3f285891634f258297a97530ac4be0e14293e0ff 2 1 512 512 35 1 \N \N \N 3734 \N 3 2 3735 1 118 8 \N 0 \N \N \N \N 121 -40 \N 0.090499999999999997 0.090499999999999997 0.2964 f96cea9382afa97bc97847c8947414d1aaaed4de 2 1 512 512 35 1 \N \N \N 3782 \N 3 2 3783 1 121 8 \N 0 \N \N \N \N 124 -40 \N 0.080699999999999994 0.080699999999999994 0.2964 f27779e977cf03b8e264dc1389f77e3e7ccd0a44 2 1 512 512 36 1 \N \N \N 4128 \N 3 2 4129 1 124 8 \N 0 \N \N \N \N 122 -40 \N 0.090700000000000003 0.090700000000000003 0.2964 9de1870058f8aad3bcd441bb329e852b03c22441 2 1 512 512 45 1 \N \N \N 3798 \N 3 2 3846 1 122 8 \N 0 \N \N \N \N 49 -40 \N 0.054087753906250001 0.054087753906250001 0.2964 18e47178830f50bc334bb61bab11087b253a7fe1 2 1 1024 1024 49 \N \N \N \N 1118 \N 3 2 1120 1 49 5 \N 0 \N \N \N \N 44 -40 \N 0.075780878906250002 0.075780878906250002 0.2964 049c6f1779484fb68baf37870300adc2308f8860 2 1 512 512 37 \N \N \N \N 1118 \N 3 2 1121 1 44 5 \N 0 \N \N \N \N 45 -40 \N 0.084968730468750003 0.084968730468750003 0.2964 425e617584d5663911569d66bf6169ba7c6e1d82 2 1 512 512 42 \N \N \N \N 1118 \N 3 2 1121 1 45 5 \N 0 \N \N \N \N 46 -40 \N 0.082696171875000002 0.082696171875000002 0.2964 da24a811ae7b3897edfc2001a53729aa504f0cfd 2 1 512 512 47 \N \N \N \N 1118 \N 3 2 1121 1 46 5 \N 0 \N \N \N \N 47 -40 \N 0.089144472656250001 0.089144472656250001 0.2964 688fe0bd77b7a5c3198932b22ab07c8cc5cff826 2 1 512 512 46 \N \N \N \N 1118 \N 3 2 1121 1 47 5 \N 0 \N \N \N \N 48 -40 \N 0.086524101562500011 0.086524101562500011 0.2964 a6554cd1634881e8e75798354ed6e0da8097f54c 2 1 512 512 21 \N \N \N \N 1118 \N 3 2 1121 1 48 5 \N 0 \N \N \N \N 104 -40 \N 0.0746 0.0746 0.2964 22738ce0a4aed6a61b648543595ee916a0ac4c9d 2 1 512 512 36 1 \N \N \N 2885 \N 3 2 2886 1 104 8 \N 0 \N \N \N \N 43 -40 \N 0.06123951171875 0.06123951171875 0.2964 5a639d78180c60657099b7080ddaacceeeb5065c 2 1 512 512 40 \N \N \N \N 1055 \N 3 2 1056 1 43 5 \N 0 \N \N \N \N 38 -40 \N 0.081354804687500004 0.081354804687500004 0.2964 d514fd19502b3a9acd0a952795d33823ad30b41e 2 1 512 512 32 \N \N \N \N 1055 \N 3 2 1057 1 38 5 \N 0 \N \N \N \N 39 -40 \N 0.080013906249999989 0.080013906249999989 0.2964 3e7c66907d7787b337b3f47ceda64ece97062b91 2 1 512 512 33 \N \N \N \N 1055 \N 3 2 1057 1 39 5 \N 0 \N \N \N \N 40 -40 \N 0.074649863281250006 0.074649863281250006 0.2964 b6f5d3a57bf25cc14eff82f7da8dbc2dddd86161 2 1 512 512 36 \N \N \N \N 1055 \N 3 2 1057 1 40 5 \N 0 \N \N \N \N 41 -40 \N 0.075096679687500001 0.075096679687500001 0.2964 a9f0c8be3f475358beb4b085f4c36918316e40ff 2 1 512 512 40 \N \N \N \N 1055 \N 3 2 1057 1 41 5 \N 0 \N \N \N \N 42 -40 \N 0.065262656250000009 0.065262656250000009 0.2964 d4d631ea64d8ac44089c4384cddd95f5cd6859f7 2 1 512 512 40 \N \N \N \N 1055 \N 3 2 1057 1 42 5 \N 0 \N \N \N \N 105 -40 \N 0.080000000000000002 0.080000000000000002 0.2964 158e3221f7ab6705d6839e277af6c9d3b9cca7a5 2 1 512 512 33 1 \N \N \N 2901 \N 3 2 2902 1 105 8 \N 0 \N \N \N \N 106 -40 \N 0.0814 0.0814 0.2964 72f5494e9cbe08c73b981778e96e060b1ea72964 2 1 512 512 32 1 \N \N \N 2917 \N 3 2 2918 1 106 8 \N 0 \N \N \N \N 64 -40 \N 0.13611392578125001 0.13611392578125001 0.2964 a00f80d872d2e313146ad1fb850cc6d934d33c49 2 1 512 512 42 \N \N \N \N 1614 \N 3 2 1615 1 64 5 \N 0 \N \N \N \N 61 -40 \N 0.11756224609375 0.11756224609375 0.2964 8832095ded59859272045e3c138419477852fc2c 2 1 512 512 39 \N \N \N \N 1614 \N 3 2 1616 1 61 5 \N 0 \N \N \N \N 62 -40 \N 0.118456328125 0.118456328125 0.2964 074f5012df8c2a97403956f1a7ee2a8666985095 2 1 512 512 32 \N \N \N \N 1614 \N 3 2 1616 1 62 5 \N 0 \N \N \N \N 63 -40 \N 0.11774968749999999 0.11774968749999999 0.2964 9f6ca8cdbf8c9e95d9a6d6da3f9e5a578b98f340 2 1 512 512 37 \N \N \N \N 1614 \N 3 2 1616 1 63 5 \N 0 \N \N \N \N 107 -40 \N 0.075800000000000006 0.075800000000000006 0.2964 bf190be906fc4b7fdabb2f3ab55d7f042abfe697 2 1 512 512 37 1 \N \N \N 3284 \N 3 2 3288 1 107 8 \N 0 \N \N \N \N 101 -40 \N 0.061199999999999997 0.061199999999999997 0.2964 9ee5acaae7d908aa7b301cdaed832f4fd2c96692 2 1 512 512 40 1 \N \N \N 2837 \N 3 2 2838 1 101 8 \N 0 \N \N \N \N 102 -40 \N 0.065299999999999997 0.065299999999999997 0.2964 d4d2f0104bf58893e371ebaa3c8e17b3bb502310 2 1 512 512 40 1 \N \N \N 2853 \N 3 2 2854 1 102 5 \N 0 \N \N \N \N 103 -40 \N 0.0751 0.0751 0.2964 b6af3079e0a4297099cfae25da822aa88f32e622 2 1 512 512 40 1 \N \N \N 2869 \N 3 2 2870 1 103 8 \N 0 \N \N \N \N 108 -40 \N 0.085000000000000006 0.085000000000000006 0.2964 b146c21a8936e9b651c1611c2fb3868b2a1e49c4 2 1 512 512 42 1 \N \N \N 3303 \N 3 2 3311 1 108 8 \N 0 \N \N \N \N 109 -40 \N 0.082699999999999996 0.082699999999999996 0.2964 b1ec167c323aa496d31efc7a0f87fab2b9398154 2 1 512 512 47 1 \N \N \N 3327 \N 3 2 3332 1 109 8 \N 0 \N \N \N \N 158 -120 \N 0.04738234375 0.04738234375 \N ce977089c407c432986bf3bcdfc5e98025817d17 1 20 512 512 1 1 \N \N \N 5173 \N 53 102 5175 1 158 5 \N 0 \N \N \N \N 152 -120 \N 0.087309570312500001 0.087309570312500001 \N 9ffe09bb3eb4db0b5dd9b977de4a3fac8a163e9b 2 20 512 512 1 5 \N \N \N 5151 \N 53 102 5152 1 152 5 \N 0 \N \N \N \N 151 -120 \N 0.087309570312500001 0.087309570312500001 \N 7e25d6cfd3d9dc889571ac64fdbf93bd454df5a0 2 5 512 512 1 3 \N \N \N 5151 \N 53 102 5153 1 151 5 \N 0 \N \N \N \N 153 -120 \N 0.013008906250000001 0.013008906250000001 \N 346379dcf8bbb83eaebcea3f0a33e010fa0040dd 2 1 512 512 1 1 \N \N \N 5151 \N 53 102 5153 1 153 5 \N 0 \N \N \N \N 154 -120 \N 0.087309570312500001 0.087309570312500001 \N 80c49f47d0e5052236e600b2966b5132addeaa37 2 20 512 512 1 1 \N \N \N 5151 \N 53 102 5153 1 154 5 \N 0 \N \N \N \N 156 -120 \N 0.04738234375 0.04738234375 \N 30885a8190cff821648b5d443abb86636883b66c 1 20 512 512 1 5 \N \N \N 5173 \N 53 102 5174 1 156 5 \N 0 \N \N \N \N 155 -120 \N 0.04738234375 0.04738234375 \N 70a06bb521f4b168b74037164003738ddad7751b 1 5 512 512 1 3 \N \N \N 5173 \N 53 102 5175 1 155 5 \N 0 \N \N \N \N 157 -120 \N 0.0080366777343750008 0.0080366777343750008 \N 6849c33efbe99a6129ae61f131aaa788e066918b 1 1 512 512 1 1 \N \N \N 5173 \N 53 102 5175 1 157 5 \N 0 \N \N \N \N 166 -120 \N 0.060025566406249994 0.060025566406249994 \N 262aa9f82db5041d9bf95a1b28805047bea28150 1 20 512 512 1 1 \N \N \N 5218 \N 53 102 5221 1 166 5 \N 0 \N \N \N \N 160 -120 \N 0.043625449218750001 0.043625449218750001 \N 01153600ea713c90ab52def4ceaf91d81b55a307 1 20 512 512 1 5 \N \N \N 5195 \N 53 102 5197 1 160 5 \N 0 \N \N \N \N 159 -120 \N 0.043625449218750001 0.043625449218750001 \N e07a9034bf029307e88c51d7ccf6ecb721cc0b80 1 5 512 512 1 3 \N \N \N 5195 \N 53 102 5198 1 159 5 \N 0 \N \N \N \N 161 -120 \N 0.0082873515624999998 0.0082873515624999998 \N 8ff488f3ca2f53507a88192a489c8b34f763b700 1 1 512 512 1 1 \N \N \N 5195 \N 53 102 5198 1 161 5 \N 0 \N \N \N \N 162 -120 \N 0.043625449218750001 0.043625449218750001 \N 39154447ef40d1c97866d60907a815d8d467d876 1 20 512 512 1 1 \N \N \N 5195 \N 53 102 5198 1 162 5 \N 0 \N \N \N \N 164 -120 \N 0.060025566406249994 0.060025566406249994 \N 790496976641a9c51d2d0644244150dd32d66248 1 20 512 512 1 5 \N \N \N 5218 \N 53 102 5220 1 164 5 \N 0 \N \N \N \N 163 -120 \N 0.060025566406249994 0.060025566406249994 \N 84089c5b054ee0f0bd180ad7ede4d7f0b56b2528 1 5 512 512 1 3 \N \N \N 5218 \N 53 102 5221 1 163 5 \N 0 \N \N \N \N 165 -120 \N 0.0108788671875 0.0108788671875 \N b2e0029234588b6e6f1d8fca1db472e755dc2378 1 1 512 512 1 1 \N \N \N 5218 \N 53 102 5221 1 165 5 \N 0 \N \N \N \N 204 -120 \N 0.04989138671875 0.04989138671875 \N cb9b1fc1cc698902e7aa13640eb9eb79031a57fb 2 20 512 512 1 5 \N \N \N 5493 \N 53 102 5494 1 204 5 \N 0 \N \N \N \N 168 -120 \N 0.048276445312499999 0.048276445312499999 \N ba3615c24f6cbff2a8554e93fafa2ef8084766e4 1 20 512 512 1 5 \N \N \N 5241 \N 53 102 5242 1 168 5 \N 0 \N \N \N \N 205 -120 \N 0.0105837421875 0.0105837421875 \N f9e047e1a795a2ae95b1e69f56b001fe03172bc3 2 1 512 512 1 1 \N \N \N 5493 \N 53 102 5495 1 205 5 \N 0 \N \N \N \N 206 -120 \N 0.04989138671875 0.04989138671875 \N 62342d9167a12e6251f5da8dc75a4e7c5f8f3b8b 2 20 512 512 1 1 \N \N \N 5493 \N 53 102 5495 1 206 5 \N 0 \N \N \N \N 207 -120 \N 0.065262656250000009 0.065262656250000009 \N 6b6aaf1e95db03ad7da9443ec987a7b4bd5d4141 1 5 512 512 1 3 \N \N \N 5515 \N 53 102 5517 1 207 5 \N 0 \N \N \N \N 167 -120 \N 0.048276445312499999 0.048276445312499999 \N e23f431398e854ebb851f14601146b3256cfddc4 1 5 512 512 1 3 \N \N \N 5241 \N 53 102 5243 1 167 5 \N 0 \N \N \N \N 169 -120 \N 0.0102185 0.0102185 \N 28f649663080185518597ce5c6e815a5d5255bec 1 1 512 512 1 1 \N \N \N 5241 \N 53 102 5243 1 169 5 \N 0 \N \N \N \N 170 -120 \N 0.048276445312499999 0.048276445312499999 \N 489c982f34dc0a154bab5c41d2f48db31e5d22ab 1 20 512 512 1 1 \N \N \N 5241 \N 53 102 5243 1 170 5 \N 0 \N \N \N \N 172 -120 \N 0.040970234374999998 0.040970234374999998 \N 12c1982ea586f1d4fa95bd299c8182a4573f4a75 1 20 512 512 1 5 \N \N \N 5263 \N 53 102 5264 1 172 5 \N 0 \N \N \N \N 171 -120 \N 0.040970234374999998 0.040970234374999998 \N b8763bcf3f73a7ae0b83d1cd6b3ee44a378a95e3 1 5 512 512 1 3 \N \N \N 5263 \N 53 102 5265 1 171 5 \N 0 \N \N \N \N 173 -120 \N 0.0088349843750000004 0.0088349843750000004 \N f53f3b6e8db39f647e094ec329e463a77ce650c5 1 1 512 512 1 1 \N \N \N 5263 \N 53 102 5265 1 173 5 \N 0 \N \N \N \N 174 -120 \N 0.040970234374999998 0.040970234374999998 \N 096fd057d4cc9b73f478a5bdda5f052be1782b82 1 20 512 512 1 1 \N \N \N 5263 \N 53 102 5265 1 174 5 \N 0 \N \N \N \N 184 -120 \N 0.10897291015624999 0.10897291015624999 \N 6ff1a84a597a14763ca2c784dc5a380114155bb7 2 20 512 512 1 5 \N \N \N 5329 \N 53 102 5373 1 184 5 \N 0 \N \N \N \N 183 -120 \N 0.10897291015624999 0.10897291015624999 \N dadc6262d9741d1c87ac8c9312005bc3aee10ad3 2 5 512 512 1 3 \N \N \N 5329 \N 53 102 5377 1 183 5 \N 0 \N \N \N \N 185 -120 \N 0.012131777343750001 0.012131777343750001 \N 2ca688dcd3c45a9394f60e2ecadb09e644fe40b8 2 1 512 512 1 1 \N \N \N 5329 \N 53 102 5377 1 185 5 \N 0 \N \N \N \N 176 -120 \N 0.068839003906250001 0.068839003906250001 \N 4a063d5d84ed6bbe3283958faeb7323f502c3eac 1 20 512 512 1 5 \N \N \N 5285 \N 53 102 5286 1 176 5 \N 0 \N \N \N \N 175 -120 \N 0.068839003906250001 0.068839003906250001 \N 1b8ef877f4584d5f2edd34ceb51c2616e712beda 1 5 512 512 1 3 \N \N \N 5285 \N 53 102 5287 1 175 5 \N 0 \N \N \N \N 177 -120 \N 0.007508292968750001 0.007508292968750001 \N 2d0121b25bf0d9a06bfbbff417186108b95ba998 1 1 512 512 1 1 \N \N \N 5285 \N 53 102 5287 1 177 5 \N 0 \N \N \N \N 178 -120 \N 0.068839003906250001 0.068839003906250001 \N 68b3d33b351f961b4cf5d4c31df147a3b258999a 1 20 512 512 1 1 \N \N \N 5285 \N 53 102 5287 1 178 5 \N 0 \N \N \N \N 186 -120 \N 0.10897291015624999 0.10897291015624999 \N 951bf87d02789c5a408ea0f7bc415a73b7a9cea1 2 20 512 512 1 1 \N \N \N 5329 \N 53 102 5377 1 186 5 \N 0 \N \N \N \N 180 -120 \N 0.050547617187499998 0.050547617187499998 \N 186e2da314ceca5a2dce8abca20f90ec16fc5030 2 20 512 512 1 5 \N \N \N 5307 \N 53 102 5308 1 180 5 \N 0 \N \N \N \N 179 -120 \N 0.050547617187499998 0.050547617187499998 \N 30b625377b401af85923d9945f6256700bfc16f7 2 5 512 512 1 3 \N \N \N 5307 \N 53 102 5309 1 179 5 \N 0 \N \N \N \N 181 -120 \N 0.0078061679687499996 0.0078061679687499996 \N 5511e0494a1adc3ef0c74da4cc1296f68cc3cdec 2 1 512 512 1 1 \N \N \N 5307 \N 53 102 5309 1 181 5 \N 0 \N \N \N \N 182 -120 \N 0.050547617187499998 0.050547617187499998 \N b00134d1b3fa263da9507ba8a6cc5360529fc9f6 2 20 512 512 1 1 \N \N \N 5307 \N 53 102 5309 1 182 5 \N 0 \N \N \N \N 194 -120 \N 0.0787756640625 0.0787756640625 \N b838144cc5bc3303cf419f9cafc8699026beb8b8 2 20 512 512 1 1 \N \N \N 5421 \N 53 102 5425 1 194 5 \N 0 \N \N \N \N 188 -120 \N 0.0728671875 0.0728671875 \N a2575fd2bbd16529662483bb8976717e42c73714 2 20 512 512 1 5 \N \N \N 5397 \N 53 102 5399 1 188 5 \N 0 \N \N \N \N 187 -120 \N 0.0728671875 0.0728671875 \N ab1331b28e0bae5e30529fe3b8d142242966488b 2 5 512 512 1 3 \N \N \N 5397 \N 53 102 5400 1 187 5 \N 0 \N \N \N \N 189 -120 \N 0.0092588847656249994 0.0092588847656249994 \N f40b4ef5745d7082654e8b8332e0f2d6224f5368 2 1 512 512 1 1 \N \N \N 5397 \N 53 102 5400 1 189 5 \N 0 \N \N \N \N 190 -120 \N 0.0728671875 0.0728671875 \N 3aac7e0ab0eb2383e38df0ad22877ebf2373b8c7 2 20 512 512 1 1 \N \N \N 5397 \N 53 102 5400 1 190 5 \N 0 \N \N \N \N 196 -120 \N 0.054486445312500006 0.054486445312500006 \N 965ced9e2a057cd8daa9b12b177fca9a44abdabc 2 20 512 512 1 5 \N \N \N 5446 \N 53 102 5450 1 196 5 \N 0 \N \N \N \N 195 -120 \N 0.054486445312500006 0.054486445312500006 \N d3cdd991cec7b4b19a0cc6b9c6828bcc0c87d62c 2 5 512 512 1 3 \N \N \N 5446 \N 53 102 5451 1 195 5 \N 0 \N \N \N \N 197 -120 \N 0.0084266660156249989 0.0084266660156249989 \N e772a5dc5f27812857dd20027f7bccdf74331def 2 1 512 512 1 1 \N \N \N 5446 \N 53 102 5451 1 197 5 \N 0 \N \N \N \N 192 -120 \N 0.0787756640625 0.0787756640625 \N 470e6f3c7b5abcd127bbc695b335787510be7527 2 20 512 512 1 5 \N \N \N 5421 \N 53 102 5423 1 192 5 \N 0 \N \N \N \N 191 -120 \N 0.0787756640625 0.0787756640625 \N 7319abae6ac769e99fb90f46ec82af47f6195f62 2 5 512 512 1 3 \N \N \N 5421 \N 53 102 5425 1 191 5 \N 0 \N \N \N \N 193 -120 \N 0.01315326171875 0.01315326171875 \N af3d486afdb9781fca6991033062fc28b4da42c2 2 1 512 512 1 1 \N \N \N 5421 \N 53 102 5425 1 193 5 \N 0 \N \N \N \N 201 -120 \N 0.007508292968750001 0.007508292968750001 \N 801258ba4572a0e4db1547444abd7eeeb2f661d4 2 1 512 512 1 1 \N \N \N 5471 \N 53 102 5473 1 201 5 \N 0 \N \N \N \N 198 -120 \N 0.054486445312500006 0.054486445312500006 \N ad4a1c67285971fdd01e64b6efc8f5c0110c448c 2 20 512 512 1 1 \N \N \N 5446 \N 53 102 5451 1 198 5 \N 0 \N \N \N \N 200 -120 \N 0.046310000000000004 0.046310000000000004 \N 105180db11998283398036fdb3ba09cae57c8d6b 2 20 512 512 1 5 \N \N \N 5471 \N 53 102 5472 1 200 5 \N 0 \N \N \N \N 199 -120 \N 0.046310000000000004 0.046310000000000004 \N 8e723219f8e3bcea40fd2918857d3c119c2f37f6 2 5 512 512 1 3 \N \N \N 5471 \N 53 102 5473 1 199 5 \N 0 \N \N \N \N 202 -120 \N 0.046310000000000004 0.046310000000000004 \N b839834971aa1c977488697adbcee3e681df9d47 2 20 512 512 1 1 \N \N \N 5471 \N 53 102 5473 1 202 5 \N 0 \N \N \N \N 203 -120 \N 0.04989138671875 0.04989138671875 \N 3fedc060687f9b067ffdab75fe90b72ecddc84e2 2 5 512 512 1 3 \N \N \N 5493 \N 53 102 5495 1 203 5 \N 0 \N \N \N \N 208 -120 \N 0.065262656250000009 0.065262656250000009 \N c3d38368c8886730695245265c22aa2dc9ae2241 1 20 512 512 1 5 \N \N \N 5515 \N 53 102 5516 1 208 5 \N 0 \N \N \N \N 209 -120 \N 0.010563119140625001 0.010563119140625001 \N 11af566aae064d4a3f54f1eb191e7e4e25b2b292 1 1 512 512 1 1 \N \N \N 5515 \N 53 102 5517 1 209 5 \N 0 \N \N \N \N 210 -120 \N 0.065262656250000009 0.065262656250000009 \N 29c6f38efc0a542dca25876a8a4e1f2f01504731 1 20 512 512 1 1 \N \N \N 5515 \N 53 102 5517 1 210 5 \N 0 \N \N \N \N 212 -120 \N 0.069942519531249997 0.069942519531249997 \N f8b3156256e01e5535938f6a642ac143fdcc80bb 1 20 512 512 1 5 \N \N \N 5539 \N 53 102 5540 1 212 5 \N 0 \N \N \N \N 211 -120 \N 0.069942519531249997 0.069942519531249997 \N 108307ba8e56ac3d61d654ea69f8b3b77e131be2 1 5 512 512 1 3 \N \N \N 5539 \N 53 102 5541 1 211 5 \N 0 \N \N \N \N 213 -120 \N 0.0080389687499999984 0.0080389687499999984 \N 45df873b28a6e29bb287aab807ea7859f73051c1 1 1 512 512 1 1 \N \N \N 5539 \N 53 102 5541 1 213 5 \N 0 \N \N \N \N 214 -120 \N 0.069942519531249997 0.069942519531249997 \N 48c317a0b663a9ac3cd17beca1fd11da194690ec 1 20 512 512 1 1 \N \N \N 5539 \N 53 102 5541 1 214 5 \N 0 \N \N \N \N 234 -120 \N 0.055428652343749996 0.055428652343749996 \N 17e7c78f2638bd243df9c6df47c3bbb63f75d379 1 20 512 512 1 1 \N \N \N 5651 \N 53 102 5656 1 234 5 \N 0 \N \N \N \N 228 -120 \N 0.057216816406250003 0.057216816406250003 \N 0f8d8aad7e0423a8251c44b03f086488271d1eee 1 20 512 512 1 5 \N \N \N 5628 \N 53 102 5629 1 228 5 \N 0 \N \N \N \N 216 -120 \N 0.061686777343750006 0.061686777343750006 \N 6e0a551a72deb9f5fcd3febbe3b054de39393dda 1 20 512 512 1 5 \N \N \N 5561 \N 53 102 5562 1 216 5 \N 0 \N \N \N \N 215 -120 \N 0.061686777343750006 0.061686777343750006 \N 800bc24a0d70af93a11fcf8d1abaf25807290227 1 5 512 512 1 3 \N \N \N 5561 \N 53 102 5563 1 215 5 \N 0 \N \N \N \N 217 -120 \N 0.007508292968750001 0.007508292968750001 \N 2a49269acb9b229e589b0dee5ca523ce39a63ab8 1 1 512 512 1 1 \N \N \N 5561 \N 53 102 5563 1 217 5 \N 0 \N \N \N \N 218 -120 \N 0.061686777343750006 0.061686777343750006 \N 3e558fedb34afdf5695fa0934f3f813bca19fa4f 1 20 512 512 1 1 \N \N \N 5561 \N 53 102 5563 1 218 5 \N 0 \N \N \N \N 227 -120 \N 0.057216816406250003 0.057216816406250003 \N f9e14237dfd4184317b7311b563c7d06c45fb119 1 5 512 512 1 3 \N \N \N 5628 \N 53 102 5631 1 227 5 \N 0 \N \N \N \N 229 -120 \N 0.007508292968750001 0.007508292968750001 \N 2083be5b9f0e46e4f722c44162e09435571038f1 1 1 512 512 1 1 \N \N \N 5628 \N 53 102 5631 1 229 5 \N 0 \N \N \N \N 230 -120 \N 0.057216816406250003 0.057216816406250003 \N 586042cc0f8c70c1f5c91c65b749a79df82504d1 1 20 512 512 1 1 \N \N \N 5628 \N 53 102 5631 1 230 5 \N 0 \N \N \N \N 220 -120 \N 0.080013906249999989 0.080013906249999989 \N 8eb27633bf7354fc35f1ab2e75fc63cea41fa556 1 20 512 512 1 5 \N \N \N 5583 \N 53 102 5584 1 220 5 \N 0 \N \N \N \N 219 -120 \N 0.080013906249999989 0.080013906249999989 \N 22ec668c47fd9432c68fb6347b113480e5149e48 1 5 512 512 1 3 \N \N \N 5583 \N 53 102 5585 1 219 5 \N 0 \N \N \N \N 221 -120 \N 0.0084262070312500006 0.0084262070312500006 \N 31bbf773bf5bd909ea853e5f1fff66310a4c9c8d 1 1 512 512 1 1 \N \N \N 5583 \N 53 102 5585 1 221 5 \N 0 \N \N \N \N 222 -120 \N 0.080013906249999989 0.080013906249999989 \N e13258c7dcdc19ad030c27c9a4236bcac9a5d1ce 1 20 512 512 1 1 \N \N \N 5583 \N 53 102 5585 1 222 5 \N 0 \N \N \N \N 224 -120 \N 0.052746855468749999 0.052746855468749999 \N 69cf21daaf29567f2280805de24461cbfd6e6cb1 1 20 512 512 1 5 \N \N \N 5605 \N 53 102 5606 1 224 5 \N 0 \N \N \N \N 223 -120 \N 0.052746855468749999 0.052746855468749999 \N fbd8c5fcbaf3b17b5a53b5e6eab5e374b87a8c10 1 5 512 512 1 3 \N \N \N 5605 \N 53 102 5607 1 223 5 \N 0 \N \N \N \N 225 -120 \N 0.0102872421875 0.0102872421875 \N 41e1bf6b5e539b3d681771f5875d2599e4da60fa 1 1 512 512 1 1 \N \N \N 5605 \N 53 102 5607 1 225 5 \N 0 \N \N \N \N 226 -120 \N 0.052746855468749999 0.052746855468749999 \N c33dd1b0a537c4d4740787dbb5570646e2ef7da6 1 20 512 512 1 1 \N \N \N 5605 \N 53 102 5607 1 226 5 \N 0 \N \N \N \N 236 -120 \N 0.037326074218749998 0.037326074218749998 \N 9bbec97a72137b22efe643ee47250071bc7b7a26 1 20 512 512 1 5 \N \N \N 5676 \N 53 102 5677 1 236 5 \N 0 \N \N \N \N 235 -120 \N 0.037326074218749998 0.037326074218749998 \N a9a37926f35fec2ffc15e2c2e65caadd929e404a 1 5 512 512 1 3 \N \N \N 5676 \N 53 102 5681 1 235 5 \N 0 \N \N \N \N 237 -120 \N 0.007508292968750001 0.007508292968750001 \N f88bb2604890d5ba4b114f09d585e2755afb70ea 1 1 512 512 1 1 \N \N \N 5676 \N 53 102 5681 1 237 5 \N 0 \N \N \N \N 232 -120 \N 0.055428652343749996 0.055428652343749996 \N ababc426c907578ff760792afa424c456dbd8954 1 20 512 512 1 5 \N \N \N 5651 \N 53 102 5655 1 232 5 \N 0 \N \N \N \N 231 -120 \N 0.055428652343749996 0.055428652343749996 \N 6bd89dcff7e982c5008be6b5c2a8611fc1053d99 1 5 512 512 1 3 \N \N \N 5651 \N 53 102 5656 1 231 5 \N 0 \N \N \N \N 233 -120 \N 0.009797351562499999 0.009797351562499999 \N e5dc52918730f7221306e80d236aa825038ef8f3 1 1 512 512 1 1 \N \N \N 5651 \N 53 102 5656 1 233 5 \N 0 \N \N \N \N 240 -120 \N 0.049909257812500003 0.049909257812500003 \N db085e601f88ad10d6e6eb2420b3473615b93d86 1 20 512 512 1 5 \N \N \N 5701 \N 53 102 5702 1 240 5 \N 0 \N \N \N \N 238 -120 \N 0.037326074218749998 0.037326074218749998 \N 16999374b7992fba837e6add94483850440cc258 1 20 512 512 1 1 \N \N \N 5676 \N 53 102 5681 1 238 5 \N 0 \N \N \N \N 239 -120 \N 0.049909257812500003 0.049909257812500003 \N e333f52549ec730d6aa767dc62b929fb555fbd11 1 5 512 512 1 3 \N \N \N 5701 \N 53 102 5703 1 239 5 \N 0 \N \N \N \N 241 -120 \N 0.007508292968750001 0.007508292968750001 \N 75905deddf7158288640f41b5ce026decf9ae088 1 1 512 512 1 1 \N \N \N 5701 \N 53 102 5703 1 241 5 \N 0 \N \N \N \N 242 -120 \N 0.049909257812500003 0.049909257812500003 \N eb40ef36ec2d1b0a8b61b3a02767deb0be10264a 1 20 512 512 1 1 \N \N \N 5701 \N 53 102 5703 1 242 5 \N 0 \N \N \N \N 267 -120 \N 0.060345898437499997 0.060345898437499997 \N 7d315172b8dbb432b1c0e7023685fa005bace233 1 5 512 512 1 3 \N \N \N 5864 \N 53 102 5869 1 267 5 \N 0 \N \N \N \N 269 -120 \N 0.0095159726562500015 0.0095159726562500015 \N 075b91e0d5582c9db3c3de8626efd6951c7d5b70 1 1 512 512 1 1 \N \N \N 5864 \N 53 102 5869 1 269 5 \N 0 \N \N \N \N 270 -120 \N 0.060345898437499997 0.060345898437499997 \N 8d21dcc5bdadd05c1c3913a2526cf7b5bdbc78df 1 20 512 512 1 1 \N \N \N 5864 \N 53 102 5869 1 270 5 \N 0 \N \N \N \N 244 -120 \N 0.070626718749999998 0.070626718749999998 \N 13ec0b4c1ec1e46413bad05fdd020304efa6178b 1 20 512 512 1 5 \N \N \N 5723 \N 53 102 5727 1 244 5 \N 0 \N \N \N \N 243 -120 \N 0.070626718749999998 0.070626718749999998 \N 8743c7b7f1fba573c1df16e73ea0c648905076d3 1 5 512 512 1 3 \N \N \N 5723 \N 53 102 5728 1 243 5 \N 0 \N \N \N \N 245 -120 \N 0.007508292968750001 0.007508292968750001 \N 9c3e0e5e7cd62a7748a59533af0477c954d76cbe 1 1 512 512 1 1 \N \N \N 5723 \N 53 102 5728 1 245 5 \N 0 \N \N \N \N 246 -120 \N 0.070626718749999998 0.070626718749999998 \N 072b3dd346959e428c45506da529749da64ccf6e 1 20 512 512 1 1 \N \N \N 5723 \N 53 102 5728 1 246 5 \N 0 \N \N \N \N 256 -120 \N 0.055875468750000004 0.055875468750000004 \N f26ded8f6e50aea93235c970140a89f3383044ab 1 20 512 512 1 5 \N \N \N 5792 \N 53 102 5793 1 256 5 \N 0 \N \N \N \N 255 -120 \N 0.055875468750000004 0.055875468750000004 \N 59723c99e67f204de4097b44a7c261eb31a932bf 1 5 512 512 1 3 \N \N \N 5792 \N 53 102 5794 1 255 5 \N 0 \N \N \N \N 257 -120 \N 0.007508292968750001 0.007508292968750001 \N 5966a86ad49819d90e887d1893c98295755d301e 1 1 512 512 1 1 \N \N \N 5792 \N 53 102 5794 1 257 5 \N 0 \N \N \N \N 258 -120 \N 0.055875468750000004 0.055875468750000004 \N b00dc2260beb4a3467199f93803b92213d69d9b7 1 20 512 512 1 1 \N \N \N 5792 \N 53 102 5794 1 258 5 \N 0 \N \N \N \N 248 -120 \N 0.06570994140625 0.06570994140625 \N d126e28459790e6ff4e87214221a2dce96fe1e9d 1 20 512 512 1 5 \N \N \N 5748 \N 53 102 5749 1 248 5 \N 0 \N \N \N \N 247 -120 \N 0.06570994140625 0.06570994140625 \N d4c97d71ace6863c5ef17024346cefe5f4a10314 1 5 512 512 1 3 \N \N \N 5748 \N 53 102 5750 1 247 5 \N 0 \N \N \N \N 249 -120 \N 0.007508292968750001 0.007508292968750001 \N 5213dc2e8868cfe4cd0028e555951c7381961295 1 1 512 512 1 1 \N \N \N 5748 \N 53 102 5750 1 249 5 \N 0 \N \N \N \N 250 -120 \N 0.06570994140625 0.06570994140625 \N 2112dd082f2b949cfbf7f81f16b254dc5f4164a6 1 20 512 512 1 1 \N \N \N 5748 \N 53 102 5750 1 250 5 \N 0 \N \N \N \N 252 -120 \N 0.053640488281249996 0.053640488281249996 \N a737f43bec72c8df09890f08b1fbff3e57244b16 1 20 512 512 1 5 \N \N \N 5770 \N 53 102 5771 1 252 5 \N 0 \N \N \N \N 251 -120 \N 0.053640488281249996 0.053640488281249996 \N 0486b91c65f354b1640df25b7e761bf5da93a1b6 1 5 512 512 1 3 \N \N \N 5770 \N 53 102 5772 1 251 5 \N 0 \N \N \N \N 253 -120 \N 0.007508292968750001 0.007508292968750001 \N 0554efb8887d40b87e4210874eef9a4be7a8e091 1 1 512 512 1 1 \N \N \N 5770 \N 53 102 5772 1 253 5 \N 0 \N \N \N \N 254 -120 \N 0.053640488281249996 0.053640488281249996 \N cb8020552b5f7b027017454f2fa0a81f3dada1ff 1 20 512 512 1 1 \N \N \N 5770 \N 53 102 5772 1 254 5 \N 0 \N \N \N \N 264 -120 \N 0.071073984374999996 0.071073984374999996 \N 7b423c30df07d9ad4d52f7393e662dc0f97b92f8 1 20 512 512 1 5 \N \N \N 5837 \N 53 102 5838 1 264 5 \N 0 \N \N \N \N 263 -120 \N 0.071073984374999996 0.071073984374999996 \N 6911877c4409dd72c77f078a4a417eaef52d5fed 1 5 512 512 1 3 \N \N \N 5837 \N 53 102 5840 1 263 5 \N 0 \N \N \N \N 265 -120 \N 0.0077498007812499999 0.0077498007812499999 \N a5f87b28f514da0ee9072f018bbb5785a1169635 1 1 512 512 1 1 \N \N \N 5837 \N 53 102 5840 1 265 5 \N 0 \N \N \N \N 260 -120 \N 0.059451796874999997 0.059451796874999997 \N 92a7ef9ca8f9a17907194115e81c4a5961555ade 1 20 512 512 1 5 \N \N \N 5814 \N 53 102 5815 1 260 5 \N 0 \N \N \N \N 259 -120 \N 0.059451796874999997 0.059451796874999997 \N 48dc3085febf30844ad97d48d87ad050c28b42ad 1 5 512 512 1 3 \N \N \N 5814 \N 53 102 5816 1 259 5 \N 0 \N \N \N \N 261 -120 \N 0.007508292968750001 0.007508292968750001 \N c66d1cae641c466f194552d769d110da3e772ca4 1 1 512 512 1 1 \N \N \N 5814 \N 53 102 5816 1 261 5 \N 0 \N \N \N \N 262 -120 \N 0.059451796874999997 0.059451796874999997 \N ab34ffbc702a9b07196f472d6fd1067c9507ed3a 1 20 512 512 1 1 \N \N \N 5814 \N 53 102 5816 1 262 5 \N 0 \N \N \N \N 266 -120 \N 0.071073984374999996 0.071073984374999996 \N 5cac2bdd1b7383e70020c47ad05ef640d130da90 1 20 512 512 1 1 \N \N \N 5837 \N 53 102 5840 1 266 5 \N 0 \N \N \N \N 268 -120 \N 0.060345898437499997 0.060345898437499997 \N ebf86c414f8ff4bddcf744c1236ac305f675a384 1 20 512 512 1 5 \N \N \N 5864 \N 53 102 5868 1 268 5 \N 0 \N \N \N \N \. -- -- Data for Name: pixelsannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY pixelsannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: pixelsoriginalfilemap; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY pixelsoriginalfilemap (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: pixelstype; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY pixelstype (id, bitsize, permissions, value, external_id) FROM stdin; 1 1 -52 bit \N 2 8 -52 int8 \N 5 8 -52 uint8 \N 3 16 -52 int16 \N 4 32 -52 int32 \N 6 32 -52 uint16 \N 7 32 -52 uint32 \N 8 32 -52 float \N 9 64 -52 double \N 10 64 -52 complex \N 11 128 -52 double-complex \N \. -- -- Data for Name: planeinfo; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY planeinfo (id, deltat, permissions, exposuretime, positionx, positiony, positionz, thec, thet, thez, version, creation_id, external_id, group_id, owner_id, update_id, pixels) FROM stdin; 3152 201.04299926757812 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 28 \N 1055 \N 3 2 1055 38 3153 50.25 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 7 \N 1055 \N 3 2 1055 38 3154 28.694999694824219 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 4 \N 1055 \N 3 2 1055 38 3155 172.35099983215332 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 24 \N 1055 \N 3 2 1055 38 3156 208.23099899291992 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 29 \N 1055 \N 3 2 1055 38 3157 165.19099998474121 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 23 \N 1055 \N 3 2 1055 38 3158 118.49300003051758 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 16 \N 1055 \N 3 2 1055 38 3159 179.51600074768066 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 25 \N 1055 \N 3 2 1055 38 3160 96.933000564575195 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 13 \N 1055 \N 3 2 1055 38 3161 114.92799949645996 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 16 \N 1055 \N 3 2 1055 38 3162 79 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 11 \N 1055 \N 3 2 1055 38 3163 122.12299919128418 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 17 \N 1055 \N 3 2 1055 38 3164 0 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 0 \N 1055 \N 3 2 1055 38 3165 168.74099922180176 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 23 \N 1055 \N 3 2 1055 38 3166 39.424999237060547 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 5 \N 1055 \N 3 2 1055 38 3167 75.378000259399414 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 10 \N 1055 \N 3 2 1055 38 3168 186.68599891662598 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 26 \N 1055 \N 3 2 1055 38 3169 111.30500030517578 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 15 \N 1055 \N 3 2 1055 38 3170 64.635000228881836 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 9 \N 1055 \N 3 2 1055 38 3171 82.559999465942383 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 11 \N 1055 \N 3 2 1055 38 3172 14.368000030517578 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 2 \N 1055 \N 3 2 1055 38 3173 222.60599899291992 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 31 \N 1055 \N 3 2 1055 38 3174 68.197999954223633 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 9 \N 1055 \N 3 2 1055 38 3175 107.74499893188477 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 15 \N 1055 \N 3 2 1055 38 3176 147.24799919128418 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 20 \N 1055 \N 3 2 1055 38 3177 57.447999954223633 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 8 \N 1055 \N 3 2 1055 38 3178 175.90099906921387 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 24 \N 1055 \N 3 2 1055 38 3179 140.06099891662598 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 19 \N 1055 \N 3 2 1055 38 3180 226.16600036621094 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 31 \N 1055 \N 3 2 1055 38 3181 100.5580005645752 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 14 \N 1055 \N 3 2 1055 38 3182 89.75 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 12 \N 1055 \N 3 2 1055 38 3183 190.25600051879883 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 26 \N 1055 \N 3 2 1055 38 3184 211.79800033569336 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 29 \N 1055 \N 3 2 1055 38 3185 154.4060001373291 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 21 \N 1055 \N 3 2 1055 38 3186 71.815000534057617 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 10 \N 1055 \N 3 2 1055 38 3187 35.875 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 5 \N 1055 \N 3 2 1055 38 3188 86.187999725341797 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 12 \N 1055 \N 3 2 1055 38 3189 104.11800003051758 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 14 \N 1055 \N 3 2 1055 38 3190 21.520000457763672 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 3 \N 1055 \N 3 2 1055 38 3191 183.0629997253418 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 25 \N 1055 \N 3 2 1055 38 3192 132.875 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 18 \N 1055 \N 3 2 1055 38 3193 17.914999008178711 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 2 \N 1055 \N 3 2 1055 38 3194 161.57799911499023 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 22 \N 1055 \N 3 2 1055 38 3195 150.85300064086914 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 21 \N 1055 \N 3 2 1055 38 3196 143.68099975585938 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 20 \N 1055 \N 3 2 1055 38 3197 125.68000030517578 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 17 \N 1055 \N 3 2 1055 38 3198 7.1849994659423828 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 1 \N 1055 \N 3 2 1055 38 3199 197.42600059509277 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 27 \N 1055 \N 3 2 1055 38 3200 43.067998886108398 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 6 \N 1055 \N 3 2 1055 38 3201 10.743000030517578 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 1 \N 1055 \N 3 2 1055 38 3202 193.87800025939941 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 27 \N 1055 \N 3 2 1055 38 3203 32.25 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 4 \N 1055 \N 3 2 1055 38 3204 25.072999954223633 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 3 \N 1055 \N 3 2 1055 38 3205 129.3129997253418 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 18 \N 1055 \N 3 2 1055 38 3206 53.809999465942383 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 7 \N 1055 \N 3 2 1055 38 3207 61.010000228881836 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 8 \N 1055 \N 3 2 1055 38 3208 93.37299919128418 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 13 \N 1055 \N 3 2 1055 38 3209 46.629999160766602 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 6 \N 1055 \N 3 2 1055 38 3210 215.42099952697754 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 30 \N 1055 \N 3 2 1055 38 3211 136.5049991607666 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 19 \N 1055 \N 3 2 1055 38 3212 3.5599994659423828 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 0 \N 1055 \N 3 2 1055 38 3213 218.98799896240234 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 30 \N 1055 \N 3 2 1055 38 3214 158.02599906921387 -40 \N 0.025769514104999999 0.0075543592284000004 0 0 0 22 \N 1055 \N 3 2 1055 38 3215 204.60300064086914 -40 \N 0.025769514104999999 0.0075543592284000004 0 1 0 28 \N 1055 \N 3 2 1055 38 3216 147.25 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 20 \N 1055 \N 3 2 1055 39 3217 89.745000839233398 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 12 \N 1055 \N 3 2 1055 39 3218 229.83799934387207 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 32 \N 1055 \N 3 2 1055 39 3219 14.368000030517578 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 2 \N 1055 \N 3 2 1055 39 3220 50.273000717163086 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 7 \N 1055 \N 3 2 1055 39 3221 140.07500076293945 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 19 \N 1055 \N 3 2 1055 39 3222 28.725000381469727 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 4 \N 1055 \N 3 2 1055 39 3223 215.45499992370605 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 30 \N 1055 \N 3 2 1055 39 3224 129.31999969482422 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 18 \N 1055 \N 3 2 1055 39 3225 179.57999992370605 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 25 \N 1055 \N 3 2 1055 39 3226 61.020000457763672 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 8 \N 1055 \N 3 2 1055 39 3227 111.31500053405762 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 15 \N 1055 \N 3 2 1055 39 3228 96.920000076293945 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 13 \N 1055 \N 3 2 1055 39 3229 3.5580005645751953 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 0 \N 1055 \N 3 2 1055 39 3230 150.86499977111816 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 21 \N 1055 \N 3 2 1055 39 3231 82.558000564575195 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 11 \N 1055 \N 3 2 1055 39 3232 154.42799949645996 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 21 \N 1055 \N 3 2 1055 39 3233 35.915000915527344 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 5 \N 1055 \N 3 2 1055 39 3234 32.290000915527344 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 4 \N 1055 \N 3 2 1055 39 3235 17.927999496459961 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 2 \N 1055 \N 3 2 1055 39 3236 86.190000534057617 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 12 \N 1055 \N 3 2 1055 39 3237 68.200000762939453 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 9 \N 1055 \N 3 2 1055 39 3238 10.738000869750977 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 1 \N 1055 \N 3 2 1055 39 3239 219.01499938964844 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 30 \N 1055 \N 3 2 1055 39 3240 0 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 0 \N 1055 \N 3 2 1055 39 3241 226.20800018310547 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 31 \N 1055 \N 3 2 1055 39 3242 186.7450008392334 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 26 \N 1055 \N 3 2 1055 39 3243 100.55500030517578 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 14 \N 1055 \N 3 2 1055 39 3244 211.82999992370605 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 29 \N 1055 \N 3 2 1055 39 3245 190.3080005645752 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 26 \N 1055 \N 3 2 1055 39 3246 197.47800064086914 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 27 \N 1055 \N 3 2 1055 39 3247 104.1200008392334 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 14 \N 1055 \N 3 2 1055 39 3248 132.89500045776367 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 18 \N 1055 \N 3 2 1055 39 3249 201.09499931335449 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 28 \N 1055 \N 3 2 1055 39 3250 114.94300079345703 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 16 \N 1055 \N 3 2 1055 39 3251 175.95499992370605 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 24 \N 1055 \N 3 2 1055 39 3252 204.65299987792969 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 28 \N 1055 \N 3 2 1055 39 3253 125.69499969482422 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 17 \N 1055 \N 3 2 1055 39 3254 136.51799964904785 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 19 \N 1055 \N 3 2 1055 39 3255 161.61499977111816 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 22 \N 1055 \N 3 2 1055 39 3256 53.835000991821289 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 7 \N 1055 \N 3 2 1055 39 3257 7.1749992370605469 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 1 \N 1055 \N 3 2 1055 39 3258 43.097999572753906 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 6 \N 1055 \N 3 2 1055 39 3259 79 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 11 \N 1055 \N 3 2 1055 39 3260 57.458000183105469 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 8 \N 1055 \N 3 2 1055 39 3261 222.64500045776367 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 31 \N 1055 \N 3 2 1055 39 3262 183.13000106811523 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 25 \N 1055 \N 3 2 1055 39 3263 21.548000335693359 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 3 \N 1055 \N 3 2 1055 39 3264 165.23800086975098 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 23 \N 1055 \N 3 2 1055 39 3265 64.63800048828125 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 9 \N 1055 \N 3 2 1055 39 3266 118.49800109863281 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 16 \N 1055 \N 3 2 1055 39 3267 107.75300025939941 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 15 \N 1055 \N 3 2 1055 39 3268 93.368000030517578 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 13 \N 1055 \N 3 2 1055 39 3269 122.12800025939941 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 17 \N 1055 \N 3 2 1055 39 3270 208.27499961853027 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 29 \N 1055 \N 3 2 1055 39 3271 25.104999542236328 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 3 \N 1055 \N 3 2 1055 39 3272 193.92799949645996 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 27 \N 1055 \N 3 2 1055 39 3273 75.382999420166016 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 10 \N 1055 \N 3 2 1055 39 3274 233.39999961853027 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 32 \N 1055 \N 3 2 1055 39 3275 46.648000717163086 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 6 \N 1055 \N 3 2 1055 39 3276 168.78300094604492 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 23 \N 1055 \N 3 2 1055 39 3277 158.05299949645996 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 22 \N 1055 \N 3 2 1055 39 3278 143.69300079345703 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 20 \N 1055 \N 3 2 1055 39 3279 172.39999961853027 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 24 \N 1055 \N 3 2 1055 39 3280 71.822999954223633 -40 \N 0.025602104673599999 0.0078048860952000003 0 0 0 10 \N 1055 \N 3 2 1055 39 3281 39.478000640869141 -40 \N 0.025602104673599999 0.0078048860952000003 0 1 0 5 \N 1055 \N 3 2 1055 39 3282 143.53499984741211 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 20 \N 1055 \N 3 2 1055 40 3283 208.11000061035156 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 29 \N 1055 \N 3 2 1055 40 3284 161.4330005645752 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 22 \N 1055 \N 3 2 1055 40 3285 96.864999771118164 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 13 \N 1055 \N 3 2 1055 40 3286 136.3799991607666 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 19 \N 1055 \N 3 2 1055 40 3287 122.00300025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 17 \N 1055 \N 3 2 1055 40 3288 107.65299987792969 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 15 \N 1055 \N 3 2 1055 40 3289 186.58799934387207 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 26 \N 1055 \N 3 2 1055 40 3290 100.48500061035156 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 14 \N 1055 \N 3 2 1055 40 3291 211.65799903869629 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 29 \N 1055 \N 3 2 1055 40 3292 10.737998962402344 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 1 \N 1055 \N 3 2 1055 40 3293 225.98799896240234 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 31 \N 1055 \N 3 2 1055 40 3294 86.152999877929688 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 12 \N 1055 \N 3 2 1055 40 3295 204.47500038146973 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 28 \N 1055 \N 3 2 1055 40 3296 14.354999542236328 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 2 \N 1055 \N 3 2 1055 40 3297 132.74300003051758 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 18 \N 1055 \N 3 2 1055 40 3298 175.78000068664551 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 24 \N 1055 \N 3 2 1055 40 3299 247.54999923706055 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 34 \N 1055 \N 3 2 1055 40 3300 35.892999649047852 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 5 \N 1055 \N 3 2 1055 40 3301 0 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 0 \N 1055 \N 3 2 1055 40 3302 114.82799911499023 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 16 \N 1055 \N 3 2 1055 40 3303 243.98999977111816 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 34 \N 1055 \N 3 2 1055 40 3304 68.190000534057617 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 9 \N 1055 \N 3 2 1055 40 3305 89.69999885559082 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 12 \N 1055 \N 3 2 1055 40 3306 93.302999496459961 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 13 \N 1055 \N 3 2 1055 40 3307 28.719999313354492 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 4 \N 1055 \N 3 2 1055 40 3308 218.82999992370605 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 30 \N 1055 \N 3 2 1055 40 3309 71.805000305175781 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 10 \N 1055 \N 3 2 1055 40 3310 236.79299926757812 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 33 \N 1055 \N 3 2 1055 40 3311 46.652999877929688 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 6 \N 1055 \N 3 2 1055 40 3312 7.1830005645751953 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 1 \N 1055 \N 3 2 1055 40 3313 215.28000068664551 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 30 \N 1055 \N 3 2 1055 40 3314 222.43499946594238 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 31 \N 1055 \N 3 2 1055 40 3315 147.08300018310547 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 20 \N 1055 \N 3 2 1055 40 3316 179.39800071716309 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 25 \N 1055 \N 3 2 1055 40 3317 21.542999267578125 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 3 \N 1055 \N 3 2 1055 40 3318 82.534999847412109 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 11 \N 1055 \N 3 2 1055 40 3319 150.69799995422363 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 21 \N 1055 \N 3 2 1055 40 3320 61.014999389648438 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 8 \N 1055 \N 3 2 1055 40 3321 50.277999877929688 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 7 \N 1055 \N 3 2 1055 40 3322 129.1830005645752 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 18 \N 1055 \N 3 2 1055 40 3323 251.15500068664551 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 35 \N 1055 \N 3 2 1055 40 3324 168.60799980163574 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 23 \N 1055 \N 3 2 1055 40 3325 64.635000228881836 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 9 \N 1055 \N 3 2 1055 40 3326 78.975000381469727 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 11 \N 1055 \N 3 2 1055 40 3327 193.76300048828125 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 27 \N 1055 \N 3 2 1055 40 3328 197.30999946594238 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 27 \N 1055 \N 3 2 1055 40 3329 229.60499954223633 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 32 \N 1055 \N 3 2 1055 40 3330 104.03999900817871 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 14 \N 1055 \N 3 2 1055 40 3331 39.459999084472656 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 5 \N 1055 \N 3 2 1055 40 3332 157.875 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 22 \N 1055 \N 3 2 1055 40 3333 182.95999908447266 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 25 \N 1055 \N 3 2 1055 40 3334 118.37800025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 16 \N 1055 \N 3 2 1055 40 3335 111.20800018310547 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 15 \N 1055 \N 3 2 1055 40 3336 57.465000152587891 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 8 \N 1055 \N 3 2 1055 40 3337 25.097999572753906 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 3 \N 1055 \N 3 2 1055 40 3338 32.277999877929688 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 4 \N 1055 \N 3 2 1055 40 3339 53.83799934387207 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 7 \N 1055 \N 3 2 1055 40 3340 254.70299911499023 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 35 \N 1055 \N 3 2 1055 40 3341 172.22800064086914 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 24 \N 1055 \N 3 2 1055 40 3342 125.5580005645752 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 17 \N 1055 \N 3 2 1055 40 3343 43.090000152587891 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 6 \N 1055 \N 3 2 1055 40 3344 139.9330005645752 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 19 \N 1055 \N 3 2 1055 40 3345 17.923000335693359 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 2 \N 1055 \N 3 2 1055 40 3346 3.5580005645751953 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 0 \N 1055 \N 3 2 1055 40 3347 200.92000007629395 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 28 \N 1055 \N 3 2 1055 40 3348 240.36499977111816 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 33 \N 1055 \N 3 2 1055 40 3349 190.15299987792969 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 26 \N 1055 \N 3 2 1055 40 3350 165.05299949645996 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 23 \N 1055 \N 3 2 1055 40 3351 75.354999542236328 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 10 \N 1055 \N 3 2 1055 40 3352 154.25300025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 21 \N 1055 \N 3 2 1055 40 3353 233.17000007629395 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 32 \N 1055 \N 3 2 1055 40 3354 28.677999496459961 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 4 \N 1055 \N 3 2 1055 41 3355 200.99799919128418 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 28 \N 1055 \N 3 2 1055 41 3356 71.770000457763672 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 10 \N 1055 \N 3 2 1055 41 3357 143.57299995422363 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 20 \N 1055 \N 3 2 1055 41 3358 179.48299980163574 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 25 \N 1055 \N 3 2 1055 41 3359 53.767999649047852 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 7 \N 1055 \N 3 2 1055 41 3360 0 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 0 \N 1055 \N 3 2 1055 41 3361 93.295000076293945 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 13 \N 1055 \N 3 2 1055 41 3362 147.12800025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 20 \N 1055 \N 3 2 1055 41 3363 132.77799987792969 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 18 \N 1055 \N 3 2 1055 41 3364 21.510000228881836 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 3 \N 1055 \N 3 2 1055 41 3365 165.11499977111816 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 23 \N 1055 \N 3 2 1055 41 3366 157.92799949645996 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 22 \N 1055 \N 3 2 1055 41 3367 129.21500015258789 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 18 \N 1055 \N 3 2 1055 41 3368 254.87800025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 35 \N 1055 \N 3 2 1055 41 3369 107.6299991607666 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 15 \N 1055 \N 3 2 1055 41 3370 265.65799903869629 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 37 \N 1055 \N 3 2 1055 41 3371 10.728000640869141 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 1 \N 1055 \N 3 2 1055 41 3372 14.353000640869141 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 2 \N 1055 \N 3 2 1055 41 3373 50.215000152587891 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 7 \N 1055 \N 3 2 1055 41 3374 89.680000305175781 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 12 \N 1055 \N 3 2 1055 41 3375 64.577999114990234 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 9 \N 1055 \N 3 2 1055 41 3376 247.6929988861084 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 34 \N 1055 \N 3 2 1055 41 3377 82.503000259399414 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 11 \N 1055 \N 3 2 1055 41 3378 104.0049991607666 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 14 \N 1055 \N 3 2 1055 41 3379 204.55999946594238 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 28 \N 1055 \N 3 2 1055 41 3380 172.29500007629395 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 24 \N 1055 \N 3 2 1055 41 3381 168.67799949645996 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 23 \N 1055 \N 3 2 1055 41 3382 7.167999267578125 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 1 \N 1055 \N 3 2 1055 41 3383 215.39799880981445 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 30 \N 1055 \N 3 2 1055 41 3384 154.29999923706055 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 21 \N 1055 \N 3 2 1055 41 3385 244.12800025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 34 \N 1055 \N 3 2 1055 41 3386 25.062999725341797 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 3 \N 1055 \N 3 2 1055 41 3387 17.899999618530273 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 2 \N 1055 \N 3 2 1055 41 3388 193.83499908447266 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 27 \N 1055 \N 3 2 1055 41 3389 111.19799995422363 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 15 \N 1055 \N 3 2 1055 41 3390 272.83499908447266 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 38 \N 1055 \N 3 2 1055 41 3391 122.02499961853027 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 17 \N 1055 \N 3 2 1055 41 3392 86.128000259399414 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 12 \N 1055 \N 3 2 1055 41 3393 46.590000152587891 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 6 \N 1055 \N 3 2 1055 41 3394 283.5629997253418 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 39 \N 1055 \N 3 2 1055 41 3395 211.7549991607666 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 29 \N 1055 \N 3 2 1055 41 3396 161.48299980163574 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 22 \N 1055 \N 3 2 1055 41 3397 96.847999572753906 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 13 \N 1055 \N 3 2 1055 41 3398 280.01300048828125 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 39 \N 1055 \N 3 2 1055 41 3399 118.3799991607666 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 16 \N 1055 \N 3 2 1055 41 3400 269.20999908447266 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 37 \N 1055 \N 3 2 1055 41 3401 39.423000335693359 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 5 \N 1055 \N 3 2 1055 41 3402 251.3179988861084 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 35 \N 1055 \N 3 2 1055 41 3403 35.864999771118164 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 5 \N 1055 \N 3 2 1055 41 3404 68.145000457763672 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 9 \N 1055 \N 3 2 1055 41 3405 136.39500045776367 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 19 \N 1055 \N 3 2 1055 41 3406 175.85799980163574 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 24 \N 1055 \N 3 2 1055 41 3407 240.5049991607666 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 33 \N 1055 \N 3 2 1055 41 3408 60.952999114990234 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 8 \N 1055 \N 3 2 1055 41 3409 78.944999694824219 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 11 \N 1055 \N 3 2 1055 41 3410 236.95499992370605 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 33 \N 1055 \N 3 2 1055 41 3411 226.15299987792969 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 31 \N 1055 \N 3 2 1055 41 3412 233.32999992370605 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 32 \N 1055 \N 3 2 1055 41 3413 125.57999992370605 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 17 \N 1055 \N 3 2 1055 41 3414 150.74799919128418 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 21 \N 1055 \N 3 2 1055 41 3415 222.58799934387207 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 31 \N 1055 \N 3 2 1055 41 3416 57.389999389648438 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 8 \N 1055 \N 3 2 1055 41 3417 139.95999908447266 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 19 \N 1055 \N 3 2 1055 41 3418 229.77799987792969 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 32 \N 1055 \N 3 2 1055 41 3419 32.235000610351562 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 4 \N 1055 \N 3 2 1055 41 3420 218.96299934387207 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 30 \N 1055 \N 3 2 1055 41 3421 114.81999969482422 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 16 \N 1055 \N 3 2 1055 41 3422 3.5529994964599609 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 0 \N 1055 \N 3 2 1055 41 3423 183.04800033569336 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 25 \N 1055 \N 3 2 1055 41 3424 100.45499992370605 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 14 \N 1055 \N 3 2 1055 41 3425 258.50300025939941 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 36 \N 1055 \N 3 2 1055 41 3426 197.38299942016602 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 27 \N 1055 \N 3 2 1055 41 3427 208.18499946594238 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 29 \N 1055 \N 3 2 1055 41 3428 276.38299942016602 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 38 \N 1055 \N 3 2 1055 41 3429 43.038000106811523 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 6 \N 1055 \N 3 2 1055 41 3430 186.67000007629395 -40 \N 0.0266198959794 0.0080160997277999996 0 0 0 26 \N 1055 \N 3 2 1055 41 3431 190.22500038146973 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 26 \N 1055 \N 3 2 1055 41 3432 75.329999923706055 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 10 \N 1055 \N 3 2 1055 41 3433 262.05299949645996 -40 \N 0.0266198959794 0.0080160997277999996 0 1 0 36 \N 1055 \N 3 2 1055 41 3434 64.722999572753906 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 9 \N 1055 \N 3 2 1055 42 3435 229.9330005645752 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 32 \N 1055 \N 3 2 1055 42 3436 104.2549991607666 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 14 \N 1055 \N 3 2 1055 42 3437 79.120000839233398 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 11 \N 1055 \N 3 2 1055 42 3438 125.80299949645996 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 17 \N 1055 \N 3 2 1055 42 3439 168.96000099182129 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 23 \N 1055 \N 3 2 1055 42 3440 204.82800102233887 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 28 \N 1055 \N 3 2 1055 42 3441 244.30299949645996 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 34 \N 1055 \N 3 2 1055 42 3442 129.43499946594238 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 18 \N 1055 \N 3 2 1055 42 3443 122.2450008392334 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 17 \N 1055 \N 3 2 1055 42 3444 46.722999572753906 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 6 \N 1055 \N 3 2 1055 42 3445 133.0049991607666 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 18 \N 1055 \N 3 2 1055 42 3446 201.28000068664551 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 28 \N 1055 \N 3 2 1055 42 3447 172.56999969482422 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 24 \N 1055 \N 3 2 1055 42 3448 154.54500007629395 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 21 \N 1055 \N 3 2 1055 42 3449 7.2199993133544922 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 1 \N 1055 \N 3 2 1055 42 3450 240.67799949645996 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 33 \N 1055 \N 3 2 1055 42 3451 100.69499969482422 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 14 \N 1055 \N 3 2 1055 42 3452 14.415000915527344 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 2 \N 1055 \N 3 2 1055 42 3453 176.13299942016602 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 24 \N 1055 \N 3 2 1055 42 3454 0 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 0 \N 1055 \N 3 2 1055 42 3455 158.19499969482422 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 22 \N 1055 \N 3 2 1055 42 3456 21.610000610351562 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 3 \N 1055 \N 3 2 1055 42 3457 251.48800086975098 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 35 \N 1055 \N 3 2 1055 42 3458 43.170000076293945 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 6 \N 1055 \N 3 2 1055 42 3459 280.19799995422363 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 39 \N 1055 \N 3 2 1055 42 3460 190.46999931335449 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 26 \N 1055 \N 3 2 1055 42 3461 111.43499946594238 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 15 \N 1055 \N 3 2 1055 42 3462 161.75300025939941 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 22 \N 1055 \N 3 2 1055 42 3463 140.18499946594238 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 19 \N 1055 \N 3 2 1055 42 3464 269.39800071716309 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 37 \N 1055 \N 3 2 1055 42 3465 165.39800071716309 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 23 \N 1055 \N 3 2 1055 42 3466 57.538000106811523 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 8 \N 1055 \N 3 2 1055 42 3467 3.5599994659423828 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 0 \N 1055 \N 3 2 1055 42 3468 237.11499977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 33 \N 1055 \N 3 2 1055 42 3469 75.489999771118164 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 10 \N 1055 \N 3 2 1055 42 3470 273.01300048828125 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 38 \N 1055 \N 3 2 1055 42 3471 35.98699951171875 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 5 \N 1055 \N 3 2 1055 42 3472 283.75799942016602 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 39 \N 1055 \N 3 2 1055 42 3473 10.777000427246094 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 1 \N 1055 \N 3 2 1055 42 3474 25.166999816894531 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 3 \N 1055 \N 3 2 1055 42 3475 89.860000610351562 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 12 \N 1055 \N 3 2 1055 42 3476 255.04800033569336 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 35 \N 1055 \N 3 2 1055 42 3477 39.541999816894531 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 5 \N 1055 \N 3 2 1055 42 3478 208.44000053405762 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 29 \N 1055 \N 3 2 1055 42 3479 50.353000640869141 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 7 \N 1055 \N 3 2 1055 42 3480 97.058000564575195 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 13 \N 1055 \N 3 2 1055 42 3481 136.62800025939941 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 19 \N 1055 \N 3 2 1055 42 3482 115.05999946594238 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 16 \N 1055 \N 3 2 1055 42 3483 68.280000686645508 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 9 \N 1055 \N 3 2 1055 42 3484 82.673000335693359 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 11 \N 1055 \N 3 2 1055 42 3485 143.80500030517578 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 20 \N 1055 \N 3 2 1055 42 3486 219.15500068664551 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 30 \N 1055 \N 3 2 1055 42 3487 93.488000869750977 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 13 \N 1055 \N 3 2 1055 42 3488 107.87800025939941 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 15 \N 1055 \N 3 2 1055 42 3489 226.31500053405762 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 31 \N 1055 \N 3 2 1055 42 3490 32.354999542236328 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 4 \N 1055 \N 3 2 1055 42 3491 183.29999923706055 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 25 \N 1055 \N 3 2 1055 42 3492 197.67300033569336 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 27 \N 1055 \N 3 2 1055 42 3493 194.09799957275391 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 27 \N 1055 \N 3 2 1055 42 3494 186.92300033569336 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 26 \N 1055 \N 3 2 1055 42 3495 86.298000335693359 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 12 \N 1055 \N 3 2 1055 42 3496 247.86800003051758 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 34 \N 1055 \N 3 2 1055 42 3497 28.790000915527344 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 4 \N 1055 \N 3 2 1055 42 3498 71.927999496459961 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 10 \N 1055 \N 3 2 1055 42 3499 262.22299957275391 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 36 \N 1055 \N 3 2 1055 42 3500 222.76499938964844 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 31 \N 1055 \N 3 2 1055 42 3501 118.61499977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 16 \N 1055 \N 3 2 1055 42 3502 17.985000610351562 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 2 \N 1055 \N 3 2 1055 42 3503 215.60300064086914 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 30 \N 1055 \N 3 2 1055 42 3504 233.48999977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 32 \N 1055 \N 3 2 1055 42 3505 258.66799926757812 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 36 \N 1055 \N 3 2 1055 42 3506 61.104999542236328 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 8 \N 1055 \N 3 2 1055 42 3507 276.57500076293945 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 38 \N 1055 \N 3 2 1055 42 3508 179.7450008392334 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 25 \N 1055 \N 3 2 1055 42 3509 53.908000946044922 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 7 \N 1055 \N 3 2 1055 42 3510 147.36499977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 20 \N 1055 \N 3 2 1055 42 3511 211.98800086975098 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 29 \N 1055 \N 3 2 1055 42 3512 265.84499931335449 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 37 \N 1055 \N 3 2 1055 42 3513 150.98999977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 21 \N 1055 \N 3 2 1055 42 3514 258.47800064086914 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 36 \N 1055 \N 3 2 1055 43 3515 218.96999931335449 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 30 \N 1055 \N 3 2 1055 43 3516 21.534999847412109 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 3 \N 1055 \N 3 2 1055 43 3517 147.17499923706055 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 20 \N 1055 \N 3 2 1055 43 3518 236.93499946594238 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 33 \N 1055 \N 3 2 1055 43 3519 161.52499961853027 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 22 \N 1055 \N 3 2 1055 43 3520 265.66300010681152 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 37 \N 1055 \N 3 2 1055 43 3521 46.649999618530273 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 6 \N 1055 \N 3 2 1055 43 3522 190.23699951171875 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 26 \N 1055 \N 3 2 1055 43 3523 93.370000839233398 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 13 \N 1055 \N 3 2 1055 43 3524 211.79800033569336 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 29 \N 1055 \N 3 2 1055 43 3525 240.49300003051758 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 33 \N 1055 \N 3 2 1055 43 3526 154.35199928283691 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 21 \N 1055 \N 3 2 1055 43 3527 64.656999588012695 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 9 \N 1055 \N 3 2 1055 43 3528 39.472000122070312 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 5 \N 1055 \N 3 2 1055 43 3529 262.04299926757812 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 36 \N 1055 \N 3 2 1055 43 3530 136.45000076293945 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 19 \N 1055 \N 3 2 1055 43 3531 100.53700065612793 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 14 \N 1055 \N 3 2 1055 43 3532 283.56800079345703 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 39 \N 1055 \N 3 2 1055 43 3533 43.097000122070312 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 6 \N 1055 \N 3 2 1055 43 3534 32.280000686645508 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 4 \N 1055 \N 3 2 1055 43 3535 114.90500068664551 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 16 \N 1055 \N 3 2 1055 43 3536 7.1849994659423828 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 1 \N 1055 \N 3 2 1055 43 3537 201.03499984741211 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 28 \N 1055 \N 3 2 1055 43 3538 71.847000122070312 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 10 \N 1055 \N 3 2 1055 43 3539 111.27000045776367 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 15 \N 1055 \N 3 2 1055 43 3540 53.844999313354492 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 7 \N 1055 \N 3 2 1055 43 3541 208.22999954223633 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 29 \N 1055 \N 3 2 1055 43 3542 50.280000686645508 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 7 \N 1055 \N 3 2 1055 43 3543 204.59799957275391 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 28 \N 1055 \N 3 2 1055 43 3544 229.75300025939941 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 32 \N 1055 \N 3 2 1055 43 3545 132.83699989318848 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 18 \N 1055 \N 3 2 1055 43 3546 107.70999908447266 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 15 \N 1055 \N 3 2 1055 43 3547 280.02000045776367 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 39 \N 1055 \N 3 2 1055 43 3548 25.104999542236328 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 3 \N 1055 \N 3 2 1055 43 3549 197.41699981689453 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 27 \N 1055 \N 3 2 1055 43 3550 3.5520000457763672 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 0 \N 1055 \N 3 2 1055 43 3551 254.86000061035156 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 35 \N 1055 \N 3 2 1055 43 3552 175.88199996948242 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 24 \N 1055 \N 3 2 1055 43 3553 79.047000885009766 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 11 \N 1055 \N 3 2 1055 43 3554 179.5049991607666 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 25 \N 1055 \N 3 2 1055 43 3555 35.906999588012695 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 5 \N 1055 \N 3 2 1055 43 3556 14.364999771118164 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 2 \N 1055 \N 3 2 1055 43 3557 129.28700065612793 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 18 \N 1055 \N 3 2 1055 43 3558 172.32699966430664 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 24 \N 1055 \N 3 2 1055 43 3559 104.09000015258789 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 14 \N 1055 \N 3 2 1055 43 3560 165.1569995880127 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 23 \N 1055 \N 3 2 1055 43 3561 118.46500015258789 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 16 \N 1055 \N 3 2 1055 43 3562 82.600000381469727 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 11 \N 1055 \N 3 2 1055 43 3563 0 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 0 \N 1055 \N 3 2 1055 43 3564 89.761999130249023 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 12 \N 1055 \N 3 2 1055 43 3565 17.91200065612793 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 2 \N 1055 \N 3 2 1055 43 3566 215.42000007629395 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 30 \N 1055 \N 3 2 1055 43 3567 269.21999931335449 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 37 \N 1055 \N 3 2 1055 43 3568 272.8430004119873 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 38 \N 1055 \N 3 2 1055 43 3569 222.57500076293945 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 31 \N 1055 \N 3 2 1055 43 3570 247.67799949645996 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 34 \N 1055 \N 3 2 1055 43 3571 168.71199989318848 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 23 \N 1055 \N 3 2 1055 43 3572 140.0049991607666 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 19 \N 1055 \N 3 2 1055 43 3573 122.09499931335449 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 17 \N 1055 \N 3 2 1055 43 3574 276.39999961853027 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 38 \N 1055 \N 3 2 1055 43 3575 157.96699905395508 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 22 \N 1055 \N 3 2 1055 43 3576 244.11800003051758 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 34 \N 1055 \N 3 2 1055 43 3577 251.30299949645996 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 35 \N 1055 \N 3 2 1055 43 3578 28.725000381469727 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 4 \N 1055 \N 3 2 1055 43 3579 183.05699920654297 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 25 \N 1055 \N 3 2 1055 43 3580 193.86199951171875 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 27 \N 1055 \N 3 2 1055 43 3581 96.922000885009766 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 13 \N 1055 \N 3 2 1055 43 3582 150.79500007629395 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 21 \N 1055 \N 3 2 1055 43 3583 86.215000152587891 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 12 \N 1055 \N 3 2 1055 43 3584 186.67499923706055 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 26 \N 1055 \N 3 2 1055 43 3585 233.3129997253418 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 32 \N 1055 \N 3 2 1055 43 3586 125.66500091552734 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 17 \N 1055 \N 3 2 1055 43 3587 68.216999053955078 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 9 \N 1055 \N 3 2 1055 43 3588 75.402000427246094 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 10 \N 1055 \N 3 2 1055 43 3589 57.492000579833984 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 8 \N 1055 \N 3 2 1055 43 3590 143.6200008392334 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 20 \N 1055 \N 3 2 1055 43 3591 61.040000915527344 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 8 \N 1055 \N 3 2 1055 43 3592 226.125 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 31 \N 1055 \N 3 2 1055 43 3593 10.745000839233398 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 1 \N 1055 \N 3 2 1055 43 4954 225.60500144958496 -40 \N \N \N \N 1 0 31 \N 1614 \N 3 2 1614 61 4955 107.45000076293945 -40 \N \N \N \N 0 0 15 \N 1614 \N 3 2 1614 61 4956 128.93800163269043 -40 \N \N \N \N 0 0 18 \N 1614 \N 3 2 1614 61 4957 43 -40 \N \N \N \N 0 0 6 \N 1614 \N 3 2 1614 61 4958 39.381999969482422 -40 \N \N \N \N 1 0 5 \N 1614 \N 3 2 1614 61 4959 171.90800094604492 -40 \N \N \N \N 0 0 24 \N 1614 \N 3 2 1614 61 4960 118.16500091552734 -40 \N \N \N \N 1 0 16 \N 1614 \N 3 2 1614 61 4961 200.55000114440918 -40 \N \N \N \N 0 0 28 \N 1614 \N 3 2 1614 61 4962 236.39500045776367 -40 \N \N \N \N 0 0 33 \N 1614 \N 3 2 1614 61 4963 57.302000045776367 -40 \N \N \N \N 0 0 8 \N 1614 \N 3 2 1614 61 4964 64.460000991821289 -40 \N \N \N \N 0 0 9 \N 1614 \N 3 2 1614 61 4965 3.5500011444091797 -40 \N \N \N \N 1 0 0 \N 1614 \N 3 2 1614 61 4966 139.64800071716309 -40 \N \N \N \N 1 0 19 \N 1614 \N 3 2 1614 61 4967 60.852001190185547 -40 \N \N \N \N 1 0 8 \N 1614 \N 3 2 1614 61 4968 218.44300079345703 -40 \N \N \N \N 1 0 30 \N 1614 \N 3 2 1614 61 4969 161.13800048828125 -40 \N \N \N \N 1 0 22 \N 1614 \N 3 2 1614 61 4970 17.902000427246094 -40 \N \N \N \N 1 0 2 \N 1614 \N 3 2 1614 61 4971 175.4630012512207 -40 \N \N \N \N 1 0 24 \N 1614 \N 3 2 1614 61 4972 261.42500114440918 -40 \N \N \N \N 1 0 36 \N 1614 \N 3 2 1614 61 4973 247.11300086975098 -40 \N \N \N \N 1 0 34 \N 1614 \N 3 2 1614 61 4974 -12980533759.233999 -40 \N \N \N \N 0 0 38 \N 1614 \N 3 2 1614 61 4975 78.815000534057617 -40 \N \N \N \N 0 0 11 \N 1614 \N 3 2 1614 61 4976 68.012001037597656 -40 \N \N \N \N 1 0 9 \N 1614 \N 3 2 1614 61 4977 179.07999992370605 -40 \N \N \N \N 0 0 25 \N 1614 \N 3 2 1614 61 4978 143.27300071716309 -40 \N \N \N \N 0 0 20 \N 1614 \N 3 2 1614 61 4979 265.03800010681152 -40 \N \N \N \N 0 0 37 \N 1614 \N 3 2 1614 61 3594 258.54800033569336 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 36 \N 1118 \N 3 2 1118 44 3595 50.269998550415039 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 7 \N 1118 \N 3 2 1118 44 3596 201.11499977111816 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 28 \N 1118 \N 3 2 1118 44 3597 68.174999237060547 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 9 \N 1118 \N 3 2 1118 44 3598 186.7549991607666 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 26 \N 1118 \N 3 2 1118 44 3599 190.3179988861084 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 26 \N 1118 \N 3 2 1118 44 3600 132.82799911499023 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 18 \N 1118 \N 3 2 1118 44 3601 139.99300003051758 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 19 \N 1118 \N 3 2 1118 44 3602 143.61999893188477 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 20 \N 1118 \N 3 2 1118 44 3603 136.4429988861084 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 19 \N 1118 \N 3 2 1118 44 3604 175.9429988861084 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 24 \N 1118 \N 3 2 1118 44 3605 247.74499893188477 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 34 \N 1118 \N 3 2 1118 44 3606 39.504999160766602 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 5 \N 1118 \N 3 2 1118 44 3607 35.94999885559082 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 5 \N 1118 \N 3 2 1118 44 3608 53.821998596191406 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 7 \N 1118 \N 3 2 1118 44 3609 86.167999267578125 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 12 \N 1118 \N 3 2 1118 44 3610 122.09799957275391 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 17 \N 1118 \N 3 2 1118 44 3611 237.01999855041504 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 33 \N 1118 \N 3 2 1118 44 3612 251.375 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 35 \N 1118 \N 3 2 1118 44 3613 158.00799942016602 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 22 \N 1118 \N 3 2 1118 44 3614 96.934999465942383 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 13 \N 1118 \N 3 2 1118 44 3615 21.552000045776367 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 3 \N 1118 \N 3 2 1118 44 3616 75.36199951171875 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 10 \N 1118 \N 3 2 1118 44 3617 60.994998931884766 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 8 \N 1118 \N 3 2 1118 44 3618 193.9379997253418 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 27 \N 1118 \N 3 2 1118 44 3619 147.17300033569336 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 20 \N 1118 \N 3 2 1118 44 3620 0 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 0 \N 1118 \N 3 2 1118 44 3621 226.21299934387207 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 31 \N 1118 \N 3 2 1118 44 3622 262.09299850463867 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 36 \N 1118 \N 3 2 1118 44 3623 165.18999862670898 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 23 \N 1118 \N 3 2 1118 44 3624 197.5 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 27 \N 1118 \N 3 2 1118 44 3625 161.57299995422363 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 22 \N 1118 \N 3 2 1118 44 3626 93.368000030517578 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 13 \N 1118 \N 3 2 1118 44 3627 215.47299957275391 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 30 \N 1118 \N 3 2 1118 44 3628 3.5569992065429688 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 0 \N 1118 \N 3 2 1118 44 3629 111.30799865722656 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 15 \N 1118 \N 3 2 1118 44 3630 78.982999801635742 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 11 \N 1118 \N 3 2 1118 44 3631 229.82799911499023 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 32 \N 1118 \N 3 2 1118 44 3632 25.11199951171875 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 3 \N 1118 \N 3 2 1118 44 3633 82.548000335693359 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 11 \N 1118 \N 3 2 1118 44 3634 14.366998672485352 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 2 \N 1118 \N 3 2 1118 44 3635 211.84499931335449 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 29 \N 1118 \N 3 2 1118 44 3636 57.439998626708984 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 8 \N 1118 \N 3 2 1118 44 3637 107.74799919128418 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 15 \N 1118 \N 3 2 1118 44 3638 154.38299942016602 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 21 \N 1118 \N 3 2 1118 44 3639 240.57799911499023 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 33 \N 1118 \N 3 2 1118 44 3640 254.9379997253418 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 35 \N 1118 \N 3 2 1118 44 3641 233.39299964904785 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 32 \N 1118 \N 3 2 1118 44 3642 32.306999206542969 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 4 \N 1118 \N 3 2 1118 44 3643 43.116998672485352 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 6 \N 1118 \N 3 2 1118 44 3644 150.80999946594238 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 21 \N 1118 \N 3 2 1118 44 3645 7.1819992065429688 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 1 \N 1118 \N 3 2 1118 44 3646 129.27299880981445 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 18 \N 1118 \N 3 2 1118 44 3647 46.661998748779297 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 6 \N 1118 \N 3 2 1118 44 3648 17.930000305175781 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 2 \N 1118 \N 3 2 1118 44 3649 168.74300003051758 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 23 \N 1118 \N 3 2 1118 44 3650 125.64799880981445 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 17 \N 1118 \N 3 2 1118 44 3651 89.737998962402344 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 12 \N 1118 \N 3 2 1118 44 3652 114.92499923706055 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 16 \N 1118 \N 3 2 1118 44 3653 244.1929988861084 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 34 \N 1118 \N 3 2 1118 44 3654 219.03499984741211 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 30 \N 1118 \N 3 2 1118 44 3655 118.48299980163574 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 16 \N 1118 \N 3 2 1118 44 3656 208.28800010681152 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 29 \N 1118 \N 3 2 1118 44 3657 104.12299919128418 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 14 \N 1118 \N 3 2 1118 44 3658 64.625 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 9 \N 1118 \N 3 2 1118 44 3659 100.56999969482422 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 14 \N 1118 \N 3 2 1118 44 3660 71.806999206542969 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 10 \N 1118 \N 3 2 1118 44 3661 183.12800025939941 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 25 \N 1118 \N 3 2 1118 44 3662 179.57499885559082 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 25 \N 1118 \N 3 2 1118 44 3663 222.65999984741211 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 31 \N 1118 \N 3 2 1118 44 3664 10.746999740600586 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 1 \N 1118 \N 3 2 1118 44 3665 172.37299919128418 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 24 \N 1118 \N 3 2 1118 44 3666 204.66799926757812 -40 \N 0.046351823141400003 0.0045577096787999998 0 1 0 28 \N 1118 \N 3 2 1118 44 3667 28.744998931884766 -40 \N 0.046351823141400003 0.0045577096787999998 0 0 0 4 \N 1118 \N 3 2 1118 44 3668 122.10499954223633 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 17 \N 1118 \N 3 2 1118 45 3669 233.34499931335449 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 32 \N 1118 \N 3 2 1118 45 3670 262.04800033569336 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 36 \N 1118 \N 3 2 1118 45 3671 208.29299926757812 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 29 \N 1118 \N 3 2 1118 45 3672 247.67300033569336 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 34 \N 1118 \N 3 2 1118 45 3673 201.11499977111816 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 28 \N 1118 \N 3 2 1118 45 3674 254.86800003051758 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 35 \N 1118 \N 3 2 1118 45 3675 211.85299873352051 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 29 \N 1118 \N 3 2 1118 45 3676 64.607999801635742 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 9 \N 1118 \N 3 2 1118 45 3677 100.54999923706055 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 14 \N 1118 \N 3 2 1118 45 3678 39.46299934387207 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 5 \N 1118 \N 3 2 1118 45 3679 283.59799957275391 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 39 \N 1118 \N 3 2 1118 45 3680 93.369998931884766 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 13 \N 1118 \N 3 2 1118 45 3681 32.302999496459961 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 4 \N 1118 \N 3 2 1118 45 3682 244.11999893188477 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 34 \N 1118 \N 3 2 1118 45 3683 193.94499969482422 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 27 \N 1118 \N 3 2 1118 45 3684 272.85299873352051 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 38 \N 1118 \N 3 2 1118 45 3685 294.41300010681152 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 41 \N 1118 \N 3 2 1118 45 3686 14.379999160766602 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 2 \N 1118 \N 3 2 1118 45 3687 290.78299903869629 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 40 \N 1118 \N 3 2 1118 45 3688 297.97299957275391 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 41 \N 1118 \N 3 2 1118 45 3689 168.77799987792969 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 23 \N 1118 \N 3 2 1118 45 3690 190.3179988861084 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 26 \N 1118 \N 3 2 1118 45 3691 107.73299980163574 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 15 \N 1118 \N 3 2 1118 45 3692 53.809999465942383 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 7 \N 1118 \N 3 2 1118 45 3693 0 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 0 \N 1118 \N 3 2 1118 45 3694 111.28800010681152 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 15 \N 1118 \N 3 2 1118 45 3695 280.03499984741211 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 39 \N 1118 \N 3 2 1118 45 3696 17.934999465942383 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 2 \N 1118 \N 3 2 1118 45 3697 172.39500045776367 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 24 \N 1118 \N 3 2 1118 45 3698 43.083000183105469 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 6 \N 1118 \N 3 2 1118 45 3699 179.57299995422363 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 25 \N 1118 \N 3 2 1118 45 3700 154.38800048828125 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 21 \N 1118 \N 3 2 1118 45 3701 150.83499908447266 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 21 \N 1118 \N 3 2 1118 45 3702 204.67499923706055 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 28 \N 1118 \N 3 2 1118 45 3703 3.5629997253417969 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 0 \N 1118 \N 3 2 1118 45 3704 251.29999923706055 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 35 \N 1118 \N 3 2 1118 45 3705 287.22299957275391 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 40 \N 1118 \N 3 2 1118 45 3706 222.63800048828125 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 31 \N 1118 \N 3 2 1118 45 3707 86.177999496459961 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 12 \N 1118 \N 3 2 1118 45 3708 186.76000022888184 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 26 \N 1118 \N 3 2 1118 45 3709 197.49799919128418 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 27 \N 1118 \N 3 2 1118 45 3710 219.02499961853027 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 30 \N 1118 \N 3 2 1118 45 3711 132.86299896240234 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 18 \N 1118 \N 3 2 1118 45 3712 96.934999465942383 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 13 \N 1118 \N 3 2 1118 45 3713 46.63800048828125 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 6 \N 1118 \N 3 2 1118 45 3714 136.48499870300293 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 19 \N 1118 \N 3 2 1118 45 3715 125.65799903869629 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 17 \N 1118 \N 3 2 1118 45 3716 158.02499961853027 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 22 \N 1118 \N 3 2 1118 45 3717 25.128000259399414 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 3 \N 1118 \N 3 2 1118 45 3718 75.357999801635742 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 10 \N 1118 \N 3 2 1118 45 3719 21.565000534057617 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 3 \N 1118 \N 3 2 1118 45 3720 269.22999954223633 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 37 \N 1118 \N 3 2 1118 45 3721 68.167999267578125 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 9 \N 1118 \N 3 2 1118 45 3722 236.95499992370605 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 33 \N 1118 \N 3 2 1118 45 3723 50.260000228881836 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 7 \N 1118 \N 3 2 1118 45 3724 7.1849994659423828 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 1 \N 1118 \N 3 2 1118 45 3725 276.41300010681152 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 38 \N 1118 \N 3 2 1118 45 3726 78.989999771118164 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 11 \N 1118 \N 3 2 1118 45 3727 226.1879997253418 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 31 \N 1118 \N 3 2 1118 45 3728 229.78999900817871 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 32 \N 1118 \N 3 2 1118 45 3729 265.67799949645996 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 37 \N 1118 \N 3 2 1118 45 3730 161.58300018310547 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 22 \N 1118 \N 3 2 1118 45 3731 60.969999313354492 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 8 \N 1118 \N 3 2 1118 45 3732 240.50799942016602 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 33 \N 1118 \N 3 2 1118 45 3733 71.795000076293945 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 10 \N 1118 \N 3 2 1118 45 3734 129.30999946594238 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 18 \N 1118 \N 3 2 1118 45 3735 10.74799919128418 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 1 \N 1118 \N 3 2 1118 45 3736 143.64999961853027 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 20 \N 1118 \N 3 2 1118 45 3737 175.94999885559082 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 24 \N 1118 \N 3 2 1118 45 3738 165.20800018310547 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 23 \N 1118 \N 3 2 1118 45 3739 215.47500038146973 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 30 \N 1118 \N 3 2 1118 45 3740 140.03800010681152 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 19 \N 1118 \N 3 2 1118 45 3741 104.10499954223633 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 14 \N 1118 \N 3 2 1118 45 3742 28.753000259399414 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 4 \N 1118 \N 3 2 1118 45 3743 114.91799926757812 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 16 \N 1118 \N 3 2 1118 45 3744 82.548000335693359 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 11 \N 1118 \N 3 2 1118 45 3745 258.49499893188477 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 36 \N 1118 \N 3 2 1118 45 3746 183.13299942016602 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 25 \N 1118 \N 3 2 1118 45 3747 147.20999908447266 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 20 \N 1118 \N 3 2 1118 45 3748 35.907999038696289 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 5 \N 1118 \N 3 2 1118 45 3749 57.417999267578125 -40 \N 0.046280934954599999 0.0047419084176000001 0 0 0 8 \N 1118 \N 3 2 1118 45 3750 89.732999801635742 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 12 \N 1118 \N 3 2 1118 45 3751 118.47500038146973 -40 \N 0.046280934954599999 0.0047419084176000001 0 1 0 16 \N 1118 \N 3 2 1118 45 3752 32.334999084472656 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 4 \N 1118 \N 3 2 1118 46 3753 326.87299919128418 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 45 \N 1118 \N 3 2 1118 46 3754 183.22799873352051 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 25 \N 1118 \N 3 2 1118 46 4980 0 -40 \N \N \N \N 0 0 0 \N 1614 \N 3 2 1614 61 4981 189.77000045776367 -40 \N \N \N \N 1 0 26 \N 1614 \N 3 2 1614 61 4982 257.88500022888184 -40 \N \N \N \N 0 0 36 \N 1614 \N 3 2 1614 61 4983 50.152000427246094 -40 \N \N \N \N 0 0 7 \N 1614 \N 3 2 1614 61 4984 7.1700000762939453 -40 \N \N \N \N 0 0 1 \N 1614 \N 3 2 1614 61 4985 71.650001525878906 -40 \N \N \N \N 0 0 10 \N 1614 \N 3 2 1614 61 4986 89.527999877929688 -40 \N \N \N \N 1 0 12 \N 1614 \N 3 2 1614 61 4987 103.84000015258789 -40 \N \N \N \N 1 0 14 \N 1614 \N 3 2 1614 61 4988 186.22500038146973 -40 \N \N \N \N 0 0 26 \N 1614 \N 3 2 1614 61 4989 96.678001403808594 -40 \N \N \N \N 1 0 13 \N 1614 \N 3 2 1614 61 4990 268.5930004119873 -40 \N \N \N \N 1 0 37 \N 1614 \N 3 2 1614 61 4991 93.128000259399414 -40 \N \N \N \N 0 0 13 \N 1614 \N 3 2 1614 61 4992 -12980533759.233999 -40 \N \N \N \N 1 0 38 \N 1614 \N 3 2 1614 61 4993 85.980001449584961 -40 \N \N \N \N 0 0 12 \N 1614 \N 3 2 1614 61 4994 157.58300018310547 -40 \N \N \N \N 0 0 22 \N 1614 \N 3 2 1614 61 4995 25.075000762939453 -40 \N \N \N \N 1 0 3 \N 1614 \N 3 2 1614 61 4996 100.29000091552734 -40 \N \N \N \N 0 0 14 \N 1614 \N 3 2 1614 61 4997 132.48000144958496 -40 \N \N \N \N 1 0 18 \N 1614 \N 3 2 1614 61 4998 21.51500129699707 -40 \N \N \N \N 0 0 3 \N 1614 \N 3 2 1614 61 4999 222.05500030517578 -40 \N \N \N \N 0 0 31 \N 1614 \N 3 2 1614 61 5000 10.732000350952148 -40 \N \N \N \N 1 0 1 \N 1614 \N 3 2 1614 61 5001 250.72500038146973 -40 \N \N \N \N 0 0 35 \N 1614 \N 3 2 1614 61 5002 229.23800086975098 -40 \N \N \N \N 0 0 32 \N 1614 \N 3 2 1614 61 5003 207.7130012512207 -40 \N \N \N \N 0 0 29 \N 1614 \N 3 2 1614 61 5004 136.09800148010254 -40 \N \N \N \N 0 0 19 \N 1614 \N 3 2 1614 61 5005 14.352001190185547 -40 \N \N \N \N 0 0 2 \N 1614 \N 3 2 1614 61 5006 193.38300132751465 -40 \N \N \N \N 0 0 27 \N 1614 \N 3 2 1614 61 5007 153.97000122070312 -40 \N \N \N \N 1 0 21 \N 1614 \N 3 2 1614 61 5008 211.27300071716309 -40 \N \N \N \N 1 0 29 \N 1614 \N 3 2 1614 61 5009 121.78000068664551 -40 \N \N \N \N 0 0 17 \N 1614 \N 3 2 1614 61 5010 254.27300071716309 -40 \N \N \N \N 1 0 35 \N 1614 \N 3 2 1614 61 5011 35.835000991821289 -40 \N \N \N \N 0 0 5 \N 1614 \N 3 2 1614 61 5012 53.697000503540039 -40 \N \N \N \N 1 0 7 \N 1614 \N 3 2 1614 61 5013 239.95000076293945 -40 \N \N \N \N 1 0 33 \N 1614 \N 3 2 1614 61 5014 114.60799980163574 -40 \N \N \N \N 0 0 16 \N 1614 \N 3 2 1614 61 5015 28.685001373291016 -40 \N \N \N \N 0 0 4 \N 1614 \N 3 2 1614 61 5016 75.203001022338867 -40 \N \N \N \N 1 0 10 \N 1614 \N 3 2 1614 61 5017 82.357999801635742 -40 \N \N \N \N 1 0 11 \N 1614 \N 3 2 1614 61 5018 146.81300163269043 -40 \N \N \N \N 1 0 20 \N 1614 \N 3 2 1614 61 5019 232.78499984741211 -40 \N \N \N \N 1 0 32 \N 1614 \N 3 2 1614 61 5020 110.99300003051758 -40 \N \N \N \N 1 0 15 \N 1614 \N 3 2 1614 61 5021 150.42300033569336 -40 \N \N \N \N 0 0 21 \N 1614 \N 3 2 1614 61 5022 164.74800109863281 -40 \N \N \N \N 0 0 23 \N 1614 \N 3 2 1614 61 5023 32.225000381469727 -40 \N \N \N \N 1 0 4 \N 1614 \N 3 2 1614 61 5024 182.61300086975098 -40 \N \N \N \N 1 0 25 \N 1614 \N 3 2 1614 61 5025 196.93000030517578 -40 \N \N \N \N 1 0 27 \N 1614 \N 3 2 1614 61 5026 125.33300018310547 -40 \N \N \N \N 1 0 17 \N 1614 \N 3 2 1614 61 5027 204.10500144958496 -40 \N \N \N \N 1 0 28 \N 1614 \N 3 2 1614 61 5028 168.29000091552734 -40 \N \N \N \N 1 0 23 \N 1614 \N 3 2 1614 61 5029 243.56500053405762 -40 \N \N \N \N 0 0 34 \N 1614 \N 3 2 1614 61 5030 46.545000076293945 -40 \N \N \N \N 1 0 6 \N 1614 \N 3 2 1614 61 5031 214.89300155639648 -40 \N \N \N \N 0 0 30 \N 1614 \N 3 2 1614 61 5032 118.11100006103516 -40 \N \N \N \N 1 0 16 \N 1614 \N 3 2 1614 62 5033 14.348001480102539 -40 \N \N \N \N 0 0 2 \N 1614 \N 3 2 1614 62 5034 96.635000228881836 -40 \N \N \N \N 1 0 13 \N 1614 \N 3 2 1614 62 5035 10.738000869750977 -40 \N \N \N \N 1 0 1 \N 1614 \N 3 2 1614 62 5036 175.3960018157959 -40 \N \N \N \N 1 0 24 \N 1614 \N 3 2 1614 62 5037 161.06300163269043 -40 \N \N \N \N 1 0 22 \N 1614 \N 3 2 1614 62 5038 132.42600059509277 -40 \N \N \N \N 1 0 18 \N 1614 \N 3 2 1614 62 5039 157.51800155639648 -40 \N \N \N \N 0 0 22 \N 1614 \N 3 2 1614 62 5040 0 -40 \N \N \N \N 0 0 0 \N 1614 \N 3 2 1614 62 5041 186.17100143432617 -40 \N \N \N \N 0 0 26 \N 1614 \N 3 2 1614 62 5042 93.088001251220703 -40 \N \N \N \N 0 0 13 \N 1614 \N 3 2 1614 62 5043 125.26800155639648 -40 \N \N \N \N 1 0 17 \N 1614 \N 3 2 1614 62 5044 42.970001220703125 -40 \N \N \N \N 0 0 6 \N 1614 \N 3 2 1614 62 5045 214.78600120544434 -40 \N \N \N \N 0 0 30 \N 1614 \N 3 2 1614 62 5046 150.35600090026855 -40 \N \N \N \N 0 0 21 \N 1614 \N 3 2 1614 62 5047 136.03800010681152 -40 \N \N \N \N 0 0 19 \N 1614 \N 3 2 1614 62 5048 211.17300033569336 -40 \N \N \N \N 1 0 29 \N 1614 \N 3 2 1614 62 5049 50.125 -40 \N \N \N \N 0 0 7 \N 1614 \N 3 2 1614 62 5050 21.505001068115234 -40 \N \N \N \N 0 0 3 \N 1614 \N 3 2 1614 62 5051 82.303001403808594 -40 \N \N \N \N 1 0 11 \N 1614 \N 3 2 1614 62 5052 196.88100051879883 -40 \N \N \N \N 1 0 27 \N 1614 \N 3 2 1614 62 5053 7.1880016326904297 -40 \N \N \N \N 0 0 1 \N 1614 \N 3 2 1614 62 5054 204.02800178527832 -40 \N \N \N \N 1 0 28 \N 1614 \N 3 2 1614 62 5055 110.95600128173828 -40 \N \N \N \N 1 0 15 \N 1614 \N 3 2 1614 62 5056 128.87300109863281 -40 \N \N \N \N 0 0 18 \N 1614 \N 3 2 1614 62 5057 103.80600166320801 -40 \N \N \N \N 1 0 14 \N 1614 \N 3 2 1614 62 5058 3.5600013732910156 -40 \N \N \N \N 1 0 0 \N 1614 \N 3 2 1614 62 5059 179.00600051879883 -40 \N \N \N \N 0 0 25 \N 1614 \N 3 2 1614 62 5060 78.75 -40 \N \N \N \N 0 0 11 \N 1614 \N 3 2 1614 62 5061 57.285001754760742 -40 \N \N \N \N 0 0 8 \N 1614 \N 3 2 1614 62 5062 221.93800163269043 -40 \N \N \N \N 0 0 31 \N 1614 \N 3 2 1614 62 5063 53.67500114440918 -40 \N \N \N \N 1 0 7 \N 1614 \N 3 2 1614 62 5064 25.048000335693359 -40 \N \N \N \N 1 0 3 \N 1614 \N 3 2 1614 62 5065 164.66300010681152 -40 \N \N \N \N 0 0 23 \N 1614 \N 3 2 1614 62 5066 32.195001602172852 -40 \N \N \N \N 1 0 4 \N 1614 \N 3 2 1614 62 5067 153.90800094604492 -40 \N \N \N \N 1 0 21 \N 1614 \N 3 2 1614 62 5068 182.5580005645752 -40 \N \N \N \N 1 0 25 \N 1614 \N 3 2 1614 62 5069 114.56599998474121 -40 \N \N \N \N 0 0 16 \N 1614 \N 3 2 1614 62 5070 139.59100151062012 -40 \N \N \N \N 1 0 19 \N 1614 \N 3 2 1614 62 5071 207.62800025939941 -40 \N \N \N \N 0 0 29 \N 1614 \N 3 2 1614 62 5072 168.21100044250488 -40 \N \N \N \N 1 0 23 \N 1614 \N 3 2 1614 62 5073 17.893001556396484 -40 \N \N \N \N 1 0 2 \N 1614 \N 3 2 1614 62 5074 143.20300102233887 -40 \N \N \N \N 0 0 20 \N 1614 \N 3 2 1614 62 5075 85.92500114440918 -40 \N \N \N \N 0 0 12 \N 1614 \N 3 2 1614 62 5076 200.48800086975098 -40 \N \N \N \N 0 0 28 \N 1614 \N 3 2 1614 62 5077 35.808000564575195 -40 \N \N \N \N 0 0 5 \N 1614 \N 3 2 1614 62 5078 60.835000991821289 -40 \N \N \N \N 1 0 8 \N 1614 \N 3 2 1614 62 5079 225.48100090026855 -40 \N \N \N \N 1 0 31 \N 1614 \N 3 2 1614 62 5080 89.478000640869141 -40 \N \N \N \N 1 0 12 \N 1614 \N 3 2 1614 62 5081 71.605001449584961 -40 \N \N \N \N 0 0 10 \N 1614 \N 3 2 1614 62 5082 189.7130012512207 -40 \N \N \N \N 1 0 26 \N 1614 \N 3 2 1614 62 5083 121.72300148010254 -40 \N \N \N \N 0 0 17 \N 1614 \N 3 2 1614 62 5084 171.83600044250488 -40 \N \N \N \N 0 0 24 \N 1614 \N 3 2 1614 62 5085 28.65300178527832 -40 \N \N \N \N 0 0 4 \N 1614 \N 3 2 1614 62 5086 193.33100128173828 -40 \N \N \N \N 0 0 27 \N 1614 \N 3 2 1614 62 5087 64.448001861572266 -40 \N \N \N \N 0 0 9 \N 1614 \N 3 2 1614 62 5088 218.33100128173828 -40 \N \N \N \N 1 0 30 \N 1614 \N 3 2 1614 62 5089 75.145000457763672 -40 \N \N \N \N 1 0 10 \N 1614 \N 3 2 1614 62 5090 146.74300003051758 -40 \N \N \N \N 1 0 20 \N 1614 \N 3 2 1614 62 5091 39.358001708984375 -40 \N \N \N \N 1 0 5 \N 1614 \N 3 2 1614 62 5092 46.51500129699707 -40 \N \N \N \N 1 0 6 \N 1614 \N 3 2 1614 62 5093 100.25300025939941 -40 \N \N \N \N 0 0 14 \N 1614 \N 3 2 1614 62 5094 67.995000839233398 -40 \N \N \N \N 1 0 9 \N 1614 \N 3 2 1614 62 5095 107.40800094604492 -40 \N \N \N \N 0 0 15 \N 1614 \N 3 2 1614 62 5096 68.010000228881836 -40 \N \N \N \N 1 0 9 \N 1614 \N 3 2 1614 63 5097 121.80200004577637 -40 \N \N \N \N 0 0 17 \N 1614 \N 3 2 1614 63 5098 196.9900016784668 -40 \N \N \N \N 1 0 27 \N 1614 \N 3 2 1614 63 5099 189.82200050354004 -40 \N \N \N \N 1 0 26 \N 1614 \N 3 2 1614 63 5100 232.79000091552734 -40 \N \N \N \N 1 0 32 \N 1614 \N 3 2 1614 63 5101 257.8700008392334 -40 \N \N \N \N 0 0 36 \N 1614 \N 3 2 1614 63 5102 64.467000961303711 -40 \N \N \N \N 0 0 9 \N 1614 \N 3 2 1614 63 5103 100.29500007629395 -40 \N \N \N \N 0 0 14 \N 1614 \N 3 2 1614 63 5104 161.19200134277344 -40 \N \N \N \N 1 0 22 \N 1614 \N 3 2 1614 63 3755 172.49300003051758 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 24 \N 1118 \N 3 2 1118 46 3756 104.17299842834473 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 14 \N 1118 \N 3 2 1118 46 3757 334.05599975585938 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 46 \N 1118 \N 3 2 1118 46 3758 147.33299827575684 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 20 \N 1118 \N 3 2 1118 46 3759 158.14299964904785 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 22 \N 1118 \N 3 2 1118 46 3760 262.23599815368652 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 36 \N 1118 \N 3 2 1118 46 3761 43.154998779296875 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 6 \N 1118 \N 3 2 1118 46 3762 150.95499992370605 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 21 \N 1118 \N 3 2 1118 46 3763 176.05799865722656 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 24 \N 1118 \N 3 2 1118 46 3764 179.67099952697754 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 25 \N 1118 \N 3 2 1118 46 3765 211.96099853515625 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 29 \N 1118 \N 3 2 1118 46 3766 247.86099815368652 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 34 \N 1118 \N 3 2 1118 46 3767 132.94799995422363 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 18 \N 1118 \N 3 2 1118 46 3768 46.714998245239258 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 6 \N 1118 \N 3 2 1118 46 3769 244.30299949645996 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 34 \N 1118 \N 3 2 1118 46 3770 258.67299842834473 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 36 \N 1118 \N 3 2 1118 46 3771 301.74799919128418 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 42 \N 1118 \N 3 2 1118 46 3772 229.93099975585938 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 32 \N 1118 \N 3 2 1118 46 3773 86.23499870300293 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 12 \N 1118 \N 3 2 1118 46 5105 125.35700035095215 -40 \N \N \N \N 1 0 17 \N 1614 \N 3 2 1614 63 5106 103.85200119018555 -40 \N \N \N \N 1 0 14 \N 1614 \N 3 2 1614 63 5107 200.59200096130371 -40 \N \N \N \N 0 0 28 \N 1614 \N 3 2 1614 63 5108 239.94500160217285 -40 \N \N \N \N 1 0 33 \N 1614 \N 3 2 1614 63 5109 118.18000030517578 -40 \N \N \N \N 1 0 16 \N 1614 \N 3 2 1614 63 5110 53.700000762939453 -40 \N \N \N \N 1 0 7 \N 1614 \N 3 2 1614 63 5111 96.672000885009766 -40 \N \N \N \N 1 0 13 \N 1614 \N 3 2 1614 63 5112 157.64500045776367 -40 \N \N \N \N 0 0 22 \N 1614 \N 3 2 1614 63 3774 316.1309986114502 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 44 \N 1118 \N 3 2 1118 46 3775 129.39299964904785 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 18 \N 1118 \N 3 2 1118 46 3776 96.982999801635742 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 13 \N 1118 \N 3 2 1118 46 3777 143.76799964904785 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 20 \N 1118 \N 3 2 1118 46 3778 294.5629997253418 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 41 \N 1118 \N 3 2 1118 46 3779 107.8179988861084 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 15 \N 1118 \N 3 2 1118 46 3780 237.11099815368652 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 33 \N 1118 \N 3 2 1118 46 3781 319.68099975585938 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 44 \N 1118 \N 3 2 1118 46 3782 186.85099983215332 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 26 \N 1118 \N 3 2 1118 46 3783 219.14299964904785 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 30 \N 1118 \N 3 2 1118 46 3784 82.607999801635742 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 11 \N 1118 \N 3 2 1118 46 3785 0 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 0 \N 1118 \N 3 2 1118 46 3786 17.937999725341797 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 2 \N 1118 \N 3 2 1118 46 3787 10.744998931884766 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 1 \N 1118 \N 3 2 1118 46 3788 3.5649986267089844 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 0 \N 1118 \N 3 2 1118 46 3789 190.40599822998047 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 26 \N 1118 \N 3 2 1118 46 3790 39.534999847412109 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 5 \N 1118 \N 3 2 1118 46 3791 298.11800003051758 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 41 \N 1118 \N 3 2 1118 46 3792 111.38299942016602 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 15 \N 1118 \N 3 2 1118 46 3793 28.757999420166016 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 4 \N 1118 \N 3 2 1118 46 3794 122.20799827575684 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 17 \N 1118 \N 3 2 1118 46 3795 57.512998580932617 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 8 \N 1118 \N 3 2 1118 46 3796 165.30799865722656 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 23 \N 1118 \N 3 2 1118 46 3797 35.972999572753906 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 5 \N 1118 \N 3 2 1118 46 3798 75.427999496459961 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 10 \N 1118 \N 3 2 1118 46 3799 136.58299827575684 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 19 \N 1118 \N 3 2 1118 46 3800 276.61299896240234 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 38 \N 1118 \N 3 2 1118 46 3801 233.48799896240234 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 32 \N 1118 \N 3 2 1118 46 3802 197.58099937438965 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 27 \N 1118 \N 3 2 1118 46 3803 61.077999114990234 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 8 \N 1118 \N 3 2 1118 46 3804 222.7559986114502 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 31 \N 1118 \N 3 2 1118 46 3805 168.86800003051758 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 23 \N 1118 \N 3 2 1118 46 3806 14.377998352050781 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 2 \N 1118 \N 3 2 1118 46 3807 255.05099868774414 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 35 \N 1118 \N 3 2 1118 46 3808 283.78799819946289 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 39 \N 1118 \N 3 2 1118 46 3809 240.6659984588623 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 33 \N 1118 \N 3 2 1118 46 3810 269.42099952697754 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 37 \N 1118 \N 3 2 1118 46 3811 290.95099830627441 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 40 \N 1118 \N 3 2 1118 46 3812 194.02799987792969 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 27 \N 1118 \N 3 2 1118 46 3813 265.86599922180176 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 37 \N 1118 \N 3 2 1118 46 3814 308.92799949645996 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 43 \N 1118 \N 3 2 1118 46 3815 89.794998168945312 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 12 \N 1118 \N 3 2 1118 46 3816 118.57799911499023 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 16 \N 1118 \N 3 2 1118 46 3817 53.892999649047852 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 7 \N 1118 \N 3 2 1118 46 3818 7.1929988861083984 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 1 \N 1118 \N 3 2 1118 46 3819 93.419998168945312 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 13 \N 1118 \N 3 2 1118 46 3820 71.879999160766602 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 10 \N 1118 \N 3 2 1118 46 3821 21.564998626708984 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 3 \N 1118 \N 3 2 1118 46 3822 305.30299949645996 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 42 \N 1118 \N 3 2 1118 46 3823 140.13799858093262 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 19 \N 1118 \N 3 2 1118 46 3824 280.23099899291992 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 39 \N 1118 \N 3 2 1118 46 3825 204.77099990844727 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 28 \N 1118 \N 3 2 1118 46 3826 161.69499969482422 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 22 \N 1118 \N 3 2 1118 46 3827 323.30599975585938 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 45 \N 1118 \N 3 2 1118 46 3828 115.01299858093262 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 16 \N 1118 \N 3 2 1118 46 3829 68.262998580932617 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 9 \N 1118 \N 3 2 1118 46 3830 25.125 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 3 \N 1118 \N 3 2 1118 46 3831 50.33799934387207 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 7 \N 1118 \N 3 2 1118 46 3832 273.04799842834473 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 38 \N 1118 \N 3 2 1118 46 3833 226.30599975585938 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 31 \N 1118 \N 3 2 1118 46 3834 100.61299896240234 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 14 \N 1118 \N 3 2 1118 46 3835 79.044998168945312 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 11 \N 1118 \N 3 2 1118 46 3836 215.58099937438965 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 30 \N 1118 \N 3 2 1118 46 3837 330.49599838256836 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 46 \N 1118 \N 3 2 1118 46 3838 125.76299858093262 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 17 \N 1118 \N 3 2 1118 46 3839 251.48599815368652 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 35 \N 1118 \N 3 2 1118 46 3840 154.51799964904785 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 21 \N 1118 \N 3 2 1118 46 3841 64.709999084472656 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 9 \N 1118 \N 3 2 1118 46 3842 208.39299964904785 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 29 \N 1118 \N 3 2 1118 46 3843 312.48799896240234 -40 \N 0.044888044266600001 0.0075294861803999998 0 1 0 43 \N 1118 \N 3 2 1118 46 3844 201.21099853515625 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 28 \N 1118 \N 3 2 1118 46 3845 287.40099906921387 -40 \N 0.044888044266600001 0.0075294861803999998 0 0 0 40 \N 1118 \N 3 2 1118 46 3846 93.354999542236328 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 13 \N 1118 \N 3 2 1118 47 3847 64.604999542236328 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 9 \N 1118 \N 3 2 1118 47 3848 251.30299949645996 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 35 \N 1118 \N 3 2 1118 47 3849 265.63299942016602 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 37 \N 1118 \N 3 2 1118 47 3850 326.72499847412109 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 45 \N 1118 \N 3 2 1118 47 3851 147.16499900817871 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 20 \N 1118 \N 3 2 1118 47 3852 14.354999542236328 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 2 \N 1118 \N 3 2 1118 47 3853 21.536998748779297 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 3 \N 1118 \N 3 2 1118 47 3854 179.47499847412109 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 25 \N 1118 \N 3 2 1118 47 3855 247.68499946594238 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 34 \N 1118 \N 3 2 1118 47 3856 280.0099983215332 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 39 \N 1118 \N 3 2 1118 47 3857 89.722999572753906 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 12 \N 1118 \N 3 2 1118 47 3858 3.5469989776611328 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 0 \N 1118 \N 3 2 1118 47 3859 0 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 0 \N 1118 \N 3 2 1118 47 3860 132.79799842834473 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 18 \N 1118 \N 3 2 1118 47 3861 294.44499969482422 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 41 \N 1118 \N 3 2 1118 47 3862 100.53299903869629 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 14 \N 1118 \N 3 2 1118 47 3863 60.977998733520508 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 8 \N 1118 \N 3 2 1118 47 3864 323.16799926757812 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 45 \N 1118 \N 3 2 1118 47 3865 136.43299865722656 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 19 \N 1118 \N 3 2 1118 47 3866 208.19999885559082 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 29 \N 1118 \N 3 2 1118 47 3867 315.99299812316895 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 44 \N 1118 \N 3 2 1118 47 3868 186.67299842834473 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 26 \N 1118 \N 3 2 1118 47 3869 258.45499992370605 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 36 \N 1118 \N 3 2 1118 47 3870 114.88299942016602 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 16 \N 1118 \N 3 2 1118 47 3871 25.09699821472168 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 3 \N 1118 \N 3 2 1118 47 3872 7.1649990081787109 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 1 \N 1118 \N 3 2 1118 47 3873 287.26299858093262 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 40 \N 1118 \N 3 2 1118 47 3874 125.62299919128418 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 17 \N 1118 \N 3 2 1118 47 3875 39.444999694824219 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 5 \N 1118 \N 3 2 1118 47 3876 190.22499847412109 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 26 \N 1118 \N 3 2 1118 47 3877 262.01299858093262 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 36 \N 1118 \N 3 2 1118 47 3878 240.49299812316895 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 33 \N 1118 \N 3 2 1118 47 3879 32.281999588012695 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 4 \N 1118 \N 3 2 1118 47 3880 222.55799865722656 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 31 \N 1118 \N 3 2 1118 47 3881 28.716999053955078 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 4 \N 1118 \N 3 2 1118 47 3882 272.82299995422363 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 38 \N 1118 \N 3 2 1118 47 3883 254.84299850463867 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 35 \N 1118 \N 3 2 1118 47 3884 276.3799991607666 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 38 \N 1118 \N 3 2 1118 47 3885 290.82799911499023 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 40 \N 1118 \N 3 2 1118 47 3886 308.80499839782715 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 43 \N 1118 \N 3 2 1118 47 3887 175.85299873352051 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 24 \N 1118 \N 3 2 1118 47 3888 104.08999824523926 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 14 \N 1118 \N 3 2 1118 47 3889 157.92499923706055 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 22 \N 1118 \N 3 2 1118 47 3890 10.726999282836914 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 1 \N 1118 \N 3 2 1118 47 3891 236.9379997253418 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 33 \N 1118 \N 3 2 1118 47 3892 46.606998443603516 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 6 \N 1118 \N 3 2 1118 47 3893 129.23799896240234 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 18 \N 1118 \N 3 2 1118 47 3894 53.791999816894531 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 7 \N 1118 \N 3 2 1118 47 3895 233.31499862670898 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 32 \N 1118 \N 3 2 1118 47 3896 107.70499992370605 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 15 \N 1118 \N 3 2 1118 47 3897 68.157999038696289 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 9 \N 1118 \N 3 2 1118 47 3898 305.1879997253418 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 42 \N 1118 \N 3 2 1118 47 3899 319.54799842834473 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 44 \N 1118 \N 3 2 1118 47 3900 75.334999084472656 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 10 \N 1118 \N 3 2 1118 47 3901 17.911998748779297 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 2 \N 1118 \N 3 2 1118 47 3902 35.896999359130859 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 5 \N 1118 \N 3 2 1118 47 3903 172.27999877929688 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 24 \N 1118 \N 3 2 1118 47 3904 298.00299835205078 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 41 \N 1118 \N 3 2 1118 47 3905 312.35999870300293 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 43 \N 1118 \N 3 2 1118 47 3906 229.74499893188477 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 32 \N 1118 \N 3 2 1118 47 3907 226.11499977111816 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 31 \N 1118 \N 3 2 1118 47 3908 150.77499961853027 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 21 \N 1118 \N 3 2 1118 47 3909 201.01999855041504 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 28 \N 1118 \N 3 2 1118 47 3910 122.06499862670898 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 17 \N 1118 \N 3 2 1118 47 3911 78.98499870300293 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 11 \N 1118 \N 3 2 1118 47 3912 86.172998428344727 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 12 \N 1118 \N 3 2 1118 47 3913 154.32299995422363 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 21 \N 1118 \N 3 2 1118 47 3914 197.39999961853027 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 27 \N 1118 \N 3 2 1118 47 3915 82.547998428344727 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 11 \N 1118 \N 3 2 1118 47 3916 43.046998977661133 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 6 \N 1118 \N 3 2 1118 47 3917 215.38299942016602 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 30 \N 1118 \N 3 2 1118 47 3918 211.75 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 29 \N 1118 \N 3 2 1118 47 3919 301.62799835205078 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 42 \N 1118 \N 3 2 1118 47 3920 139.98799896240234 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 19 \N 1118 \N 3 2 1118 47 3921 218.93999862670898 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 30 \N 1118 \N 3 2 1118 47 3922 269.1929988861084 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 37 \N 1118 \N 3 2 1118 47 3923 193.84999847412109 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 27 \N 1118 \N 3 2 1118 47 3924 204.57299995422363 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 28 \N 1118 \N 3 2 1118 47 3925 183.03999900817871 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 25 \N 1118 \N 3 2 1118 47 3926 283.6299991607666 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 39 \N 1118 \N 3 2 1118 47 3927 165.09499931335449 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 23 \N 1118 \N 3 2 1118 47 3928 143.61799812316895 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 20 \N 1118 \N 3 2 1118 47 3929 96.909999847412109 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 13 \N 1118 \N 3 2 1118 47 3930 50.239999771118164 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 7 \N 1118 \N 3 2 1118 47 3931 168.65499877929688 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 23 \N 1118 \N 3 2 1118 47 3932 57.424999237060547 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 8 \N 1118 \N 3 2 1118 47 3933 71.779998779296875 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 10 \N 1118 \N 3 2 1118 47 3934 244.11799812316895 -40 \N 0.044976412678800003 0.0074136192318 0 0 0 34 \N 1118 \N 3 2 1118 47 3935 161.47499847412109 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 22 \N 1118 \N 3 2 1118 47 3936 118.44499969482422 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 16 \N 1118 \N 3 2 1118 47 3937 111.26799964904785 -40 \N 0.044976412678800003 0.0074136192318 0 1 0 15 \N 1118 \N 3 2 1118 47 3938 79.055000305175781 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 11 \N 1118 \N 3 2 1118 48 3939 143.68199920654297 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 20 \N 1118 \N 3 2 1118 48 3940 21.621999740600586 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 3 \N 1118 \N 3 2 1118 48 3941 107.73999977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 15 \N 1118 \N 3 2 1118 48 3942 50.329999923706055 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 7 \N 1118 \N 3 2 1118 48 3943 3.5650005340576172 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 0 \N 1118 \N 3 2 1118 48 3944 43.159999847412109 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 6 \N 1118 \N 3 2 1118 48 3945 136.48500061035156 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 19 \N 1118 \N 3 2 1118 48 3946 71.876998901367188 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 10 \N 1118 \N 3 2 1118 48 3947 53.879999160766602 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 7 \N 1118 \N 3 2 1118 48 3948 10.744998931884766 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 1 \N 1118 \N 3 2 1118 48 3949 118.50199890136719 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 16 \N 1118 \N 3 2 1118 48 3950 64.690000534057617 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 9 \N 1118 \N 3 2 1118 48 3951 122.11499977111816 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 17 \N 1118 \N 3 2 1118 48 3952 140.04999923706055 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 19 \N 1118 \N 3 2 1118 48 3953 61.065000534057617 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 8 \N 1118 \N 3 2 1118 48 3954 111.30200004577637 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 15 \N 1118 \N 3 2 1118 48 3955 -12987859338.114 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 20 \N 1118 \N 3 2 1118 48 3956 86.209999084472656 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 12 \N 1118 \N 3 2 1118 48 3957 125.66699981689453 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 17 \N 1118 \N 3 2 1118 48 3958 132.85499954223633 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 18 \N 1118 \N 3 2 1118 48 3959 25.171998977661133 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 3 \N 1118 \N 3 2 1118 48 3960 35.989999771118164 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 5 \N 1118 \N 3 2 1118 48 3961 93.386999130249023 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 13 \N 1118 \N 3 2 1118 48 3962 75.447000503540039 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 10 \N 1118 \N 3 2 1118 48 3963 68.246999740600586 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 9 \N 1118 \N 3 2 1118 48 3964 7.1849994659423828 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 1 \N 1118 \N 3 2 1118 48 3965 17.934999465942383 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 2 \N 1118 \N 3 2 1118 48 3966 89.764999389648438 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 12 \N 1118 \N 3 2 1118 48 3967 82.600000381469727 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 11 \N 1118 \N 3 2 1118 48 3968 96.941999435424805 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 13 \N 1118 \N 3 2 1118 48 3969 57.520000457763672 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 8 \N 1118 \N 3 2 1118 48 3970 39.549999237060547 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 5 \N 1118 \N 3 2 1118 48 3971 104.11999893188477 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 14 \N 1118 \N 3 2 1118 48 3972 14.367000579833984 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 2 \N 1118 \N 3 2 1118 48 3973 46.709999084472656 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 6 \N 1118 \N 3 2 1118 48 3974 32.364999771118164 -40 \N 0.027676655060399999 0.0078969163727999996 0 1 0 4 \N 1118 \N 3 2 1118 48 3975 0 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 0 \N 1118 \N 3 2 1118 48 3976 100.5669994354248 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 14 \N 1118 \N 3 2 1118 48 3977 28.799999237060547 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 4 \N 1118 \N 3 2 1118 48 3978 129.29500007629395 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 18 \N 1118 \N 3 2 1118 48 3979 114.9370002746582 -40 \N 0.027676655060399999 0.0078969163727999996 0 0 0 16 \N 1118 \N 3 2 1118 48 3980 356.74300003051758 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 29 \N 1118 \N 3 2 1118 49 3981 301.34100151062012 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 24 \N 1118 \N 3 2 1118 49 3982 516.72900009155273 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 42 \N 1118 \N 3 2 1118 49 3983 565.91100120544434 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 46 \N 1118 \N 3 2 1118 49 3984 504.41100120544434 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 41 \N 1118 \N 3 2 1118 49 3985 79.908000946044922 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 6 \N 1118 \N 3 2 1118 49 3986 61.503000259399414 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 5 \N 1118 \N 3 2 1118 49 3987 332.11800003051758 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 27 \N 1118 \N 3 2 1118 49 3988 547.43099975585938 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 44 \N 1118 \N 3 2 1118 49 3989 104.52799987792969 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 8 \N 1118 \N 3 2 1118 49 3990 492.10400009155273 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 40 \N 1118 \N 3 2 1118 49 3991 141.41800117492676 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 11 \N 1118 \N 3 2 1118 49 3992 510.54100036621094 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 41 \N 1118 \N 3 2 1118 49 3993 264.44600105285645 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 21 \N 1118 \N 3 2 1118 49 3994 584.3439998626709 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 47 \N 1118 \N 3 2 1118 49 3995 172.19600105285645 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 14 \N 1118 \N 3 2 1118 49 3996 73.793001174926758 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 6 \N 1118 \N 3 2 1118 49 3997 258.32299995422363 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 21 \N 1118 \N 3 2 1118 49 3998 246.01799964904785 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 20 \N 1118 \N 3 2 1118 49 3999 30.718000411987305 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 2 \N 1118 \N 3 2 1118 49 4000 202.9010009765625 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 16 \N 1118 \N 3 2 1118 49 4001 86.10099983215332 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 7 \N 1118 \N 3 2 1118 49 4002 159.9010009765625 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 13 \N 1118 \N 3 2 1118 49 4003 473.60300064086914 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 38 \N 1118 \N 3 2 1118 49 4004 282.92600059509277 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 23 \N 1118 \N 3 2 1118 49 4005 553.60099983215332 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 45 \N 1118 \N 3 2 1118 49 4006 227.51300048828125 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 18 \N 1118 \N 3 2 1118 49 4007 442.87100028991699 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 36 \N 1118 \N 3 2 1118 49 4008 319.83300018310547 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 26 \N 1118 \N 3 2 1118 49 4009 116.83300018310547 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 9 \N 1118 \N 3 2 1118 49 4010 559.72100067138672 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 45 \N 1118 \N 3 2 1118 49 4011 129.12600135803223 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 10 \N 1118 \N 3 2 1118 49 4012 295.21600151062012 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 24 \N 1118 \N 3 2 1118 49 4013 455.17800140380859 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 37 \N 1118 \N 3 2 1118 49 4014 184.48100090026855 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 15 \N 1118 \N 3 2 1118 49 4015 221.38800048828125 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 18 \N 1118 \N 3 2 1118 49 4016 12.325000762939453 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 1 \N 1118 \N 3 2 1118 49 4017 153.7180004119873 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 12 \N 1118 \N 3 2 1118 49 4018 424.36100006103516 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 34 \N 1118 \N 3 2 1118 49 4019 381.36300086975098 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 31 \N 1118 \N 3 2 1118 49 4020 313.6510009765625 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 25 \N 1118 \N 3 2 1118 49 4021 289.04600143432617 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 23 \N 1118 \N 3 2 1118 49 4022 350.54300117492676 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 28 \N 1118 \N 3 2 1118 49 4023 375.1830005645752 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 30 \N 1118 \N 3 2 1118 49 4024 448.99600028991699 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 36 \N 1118 \N 3 2 1118 49 4025 36.892999649047852 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 3 \N 1118 \N 3 2 1118 49 4026 178.30599975585938 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 14 \N 1118 \N 3 2 1118 49 4027 467.49600028991699 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 38 \N 1118 \N 3 2 1118 49 4028 190.5930004119873 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 15 \N 1118 \N 3 2 1118 49 4029 572.03600120544434 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 46 \N 1118 \N 3 2 1118 49 4030 430.5629997253418 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 35 \N 1118 \N 3 2 1118 49 4031 166.01300048828125 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 13 \N 1118 \N 3 2 1118 49 4032 67.623001098632812 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 5 \N 1118 \N 3 2 1118 49 4033 135.3080005645752 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 11 \N 1118 \N 3 2 1118 49 4034 522.85099983215332 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 42 \N 1118 \N 3 2 1118 49 4035 6.125 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 0 \N 1118 \N 3 2 1118 49 4036 270.61600112915039 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 22 \N 1118 \N 3 2 1118 49 4037 196.78600120544434 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 16 \N 1118 \N 3 2 1118 49 4038 596.64900016784668 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 48 \N 1118 \N 3 2 1118 49 4039 325.94099998474121 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 26 \N 1118 \N 3 2 1118 49 4040 147.60799980163574 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 12 \N 1118 \N 3 2 1118 49 4041 344.42300033569336 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 28 \N 1118 \N 3 2 1118 49 4042 98.416000366210938 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 8 \N 1118 \N 3 2 1118 49 4043 307.53300094604492 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 25 \N 1118 \N 3 2 1118 49 4044 578.22599983215332 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 47 \N 1118 \N 3 2 1118 49 4045 412.06800079345703 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 33 \N 1118 \N 3 2 1118 49 4046 529.03900146484375 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 43 \N 1118 \N 3 2 1118 49 4047 252.13100051879883 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 20 \N 1118 \N 3 2 1118 49 4048 239.82600021362305 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 19 \N 1118 \N 3 2 1118 49 4049 215.20100021362305 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 17 \N 1118 \N 3 2 1118 49 4050 590.53400039672852 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 48 \N 1118 \N 3 2 1118 49 4051 0 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 0 \N 1118 \N 3 2 1118 49 4052 276.73100090026855 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 22 \N 1118 \N 3 2 1118 49 4053 461.30599975585938 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 37 \N 1118 \N 3 2 1118 49 4054 233.70300102233887 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 19 \N 1118 \N 3 2 1118 49 4055 498.22599983215332 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 40 \N 1118 \N 3 2 1118 49 4056 92.218000411987305 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 7 \N 1118 \N 3 2 1118 49 4057 110.71100044250488 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 9 \N 1118 \N 3 2 1118 49 4058 479.78600120544434 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 39 \N 1118 \N 3 2 1118 49 4059 418.24600028991699 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 34 \N 1118 \N 3 2 1118 49 4060 399.76799964904785 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 32 \N 1118 \N 3 2 1118 49 4061 18.443000793457031 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 1 \N 1118 \N 3 2 1118 49 4062 123.01300048828125 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 10 \N 1118 \N 3 2 1118 49 4063 535.1560001373291 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 43 \N 1118 \N 3 2 1118 49 4064 485.9060001373291 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 39 \N 1118 \N 3 2 1118 49 4065 362.86800003051758 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 29 \N 1118 \N 3 2 1118 49 4066 49.187999725341797 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 4 \N 1118 \N 3 2 1118 49 4067 24.607999801635742 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 2 \N 1118 \N 3 2 1118 49 4068 541.32400131225586 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 44 \N 1118 \N 3 2 1118 49 4069 405.95600128173828 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 33 \N 1118 \N 3 2 1118 49 4070 436.68099975585938 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 35 \N 1118 \N 3 2 1118 49 4071 209.0880012512207 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 17 \N 1118 \N 3 2 1118 49 4072 393.65299987792969 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 32 \N 1118 \N 3 2 1118 49 4073 43.01300048828125 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 3 \N 1118 \N 3 2 1118 49 4074 55.305999755859375 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 4 \N 1118 \N 3 2 1118 49 4075 338.23800086975098 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 27 \N 1118 \N 3 2 1118 49 4076 369.0629997253418 -40 \N 0.0454056109404 0.0078969163727999996 0 0 0 30 \N 1118 \N 3 2 1118 49 4077 387.47800064086914 -40 \N 0.0454056109404 0.0078969163727999996 0 1 0 31 \N 1118 \N 3 2 1118 49 5113 42.992000579833984 -40 \N \N \N \N 0 0 6 \N 1614 \N 3 2 1614 63 5114 10.710000991821289 -40 \N \N \N \N 1 0 1 \N 1614 \N 3 2 1614 63 5115 3.5470008850097656 -40 \N \N \N \N 1 0 0 \N 1614 \N 3 2 1614 63 5116 46.542001724243164 -40 \N \N \N \N 1 0 6 \N 1614 \N 3 2 1614 63 5117 132.54700088500977 -40 \N \N \N \N 1 0 18 \N 1614 \N 3 2 1614 63 5118 225.6200008392334 -40 \N \N \N \N 1 0 31 \N 1614 \N 3 2 1614 63 5119 229.24200057983398 -40 \N \N \N \N 0 0 32 \N 1614 \N 3 2 1614 63 5120 146.86000061035156 -40 \N \N \N \N 1 0 20 \N 1614 \N 3 2 1614 63 5121 14.320001602172852 -40 \N \N \N \N 0 0 2 \N 1614 \N 3 2 1614 63 5122 150.48000144958496 -40 \N \N \N \N 0 0 21 \N 1614 \N 3 2 1614 63 5123 186.28200149536133 -40 \N \N \N \N 0 0 26 \N 1614 \N 3 2 1614 63 5124 35.817001342773438 -40 \N \N \N \N 0 0 5 \N 1614 \N 3 2 1614 63 5125 182.67500114440918 -40 \N \N \N \N 1 0 25 \N 1614 \N 3 2 1614 63 5126 154.03500175476074 -40 \N \N \N \N 1 0 21 \N 1614 \N 3 2 1614 63 5127 57.312000274658203 -40 \N \N \N \N 0 0 8 \N 1614 \N 3 2 1614 63 5128 39.372001647949219 -40 \N \N \N \N 1 0 5 \N 1614 \N 3 2 1614 63 5129 7.1650009155273438 -40 \N \N \N \N 0 0 1 \N 1614 \N 3 2 1614 63 5130 175.50699996948242 -40 \N \N \N \N 1 0 24 \N 1614 \N 3 2 1614 63 5131 211.30000114440918 -40 \N \N \N \N 1 0 29 \N 1614 \N 3 2 1614 63 5132 218.45500183105469 -40 \N \N \N \N 1 0 30 \N 1614 \N 3 2 1614 63 5133 111.02700042724609 -40 \N \N \N \N 1 0 15 \N 1614 \N 3 2 1614 63 5134 93.115001678466797 -40 \N \N \N \N 0 0 13 \N 1614 \N 3 2 1614 63 5135 139.70000076293945 -40 \N \N \N \N 1 0 19 \N 1614 \N 3 2 1614 63 5136 222.07000160217285 -40 \N \N \N \N 0 0 31 \N 1614 \N 3 2 1614 63 5137 168.34500122070312 -40 \N \N \N \N 1 0 23 \N 1614 \N 3 2 1614 63 5138 171.95700073242188 -40 \N \N \N \N 0 0 24 \N 1614 \N 3 2 1614 63 5139 261.42000007629395 -40 \N \N \N \N 1 0 36 \N 1614 \N 3 2 1614 63 5140 0 -40 \N \N \N \N 0 0 0 \N 1614 \N 3 2 1614 63 5141 193.4320011138916 -40 \N \N \N \N 0 0 27 \N 1614 \N 3 2 1614 63 5142 236.40000152587891 -40 \N \N \N \N 0 0 33 \N 1614 \N 3 2 1614 63 5143 82.330001831054688 -40 \N \N \N \N 1 0 11 \N 1614 \N 3 2 1614 63 5144 254.26000022888184 -40 \N \N \N \N 1 0 35 \N 1614 \N 3 2 1614 63 5145 250.71000099182129 -40 \N \N \N \N 0 0 35 \N 1614 \N 3 2 1614 63 5146 204.14500045776367 -40 \N \N \N \N 1 0 28 \N 1614 \N 3 2 1614 63 5147 75.167001724243164 -40 \N \N \N \N 1 0 10 \N 1614 \N 3 2 1614 63 5148 85.960000991821289 -40 \N \N \N \N 0 0 12 \N 1614 \N 3 2 1614 63 5149 89.506999969482422 -40 \N \N \N \N 1 0 12 \N 1614 \N 3 2 1614 63 5150 107.47200012207031 -40 \N \N \N \N 0 0 15 \N 1614 \N 3 2 1614 63 5151 28.635000228881836 -40 \N \N \N \N 0 0 4 \N 1614 \N 3 2 1614 63 5152 71.617000579833984 -40 \N \N \N \N 0 0 10 \N 1614 \N 3 2 1614 63 5153 78.775001525878906 -40 \N \N \N \N 0 0 11 \N 1614 \N 3 2 1614 63 5154 164.80000114440918 -40 \N \N \N \N 0 0 23 \N 1614 \N 3 2 1614 63 5155 17.865001678466797 -40 \N \N \N \N 1 0 2 \N 1614 \N 3 2 1614 63 5156 60.862001419067383 -40 \N \N \N \N 1 0 8 \N 1614 \N 3 2 1614 63 5157 207.74700164794922 -40 \N \N \N \N 0 0 29 \N 1614 \N 3 2 1614 63 5158 247.10000038146973 -40 \N \N \N \N 1 0 34 \N 1614 \N 3 2 1614 63 5159 128.99200057983398 -40 \N \N \N \N 0 0 18 \N 1614 \N 3 2 1614 63 5160 114.63500022888184 -40 \N \N \N \N 0 0 16 \N 1614 \N 3 2 1614 63 5161 21.487001419067383 -40 \N \N \N \N 0 0 3 \N 1614 \N 3 2 1614 63 5162 32.187000274658203 -40 \N \N \N \N 1 0 4 \N 1614 \N 3 2 1614 63 5163 214.91000175476074 -40 \N \N \N \N 0 0 30 \N 1614 \N 3 2 1614 63 5164 179.125 -40 \N \N \N \N 0 0 25 \N 1614 \N 3 2 1614 63 5165 136.15000152587891 -40 \N \N \N \N 0 0 19 \N 1614 \N 3 2 1614 63 4078 18.058000564575195 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 2 \N 1143 \N 3 2 1143 50 4079 90.193000793457031 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 12 \N 1143 \N 3 2 1143 50 4080 82.988000869750977 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 11 \N 1143 \N 3 2 1143 50 4081 173.05300140380859 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 24 \N 1143 \N 3 2 1143 50 4082 162.22300148010254 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 22 \N 1143 \N 3 2 1143 50 4083 216.26300048828125 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 30 \N 1143 \N 3 2 1143 50 4084 57.758001327514648 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 8 \N 1143 \N 3 2 1143 50 4085 28.88800048828125 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 4 \N 1143 \N 3 2 1143 50 4086 230.64300155639648 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 32 \N 1143 \N 3 2 1143 50 4087 245.06800079345703 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 34 \N 1143 \N 3 2 1143 50 4088 122.59800148010254 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 17 \N 1143 \N 3 2 1143 50 4089 118.96500015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 16 \N 1143 \N 3 2 1143 50 4090 248.63500022888184 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 34 \N 1143 \N 3 2 1143 50 4091 133.41000175476074 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 18 \N 1143 \N 3 2 1143 50 4092 54.093000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 7 \N 1143 \N 3 2 1143 50 4093 126.17800140380859 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 17 \N 1143 \N 3 2 1143 50 4094 118.96500015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 16 \N 1143 \N 3 2 1143 50 4095 237.86300086975098 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 33 \N 1143 \N 3 2 1143 50 4096 259.48500061035156 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 36 \N 1143 \N 3 2 1143 50 4097 198.24300003051758 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 27 \N 1143 \N 3 2 1143 50 4098 263.06800079345703 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 36 \N 1143 \N 3 2 1143 50 4099 36.093000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 5 \N 1143 \N 3 2 1143 50 4100 137.04300117492676 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 19 \N 1143 \N 3 2 1143 50 4101 97.383001327514648 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 13 \N 1143 \N 3 2 1143 50 4102 97.383001327514648 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 13 \N 1143 \N 3 2 1143 50 4103 43.310001373291016 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 6 \N 1143 \N 3 2 1143 50 4104 3.5680007934570312 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 0 \N 1143 \N 3 2 1143 50 4105 111.77000045776367 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 15 \N 1143 \N 3 2 1143 50 4106 209.08300018310547 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 29 \N 1143 \N 3 2 1143 50 4107 25.25 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 3 \N 1143 \N 3 2 1143 50 4108 270.29800033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 37 \N 1143 \N 3 2 1143 50 4109 205.44000053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 28 \N 1143 \N 3 2 1143 50 4110 241.43000030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 33 \N 1143 \N 3 2 1143 50 4111 219.82800102233887 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 30 \N 1143 \N 3 2 1143 50 4112 165.8430004119873 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 23 \N 1143 \N 3 2 1143 50 4113 162.22300148010254 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 22 \N 1143 \N 3 2 1143 50 4114 169.40300178527832 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 23 \N 1143 \N 3 2 1143 50 4115 32.463001251220703 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 4 \N 1143 \N 3 2 1143 50 4116 7.1900005340576172 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 1 \N 1143 \N 3 2 1143 50 4117 248.63500022888184 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 34 \N 1143 \N 3 2 1143 50 4118 147.81500053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 20 \N 1143 \N 3 2 1143 50 4119 158.65500068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 22 \N 1143 \N 3 2 1143 50 4120 101.01000022888184 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 14 \N 1143 \N 3 2 1143 50 4121 176.6150016784668 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 24 \N 1143 \N 3 2 1143 50 4122 32.463001251220703 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 4 \N 1143 \N 3 2 1143 50 4123 21.68800163269043 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 3 \N 1143 \N 3 2 1143 50 4124 212.64300155639648 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 29 \N 1143 \N 3 2 1143 50 4125 252.28000068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 35 \N 1143 \N 3 2 1143 50 4126 255.85500144958496 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 35 \N 1143 \N 3 2 1143 50 4127 50.52800178527832 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 7 \N 1143 \N 3 2 1143 50 4128 151.45800018310547 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 21 \N 1143 \N 3 2 1143 50 4129 14.488000869750977 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 2 \N 1143 \N 3 2 1143 50 4130 54.093000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 7 \N 1143 \N 3 2 1143 50 4131 155.02500152587891 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 21 \N 1143 \N 3 2 1143 50 4132 108.21000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 15 \N 1143 \N 3 2 1143 50 4133 126.17800140380859 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 17 \N 1143 \N 3 2 1143 50 4134 39.67500114440918 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 5 \N 1143 \N 3 2 1143 50 4135 183.81000137329102 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 25 \N 1143 \N 3 2 1143 50 4136 111.77000045776367 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 15 \N 1143 \N 3 2 1143 50 4137 234.21000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 32 \N 1143 \N 3 2 1143 50 4138 201.87800025939941 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 28 \N 1143 \N 3 2 1143 50 4139 68.558000564575195 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 9 \N 1143 \N 3 2 1143 50 4140 263.06800079345703 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 36 \N 1143 \N 3 2 1143 50 4141 115.40000152587891 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 16 \N 1143 \N 3 2 1143 50 4142 198.24300003051758 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 27 \N 1143 \N 3 2 1143 50 4143 46.875 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 6 \N 1143 \N 3 2 1143 50 4144 212.64300155639648 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 29 \N 1143 \N 3 2 1143 50 4145 227.01800155639648 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 31 \N 1143 \N 3 2 1143 50 4146 133.41000175476074 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 18 \N 1143 \N 3 2 1143 50 4147 191.03300094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 26 \N 1143 \N 3 2 1143 50 4148 147.81500053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 20 \N 1143 \N 3 2 1143 50 4149 270.29800033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 37 \N 1143 \N 3 2 1143 50 4150 227.01800155639648 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 31 \N 1143 \N 3 2 1143 50 4151 10.860000610351562 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 1 \N 1143 \N 3 2 1143 50 4152 169.40300178527832 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 23 \N 1143 \N 3 2 1143 50 4153 104.57500076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 14 \N 1143 \N 3 2 1143 50 4154 255.85500144958496 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 35 \N 1143 \N 3 2 1143 50 4155 187.4630012512207 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 26 \N 1143 \N 3 2 1143 50 4156 75.775001525878906 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 10 \N 1143 \N 3 2 1143 50 4157 183.81000137329102 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 25 \N 1143 \N 3 2 1143 50 4158 241.43000030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 33 \N 1143 \N 3 2 1143 50 4159 72.205001831054688 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 10 \N 1143 \N 3 2 1143 50 4160 39.67500114440918 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 5 \N 1143 \N 3 2 1143 50 4161 64.978000640869141 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 9 \N 1143 \N 3 2 1143 50 4162 223.45300102233887 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 31 \N 1143 \N 3 2 1143 50 4163 140.61300086975098 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 19 \N 1143 \N 3 2 1143 50 4164 79.410001754760742 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 11 \N 1143 \N 3 2 1143 50 4165 180.24300003051758 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 25 \N 1143 \N 3 2 1143 50 4166 3.5680007934570312 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 0 \N 1143 \N 3 2 1143 50 4167 104.57500076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 14 \N 1143 \N 3 2 1143 50 4168 46.875 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 6 \N 1143 \N 3 2 1143 50 4169 194.67000007629395 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 27 \N 1143 \N 3 2 1143 50 4170 61.338001251220703 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 8 \N 1143 \N 3 2 1143 50 4171 176.6150016784668 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 24 \N 1143 \N 3 2 1143 50 4172 90.193000793457031 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 12 \N 1143 \N 3 2 1143 50 4173 75.775001525878906 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 10 \N 1143 \N 3 2 1143 50 4174 25.25 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 3 \N 1143 \N 3 2 1143 50 4175 82.988000869750977 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 11 \N 1143 \N 3 2 1143 50 4176 266.71000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 37 \N 1143 \N 3 2 1143 50 4177 140.61300086975098 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 19 \N 1143 \N 3 2 1143 50 4178 86.628000259399414 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 12 \N 1143 \N 3 2 1143 50 4179 155.02500152587891 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 21 \N 1143 \N 3 2 1143 50 4180 129.83000183105469 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 18 \N 1143 \N 3 2 1143 50 4181 18.058000564575195 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 2 \N 1143 \N 3 2 1143 50 4182 191.03300094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 26 \N 1143 \N 3 2 1143 50 4183 234.21000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 32 \N 1143 \N 3 2 1143 50 4184 68.558000564575195 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 9 \N 1143 \N 3 2 1143 50 5166 50.160001754760742 -40 \N \N \N \N 0 0 7 \N 1614 \N 3 2 1614 63 5167 143.3120002746582 -40 \N \N \N \N 0 0 20 \N 1614 \N 3 2 1614 63 5168 25.025001525878906 -40 \N \N \N \N 1 0 3 \N 1614 \N 3 2 1614 63 5169 243.55200004577637 -40 \N \N \N \N 0 0 34 \N 1614 \N 3 2 1614 63 5170 17.873001098632812 -40 \N \N \N \N 1 0 2 \N 1614 \N 3 2 1614 64 5171 3.5480003356933594 -40 \N \N \N \N 1 0 0 \N 1614 \N 3 2 1614 64 5172 82.329999923706055 -40 \N \N \N \N 1 0 11 \N 1614 \N 3 2 1614 64 5173 60.860000610351562 -40 \N \N \N \N 1 0 8 \N 1614 \N 3 2 1614 64 5174 143.25100135803223 -40 \N \N \N \N 0 0 20 \N 1614 \N 3 2 1614 64 5175 132.47100067138672 -40 \N \N \N \N 1 0 18 \N 1614 \N 3 2 1614 64 5176 7.1630001068115234 -40 \N \N \N \N 0 0 1 \N 1614 \N 3 2 1614 64 5177 57.310001373291016 -40 \N \N \N \N 0 0 8 \N 1614 \N 3 2 1614 64 5178 200.64100074768066 -40 \N \N \N \N 0 0 28 \N 1614 \N 3 2 1614 64 5179 261.44300079345703 -40 \N \N \N \N 1 0 36 \N 1614 \N 3 2 1614 64 5180 103.79800033569336 -40 \N \N \N \N 1 0 14 \N 1614 \N 3 2 1614 64 5181 146.80300140380859 -40 \N \N \N \N 1 0 20 \N 1614 \N 3 2 1614 64 5182 114.57800102233887 -40 \N \N \N \N 0 0 16 \N 1614 \N 3 2 1614 64 5183 42.978000640869141 -40 \N \N \N \N 0 0 6 \N 1614 \N 3 2 1614 64 5184 286.57299995422363 -40 \N \N \N \N 0 0 40 \N 1614 \N 3 2 1614 64 5185 121.76099967956543 -40 \N \N \N \N 0 0 17 \N 1614 \N 3 2 1614 64 5186 207.78800010681152 -40 \N \N \N \N 0 0 29 \N 1614 \N 3 2 1614 64 5187 297.27099990844727 -40 \N \N \N \N 1 0 41 \N 1614 \N 3 2 1614 64 5188 182.68600082397461 -40 \N \N \N \N 1 0 25 \N 1614 \N 3 2 1614 64 5189 171.94300079345703 -40 \N \N \N \N 0 0 24 \N 1614 \N 3 2 1614 64 5190 39.373001098632812 -40 \N \N \N \N 1 0 5 \N 1614 \N 3 2 1614 64 5191 193.49800109863281 -40 \N \N \N \N 0 0 27 \N 1614 \N 3 2 1614 64 5192 211.33300018310547 -40 \N \N \N \N 1 0 29 \N 1614 \N 3 2 1614 64 5193 229.24800109863281 -40 \N \N \N \N 0 0 32 \N 1614 \N 3 2 1614 64 5194 175.50100135803223 -40 \N \N \N \N 1 0 24 \N 1614 \N 3 2 1614 64 5195 153.98100090026855 -40 \N \N \N \N 1 0 21 \N 1614 \N 3 2 1614 64 5196 275.8080005645752 -40 \N \N \N \N 1 0 38 \N 1614 \N 3 2 1614 64 5197 96.645999908447266 -40 \N \N \N \N 1 0 13 \N 1614 \N 3 2 1614 64 5198 71.623001098632812 -40 \N \N \N \N 0 0 10 \N 1614 \N 3 2 1614 64 5199 236.41600036621094 -40 \N \N \N \N 0 0 33 \N 1614 \N 3 2 1614 64 5200 136.09100151062012 -40 \N \N \N \N 0 0 19 \N 1614 \N 3 2 1614 64 5201 179.12600135803223 -40 \N \N \N \N 0 0 25 \N 1614 \N 3 2 1614 64 5202 50.159999847412109 -40 \N \N \N \N 0 0 7 \N 1614 \N 3 2 1614 64 5203 204.18600082397461 -40 \N \N \N \N 1 0 28 \N 1614 \N 3 2 1614 64 5204 25.040000915527344 -40 \N \N \N \N 1 0 3 \N 1614 \N 3 2 1614 64 5205 139.64100074768066 -40 \N \N \N \N 1 0 19 \N 1614 \N 3 2 1614 64 5206 75.165000915527344 -40 \N \N \N \N 1 0 10 \N 1614 \N 3 2 1614 64 5207 268.62800025939941 -40 \N \N \N \N 1 0 37 \N 1614 \N 3 2 1614 64 5208 93.098001480102539 -40 \N \N \N \N 0 0 13 \N 1614 \N 3 2 1614 64 5209 247.13300132751465 -40 \N \N \N \N 1 0 34 \N 1614 \N 3 2 1614 64 5210 107.4060001373291 -40 \N \N \N \N 0 0 15 \N 1614 \N 3 2 1614 64 5211 64.465000152587891 -40 \N \N \N \N 0 0 9 \N 1614 \N 3 2 1614 64 5212 21.489999771118164 -40 \N \N \N \N 0 0 3 \N 1614 \N 3 2 1614 64 5213 28.652999877929688 -40 \N \N \N \N 0 0 4 \N 1614 \N 3 2 1614 64 5214 293.73600006103516 -40 \N \N \N \N 0 0 41 \N 1614 \N 3 2 1614 64 5215 257.90299987792969 -40 \N \N \N \N 0 0 36 \N 1614 \N 3 2 1614 64 5216 186.3129997253418 -40 \N \N \N \N 0 0 26 \N 1614 \N 3 2 1614 64 5217 272.25100135803223 -40 \N \N \N \N 0 0 38 \N 1614 \N 3 2 1614 64 5218 46.540000915527344 -40 \N \N \N \N 1 0 6 \N 1614 \N 3 2 1614 64 5219 250.73600006103516 -40 \N \N \N \N 0 0 35 \N 1614 \N 3 2 1614 64 5220 150.43099975585938 -40 \N \N \N \N 0 0 21 \N 1614 \N 3 2 1614 64 5221 125.31100082397461 -40 \N \N \N \N 1 0 17 \N 1614 \N 3 2 1614 64 5222 118.13300132751465 -40 \N \N \N \N 1 0 16 \N 1614 \N 3 2 1614 64 5223 53.704999923706055 -40 \N \N \N \N 1 0 7 \N 1614 \N 3 2 1614 64 5224 164.76600074768066 -40 \N \N \N \N 0 0 23 \N 1614 \N 3 2 1614 64 5225 68.010000228881836 -40 \N \N \N \N 1 0 9 \N 1614 \N 3 2 1614 64 5226 189.88599967956543 -40 \N \N \N \N 1 0 26 \N 1614 \N 3 2 1614 64 5227 243.5880012512207 -40 \N \N \N \N 0 0 34 \N 1614 \N 3 2 1614 64 5228 32.194999694824219 -40 \N \N \N \N 1 0 4 \N 1614 \N 3 2 1614 64 5229 14.325000762939453 -40 \N \N \N \N 0 0 2 \N 1614 \N 3 2 1614 64 5230 254.28600120544434 -40 \N \N \N \N 1 0 35 \N 1614 \N 3 2 1614 64 5231 128.92100143432617 -40 \N \N \N \N 0 0 18 \N 1614 \N 3 2 1614 64 5232 89.485000610351562 -40 \N \N \N \N 1 0 12 \N 1614 \N 3 2 1614 64 5233 85.935001373291016 -40 \N \N \N \N 0 0 12 \N 1614 \N 3 2 1614 64 5234 168.32600021362305 -40 \N \N \N \N 1 0 23 \N 1614 \N 3 2 1614 64 5235 78.783000946044922 -40 \N \N \N \N 0 0 11 \N 1614 \N 3 2 1614 64 5236 239.98100090026855 -40 \N \N \N \N 1 0 33 \N 1614 \N 3 2 1614 64 5237 279.42300033569336 -40 \N \N \N \N 0 0 39 \N 1614 \N 3 2 1614 64 5238 110.95600128173828 -40 \N \N \N \N 1 0 15 \N 1614 \N 3 2 1614 64 5239 265.07100105285645 -40 \N \N \N \N 0 0 37 \N 1614 \N 3 2 1614 64 5240 214.93600082397461 -40 \N \N \N \N 0 0 30 \N 1614 \N 3 2 1614 64 5241 222.0880012512207 -40 \N \N \N \N 0 0 31 \N 1614 \N 3 2 1614 64 5242 35.819999694824219 -40 \N \N \N \N 0 0 5 \N 1614 \N 3 2 1614 64 5243 157.60099983215332 -40 \N \N \N \N 0 0 22 \N 1614 \N 3 2 1614 64 5244 282.9680004119873 -40 \N \N \N \N 1 0 39 \N 1614 \N 3 2 1614 64 5245 197.04100036621094 -40 \N \N \N \N 1 0 27 \N 1614 \N 3 2 1614 64 5246 161.14800071716309 -40 \N \N \N \N 1 0 22 \N 1614 \N 3 2 1614 64 5247 10.715000152587891 -40 \N \N \N \N 1 0 1 \N 1614 \N 3 2 1614 64 5248 225.63800048828125 -40 \N \N \N \N 1 0 31 \N 1614 \N 3 2 1614 64 5249 100.24800109863281 -40 \N \N \N \N 0 0 14 \N 1614 \N 3 2 1614 64 5250 232.80100059509277 -40 \N \N \N \N 1 0 32 \N 1614 \N 3 2 1614 64 5251 0 -40 \N \N \N \N 0 0 0 \N 1614 \N 3 2 1614 64 5252 218.48100090026855 -40 \N \N \N \N 1 0 30 \N 1614 \N 3 2 1614 64 5253 290.12100028991699 -40 \N \N \N \N 1 0 40 \N 1614 \N 3 2 1614 64 4185 205.44000053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 28 \N 1143 \N 3 2 1143 50 4186 0 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 0 \N 1143 \N 3 2 1143 50 4187 10.860000610351562 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 1 \N 1143 \N 3 2 1143 50 4188 144.24800109863281 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 20 \N 1143 \N 3 2 1143 50 4189 219.82800102233887 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 30 \N 1143 \N 3 2 1143 50 4190 93.815000534057617 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 13 \N 1143 \N 3 2 1143 50 4191 61.338001251220703 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 8 \N 1143 \N 3 2 1143 50 4192 25.235000610351562 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 3 \N 1143 \N 3 2 1143 51 4193 0 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 0 \N 1143 \N 3 2 1143 51 4194 158.65299987792969 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 22 \N 1143 \N 3 2 1143 51 4195 162.22800064086914 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 22 \N 1143 \N 3 2 1143 51 4196 201.84000015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 28 \N 1143 \N 3 2 1143 51 4197 122.60499954223633 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 17 \N 1143 \N 3 2 1143 51 4198 32.430000305175781 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 4 \N 1143 \N 3 2 1143 51 4199 219.84000015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 30 \N 1143 \N 3 2 1143 51 4200 72.209999084472656 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 10 \N 1143 \N 3 2 1143 51 4201 147.78999900817871 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 20 \N 1143 \N 3 2 1143 51 4202 18.023000717163086 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 2 \N 1143 \N 3 2 1143 51 4203 126.19499969482422 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 17 \N 1143 \N 3 2 1143 51 4204 10.795000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 1 \N 1143 \N 3 2 1143 51 4205 212.62299919128418 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 29 \N 1143 \N 3 2 1143 51 4206 61.319999694824219 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 8 \N 1143 \N 3 2 1143 51 4207 151.42499923706055 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 21 \N 1143 \N 3 2 1143 51 4208 79.398000717163086 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 11 \N 1143 \N 3 2 1143 51 4209 43.289999008178711 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 6 \N 1143 \N 3 2 1143 51 4210 234.2549991607666 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 32 \N 1143 \N 3 2 1143 51 4211 3.5699996948242188 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 0 \N 1143 \N 3 2 1143 51 4212 191.01499938964844 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 26 \N 1143 \N 3 2 1143 51 4213 39.655000686645508 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 5 \N 1143 \N 3 2 1143 51 4214 50.504999160766602 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 7 \N 1143 \N 3 2 1143 51 4215 216.27000045776367 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 30 \N 1143 \N 3 2 1143 51 4216 126.19499969482422 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 17 \N 1143 \N 3 2 1143 51 4217 46.870000839233398 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 6 \N 1143 \N 3 2 1143 51 4218 82.969999313354492 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 11 \N 1143 \N 3 2 1143 51 4219 169.40299987792969 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 23 \N 1143 \N 3 2 1143 51 4220 97.343000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 13 \N 1143 \N 3 2 1143 51 4221 90.159999847412109 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 12 \N 1143 \N 3 2 1143 51 4222 234.2549991607666 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 32 \N 1143 \N 3 2 1143 51 4223 252.30500030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 35 \N 1143 \N 3 2 1143 51 4224 10.795000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 1 \N 1143 \N 3 2 1143 51 4225 133.3700008392334 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 18 \N 1143 \N 3 2 1143 51 4226 68.569999694824219 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 9 \N 1143 \N 3 2 1143 51 4227 154.99799919128418 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 21 \N 1143 \N 3 2 1143 51 4228 144.2180004119873 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 20 \N 1143 \N 3 2 1143 51 4229 68.569999694824219 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 9 \N 1143 \N 3 2 1143 51 4230 198.19799995422363 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 27 \N 1143 \N 3 2 1143 51 4231 205.41300010681152 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 28 \N 1143 \N 3 2 1143 51 4232 237.88299942016602 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 33 \N 1143 \N 3 2 1143 51 4233 86.593000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 12 \N 1143 \N 3 2 1143 51 4234 219.84000015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 30 \N 1143 \N 3 2 1143 51 4235 46.870000839233398 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 6 \N 1143 \N 3 2 1143 51 4236 154.99799919128418 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 21 \N 1143 \N 3 2 1143 51 4237 209.0580005645752 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 29 \N 1143 \N 3 2 1143 51 4238 104.55299949645996 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 14 \N 1143 \N 3 2 1143 51 4239 248.65799903869629 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 34 \N 1143 \N 3 2 1143 51 4240 176.60799980163574 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 24 \N 1143 \N 3 2 1143 51 4241 180.23800086975098 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 25 \N 1143 \N 3 2 1143 51 4242 245.08499908447266 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 34 \N 1143 \N 3 2 1143 51 4243 3.5699996948242188 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 0 \N 1143 \N 3 2 1143 51 4244 147.78999900817871 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 20 \N 1143 \N 3 2 1143 51 4245 39.655000686645508 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 5 \N 1143 \N 3 2 1143 51 4246 54.079999923706055 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 7 \N 1143 \N 3 2 1143 51 4247 140.57500076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 19 \N 1143 \N 3 2 1143 51 4248 54.079999923706055 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 7 \N 1143 \N 3 2 1143 51 4249 241.45299911499023 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 33 \N 1143 \N 3 2 1143 51 4250 162.22800064086914 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 22 \N 1143 \N 3 2 1143 51 4251 194.63500022888184 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 27 \N 1143 \N 3 2 1143 51 4252 21.663000106811523 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 3 \N 1143 \N 3 2 1143 51 4253 111.76300048828125 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 15 \N 1143 \N 3 2 1143 51 4254 191.01499938964844 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 26 \N 1143 \N 3 2 1143 51 4255 255.8700008392334 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 35 \N 1143 \N 3 2 1143 51 4256 129.81500053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 18 \N 1143 \N 3 2 1143 51 4257 230.6879997253418 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 32 \N 1143 \N 3 2 1143 51 4258 75.777999877929688 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 10 \N 1143 \N 3 2 1143 51 4259 93.782999038696289 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 13 \N 1143 \N 3 2 1143 51 4260 18.023000717163086 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 2 \N 1143 \N 3 2 1143 51 4261 227.04800033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 31 \N 1143 \N 3 2 1143 51 4262 100.98299980163574 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 14 \N 1143 \N 3 2 1143 51 4263 97.343000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 13 \N 1143 \N 3 2 1143 51 4264 241.45299911499023 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 33 \N 1143 \N 3 2 1143 51 4265 137.0049991607666 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 19 \N 1143 \N 3 2 1143 51 4266 133.3700008392334 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 18 \N 1143 \N 3 2 1143 51 4267 227.04800033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 31 \N 1143 \N 3 2 1143 51 4268 64.959999084472656 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 9 \N 1143 \N 3 2 1143 51 4269 61.319999694824219 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 8 \N 1143 \N 3 2 1143 51 4270 183.81999969482422 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 25 \N 1143 \N 3 2 1143 51 4271 205.41300010681152 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 28 \N 1143 \N 3 2 1143 51 4272 28.857999801635742 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 4 \N 1143 \N 3 2 1143 51 4273 111.76300048828125 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 15 \N 1143 \N 3 2 1143 51 4274 57.75 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 8 \N 1143 \N 3 2 1143 51 4275 173.03800010681152 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 24 \N 1143 \N 3 2 1143 51 4276 223.47500038146973 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 31 \N 1143 \N 3 2 1143 51 4277 165.84000015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 23 \N 1143 \N 3 2 1143 51 4278 118.96299934387207 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 16 \N 1143 \N 3 2 1143 51 4279 7.2229995727539062 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 1 \N 1143 \N 3 2 1143 51 4280 32.430000305175781 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 4 \N 1143 \N 3 2 1143 51 4281 248.65799903869629 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 34 \N 1143 \N 3 2 1143 51 4282 212.62299919128418 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 29 \N 1143 \N 3 2 1143 51 4283 118.96299934387207 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 16 \N 1143 \N 3 2 1143 51 4284 14.437999725341797 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 2 \N 1143 \N 3 2 1143 51 4285 169.40299987792969 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 23 \N 1143 \N 3 2 1143 51 4286 140.57500076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 19 \N 1143 \N 3 2 1143 51 4287 90.159999847412109 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 12 \N 1143 \N 3 2 1143 51 4288 255.8700008392334 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 35 \N 1143 \N 3 2 1143 51 4289 108.19000053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 15 \N 1143 \N 3 2 1143 51 4290 115.38999938964844 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 16 \N 1143 \N 3 2 1143 51 4291 187.44499969482422 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 26 \N 1143 \N 3 2 1143 51 4292 176.60799980163574 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 24 \N 1143 \N 3 2 1143 51 4293 198.19799995422363 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 27 \N 1143 \N 3 2 1143 51 4294 183.81999969482422 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 25 \N 1143 \N 3 2 1143 51 4295 104.55299949645996 -40 \N 0.0206307423882 0.0069507732635999998 0 2 0 14 \N 1143 \N 3 2 1143 51 4296 75.777999877929688 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 10 \N 1143 \N 3 2 1143 51 4297 82.969999313354492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 11 \N 1143 \N 3 2 1143 51 4298 36.075000762939453 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 5 \N 1143 \N 3 2 1143 51 4299 25.235000610351562 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 3 \N 1143 \N 3 2 1143 51 4300 98.482000350952148 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 8 \N 1143 \N 3 2 1143 52 4301 92.295000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 7 \N 1143 \N 3 2 1143 52 4302 172.29700088500977 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 14 \N 1143 \N 3 2 1143 52 4303 12.305000305175781 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 1 \N 1143 \N 3 2 1143 52 4304 30.755001068115234 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 2 \N 1143 \N 3 2 1143 52 4305 356.82500076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 29 \N 1143 \N 3 2 1143 52 4306 418.29800033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 34 \N 1143 \N 3 2 1143 52 4307 129.21000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 10 \N 1143 \N 3 2 1143 52 4308 430.59000015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 35 \N 1143 \N 3 2 1143 52 4309 215.33699989318848 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 17 \N 1143 \N 3 2 1143 52 4310 393.72800064086914 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 32 \N 1143 \N 3 2 1143 52 4311 326.03300094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 26 \N 1143 \N 3 2 1143 52 4312 406.02499961853027 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 33 \N 1143 \N 3 2 1143 52 4313 362.94799995422363 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 29 \N 1143 \N 3 2 1143 52 4314 147.70499992370605 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 12 \N 1143 \N 3 2 1143 52 4315 61.565000534057617 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 5 \N 1143 \N 3 2 1143 52 4316 209.22000122070312 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 17 \N 1143 \N 3 2 1143 52 4317 369.13300132751465 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 30 \N 1143 \N 3 2 1143 52 4318 387.54000091552734 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 31 \N 1143 \N 3 2 1143 52 4319 184.61199951171875 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 15 \N 1143 \N 3 2 1143 52 4320 307.62800025939941 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 25 \N 1143 \N 3 2 1143 52 4321 252.28800010681152 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 20 \N 1143 \N 3 2 1143 52 4322 227.64700126647949 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 18 \N 1143 \N 3 2 1143 52 4323 43.082000732421875 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 3 \N 1143 \N 3 2 1143 52 4324 436.70000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 35 \N 1143 \N 3 2 1143 52 4325 233.8430004119873 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 19 \N 1143 \N 3 2 1143 52 4326 338.32500076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 27 \N 1143 \N 3 2 1143 52 4327 221.53000068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 18 \N 1143 \N 3 2 1143 52 4328 123.09200096130371 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 10 \N 1143 \N 3 2 1143 52 4329 264.56800079345703 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 21 \N 1143 \N 3 2 1143 52 4330 73.867000579833984 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 6 \N 1143 \N 3 2 1143 52 4331 116.92000007629395 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 9 \N 1143 \N 3 2 1143 52 4332 6.1200008392333984 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 0 \N 1143 \N 3 2 1143 52 4333 295.33300018310547 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 24 \N 1143 \N 3 2 1143 52 4334 276.86800003051758 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 22 \N 1143 \N 3 2 1143 52 4335 153.82999992370605 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 12 \N 1143 \N 3 2 1143 52 4336 86.182001113891602 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 7 \N 1143 \N 3 2 1143 52 4337 239.97299957275391 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 19 \N 1143 \N 3 2 1143 52 4338 79.98699951171875 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 6 \N 1143 \N 3 2 1143 52 4339 178.42500114440918 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 14 \N 1143 \N 3 2 1143 52 4340 18.427000045776367 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 1 \N 1143 \N 3 2 1143 52 4341 319.92000007629395 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 26 \N 1143 \N 3 2 1143 52 4342 283.04000091552734 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 23 \N 1143 \N 3 2 1143 52 4343 36.950000762939453 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 3 \N 1143 \N 3 2 1143 52 4344 246.16500091552734 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 20 \N 1143 \N 3 2 1143 52 4345 190.72999954223633 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 15 \N 1143 \N 3 2 1143 52 4346 166.11199951171875 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 13 \N 1143 \N 3 2 1143 52 4347 67.684999465942383 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 5 \N 1143 \N 3 2 1143 52 4348 301.45000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 24 \N 1143 \N 3 2 1143 52 4349 135.4069995880127 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 11 \N 1143 \N 3 2 1143 52 4350 270.75300025939941 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 22 \N 1143 \N 3 2 1143 52 4351 24.617000579833984 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 2 \N 1143 \N 3 2 1143 52 4352 258.46500015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 21 \N 1143 \N 3 2 1143 52 4353 55.392000198364258 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 4 \N 1143 \N 3 2 1143 52 4354 110.80500030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 9 \N 1143 \N 3 2 1143 52 4355 399.8380012512207 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 32 \N 1143 \N 3 2 1143 52 4356 381.42000007629395 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 31 \N 1143 \N 3 2 1143 52 4357 141.5319995880127 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 11 \N 1143 \N 3 2 1143 52 4358 350.63300132751465 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 28 \N 1143 \N 3 2 1143 52 4359 313.74300003051758 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 25 \N 1143 \N 3 2 1143 52 4360 344.51300048828125 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 28 \N 1143 \N 3 2 1143 52 4361 160.00200080871582 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 13 \N 1143 \N 3 2 1143 52 4362 104.59500122070312 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 8 \N 1143 \N 3 2 1143 52 4363 0 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 0 \N 1143 \N 3 2 1143 52 4364 49.277000427246094 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 4 \N 1143 \N 3 2 1143 52 4365 375.24300003051758 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 30 \N 1143 \N 3 2 1143 52 4366 196.91699981689453 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 16 \N 1143 \N 3 2 1143 52 4367 332.21500015258789 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 27 \N 1143 \N 3 2 1143 52 4368 424.40800094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 34 \N 1143 \N 3 2 1143 52 4369 203.03000068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 16 \N 1143 \N 3 2 1143 52 4370 289.15800094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 23 \N 1143 \N 3 2 1143 52 4371 412.13300132751465 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 33 \N 1143 \N 3 2 1143 52 4372 64.639999389648438 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 9 \N 1143 \N 3 2 1143 53 4373 75.389999389648438 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 10 \N 1143 \N 3 2 1143 53 4374 122.12800025939941 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 17 \N 1143 \N 3 2 1143 53 4375 114.94799995422363 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 16 \N 1143 \N 3 2 1143 53 4376 201.06499862670898 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 28 \N 1143 \N 3 2 1143 53 4377 247.72799873352051 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 34 \N 1143 \N 3 2 1143 53 4378 96.942998886108398 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 13 \N 1143 \N 3 2 1143 53 4379 89.754999160766602 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 12 \N 1143 \N 3 2 1143 53 4380 186.71999931335449 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 26 \N 1143 \N 3 2 1143 53 4381 57.472999572753906 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 8 \N 1143 \N 3 2 1143 53 4382 215.43299865722656 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 30 \N 1143 \N 3 2 1143 53 4383 129.30500030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 18 \N 1143 \N 3 2 1143 53 4384 3.5599994659423828 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 0 \N 1143 \N 3 2 1143 53 4385 254.9060001373291 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 35 \N 1143 \N 3 2 1143 53 4386 132.85799980163574 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 18 \N 1143 \N 3 2 1143 53 4387 150.84299850463867 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 21 \N 1143 \N 3 2 1143 53 4388 125.68499946594238 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 17 \N 1143 \N 3 2 1143 53 4389 118.5 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 16 \N 1143 \N 3 2 1143 53 4390 229.84299850463867 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 32 \N 1143 \N 3 2 1143 53 4391 100.57999992370605 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 14 \N 1143 \N 3 2 1143 53 4392 0 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 0 \N 1143 \N 3 2 1143 53 4393 17.914999008178711 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 2 \N 1143 \N 3 2 1143 53 4394 226.22299957275391 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 31 \N 1143 \N 3 2 1143 53 4395 107.77799987792969 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 15 \N 1143 \N 3 2 1143 53 4396 35.932998657226562 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 5 \N 1143 \N 3 2 1143 53 4397 28.729999542236328 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 4 \N 1143 \N 3 2 1143 53 4398 68.19999885559082 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 9 \N 1143 \N 3 2 1143 53 4399 172.40499877929688 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 24 \N 1143 \N 3 2 1143 53 4400 208.24799919128418 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 29 \N 1143 \N 3 2 1143 53 4401 154.39799880981445 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 21 \N 1143 \N 3 2 1143 53 4402 237.00799942016602 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 33 \N 1143 \N 3 2 1143 53 4403 32.289999008178711 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 4 \N 1143 \N 3 2 1143 53 4404 233.40099906921387 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 32 \N 1143 \N 3 2 1143 53 4405 61.022998809814453 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 8 \N 1143 \N 3 2 1143 53 4406 175.94499969482422 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 24 \N 1143 \N 3 2 1143 53 4407 10.743000030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 1 \N 1143 \N 3 2 1143 53 4408 111.32799911499023 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 15 \N 1143 \N 3 2 1143 53 4409 276.45299911499023 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 38 \N 1143 \N 3 2 1143 53 4410 244.17599868774414 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 34 \N 1143 \N 3 2 1143 53 4411 197.4429988861084 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 27 \N 1143 \N 3 2 1143 53 4412 193.88799858093262 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 27 \N 1143 \N 3 2 1143 53 4413 262.10299873352051 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 36 \N 1143 \N 3 2 1143 53 4414 25.104999542236328 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 3 \N 1143 \N 3 2 1143 53 4415 136.47799873352051 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 19 \N 1143 \N 3 2 1143 53 4416 14.35999870300293 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 2 \N 1143 \N 3 2 1143 53 4417 39.48499870300293 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 5 \N 1143 \N 3 2 1143 53 4418 222.66300010681152 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 31 \N 1143 \N 3 2 1143 53 4419 190.26799964904785 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 26 \N 1143 \N 3 2 1143 53 4420 147.20999908447266 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 20 \N 1143 \N 3 2 1143 53 4421 50.288000106811523 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 7 \N 1143 \N 3 2 1143 53 4422 269.2810001373291 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 37 \N 1143 \N 3 2 1143 53 4423 93.375 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 13 \N 1143 \N 3 2 1143 53 4424 53.857999801635742 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 7 \N 1143 \N 3 2 1143 53 4425 79.019998550415039 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 11 \N 1143 \N 3 2 1143 53 4426 219 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 30 \N 1143 \N 3 2 1143 53 4427 43.094999313354492 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 6 \N 1143 \N 3 2 1143 53 4428 183.11499977111816 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 25 \N 1143 \N 3 2 1143 53 4429 265.73099899291992 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 37 \N 1143 \N 3 2 1143 53 4430 82.577999114990234 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 11 \N 1143 \N 3 2 1143 53 4431 179.55500030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 25 \N 1143 \N 3 2 1143 53 4432 272.89799880981445 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 38 \N 1143 \N 3 2 1143 53 4433 86.197999954223633 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 12 \N 1143 \N 3 2 1143 53 4434 143.65499877929688 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 20 \N 1143 \N 3 2 1143 53 4435 161.58799934387207 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 22 \N 1143 \N 3 2 1143 53 4436 104.13799858093262 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 14 \N 1143 \N 3 2 1143 53 4437 71.829999923706055 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 10 \N 1143 \N 3 2 1143 53 4438 204.625 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 28 \N 1143 \N 3 2 1143 53 4439 168.77999877929688 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 23 \N 1143 \N 3 2 1143 53 4440 211.80500030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 29 \N 1143 \N 3 2 1143 53 4441 7.1829986572265625 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 1 \N 1143 \N 3 2 1143 53 4442 251.34599876403809 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 35 \N 1143 \N 3 2 1143 53 4443 158.02999877929688 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 22 \N 1143 \N 3 2 1143 53 4444 165.20800018310547 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 23 \N 1143 \N 3 2 1143 53 4445 258.54800033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 36 \N 1143 \N 3 2 1143 53 4446 21.532999038696289 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 3 \N 1143 \N 3 2 1143 53 4447 240.55799865722656 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 33 \N 1143 \N 3 2 1143 53 4448 140.02799987792969 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 19 \N 1143 \N 3 2 1143 53 4449 46.654998779296875 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 6 \N 1143 \N 3 2 1143 53 4450 111.30500030517578 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 15 \N 1143 \N 3 2 1143 54 4451 136.46000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 19 \N 1143 \N 3 2 1143 54 4452 28.738000869750977 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 4 \N 1143 \N 3 2 1143 54 4453 168.72500038146973 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 23 \N 1143 \N 3 2 1143 54 4454 71.828001022338867 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 10 \N 1143 \N 3 2 1143 54 4455 179.52000045776367 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 25 \N 1143 \N 3 2 1143 54 4456 208.23000144958496 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 29 \N 1143 \N 3 2 1143 54 4457 93.39000129699707 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 13 \N 1143 \N 3 2 1143 54 4458 122.10000038146973 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 17 \N 1143 \N 3 2 1143 54 4459 32.290000915527344 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 4 \N 1143 \N 3 2 1143 54 4460 25.107999801635742 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 3 \N 1143 \N 3 2 1143 54 4461 132.8430004119873 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 18 \N 1143 \N 3 2 1143 54 4462 75.400001525878906 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 10 \N 1143 \N 3 2 1143 54 4463 3.5650005340576172 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 0 \N 1143 \N 3 2 1143 54 4464 193.90000152587891 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 27 \N 1143 \N 3 2 1143 54 4465 204.61300086975098 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 28 \N 1143 \N 3 2 1143 54 4466 46.663000106811523 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 6 \N 1143 \N 3 2 1143 54 4467 240.53300094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 33 \N 1143 \N 3 2 1143 54 4468 82.569999694824219 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 11 \N 1143 \N 3 2 1143 54 4469 226.15800094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 31 \N 1143 \N 3 2 1143 54 4470 35.909999847412109 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 5 \N 1143 \N 3 2 1143 54 4471 183.07800102233887 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 25 \N 1143 \N 3 2 1143 54 4472 104.125 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 14 \N 1143 \N 3 2 1143 54 4473 186.70000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 26 \N 1143 \N 3 2 1143 54 4474 236.9680004119873 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 33 \N 1143 \N 3 2 1143 54 4475 118.48000144958496 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 16 \N 1143 \N 3 2 1143 54 4476 0 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 0 \N 1143 \N 3 2 1143 54 4477 96.954999923706055 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 13 \N 1143 \N 3 2 1143 54 4478 50.284999847412109 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 7 \N 1143 \N 3 2 1143 54 4479 201.06500053405762 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 28 \N 1143 \N 3 2 1143 54 4480 125.65800094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 17 \N 1143 \N 3 2 1143 54 4481 140.03000068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 19 \N 1143 \N 3 2 1143 54 4482 175.90000152587891 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 24 \N 1143 \N 3 2 1143 54 4483 161.5580005645752 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 22 \N 1143 \N 3 2 1143 54 4484 10.75 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 1 \N 1143 \N 3 2 1143 54 4485 150.83300018310547 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 21 \N 1143 \N 3 2 1143 54 4486 68.203001022338867 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 9 \N 1143 \N 3 2 1143 54 4487 147.22000122070312 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 20 \N 1143 \N 3 2 1143 54 4488 229.78499984741211 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 32 \N 1143 \N 3 2 1143 54 4489 233.34500122070312 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 32 \N 1143 \N 3 2 1143 54 4490 21.545000076293945 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 3 \N 1143 \N 3 2 1143 54 4491 143.65500068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 20 \N 1143 \N 3 2 1143 54 4492 114.92800140380859 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 16 \N 1143 \N 3 2 1143 54 4493 190.26000022888184 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 26 \N 1143 \N 3 2 1143 54 4494 17.918001174926758 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 2 \N 1143 \N 3 2 1143 54 4495 86.204999923706055 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 12 \N 1143 \N 3 2 1143 54 4496 211.78300094604492 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 29 \N 1143 \N 3 2 1143 54 4497 14.363000869750977 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 2 \N 1143 \N 3 2 1143 54 4498 53.850000381469727 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 7 \N 1143 \N 3 2 1143 54 4499 100.57299995422363 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 14 \N 1143 \N 3 2 1143 54 4500 43.105001449584961 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 6 \N 1143 \N 3 2 1143 54 4501 197.46000099182129 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 27 \N 1143 \N 3 2 1143 54 4502 218.98000144958496 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 30 \N 1143 \N 3 2 1143 54 4503 7.1979999542236328 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 1 \N 1143 \N 3 2 1143 54 4504 158.00800132751465 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 22 \N 1143 \N 3 2 1143 54 4505 57.468000411987305 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 8 \N 1143 \N 3 2 1143 54 4506 79.010000228881836 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 11 \N 1143 \N 3 2 1143 54 4507 172.35300064086914 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 24 \N 1143 \N 3 2 1143 54 4508 215.40500068664551 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 30 \N 1143 \N 3 2 1143 54 4509 107.73999977111816 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 15 \N 1143 \N 3 2 1143 54 4510 64.63800048828125 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 9 \N 1143 \N 3 2 1143 54 4511 61.018001556396484 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 8 \N 1143 \N 3 2 1143 54 4512 129.29000091552734 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 18 \N 1143 \N 3 2 1143 54 4513 89.760000228881836 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 12 \N 1143 \N 3 2 1143 54 4514 39.482999801635742 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 5 \N 1143 \N 3 2 1143 54 4515 154.39000129699707 -40 \N 0.0206307423882 0.0069507732635999998 0 1 0 21 \N 1143 \N 3 2 1143 54 4516 165.17300033569336 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 23 \N 1143 \N 3 2 1143 54 4517 222.60300064086914 -40 \N 0.0206307423882 0.0069507732635999998 0 0 0 31 \N 1143 \N 3 2 1143 54 4518 168.6820011138916 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 23 \N 1143 \N 3 2 1143 55 4519 125.64200019836426 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 17 \N 1143 \N 3 2 1143 55 4520 190.22000122070312 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 26 \N 1143 \N 3 2 1143 55 4521 122.08699989318848 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 17 \N 1143 \N 3 2 1143 55 4522 86.187000274658203 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 12 \N 1143 \N 3 2 1143 55 4523 150.78000068664551 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 21 \N 1143 \N 3 2 1143 55 4524 43.076999664306641 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 6 \N 1143 \N 3 2 1143 55 4525 100.55200004577637 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 14 \N 1143 \N 3 2 1143 55 4526 93.362001419067383 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 13 \N 1143 \N 3 2 1143 55 4527 204.59000015258789 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 28 \N 1143 \N 3 2 1143 55 4528 111.28700065612793 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 15 \N 1143 \N 3 2 1143 55 4529 96.92500114440918 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 13 \N 1143 \N 3 2 1143 55 4530 183.04500007629395 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 25 \N 1143 \N 3 2 1143 55 4531 89.746999740600586 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 12 \N 1143 \N 3 2 1143 55 4532 3.5550003051757812 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 0 \N 1143 \N 3 2 1143 55 4533 132.8120002746582 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 18 \N 1143 \N 3 2 1143 55 4534 186.66500091552734 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 26 \N 1143 \N 3 2 1143 55 4535 35.915000915527344 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 5 \N 1143 \N 3 2 1143 55 4536 25.117000579833984 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 3 \N 1143 \N 3 2 1143 55 4537 197.40999984741211 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 27 \N 1143 \N 3 2 1143 55 4538 165.125 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 23 \N 1143 \N 3 2 1143 55 4539 21.560001373291016 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 3 \N 1143 \N 3 2 1143 55 4540 139.97999954223633 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 19 \N 1143 \N 3 2 1143 55 4541 57.437000274658203 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 8 \N 1143 \N 3 2 1143 55 4542 161.50699996948242 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 22 \N 1143 \N 3 2 1143 55 4543 107.73500061035156 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 15 \N 1143 \N 3 2 1143 55 4544 64.642000198364258 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 9 \N 1143 \N 3 2 1143 55 4545 179.48999977111816 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 25 \N 1143 \N 3 2 1143 55 4546 154.34000015258789 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 21 \N 1143 \N 3 2 1143 55 4547 172.31000137329102 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 24 \N 1143 \N 3 2 1143 55 4548 32.30000114440918 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 4 \N 1143 \N 3 2 1143 55 4549 50.25 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 7 \N 1143 \N 3 2 1143 55 4550 143.60499954223633 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 20 \N 1143 \N 3 2 1143 55 4551 222.57500076293945 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 31 \N 1143 \N 3 2 1143 55 4552 208.22000122070312 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 29 \N 1143 \N 3 2 1143 55 4553 157.95700073242188 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 22 \N 1143 \N 3 2 1143 55 4554 0 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 0 \N 1143 \N 3 2 1143 55 4555 61.005001068115234 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 8 \N 1143 \N 3 2 1143 55 4556 147.16200065612793 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 20 \N 1143 \N 3 2 1143 55 4557 193.84700012207031 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 27 \N 1143 \N 3 2 1143 55 4558 53.815000534057617 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 7 \N 1143 \N 3 2 1143 55 4559 7.1820011138916016 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 1 \N 1143 \N 3 2 1143 55 4560 136.43000030517578 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 19 \N 1143 \N 3 2 1143 55 4561 71.817001342773438 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 10 \N 1143 \N 3 2 1143 55 4562 10.739999771118164 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 1 \N 1143 \N 3 2 1143 55 4563 211.77499961853027 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 29 \N 1143 \N 3 2 1143 55 4564 215.39500045776367 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 30 \N 1143 \N 3 2 1143 55 4565 118.46700096130371 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 16 \N 1143 \N 3 2 1143 55 4566 104.10499954223633 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 14 \N 1143 \N 3 2 1143 55 4567 114.90500068664551 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 16 \N 1143 \N 3 2 1143 55 4568 17.937000274658203 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 2 \N 1143 \N 3 2 1143 55 4569 39.465000152587891 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 5 \N 1143 \N 3 2 1143 55 4570 218.95000076293945 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 30 \N 1143 \N 3 2 1143 55 4571 14.362001419067383 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 2 \N 1143 \N 3 2 1143 55 4572 175.8700008392334 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 24 \N 1143 \N 3 2 1143 55 4573 226.13500022888184 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 31 \N 1143 \N 3 2 1143 55 4574 201.0319995880127 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 28 \N 1143 \N 3 2 1143 55 4575 28.745000839233398 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 4 \N 1143 \N 3 2 1143 55 4576 75.380001068115234 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 10 \N 1143 \N 3 2 1143 55 4577 129.26200103759766 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 18 \N 1143 \N 3 2 1143 55 4578 46.635000228881836 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 6 \N 1143 \N 3 2 1143 55 4579 79.006999969482422 -40 \N 0.020707296102600001 0.0067975967429999996 0 0 0 11 \N 1143 \N 3 2 1143 55 4580 68.200000762939453 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 9 \N 1143 \N 3 2 1143 55 4581 82.565000534057617 -40 \N 0.020707296102600001 0.0067975967429999996 0 1 0 11 \N 1143 \N 3 2 1143 55 4582 247.71000099182129 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 34 \N 1143 \N 3 2 1143 56 4583 71.755001068115234 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 10 \N 1143 \N 3 2 1143 56 4584 78.958000183105469 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 11 \N 1143 \N 3 2 1143 56 4585 21.558000564575195 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 3 \N 1143 \N 3 2 1143 56 4586 236.98000144958496 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 33 \N 1143 \N 3 2 1143 56 4587 17.933000564575195 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 2 \N 1143 \N 3 2 1143 56 4588 53.770000457763672 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 7 \N 1143 \N 3 2 1143 56 4589 86.149999618530273 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 12 \N 1143 \N 3 2 1143 56 4590 190.30000114440918 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 26 \N 1143 \N 3 2 1143 56 4591 118.44000053405762 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 16 \N 1143 \N 3 2 1143 56 4592 10.745000839233398 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 1 \N 1143 \N 3 2 1143 56 4593 183.11300086975098 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 25 \N 1143 \N 3 2 1143 56 4594 14.375 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 2 \N 1143 \N 3 2 1143 56 4595 168.76000022888184 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 23 \N 1143 \N 3 2 1143 56 4596 89.708000183105469 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 12 \N 1143 \N 3 2 1143 56 4597 215.45499992370605 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 30 \N 1143 \N 3 2 1143 56 4598 7.1780014038085938 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 1 \N 1143 \N 3 2 1143 56 4599 150.82299995422363 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 21 \N 1143 \N 3 2 1143 56 4600 186.73999977111816 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 26 \N 1143 \N 3 2 1143 56 4601 222.63000106811523 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 31 \N 1143 \N 3 2 1143 56 4602 3.5550003051757812 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 0 \N 1143 \N 3 2 1143 56 4603 75.315000534057617 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 10 \N 1143 \N 3 2 1143 56 4604 28.728000640869141 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 4 \N 1143 \N 3 2 1143 56 4605 125.63000106811523 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 17 \N 1143 \N 3 2 1143 56 4606 204.65800094604492 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 28 \N 1143 \N 3 2 1143 56 4607 175.9379997253418 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 24 \N 1143 \N 3 2 1143 56 4608 201.10300064086914 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 28 \N 1143 \N 3 2 1143 56 4609 43.065000534057617 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 6 \N 1143 \N 3 2 1143 56 4610 32.284999847412109 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 4 \N 1143 \N 3 2 1143 56 4611 96.88800048828125 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 13 \N 1143 \N 3 2 1143 56 4612 161.56800079345703 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 22 \N 1143 \N 3 2 1143 56 4613 129.26000022888184 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 18 \N 1143 \N 3 2 1143 56 4614 35.899999618530273 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 5 \N 1143 \N 3 2 1143 56 4615 46.614999771118164 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 6 \N 1143 \N 3 2 1143 56 4616 226.1830005645752 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 31 \N 1143 \N 3 2 1143 56 4617 25.100000381469727 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 3 \N 1143 \N 3 2 1143 56 4618 158.01500129699707 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 22 \N 1143 \N 3 2 1143 56 4619 50.223001480102539 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 7 \N 1143 \N 3 2 1143 56 4620 0 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 0 \N 1143 \N 3 2 1143 56 4621 100.52499961853027 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 14 \N 1143 \N 3 2 1143 56 4622 136.45000076293945 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 19 \N 1143 \N 3 2 1143 56 4623 172.38300132751465 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 24 \N 1143 \N 3 2 1143 56 4624 104.07999992370605 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 14 \N 1143 \N 3 2 1143 56 4625 111.25500106811523 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 15 \N 1143 \N 3 2 1143 56 4626 193.9330005645752 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 27 \N 1143 \N 3 2 1143 56 4627 93.335000991821289 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 13 \N 1143 \N 3 2 1143 56 4628 39.450000762939453 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 5 \N 1143 \N 3 2 1143 56 4629 64.579999923706055 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 9 \N 1143 \N 3 2 1143 56 4630 143.63000106811523 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 20 \N 1143 \N 3 2 1143 56 4631 114.87300109863281 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 16 \N 1143 \N 3 2 1143 56 4632 165.20499992370605 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 23 \N 1143 \N 3 2 1143 56 4633 179.5580005645752 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 25 \N 1143 \N 3 2 1143 56 4634 240.53499984741211 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 33 \N 1143 \N 3 2 1143 56 4635 60.950000762939453 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 8 \N 1143 \N 3 2 1143 56 4636 197.48800086975098 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 27 \N 1143 \N 3 2 1143 56 4637 140.00800132751465 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 19 \N 1143 \N 3 2 1143 56 4638 107.70000076293945 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 15 \N 1143 \N 3 2 1143 56 4639 208.27499961853027 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 29 \N 1143 \N 3 2 1143 56 4640 154.39000129699707 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 21 \N 1143 \N 3 2 1143 56 4641 244.15999984741211 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 34 \N 1143 \N 3 2 1143 56 4642 229.81000137329102 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 32 \N 1143 \N 3 2 1143 56 4643 57.392999649047852 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 8 \N 1143 \N 3 2 1143 56 4644 211.83300018310547 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 29 \N 1143 \N 3 2 1143 56 4645 132.81500053405762 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 18 \N 1143 \N 3 2 1143 56 4646 68.135000228881836 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 9 \N 1143 \N 3 2 1143 56 4647 122.07500076293945 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 17 \N 1143 \N 3 2 1143 56 4648 219.00800132751465 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 30 \N 1143 \N 3 2 1143 56 4649 147.19000053405762 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 20 \N 1143 \N 3 2 1143 56 4650 233.36000061035156 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 32 \N 1143 \N 3 2 1143 56 4651 82.527999877929688 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 11 \N 1143 \N 3 2 1143 56 4652 35.941999435424805 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 5 \N 1143 \N 3 2 1143 57 4653 14.351999282836914 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 2 \N 1143 \N 3 2 1143 57 4654 161.48200035095215 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 22 \N 1143 \N 3 2 1143 57 4655 17.924999237060547 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 2 \N 1143 \N 3 2 1143 57 4656 204.58300018310547 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 28 \N 1143 \N 3 2 1143 57 4657 132.77199935913086 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 18 \N 1143 \N 3 2 1143 57 4658 82.521999359130859 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 11 \N 1143 \N 3 2 1143 57 4659 218.94000053405762 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 30 \N 1143 \N 3 2 1143 57 4660 226.11999893188477 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 31 \N 1143 \N 3 2 1143 57 4661 154.30200004577637 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 21 \N 1143 \N 3 2 1143 57 4662 190.22200012207031 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 26 \N 1143 \N 3 2 1143 57 4663 118.43199920654297 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 16 \N 1143 \N 3 2 1143 57 4664 215.38999938964844 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 30 \N 1143 \N 3 2 1143 57 4665 7.1819992065429688 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 1 \N 1143 \N 3 2 1143 57 4666 114.8799991607666 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 16 \N 1143 \N 3 2 1143 57 4667 186.66200065612793 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 26 \N 1143 \N 3 2 1143 57 4668 111.25 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 15 \N 1143 \N 3 2 1143 57 4669 197.40499877929688 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 27 \N 1143 \N 3 2 1143 57 4670 57.451999664306641 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 8 \N 1143 \N 3 2 1143 57 4671 89.704999923706055 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 12 \N 1143 \N 3 2 1143 57 4672 39.494998931884766 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 5 \N 1143 \N 3 2 1143 57 4673 75.341999053955078 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 10 \N 1143 \N 3 2 1143 57 4674 104.07699966430664 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 14 \N 1143 \N 3 2 1143 57 4675 68.170000076293945 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 9 \N 1143 \N 3 2 1143 57 4676 211.75799942016602 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 29 \N 1143 \N 3 2 1143 57 4677 157.92199897766113 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 22 \N 1143 \N 3 2 1143 57 4678 50.284999847412109 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 7 \N 1143 \N 3 2 1143 57 4679 53.841999053955078 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 7 \N 1143 \N 3 2 1143 57 4680 71.789999008178711 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 10 \N 1143 \N 3 2 1143 57 4681 143.55699920654297 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 20 \N 1143 \N 3 2 1143 57 4682 93.322000503540039 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 13 \N 1143 \N 3 2 1143 57 4683 3.5599994659423828 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 0 \N 1143 \N 3 2 1143 57 4684 32.315000534057617 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 4 \N 1143 \N 3 2 1143 57 4685 78.961999893188477 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 11 \N 1143 \N 3 2 1143 57 4686 183.03700065612793 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 25 \N 1143 \N 3 2 1143 57 4687 147.11499977111816 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 20 \N 1143 \N 3 2 1143 57 4688 136.38500022888184 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 19 \N 1143 \N 3 2 1143 57 4689 125.60700035095215 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 17 \N 1143 \N 3 2 1143 57 4690 0 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 0 \N 1143 \N 3 2 1143 57 4691 61 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 8 \N 1143 \N 3 2 1143 57 4692 10.735000610351562 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 1 \N 1143 \N 3 2 1143 57 4693 96.876998901367188 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 13 \N 1143 \N 3 2 1143 57 4694 129.22699928283691 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 18 \N 1143 \N 3 2 1143 57 4695 46.677000045776367 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 6 \N 1143 \N 3 2 1143 57 4696 208.20499992370605 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 29 \N 1143 \N 3 2 1143 57 4697 64.614999771118164 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 9 \N 1143 \N 3 2 1143 57 4698 150.74200057983398 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 21 \N 1143 \N 3 2 1143 57 4699 201.02299880981445 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 28 \N 1143 \N 3 2 1143 57 4700 222.56500053405762 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 31 \N 1143 \N 3 2 1143 57 4701 179.47699928283691 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 25 \N 1143 \N 3 2 1143 57 4702 100.52000045776367 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 14 \N 1143 \N 3 2 1143 57 4703 86.146999359130859 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 12 \N 1143 \N 3 2 1143 57 4704 175.84499931335449 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 24 \N 1143 \N 3 2 1143 57 4705 193.84499931335449 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 27 \N 1143 \N 3 2 1143 57 4706 28.751998901367188 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 4 \N 1143 \N 3 2 1143 57 4707 139.93499946594238 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 19 \N 1143 \N 3 2 1143 57 4708 122.04699897766113 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 17 \N 1143 \N 3 2 1143 57 4709 25.117000579833984 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 3 \N 1143 \N 3 2 1143 57 4710 21.555000305175781 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 3 \N 1143 \N 3 2 1143 57 4711 168.67199897766113 -40 \N 0.0206858776446 0.0066585840414000001 0 1 0 23 \N 1143 \N 3 2 1143 57 4712 107.69700050354004 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 15 \N 1143 \N 3 2 1143 57 4713 43.11199951171875 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 6 \N 1143 \N 3 2 1143 57 4714 165.10199928283691 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 23 \N 1143 \N 3 2 1143 57 4715 172.29199981689453 -40 \N 0.0206858776446 0.0066585840414000001 0 0 0 24 \N 1143 \N 3 2 1143 57 4716 176.04299926757812 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 24 \N 1143 \N 3 2 1143 58 4717 186.86499977111816 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 26 \N 1143 \N 3 2 1143 58 4718 251.46999931335449 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 35 \N 1143 \N 3 2 1143 58 4719 194.0580005645752 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 27 \N 1143 \N 3 2 1143 58 4720 132.92499923706055 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 18 \N 1143 \N 3 2 1143 58 4721 122.19499969482422 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 17 \N 1143 \N 3 2 1143 58 4722 53.899999618530273 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 7 \N 1143 \N 3 2 1143 58 4723 86.315000534057617 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 12 \N 1143 \N 3 2 1143 58 4724 143.72500038146973 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 20 \N 1143 \N 3 2 1143 58 4725 273.01000022888184 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 38 \N 1143 \N 3 2 1143 58 4726 46.722999572753906 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 6 \N 1143 \N 3 2 1143 58 4727 118.57799911499023 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 16 \N 1143 \N 3 2 1143 58 4728 154.46999931335449 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 21 \N 1143 \N 3 2 1143 58 4729 179.67799949645996 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 25 \N 1143 \N 3 2 1143 58 4730 32.357999801635742 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 4 \N 1143 \N 3 2 1143 58 4731 43.170000076293945 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 6 \N 1143 \N 3 2 1143 58 4732 39.548000335693359 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 5 \N 1143 \N 3 2 1143 58 4733 140.10299873352051 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 19 \N 1143 \N 3 2 1143 58 4734 211.95499992370605 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 29 \N 1143 \N 3 2 1143 58 4735 129.375 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 18 \N 1143 \N 3 2 1143 58 4736 107.83300018310547 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 15 \N 1143 \N 3 2 1143 58 4737 71.927999496459961 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 10 \N 1143 \N 3 2 1143 58 4738 219.11800003051758 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 30 \N 1143 \N 3 2 1143 58 4739 14.430000305175781 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 2 \N 1143 \N 3 2 1143 58 4740 61.100000381469727 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 8 \N 1143 \N 3 2 1143 58 4741 35.98499870300293 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 5 \N 1143 \N 3 2 1143 58 4742 136.54800033569336 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 19 \N 1143 \N 3 2 1143 58 4743 247.85999870300293 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 34 \N 1143 \N 3 2 1143 58 4744 229.89999961853027 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 32 \N 1143 \N 3 2 1143 58 4745 147.27999877929688 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 20 \N 1143 \N 3 2 1143 58 4746 50.33799934387207 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 7 \N 1143 \N 3 2 1143 58 4747 68.298000335693359 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 9 \N 1143 \N 3 2 1143 58 4748 97.029998779296875 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 13 \N 1143 \N 3 2 1143 58 4749 265.84000015258789 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 37 \N 1143 \N 3 2 1143 58 4750 104.20800018310547 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 14 \N 1143 \N 3 2 1143 58 4751 0 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 0 \N 1143 \N 3 2 1143 58 4752 158.10000038146973 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 22 \N 1143 \N 3 2 1143 58 4753 111.38999938964844 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 15 \N 1143 \N 3 2 1143 58 4754 244.29800033569336 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 34 \N 1143 \N 3 2 1143 58 4755 226.28499984741211 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 31 \N 1143 \N 3 2 1143 58 4756 115.02000045776367 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 16 \N 1143 \N 3 2 1143 58 4757 201.22999954223633 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 28 \N 1143 \N 3 2 1143 58 4758 222.73799896240234 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 31 \N 1143 \N 3 2 1143 58 4759 262.20800018310547 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 36 \N 1143 \N 3 2 1143 58 4760 233.46299934387207 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 32 \N 1143 \N 3 2 1143 58 4761 7.2349987030029297 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 1 \N 1143 \N 3 2 1143 58 4762 183.23499870300293 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 25 \N 1143 \N 3 2 1143 58 4763 125.7549991607666 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 17 \N 1143 \N 3 2 1143 58 4764 25.147998809814453 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 3 \N 1143 \N 3 2 1143 58 4765 197.61499977111816 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 27 \N 1143 \N 3 2 1143 58 4766 208.40299987792969 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 29 \N 1143 \N 3 2 1143 58 4767 100.64999961853027 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 14 \N 1143 \N 3 2 1143 58 4768 89.878000259399414 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 12 \N 1143 \N 3 2 1143 58 4769 215.5679988861084 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 30 \N 1143 \N 3 2 1143 58 4770 28.789999008178711 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 4 \N 1143 \N 3 2 1143 58 4771 150.91300010681152 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 21 \N 1143 \N 3 2 1143 58 4772 255.03299903869629 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 35 \N 1143 \N 3 2 1143 58 4773 3.5749988555908203 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 0 \N 1143 \N 3 2 1143 58 4774 10.798000335693359 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 1 \N 1143 \N 3 2 1143 58 4775 75.487998962402344 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 10 \N 1143 \N 3 2 1143 58 4776 276.57499885559082 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 38 \N 1143 \N 3 2 1143 58 4777 165.29500007629395 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 23 \N 1143 \N 3 2 1143 58 4778 21.594999313354492 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 3 \N 1143 \N 3 2 1143 58 4779 168.85499954223633 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 23 \N 1143 \N 3 2 1143 58 4780 240.67300033569336 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 33 \N 1143 \N 3 2 1143 58 4781 161.66499900817871 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 22 \N 1143 \N 3 2 1143 58 4782 64.73499870300293 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 9 \N 1143 \N 3 2 1143 58 4783 82.680000305175781 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 11 \N 1143 \N 3 2 1143 58 4784 237.0930004119873 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 33 \N 1143 \N 3 2 1143 58 4785 269.38999938964844 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 37 \N 1143 \N 3 2 1143 58 4786 93.487998962402344 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 13 \N 1143 \N 3 2 1143 58 4787 17.982999801635742 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 2 \N 1143 \N 3 2 1143 58 4788 204.78299903869629 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 28 \N 1143 \N 3 2 1143 58 4789 79.118000030517578 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 11 \N 1143 \N 3 2 1143 58 4790 190.42300033569336 -40 \N 0.020883065641800001 0.0066585840414000001 0 1 0 26 \N 1143 \N 3 2 1143 58 4791 172.48299980163574 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 24 \N 1143 \N 3 2 1143 58 4792 57.539999008178711 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 8 \N 1143 \N 3 2 1143 58 4793 258.65799903869629 -40 \N 0.020883065641800001 0.0066585840414000001 0 0 0 36 \N 1143 \N 3 2 1143 58 4794 143.57299995422363 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 20 \N 1143 \N 3 2 1143 59 4795 150.75300025939941 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 21 \N 1143 \N 3 2 1143 59 4796 50.220001220703125 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 7 \N 1143 \N 3 2 1143 59 4797 125.58300018310547 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 17 \N 1143 \N 3 2 1143 59 4798 208.18099975585938 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 29 \N 1143 \N 3 2 1143 59 4799 236.89800071716309 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 33 \N 1143 \N 3 2 1143 59 4800 247.62800025939941 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 34 \N 1143 \N 3 2 1143 59 4801 25.059999465942383 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 3 \N 1143 \N 3 2 1143 59 4802 183.03800010681152 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 25 \N 1143 \N 3 2 1143 59 4803 190.21599960327148 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 26 \N 1143 \N 3 2 1143 59 4804 3.5680007934570312 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 0 \N 1143 \N 3 2 1143 59 4805 139.95100021362305 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 19 \N 1143 \N 3 2 1143 59 4806 53.773000717163086 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 7 \N 1143 \N 3 2 1143 59 4807 168.68600082397461 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 23 \N 1143 \N 3 2 1143 59 4808 86.123001098632812 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 12 \N 1143 \N 3 2 1143 59 4809 82.505001068115234 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 11 \N 1143 \N 3 2 1143 59 4810 68.135000228881836 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 9 \N 1143 \N 3 2 1143 59 4811 240.45600128173828 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 33 \N 1143 \N 3 2 1143 59 4812 111.26000022888184 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 15 \N 1143 \N 3 2 1143 59 4813 197.38800048828125 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 27 \N 1143 \N 3 2 1143 59 4814 107.6879997253418 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 15 \N 1143 \N 3 2 1143 59 4815 32.222999572753906 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 4 \N 1143 \N 3 2 1143 59 4816 222.5580005645752 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 31 \N 1143 \N 3 2 1143 59 4817 104.06999969482422 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 14 \N 1143 \N 3 2 1143 59 4818 229.73600006103516 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 32 \N 1143 \N 3 2 1143 59 4819 71.755001068115234 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 10 \N 1143 \N 3 2 1143 59 4820 7.2030010223388672 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 1 \N 1143 \N 3 2 1143 59 4821 10.757999420166016 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 1 \N 1143 \N 3 2 1143 59 4822 89.687999725341797 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 12 \N 1143 \N 3 2 1143 59 4823 118.41100120544434 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 16 \N 1143 \N 3 2 1143 59 4824 100.51300048828125 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 14 \N 1143 \N 3 2 1143 59 4825 75.325000762939453 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 10 \N 1143 \N 3 2 1143 59 4826 122.02300071716309 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 17 \N 1143 \N 3 2 1143 59 4827 28.670000076293945 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 4 \N 1143 \N 3 2 1143 59 4828 175.86100006103516 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 24 \N 1143 \N 3 2 1143 59 4829 114.86300086975098 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 16 \N 1143 \N 3 2 1143 59 4830 132.77799987792969 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 18 \N 1143 \N 3 2 1143 59 4831 193.83100128173828 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 27 \N 1143 \N 3 2 1143 59 4832 186.66100120544434 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 26 \N 1143 \N 3 2 1143 59 4833 154.31599998474121 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 21 \N 1143 \N 3 2 1143 59 4834 93.322999954223633 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 13 \N 1143 \N 3 2 1143 59 4835 215.38299942016602 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 30 \N 1143 \N 3 2 1143 59 4836 244.07299995422363 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 34 \N 1143 \N 3 2 1143 59 4837 17.899999618530273 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 2 \N 1143 \N 3 2 1143 59 4838 46.593000411987305 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 6 \N 1143 \N 3 2 1143 59 4839 157.94799995422363 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 22 \N 1143 \N 3 2 1143 59 4840 78.953001022338867 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 11 \N 1143 \N 3 2 1143 59 4841 201.01099967956543 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 28 \N 1143 \N 3 2 1143 59 4842 165.12100028991699 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 23 \N 1143 \N 3 2 1143 59 4843 218.94099998474121 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 30 \N 1143 \N 3 2 1143 59 4844 226.12800025939941 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 31 \N 1143 \N 3 2 1143 59 4845 233.28300094604492 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 32 \N 1143 \N 3 2 1143 59 4846 172.30299949645996 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 24 \N 1143 \N 3 2 1143 59 4847 21.51500129699707 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 3 \N 1143 \N 3 2 1143 59 4848 211.74100112915039 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 29 \N 1143 \N 3 2 1143 59 4849 204.5580005645752 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 28 \N 1143 \N 3 2 1143 59 4850 136.4010009765625 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 19 \N 1143 \N 3 2 1143 59 4851 129.22299957275391 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 18 \N 1143 \N 3 2 1143 59 4852 147.12800025939941 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 20 \N 1143 \N 3 2 1143 59 4853 60.934999465942383 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 8 \N 1143 \N 3 2 1143 59 4854 57.38800048828125 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 8 \N 1143 \N 3 2 1143 59 4855 39.415000915527344 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 5 \N 1143 \N 3 2 1143 59 4856 35.845001220703125 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 5 \N 1143 \N 3 2 1143 59 4857 179.47800064086914 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 25 \N 1143 \N 3 2 1143 59 4858 161.49800109863281 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 22 \N 1143 \N 3 2 1143 59 4859 0 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 0 \N 1143 \N 3 2 1143 59 4860 43.034999847412109 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 6 \N 1143 \N 3 2 1143 59 4861 64.578001022338867 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 9 \N 1143 \N 3 2 1143 59 4862 96.88800048828125 -40 \N 0.020884171110600001 0.0064365920880000002 0 1 0 13 \N 1143 \N 3 2 1143 59 4863 14.363000869750977 -40 \N 0.020884171110600001 0.0064365920880000002 0 0 0 2 \N 1143 \N 3 2 1143 59 4864 35.83799934387207 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 5 \N 1143 \N 3 2 1143 60 4865 125.53299903869629 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 17 \N 1143 \N 3 2 1143 60 4866 118.34799957275391 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 16 \N 1143 \N 3 2 1143 60 4867 136.29999923706055 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 19 \N 1143 \N 3 2 1143 60 4868 193.69999885559082 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 27 \N 1143 \N 3 2 1143 60 4869 215.25300025939941 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 30 \N 1143 \N 3 2 1143 60 4870 179.36499977111816 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 25 \N 1143 \N 3 2 1143 60 4871 261.92300033569336 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 36 \N 1143 \N 3 2 1143 60 4872 269.09000015258789 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 37 \N 1143 \N 3 2 1143 60 4873 258.36299896240234 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 36 \N 1143 \N 3 2 1143 60 4874 86.090000152587891 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 12 \N 1143 \N 3 2 1143 60 4875 243.98299980163574 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 34 \N 1143 \N 3 2 1143 60 4876 60.965000152587891 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 8 \N 1143 \N 3 2 1143 60 4877 229.60799980163574 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 32 \N 1143 \N 3 2 1143 60 4878 111.17000007629395 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 15 \N 1143 \N 3 2 1143 60 4879 208.08300018310547 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 29 \N 1143 \N 3 2 1143 60 4880 276.27999877929688 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 38 \N 1143 \N 3 2 1143 60 4881 319.39299964904785 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 44 \N 1143 \N 3 2 1143 60 4882 75.309999465942383 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 10 \N 1143 \N 3 2 1143 60 4883 165.01799964904785 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 23 \N 1143 \N 3 2 1143 60 4884 139.85299873352051 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 19 \N 1143 \N 3 2 1143 60 4885 301.46500015258789 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 42 \N 1143 \N 3 2 1143 60 4886 182.91799926757812 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 25 \N 1143 \N 3 2 1143 60 4887 200.88500022888184 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 28 \N 1143 \N 3 2 1143 60 4888 236.78999900817871 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 33 \N 1143 \N 3 2 1143 60 4889 294.28499984741211 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 41 \N 1143 \N 3 2 1143 60 4890 297.84000015258789 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 41 \N 1143 \N 3 2 1143 60 4891 251.17000007629395 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 35 \N 1143 \N 3 2 1143 60 4892 287.09000015258789 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 40 \N 1143 \N 3 2 1143 60 4893 225.98799896240234 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 31 \N 1143 \N 3 2 1143 60 4894 89.639999389648438 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 12 \N 1143 \N 3 2 1143 60 4895 218.79800033569336 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 30 \N 1143 \N 3 2 1143 60 4896 57.407999038696289 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 8 \N 1143 \N 3 2 1143 60 4897 0 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 0 \N 1143 \N 3 2 1143 60 4898 312.2180004119873 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 43 \N 1143 \N 3 2 1143 60 4899 172.19000053405762 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 24 \N 1143 \N 3 2 1143 60 4900 93.270000457763672 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 13 \N 1143 \N 3 2 1143 60 4901 254.72999954223633 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 35 \N 1143 \N 3 2 1143 60 4902 50.204999923706055 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 7 \N 1143 \N 3 2 1143 60 4903 247.54800033569336 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 34 \N 1143 \N 3 2 1143 60 4904 17.909999847412109 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 2 \N 1143 \N 3 2 1143 60 4905 28.684999465942383 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 4 \N 1143 \N 3 2 1143 60 4906 25.079999923706055 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 3 \N 1143 \N 3 2 1143 60 4907 96.827999114990234 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 13 \N 1143 \N 3 2 1143 60 4908 147.03299903869629 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 20 \N 1143 \N 3 2 1143 60 4909 233.17499923706055 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 32 \N 1143 \N 3 2 1143 60 4910 104.00300025939941 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 14 \N 1143 \N 3 2 1143 60 4911 39.389999389648438 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 5 \N 1143 \N 3 2 1143 60 4912 222.42499923706055 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 31 \N 1143 \N 3 2 1143 60 4913 168.57299995422363 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 23 \N 1143 \N 3 2 1143 60 4914 279.90299987792969 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 39 \N 1143 \N 3 2 1143 60 4915 265.53999900817871 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 37 \N 1143 \N 3 2 1143 60 4916 272.71999931335449 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 38 \N 1143 \N 3 2 1143 60 4917 211.63999938964844 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 29 \N 1143 \N 3 2 1143 60 4918 3.5650005340576172 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 0 \N 1143 \N 3 2 1143 60 4919 53.770000457763672 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 7 \N 1143 \N 3 2 1143 60 4920 175.76000022888184 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 24 \N 1143 \N 3 2 1143 60 4921 197.2549991607666 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 27 \N 1143 \N 3 2 1143 60 4922 143.48299980163574 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 20 \N 1143 \N 3 2 1143 60 4923 14.368000030517578 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 2 \N 1143 \N 3 2 1143 60 4924 150.68000030517578 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 21 \N 1143 \N 3 2 1143 60 4925 305.02299880981445 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 42 \N 1143 \N 3 2 1143 60 4926 154.22999954223633 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 21 \N 1143 \N 3 2 1143 60 4927 7.1900005340576172 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 1 \N 1143 \N 3 2 1143 60 4928 129.14299964904785 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 18 \N 1143 \N 3 2 1143 60 4929 68.145000457763672 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 9 \N 1143 \N 3 2 1143 60 4930 114.78800010681152 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 16 \N 1143 \N 3 2 1143 60 4931 315.83799934387207 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 44 \N 1143 \N 3 2 1143 60 4932 10.75 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 1 \N 1143 \N 3 2 1143 60 4933 32.229999542236328 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 4 \N 1143 \N 3 2 1143 60 4934 283.45499992370605 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 39 \N 1143 \N 3 2 1143 60 4935 240.34000015258789 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 33 \N 1143 \N 3 2 1143 60 4936 43.01300048828125 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 6 \N 1143 \N 3 2 1143 60 4937 121.98299980163574 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 17 \N 1143 \N 3 2 1143 60 4938 132.6879997253418 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 18 \N 1143 \N 3 2 1143 60 4939 308.64299964904785 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 43 \N 1143 \N 3 2 1143 60 4940 46.57499885559082 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 6 \N 1143 \N 3 2 1143 60 4941 71.757999420166016 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 10 \N 1143 \N 3 2 1143 60 4942 82.468000411987305 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 11 \N 1143 \N 3 2 1143 60 4943 107.625 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 15 \N 1143 \N 3 2 1143 60 4944 186.53299903869629 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 26 \N 1143 \N 3 2 1143 60 4945 204.45499992370605 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 28 \N 1143 \N 3 2 1143 60 4946 64.594999313354492 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 9 \N 1143 \N 3 2 1143 60 4947 21.524999618530273 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 3 \N 1143 \N 3 2 1143 60 4948 161.39799880981445 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 22 \N 1143 \N 3 2 1143 60 4949 157.8430004119873 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 22 \N 1143 \N 3 2 1143 60 4950 78.917999267578125 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 11 \N 1143 \N 3 2 1143 60 4951 100.44999885559082 -40 \N 0.045455426128199999 0.0082558482737999997 0 0 0 14 \N 1143 \N 3 2 1143 60 4952 290.65799903869629 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 40 \N 1143 \N 3 2 1143 60 4953 190.08499908447266 -40 \N 0.045455426128199999 0.0082558482737999997 0 1 0 26 \N 1143 \N 3 2 1143 60 5301 3.0020008087158203 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5151 \N 53 102 5151 151 5302 9 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5151 \N 53 102 5151 151 5303 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5151 \N 53 102 5151 151 5304 6.0050010681152344 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5151 \N 53 102 5151 151 5305 12.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5151 \N 53 102 5151 151 5306 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5151 \N 53 102 5151 151 5307 9 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5151 \N 53 102 5151 151 5308 12.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5151 \N 53 102 5151 151 5309 3.0020008087158203 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5151 \N 53 102 5151 151 5310 6.0050010681152344 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5151 \N 53 102 5151 151 5311 15.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5151 \N 53 102 5151 152 5312 70.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 0 14 0 \N 5151 \N 53 102 5151 152 5313 75.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 1 15 0 \N 5151 \N 53 102 5151 152 5314 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5151 \N 53 102 5151 152 5315 40.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 8 0 \N 5151 \N 53 102 5151 152 5316 90.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 1 18 0 \N 5151 \N 53 102 5151 152 5317 95.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 1 19 0 \N 5151 \N 53 102 5151 152 5318 20.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5151 \N 53 102 5151 152 5319 25.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 0 5 0 \N 5151 \N 53 102 5151 152 5320 45.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 9 0 \N 5151 \N 53 102 5151 152 5321 40.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 8 0 \N 5151 \N 53 102 5151 152 5322 30.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 1 6 0 \N 5151 \N 53 102 5151 152 5323 85.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 0 17 0 \N 5151 \N 53 102 5151 152 5324 35.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 7 0 \N 5151 \N 53 102 5151 152 5325 10.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5151 \N 53 102 5151 152 5326 5.0020008087158203 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5151 \N 53 102 5151 152 5327 10.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5151 \N 53 102 5151 152 5328 25.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 1 5 0 \N 5151 \N 53 102 5151 152 5329 5.0020008087158203 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5151 \N 53 102 5151 152 5330 85.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 1 17 0 \N 5151 \N 53 102 5151 152 5331 95.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 0 19 0 \N 5151 \N 53 102 5151 152 5332 50.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 0 10 0 \N 5151 \N 53 102 5151 152 5333 50.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 1 10 0 \N 5151 \N 53 102 5151 152 5334 70.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 1 14 0 \N 5151 \N 53 102 5151 152 5335 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5151 \N 53 102 5151 152 5336 75.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 0 15 0 \N 5151 \N 53 102 5151 152 5337 80.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 16 0 \N 5151 \N 53 102 5151 152 5338 90.006999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 0 18 0 \N 5151 \N 53 102 5151 152 5339 30.00200080871582 -120 \N 0.028207072808999999 0.0249659073792 0 0 6 0 \N 5151 \N 53 102 5151 152 5340 65.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 13 0 \N 5151 \N 53 102 5151 152 5341 35.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 7 0 \N 5151 \N 53 102 5151 152 5342 55.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 11 0 \N 5151 \N 53 102 5151 152 5343 15.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5151 \N 53 102 5151 152 5344 60.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 12 0 \N 5151 \N 53 102 5151 152 5345 60.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 12 0 \N 5151 \N 53 102 5151 152 5346 45.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 9 0 \N 5151 \N 53 102 5151 152 5347 65.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 13 0 \N 5151 \N 53 102 5151 152 5348 55.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 11 0 \N 5151 \N 53 102 5151 152 5349 20.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5151 \N 53 102 5151 152 5350 80.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 16 0 \N 5151 \N 53 102 5151 152 5351 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5151 \N 53 102 5151 153 5352 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5151 \N 53 102 5151 153 5353 18.459999084472656 -120 \N 0.028207072808999999 0.0249659073792 0 1 14 0 \N 5151 \N 53 102 5151 154 5354 19.776998519897461 -120 \N 0.028207072808999999 0.0249659073792 0 0 15 0 \N 5151 \N 53 102 5151 154 5355 15.821998596191406 -120 \N 0.028207072808999999 0.0249659073792 0 0 12 0 \N 5151 \N 53 102 5151 154 5356 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5151 \N 53 102 5151 154 5357 5.2769985198974609 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5151 \N 53 102 5151 154 5358 14.504999160766602 -120 \N 0.028207072808999999 0.0249659073792 0 1 11 0 \N 5151 \N 53 102 5151 154 5359 10.549999237060547 -120 \N 0.028207072808999999 0.0249659073792 0 0 8 0 \N 5151 \N 53 102 5151 154 5360 21.094999313354492 -120 \N 0.028207072808999999 0.0249659073792 0 1 16 0 \N 5151 \N 53 102 5151 154 5361 6.5970001220703125 -120 \N 0.028207072808999999 0.0249659073792 0 1 5 0 \N 5151 \N 53 102 5151 154 5362 23.729999542236328 -120 \N 0.028207072808999999 0.0249659073792 0 1 18 0 \N 5151 \N 53 102 5151 154 5363 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5151 \N 53 102 5151 154 5364 13.184999465942383 -120 \N 0.028207072808999999 0.0249659073792 0 1 10 0 \N 5151 \N 53 102 5151 154 5365 3.9599990844726562 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5151 \N 53 102 5151 154 5366 9.2319984436035156 -120 \N 0.028207072808999999 0.0249659073792 0 0 7 0 \N 5151 \N 53 102 5151 154 5367 11.866998672485352 -120 \N 0.028207072808999999 0.0249659073792 0 0 9 0 \N 5151 \N 53 102 5151 154 5368 22.411998748779297 -120 \N 0.028207072808999999 0.0249659073792 0 0 17 0 \N 5151 \N 53 102 5151 154 5369 6.5970001220703125 -120 \N 0.028207072808999999 0.0249659073792 0 0 5 0 \N 5151 \N 53 102 5151 154 5370 3.9599990844726562 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5151 \N 53 102 5151 154 5371 10.549999237060547 -120 \N 0.028207072808999999 0.0249659073792 0 1 8 0 \N 5151 \N 53 102 5151 154 5372 7.9149990081787109 -120 \N 0.028207072808999999 0.0249659073792 0 1 6 0 \N 5151 \N 53 102 5151 154 5373 9.2319984436035156 -120 \N 0.028207072808999999 0.0249659073792 0 1 7 0 \N 5151 \N 53 102 5151 154 5374 1.3169994354248047 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5151 \N 53 102 5151 154 5375 7.9149990081787109 -120 \N 0.028207072808999999 0.0249659073792 0 0 6 0 \N 5151 \N 53 102 5151 154 5376 21.094999313354492 -120 \N 0.028207072808999999 0.0249659073792 0 0 16 0 \N 5151 \N 53 102 5151 154 5377 17.139999389648438 -120 \N 0.028207072808999999 0.0249659073792 0 1 13 0 \N 5151 \N 53 102 5151 154 5378 19.776998519897461 -120 \N 0.028207072808999999 0.0249659073792 0 1 15 0 \N 5151 \N 53 102 5151 154 5379 23.729999542236328 -120 \N 0.028207072808999999 0.0249659073792 0 0 18 0 \N 5151 \N 53 102 5151 154 5380 25.046998977661133 -120 \N 0.028207072808999999 0.0249659073792 0 0 19 0 \N 5151 \N 53 102 5151 154 5381 13.184999465942383 -120 \N 0.028207072808999999 0.0249659073792 0 0 10 0 \N 5151 \N 53 102 5151 154 5382 11.866998672485352 -120 \N 0.028207072808999999 0.0249659073792 0 1 9 0 \N 5151 \N 53 102 5151 154 5383 18.459999084472656 -120 \N 0.028207072808999999 0.0249659073792 0 0 14 0 \N 5151 \N 53 102 5151 154 5384 1.3169994354248047 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5151 \N 53 102 5151 154 5385 5.2769985198974609 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5151 \N 53 102 5151 154 5386 14.504999160766602 -120 \N 0.028207072808999999 0.0249659073792 0 0 11 0 \N 5151 \N 53 102 5151 154 5387 17.139999389648438 -120 \N 0.028207072808999999 0.0249659073792 0 0 13 0 \N 5151 \N 53 102 5151 154 5388 2.6420001983642578 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5151 \N 53 102 5151 154 5389 2.6420001983642578 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5151 \N 53 102 5151 154 5390 25.046998977661133 -120 \N 0.028207072808999999 0.0249659073792 0 1 19 0 \N 5151 \N 53 102 5151 154 5391 15.821998596191406 -120 \N 0.028207072808999999 0.0249659073792 0 1 12 0 \N 5151 \N 53 102 5151 154 5392 22.411998748779297 -120 \N 0.028207072808999999 0.0249659073792 0 1 17 0 \N 5151 \N 53 102 5151 154 5393 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5173 \N 53 102 5173 155 5394 3 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5173 \N 53 102 5173 155 5395 6.0030002593994141 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5173 \N 53 102 5173 155 5396 12.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5173 \N 53 102 5173 155 5397 9 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5173 \N 53 102 5173 155 5398 35 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5173 \N 53 102 5173 156 5399 65 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5173 \N 53 102 5173 156 5400 60.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5173 \N 53 102 5173 156 5401 70 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5173 \N 53 102 5173 156 5402 45 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5173 \N 53 102 5173 156 5403 75.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5173 \N 53 102 5173 156 5404 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5173 \N 53 102 5173 156 5405 55 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5173 \N 53 102 5173 156 5406 90.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5173 \N 53 102 5173 156 5407 40.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5173 \N 53 102 5173 156 5408 14.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5173 \N 53 102 5173 156 5409 50 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5173 \N 53 102 5173 156 5410 24.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5173 \N 53 102 5173 156 5411 85.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5173 \N 53 102 5173 156 5412 19.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5173 \N 53 102 5173 156 5413 30 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5173 \N 53 102 5173 156 5414 95.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5173 \N 53 102 5173 156 5415 4.9969997406005859 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5173 \N 53 102 5173 156 5416 80.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5173 \N 53 102 5173 156 5417 10 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5173 \N 53 102 5173 156 5418 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5173 \N 53 102 5173 157 5419 25.043001174926758 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5173 \N 53 102 5173 158 5420 19.773000717163086 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5173 \N 53 102 5173 158 5421 1.3180007934570312 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5173 \N 53 102 5173 158 5422 14.5 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5173 \N 53 102 5173 158 5423 9.2280006408691406 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5173 \N 53 102 5173 158 5424 5.2700004577636719 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5173 \N 53 102 5173 158 5425 3.9530010223388672 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5173 \N 53 102 5173 158 5426 2.6350002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5173 \N 53 102 5173 158 5427 6.5930004119873047 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5173 \N 53 102 5173 158 5428 11.863000869750977 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5173 \N 53 102 5173 158 5429 10.545000076293945 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5173 \N 53 102 5173 158 5430 15.818000793457031 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5173 \N 53 102 5173 158 5431 7.9099998474121094 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5173 \N 53 102 5173 158 5432 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5173 \N 53 102 5173 158 5433 22.408000946044922 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5173 \N 53 102 5173 158 5434 23.725000381469727 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5173 \N 53 102 5173 158 5435 18.454999923706055 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5173 \N 53 102 5173 158 5436 21.090000152587891 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5173 \N 53 102 5173 158 5437 13.180000305175781 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5173 \N 53 102 5173 158 5438 17.135000228881836 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5173 \N 53 102 5173 158 5439 9.0099983215332031 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5195 \N 53 102 5195 159 5440 12.012998580932617 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5195 \N 53 102 5195 159 5441 6.0079994201660156 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5195 \N 53 102 5195 159 5442 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5195 \N 53 102 5195 159 5443 3.0099983215332031 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5195 \N 53 102 5195 159 5444 70.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5195 \N 53 102 5195 160 5445 50.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5195 \N 53 102 5195 160 5446 60.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5195 \N 53 102 5195 160 5447 75.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5195 \N 53 102 5195 160 5448 55.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5195 \N 53 102 5195 160 5449 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5195 \N 53 102 5195 160 5450 45.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5195 \N 53 102 5195 160 5451 95.007999420166016 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5195 \N 53 102 5195 160 5452 85.007999420166016 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5195 \N 53 102 5195 160 5453 40.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5195 \N 53 102 5195 160 5454 25 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5195 \N 53 102 5195 160 5455 65.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5195 \N 53 102 5195 160 5456 15.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5195 \N 53 102 5195 160 5457 20.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5195 \N 53 102 5195 160 5458 10.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5195 \N 53 102 5195 160 5459 90.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5195 \N 53 102 5195 160 5460 5 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5195 \N 53 102 5195 160 5461 35.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5195 \N 53 102 5195 160 5462 30.005001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5195 \N 53 102 5195 160 5463 80.007999420166016 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5195 \N 53 102 5195 160 5464 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5195 \N 53 102 5195 161 5465 15.822999954223633 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5195 \N 53 102 5195 162 5466 11.868000030517578 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5195 \N 53 102 5195 162 5467 13.184999465942383 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5195 \N 53 102 5195 162 5468 18.458000183105469 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5195 \N 53 102 5195 162 5469 2.6350002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5195 \N 53 102 5195 162 5470 5.2749996185302734 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5195 \N 53 102 5195 162 5471 19.774999618530273 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5195 \N 53 102 5195 162 5472 3.9580001831054688 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5195 \N 53 102 5195 162 5473 1.3179988861083984 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5195 \N 53 102 5195 162 5474 22.413000106811523 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5195 \N 53 102 5195 162 5475 9.2299995422363281 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5195 \N 53 102 5195 162 5476 21.093000411987305 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5195 \N 53 102 5195 162 5477 10.549999237060547 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5195 \N 53 102 5195 162 5478 14.504999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5195 \N 53 102 5195 162 5479 7.9130001068115234 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5195 \N 53 102 5195 162 5480 6.5949993133544922 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5195 \N 53 102 5195 162 5481 25.048000335693359 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5195 \N 53 102 5195 162 5482 17.139999389648438 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5195 \N 53 102 5195 162 5483 23.729999542236328 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5195 \N 53 102 5195 162 5484 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5195 \N 53 102 5195 162 5485 12.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5218 \N 53 102 5218 163 5486 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5218 \N 53 102 5218 163 5487 9.0049991607666016 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5218 \N 53 102 5218 163 5488 6.0030002593994141 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5218 \N 53 102 5218 163 5489 3.0049991607666016 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5218 \N 53 102 5218 163 5490 65.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5218 \N 53 102 5218 164 5491 35.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5218 \N 53 102 5218 164 5492 60.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5218 \N 53 102 5218 164 5493 85.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5218 \N 53 102 5218 164 5494 75.011999130249023 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5218 \N 53 102 5218 164 5495 80.011999130249023 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5218 \N 53 102 5218 164 5496 45.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5218 \N 53 102 5218 164 5497 20.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5218 \N 53 102 5218 164 5498 55.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5218 \N 53 102 5218 164 5499 10.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5218 \N 53 102 5218 164 5500 70.011999130249023 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5218 \N 53 102 5218 164 5501 30.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5218 \N 53 102 5218 164 5502 15.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5218 \N 53 102 5218 164 5503 5.0069999694824219 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5218 \N 53 102 5218 164 5504 95.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5218 \N 53 102 5218 164 5505 40.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5218 \N 53 102 5218 164 5506 50.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5218 \N 53 102 5218 164 5507 25.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5218 \N 53 102 5218 164 5508 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5218 \N 53 102 5218 164 5509 90.009998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5218 \N 53 102 5218 164 5510 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5218 \N 53 102 5218 165 5511 7.9149990081787109 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5218 \N 53 102 5218 166 5512 21.094999313354492 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5218 \N 53 102 5218 166 5513 9.2319984436035156 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5218 \N 53 102 5218 166 5514 6.5970001220703125 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5218 \N 53 102 5218 166 5515 3.9569988250732422 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5218 \N 53 102 5218 166 5516 25.049999237060547 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5218 \N 53 102 5218 166 5517 19.776998519897461 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5218 \N 53 102 5218 166 5518 10.552000045776367 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5218 \N 53 102 5218 166 5519 5.279998779296875 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5218 \N 53 102 5218 166 5520 1.3199996948242188 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5218 \N 53 102 5218 166 5521 15.821998596191406 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5218 \N 53 102 5218 166 5522 18.456998825073242 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5218 \N 53 102 5218 166 5523 14.504999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5218 \N 53 102 5218 166 5524 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5218 \N 53 102 5218 166 5525 17.139999389648438 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5218 \N 53 102 5218 166 5526 2.6369991302490234 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5218 \N 53 102 5218 166 5527 13.18699836730957 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5218 \N 53 102 5218 166 5528 11.869998931884766 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5218 \N 53 102 5218 166 5529 23.729999542236328 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5218 \N 53 102 5218 166 5530 22.411998748779297 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5218 \N 53 102 5218 166 5531 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5241 \N 53 102 5241 167 5532 3.0069999694824219 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5241 \N 53 102 5241 167 5533 12.010000228881836 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5241 \N 53 102 5241 167 5534 9.0069999694824219 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5241 \N 53 102 5241 167 5535 6.0100002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5241 \N 53 102 5241 167 5536 4.9969997406005859 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5241 \N 53 102 5241 168 5537 45.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5241 \N 53 102 5241 168 5538 60.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5241 \N 53 102 5241 168 5539 80.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5241 \N 53 102 5241 168 5540 95.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5241 \N 53 102 5241 168 5541 50 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5241 \N 53 102 5241 168 5542 25.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5241 \N 53 102 5241 168 5543 10 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5241 \N 53 102 5241 168 5544 85.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5241 \N 53 102 5241 168 5545 15.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5241 \N 53 102 5241 168 5546 70.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5241 \N 53 102 5241 168 5547 90.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5241 \N 53 102 5241 168 5548 30 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5241 \N 53 102 5241 168 5549 20 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5241 \N 53 102 5241 168 5550 55.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5241 \N 53 102 5241 168 5551 75.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5241 \N 53 102 5241 168 5552 40 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5241 \N 53 102 5241 168 5553 35.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5241 \N 53 102 5241 168 5554 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5241 \N 53 102 5241 168 5555 65.003000259399414 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5241 \N 53 102 5241 168 5556 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5241 \N 53 102 5241 169 5557 5.2849998474121094 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5241 \N 53 102 5241 170 5558 10.557998657226562 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5241 \N 53 102 5241 170 5559 21.099998474121094 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5241 \N 53 102 5241 170 5560 3.9679985046386719 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5241 \N 53 102 5241 170 5561 7.9199981689453125 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5241 \N 53 102 5241 170 5562 14.509998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5241 \N 53 102 5241 170 5563 18.464998245239258 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5241 \N 53 102 5241 170 5564 13.192998886108398 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5241 \N 53 102 5241 170 5565 19.782999038696289 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5241 \N 53 102 5241 170 5566 22.417999267578125 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5241 \N 53 102 5241 170 5567 15.829999923706055 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5241 \N 53 102 5241 170 5568 11.875 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5241 \N 53 102 5241 170 5569 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5241 \N 53 102 5241 170 5570 1.3249988555908203 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5241 \N 53 102 5241 170 5571 17.147998809814453 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5241 \N 53 102 5241 170 5572 23.73499870300293 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5241 \N 53 102 5241 170 5573 6.6029987335205078 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5241 \N 53 102 5241 170 5574 25.057998657226562 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5241 \N 53 102 5241 170 5575 9.2379989624023438 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5241 \N 53 102 5241 170 5576 2.6499996185302734 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5241 \N 53 102 5241 170 5577 3.0129985809326172 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5263 \N 53 102 5263 171 5578 12.012998580932617 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5263 \N 53 102 5263 171 5579 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5263 \N 53 102 5263 171 5580 6.0100002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5263 \N 53 102 5263 171 5581 9.0100002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5263 \N 53 102 5263 171 5582 55.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5263 \N 53 102 5263 172 5583 90.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5263 \N 53 102 5263 172 5584 40.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5263 \N 53 102 5263 172 5585 25.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5263 \N 53 102 5263 172 5586 20.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5263 \N 53 102 5263 172 5587 50.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5263 \N 53 102 5263 172 5588 75.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5263 \N 53 102 5263 172 5589 60.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5263 \N 53 102 5263 172 5590 5.0019989013671875 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5263 \N 53 102 5263 172 5591 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5263 \N 53 102 5263 172 5592 65.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5263 \N 53 102 5263 172 5593 35.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5263 \N 53 102 5263 172 5594 10.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5263 \N 53 102 5263 172 5595 70.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5263 \N 53 102 5263 172 5596 80.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5263 \N 53 102 5263 172 5597 15.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5263 \N 53 102 5263 172 5598 45.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5263 \N 53 102 5263 172 5599 85.010000228881836 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5263 \N 53 102 5263 172 5600 30.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5263 \N 53 102 5263 172 5601 95.010000228881836 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5263 \N 53 102 5263 172 5602 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5263 \N 53 102 5263 173 5603 19.772998809814453 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5263 \N 53 102 5263 174 5604 7.9079990386962891 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5263 \N 53 102 5263 174 5605 2.6349983215332031 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5263 \N 53 102 5263 174 5606 18.452999114990234 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5263 \N 53 102 5263 174 5607 25.045000076293945 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5263 \N 53 102 5263 174 5608 14.5 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5263 \N 53 102 5263 174 5609 21.090000152587891 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5263 \N 53 102 5263 174 5610 10.545000076293945 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5263 \N 53 102 5263 174 5611 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5263 \N 53 102 5263 174 5612 1.3179988861083984 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5263 \N 53 102 5263 174 5613 22.407999038696289 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5263 \N 53 102 5263 174 5614 5.2699985504150391 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5263 \N 53 102 5263 174 5615 6.5900001525878906 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5263 \N 53 102 5263 174 5616 3.9529991149902344 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5263 \N 53 102 5263 174 5617 17.134998321533203 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5263 \N 53 102 5263 174 5618 9.2249984741210938 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5263 \N 53 102 5263 174 5619 15.817998886108398 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5263 \N 53 102 5263 174 5620 11.864999771118164 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5263 \N 53 102 5263 174 5621 23.724998474121094 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5263 \N 53 102 5263 174 5622 13.182998657226562 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5263 \N 53 102 5263 174 5623 2.9950008392333984 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5285 \N 53 102 5285 175 5624 8.9950008392333984 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5285 \N 53 102 5285 175 5625 11.998001098632812 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5285 \N 53 102 5285 175 5626 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5285 \N 53 102 5285 175 5627 5.9980010986328125 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5285 \N 53 102 5285 175 5628 70.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5285 \N 53 102 5285 176 5629 45.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5285 \N 53 102 5285 176 5630 75.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5285 \N 53 102 5285 176 5631 60.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5285 \N 53 102 5285 176 5632 35.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5285 \N 53 102 5285 176 5633 50.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5285 \N 53 102 5285 176 5634 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5285 \N 53 102 5285 176 5635 85.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5285 \N 53 102 5285 176 5636 5.0019989013671875 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5285 \N 53 102 5285 176 5637 55.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5285 \N 53 102 5285 176 5638 30.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5285 \N 53 102 5285 176 5639 20.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5285 \N 53 102 5285 176 5640 25.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5285 \N 53 102 5285 176 5641 90.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5285 \N 53 102 5285 176 5642 65.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5285 \N 53 102 5285 176 5643 40.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5285 \N 53 102 5285 176 5644 10.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5285 \N 53 102 5285 176 5645 95.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5285 \N 53 102 5285 176 5646 80.004999160766602 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5285 \N 53 102 5285 176 5647 15.001998901367188 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5285 \N 53 102 5285 176 5648 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5285 \N 53 102 5285 177 5649 9.2230014801025391 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5285 \N 53 102 5285 178 5650 7.9060001373291016 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5285 \N 53 102 5285 178 5651 14.496000289916992 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5285 \N 53 102 5285 178 5652 23.723001480102539 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5285 \N 53 102 5285 178 5653 21.086000442504883 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5285 \N 53 102 5285 178 5654 18.451000213623047 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5285 \N 53 102 5285 178 5655 11.861000061035156 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5285 \N 53 102 5285 178 5656 22.406000137329102 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5285 \N 53 102 5285 178 5657 17.133001327514648 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5285 \N 53 102 5285 178 5658 15.815999984741211 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5285 \N 53 102 5285 178 5659 13.178001403808594 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5285 \N 53 102 5285 178 5660 5.2709999084472656 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5285 \N 53 102 5285 178 5661 3.9530010223388672 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5285 \N 53 102 5285 178 5662 19.768001556396484 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5285 \N 53 102 5285 178 5663 2.6350002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5285 \N 53 102 5285 178 5664 10.541000366210938 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5285 \N 53 102 5285 178 5665 6.5880012512207031 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5285 \N 53 102 5285 178 5666 25.041000366210938 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5285 \N 53 102 5285 178 5667 1.3180007934570312 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5285 \N 53 102 5285 178 5668 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5285 \N 53 102 5285 178 5669 9.0100002288818359 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5307 \N 53 102 5307 179 5670 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5307 \N 53 102 5307 179 5671 12.010000228881836 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5307 \N 53 102 5307 179 5672 6.0100002288818359 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5307 \N 53 102 5307 179 5673 3.0069999694824219 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5307 \N 53 102 5307 179 5674 3.0069999694824219 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5307 \N 53 102 5307 179 5675 9.0100002288818359 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5307 \N 53 102 5307 179 5676 12.010000228881836 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5307 \N 53 102 5307 179 5677 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5307 \N 53 102 5307 179 5678 6.0100002288818359 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5307 \N 53 102 5307 179 5679 70.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 14 0 \N 5307 \N 53 102 5307 180 5680 65.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 0 13 0 \N 5307 \N 53 102 5307 180 5681 60.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 12 0 \N 5307 \N 53 102 5307 180 5682 75.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 15 0 \N 5307 \N 53 102 5307 180 5683 85.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 17 0 \N 5307 \N 53 102 5307 180 5684 85.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 17 0 \N 5307 \N 53 102 5307 180 5685 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5307 \N 53 102 5307 180 5686 40.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 8 0 \N 5307 \N 53 102 5307 180 5687 5.0030002593994141 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5307 \N 53 102 5307 180 5688 50.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 10 0 \N 5307 \N 53 102 5307 180 5689 25.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 5 0 \N 5307 \N 53 102 5307 180 5690 10.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5307 \N 53 102 5307 180 5691 75.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 15 0 \N 5307 \N 53 102 5307 180 5692 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5307 \N 53 102 5307 180 5693 80.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 0 16 0 \N 5307 \N 53 102 5307 180 5694 50.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 10 0 \N 5307 \N 53 102 5307 180 5695 90.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 0 18 0 \N 5307 \N 53 102 5307 180 5696 95.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 0 19 0 \N 5307 \N 53 102 5307 180 5697 30.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 6 0 \N 5307 \N 53 102 5307 180 5698 45.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 9 0 \N 5307 \N 53 102 5307 180 5699 15.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5307 \N 53 102 5307 180 5700 20 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5307 \N 53 102 5307 180 5701 15.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5307 \N 53 102 5307 180 5702 95.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 1 19 0 \N 5307 \N 53 102 5307 180 5703 60.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 12 0 \N 5307 \N 53 102 5307 180 5704 25.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 5 0 \N 5307 \N 53 102 5307 180 5705 65.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 1 13 0 \N 5307 \N 53 102 5307 180 5706 35.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 7 0 \N 5307 \N 53 102 5307 180 5707 10.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5307 \N 53 102 5307 180 5708 35.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 7 0 \N 5307 \N 53 102 5307 180 5709 20 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5307 \N 53 102 5307 180 5710 40.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 8 0 \N 5307 \N 53 102 5307 180 5711 5.0030002593994141 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5307 \N 53 102 5307 180 5712 80.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 1 16 0 \N 5307 \N 53 102 5307 180 5713 55.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 11 0 \N 5307 \N 53 102 5307 180 5714 90.007999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 1 18 0 \N 5307 \N 53 102 5307 180 5715 70.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 14 0 \N 5307 \N 53 102 5307 180 5716 55.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 11 0 \N 5307 \N 53 102 5307 180 5717 45.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 9 0 \N 5307 \N 53 102 5307 180 5718 30.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 6 0 \N 5307 \N 53 102 5307 180 5719 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5307 \N 53 102 5307 181 5720 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5307 \N 53 102 5307 181 5721 21.086999893188477 -120 \N 0.028207072808999999 0.0249659073792 0 0 16 0 \N 5307 \N 53 102 5307 182 5722 3.9549999237060547 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5307 \N 53 102 5307 182 5723 11.860000610351562 -120 \N 0.028207072808999999 0.0249659073792 0 0 9 0 \N 5307 \N 53 102 5307 182 5724 2.6350002288818359 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5307 \N 53 102 5307 182 5725 19.770000457763672 -120 \N 0.028207072808999999 0.0249659073792 0 1 15 0 \N 5307 \N 53 102 5307 182 5726 1.3169994354248047 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5307 \N 53 102 5307 182 5727 2.6350002288818359 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5307 \N 53 102 5307 182 5728 25.040000915527344 -120 \N 0.028207072808999999 0.0249659073792 0 0 19 0 \N 5307 \N 53 102 5307 182 5729 10.541999816894531 -120 \N 0.028207072808999999 0.0249659073792 0 1 8 0 \N 5307 \N 53 102 5307 182 5730 1.3169994354248047 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5307 \N 53 102 5307 182 5731 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5307 \N 53 102 5307 182 5732 15.815000534057617 -120 \N 0.028207072808999999 0.0249659073792 0 1 12 0 \N 5307 \N 53 102 5307 182 5733 23.722000122070312 -120 \N 0.028207072808999999 0.0249659073792 0 0 18 0 \N 5307 \N 53 102 5307 182 5734 25.040000915527344 -120 \N 0.028207072808999999 0.0249659073792 0 1 19 0 \N 5307 \N 53 102 5307 182 5735 14.496999740600586 -120 \N 0.028207072808999999 0.0249659073792 0 1 11 0 \N 5307 \N 53 102 5307 182 5736 19.770000457763672 -120 \N 0.028207072808999999 0.0249659073792 0 0 15 0 \N 5307 \N 53 102 5307 182 5737 15.815000534057617 -120 \N 0.028207072808999999 0.0249659073792 0 0 12 0 \N 5307 \N 53 102 5307 182 5738 14.496999740600586 -120 \N 0.028207072808999999 0.0249659073792 0 0 11 0 \N 5307 \N 53 102 5307 182 5739 3.9549999237060547 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5307 \N 53 102 5307 182 5740 7.9069995880126953 -120 \N 0.028207072808999999 0.0249659073792 0 0 6 0 \N 5307 \N 53 102 5307 182 5741 21.086999893188477 -120 \N 0.028207072808999999 0.0249659073792 0 1 16 0 \N 5307 \N 53 102 5307 182 5742 23.722000122070312 -120 \N 0.028207072808999999 0.0249659073792 0 1 18 0 \N 5307 \N 53 102 5307 182 5743 7.9069995880126953 -120 \N 0.028207072808999999 0.0249659073792 0 1 6 0 \N 5307 \N 53 102 5307 182 5744 9.2250003814697266 -120 \N 0.028207072808999999 0.0249659073792 0 1 7 0 \N 5307 \N 53 102 5307 182 5745 5.2719993591308594 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5307 \N 53 102 5307 182 5746 18.451999664306641 -120 \N 0.028207072808999999 0.0249659073792 0 1 14 0 \N 5307 \N 53 102 5307 182 5747 11.860000610351562 -120 \N 0.028207072808999999 0.0249659073792 0 1 9 0 \N 5307 \N 53 102 5307 182 5748 6.5900001525878906 -120 \N 0.028207072808999999 0.0249659073792 0 0 5 0 \N 5307 \N 53 102 5307 182 5749 17.131999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 0 13 0 \N 5307 \N 53 102 5307 182 5750 22.405000686645508 -120 \N 0.028207072808999999 0.0249659073792 0 1 17 0 \N 5307 \N 53 102 5307 182 5751 6.5900001525878906 -120 \N 0.028207072808999999 0.0249659073792 0 1 5 0 \N 5307 \N 53 102 5307 182 5752 17.131999969482422 -120 \N 0.028207072808999999 0.0249659073792 0 1 13 0 \N 5307 \N 53 102 5307 182 5753 5.2719993591308594 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5307 \N 53 102 5307 182 5754 9.2250003814697266 -120 \N 0.028207072808999999 0.0249659073792 0 0 7 0 \N 5307 \N 53 102 5307 182 5755 22.405000686645508 -120 \N 0.028207072808999999 0.0249659073792 0 0 17 0 \N 5307 \N 53 102 5307 182 5756 13.177000045776367 -120 \N 0.028207072808999999 0.0249659073792 0 1 10 0 \N 5307 \N 53 102 5307 182 5757 10.541999816894531 -120 \N 0.028207072808999999 0.0249659073792 0 0 8 0 \N 5307 \N 53 102 5307 182 5758 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5307 \N 53 102 5307 182 5759 13.177000045776367 -120 \N 0.028207072808999999 0.0249659073792 0 0 10 0 \N 5307 \N 53 102 5307 182 5760 18.451999664306641 -120 \N 0.028207072808999999 0.0249659073792 0 0 14 0 \N 5307 \N 53 102 5307 182 5761 2.9950008392333984 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5329 \N 53 102 5329 183 5762 11.998001098632812 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5329 \N 53 102 5329 183 5763 5.9980010986328125 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5329 \N 53 102 5329 183 5764 11.998001098632812 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5329 \N 53 102 5329 183 5765 9 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5329 \N 53 102 5329 183 5766 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5329 \N 53 102 5329 183 5767 2.9950008392333984 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5329 \N 53 102 5329 183 5768 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5329 \N 53 102 5329 183 5769 9 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5329 \N 53 102 5329 183 5770 5.9980010986328125 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5329 \N 53 102 5329 183 5771 15 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5329 \N 53 102 5329 184 5772 60.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 12 0 \N 5329 \N 53 102 5329 184 5773 40.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 8 0 \N 5329 \N 53 102 5329 184 5774 5.0030002593994141 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5329 \N 53 102 5329 184 5775 70.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 14 0 \N 5329 \N 53 102 5329 184 5776 50.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 10 0 \N 5329 \N 53 102 5329 184 5777 45.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 9 0 \N 5329 \N 53 102 5329 184 5778 10.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5329 \N 53 102 5329 184 5779 60.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 12 0 \N 5329 \N 53 102 5329 184 5780 85.008001327514648 -120 \N 0.028207072808999999 0.0249659073792 0 0 17 0 \N 5329 \N 53 102 5329 184 5781 75.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 15 0 \N 5329 \N 53 102 5329 184 5782 10.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5329 \N 53 102 5329 184 5783 65.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 13 0 \N 5329 \N 53 102 5329 184 5784 95.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 19 0 \N 5329 \N 53 102 5329 184 5785 35.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 7 0 \N 5329 \N 53 102 5329 184 5786 90.008001327514648 -120 \N 0.028207072808999999 0.0249659073792 0 0 18 0 \N 5329 \N 53 102 5329 184 5787 20.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5329 \N 53 102 5329 184 5788 25 -120 \N 0.028207072808999999 0.0249659073792 0 0 5 0 \N 5329 \N 53 102 5329 184 5789 85.008001327514648 -120 \N 0.028207072808999999 0.0249659073792 0 1 17 0 \N 5329 \N 53 102 5329 184 5790 50.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 10 0 \N 5329 \N 53 102 5329 184 5791 45.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 9 0 \N 5329 \N 53 102 5329 184 5792 5.0030002593994141 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5329 \N 53 102 5329 184 5793 20.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5329 \N 53 102 5329 184 5794 25 -120 \N 0.028207072808999999 0.0249659073792 0 1 5 0 \N 5329 \N 53 102 5329 184 5795 70.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 14 0 \N 5329 \N 53 102 5329 184 5796 40.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 8 0 \N 5329 \N 53 102 5329 184 5797 65.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 13 0 \N 5329 \N 53 102 5329 184 5798 80.008001327514648 -120 \N 0.028207072808999999 0.0249659073792 0 0 16 0 \N 5329 \N 53 102 5329 184 5799 80.008001327514648 -120 \N 0.028207072808999999 0.0249659073792 0 1 16 0 \N 5329 \N 53 102 5329 184 5800 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5329 \N 53 102 5329 184 5801 15 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5329 \N 53 102 5329 184 5802 30.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 6 0 \N 5329 \N 53 102 5329 184 5803 75.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 15 0 \N 5329 \N 53 102 5329 184 5804 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5329 \N 53 102 5329 184 5805 35.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 1 7 0 \N 5329 \N 53 102 5329 184 5806 55.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 0 11 0 \N 5329 \N 53 102 5329 184 5807 95.005001068115234 -120 \N 0.028207072808999999 0.0249659073792 0 0 19 0 \N 5329 \N 53 102 5329 184 5808 55.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 11 0 \N 5329 \N 53 102 5329 184 5809 30.003000259399414 -120 \N 0.028207072808999999 0.0249659073792 0 1 6 0 \N 5329 \N 53 102 5329 184 5810 90.008001327514648 -120 \N 0.028207072808999999 0.0249659073792 0 1 18 0 \N 5329 \N 53 102 5329 184 5811 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5329 \N 53 102 5329 185 5812 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5329 \N 53 102 5329 185 5813 25.055000305175781 -120 \N 0.028207072808999999 0.0249659073792 0 0 19 0 \N 5329 \N 53 102 5329 186 5814 2.6480007171630859 -120 \N 0.028207072808999999 0.0249659073792 0 0 2 0 \N 5329 \N 53 102 5329 186 5815 22.415000915527344 -120 \N 0.028207072808999999 0.0249659073792 0 1 17 0 \N 5329 \N 53 102 5329 186 5816 0 -120 \N 0.028207072808999999 0.0249659073792 0 0 0 0 \N 5329 \N 53 102 5329 186 5817 23.732999801635742 -120 \N 0.028207072808999999 0.0249659073792 0 1 18 0 \N 5329 \N 53 102 5329 186 5818 25.055000305175781 -120 \N 0.028207072808999999 0.0249659073792 0 1 19 0 \N 5329 \N 53 102 5329 186 5819 6.6000003814697266 -120 \N 0.028207072808999999 0.0249659073792 0 1 5 0 \N 5329 \N 53 102 5329 186 5820 17.142999649047852 -120 \N 0.028207072808999999 0.0249659073792 0 0 13 0 \N 5329 \N 53 102 5329 186 5821 23.732999801635742 -120 \N 0.028207072808999999 0.0249659073792 0 0 18 0 \N 5329 \N 53 102 5329 186 5822 10.555000305175781 -120 \N 0.028207072808999999 0.0249659073792 0 1 8 0 \N 5329 \N 53 102 5329 186 5823 9.2350006103515625 -120 \N 0.028207072808999999 0.0249659073792 0 1 7 0 \N 5329 \N 53 102 5329 186 5824 0 -120 \N 0.028207072808999999 0.0249659073792 0 1 0 0 \N 5329 \N 53 102 5329 186 5825 18.46299934387207 -120 \N 0.028207072808999999 0.0249659073792 0 0 14 0 \N 5329 \N 53 102 5329 186 5826 7.917999267578125 -120 \N 0.028207072808999999 0.0249659073792 0 0 6 0 \N 5329 \N 53 102 5329 186 5827 6.6000003814697266 -120 \N 0.028207072808999999 0.0249659073792 0 0 5 0 \N 5329 \N 53 102 5329 186 5828 11.87299919128418 -120 \N 0.028207072808999999 0.0249659073792 0 1 9 0 \N 5329 \N 53 102 5329 186 5829 14.507999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 1 11 0 \N 5329 \N 53 102 5329 186 5830 11.87299919128418 -120 \N 0.028207072808999999 0.0249659073792 0 0 9 0 \N 5329 \N 53 102 5329 186 5831 19.780000686645508 -120 \N 0.028207072808999999 0.0249659073792 0 0 15 0 \N 5329 \N 53 102 5329 186 5832 7.917999267578125 -120 \N 0.028207072808999999 0.0249659073792 0 1 6 0 \N 5329 \N 53 102 5329 186 5833 15.825000762939453 -120 \N 0.028207072808999999 0.0249659073792 0 1 12 0 \N 5329 \N 53 102 5329 186 5834 17.142999649047852 -120 \N 0.028207072808999999 0.0249659073792 0 1 13 0 \N 5329 \N 53 102 5329 186 5835 5.2830009460449219 -120 \N 0.028207072808999999 0.0249659073792 0 0 4 0 \N 5329 \N 53 102 5329 186 5836 3.9650001525878906 -120 \N 0.028207072808999999 0.0249659073792 0 1 3 0 \N 5329 \N 53 102 5329 186 5837 14.507999420166016 -120 \N 0.028207072808999999 0.0249659073792 0 0 11 0 \N 5329 \N 53 102 5329 186 5838 13.190000534057617 -120 \N 0.028207072808999999 0.0249659073792 0 0 10 0 \N 5329 \N 53 102 5329 186 5839 1.3199996948242188 -120 \N 0.028207072808999999 0.0249659073792 0 1 1 0 \N 5329 \N 53 102 5329 186 5840 18.46299934387207 -120 \N 0.028207072808999999 0.0249659073792 0 1 14 0 \N 5329 \N 53 102 5329 186 5841 3.9650001525878906 -120 \N 0.028207072808999999 0.0249659073792 0 0 3 0 \N 5329 \N 53 102 5329 186 5842 15.825000762939453 -120 \N 0.028207072808999999 0.0249659073792 0 0 12 0 \N 5329 \N 53 102 5329 186 5843 21.097999572753906 -120 \N 0.028207072808999999 0.0249659073792 0 0 16 0 \N 5329 \N 53 102 5329 186 5844 5.2830009460449219 -120 \N 0.028207072808999999 0.0249659073792 0 1 4 0 \N 5329 \N 53 102 5329 186 5845 2.6480007171630859 -120 \N 0.028207072808999999 0.0249659073792 0 1 2 0 \N 5329 \N 53 102 5329 186 5846 22.415000915527344 -120 \N 0.028207072808999999 0.0249659073792 0 0 17 0 \N 5329 \N 53 102 5329 186 5847 21.097999572753906 -120 \N 0.028207072808999999 0.0249659073792 0 1 16 0 \N 5329 \N 53 102 5329 186 5848 19.780000686645508 -120 \N 0.028207072808999999 0.0249659073792 0 1 15 0 \N 5329 \N 53 102 5329 186 5849 10.555000305175781 -120 \N 0.028207072808999999 0.0249659073792 0 0 8 0 \N 5329 \N 53 102 5329 186 5850 9.2350006103515625 -120 \N 0.028207072808999999 0.0249659073792 0 0 7 0 \N 5329 \N 53 102 5329 186 5851 13.190000534057617 -120 \N 0.028207072808999999 0.0249659073792 0 1 10 0 \N 5329 \N 53 102 5329 186 5852 1.3199996948242188 -120 \N 0.028207072808999999 0.0249659073792 0 0 1 0 \N 5329 \N 53 102 5329 186 5853 9.0049991607666016 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5397 \N 53 102 5397 187 5854 3.0019989013671875 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5397 \N 53 102 5397 187 5855 12.004999160766602 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5397 \N 53 102 5397 187 5856 3.0019989013671875 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5397 \N 53 102 5397 187 5857 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5397 \N 53 102 5397 187 5858 12.004999160766602 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5397 \N 53 102 5397 187 5859 6.0049991607666016 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5397 \N 53 102 5397 187 5860 6.0049991607666016 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5397 \N 53 102 5397 187 5861 9.0049991607666016 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5397 \N 53 102 5397 187 5862 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5397 \N 53 102 5397 187 5863 65.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5397 \N 53 102 5397 188 5864 20.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5397 \N 53 102 5397 188 5865 75.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5397 \N 53 102 5397 188 5866 65.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5397 \N 53 102 5397 188 5867 30.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5397 \N 53 102 5397 188 5868 25.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5397 \N 53 102 5397 188 5869 25.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5397 \N 53 102 5397 188 5870 70.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5397 \N 53 102 5397 188 5871 75.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5397 \N 53 102 5397 188 5872 60.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5397 \N 53 102 5397 188 5873 10.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5397 \N 53 102 5397 188 5874 5.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5397 \N 53 102 5397 188 5875 80.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5397 \N 53 102 5397 188 5876 15.010000228881836 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5397 \N 53 102 5397 188 5877 95.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5397 \N 53 102 5397 188 5878 10.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5397 \N 53 102 5397 188 5879 95.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5397 \N 53 102 5397 188 5880 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5397 \N 53 102 5397 188 5881 15.010000228881836 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5397 \N 53 102 5397 188 5882 40.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5397 \N 53 102 5397 188 5883 90.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5397 \N 53 102 5397 188 5884 85.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5397 \N 53 102 5397 188 5885 55.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5397 \N 53 102 5397 188 5886 60.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5397 \N 53 102 5397 188 5887 80.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5397 \N 53 102 5397 188 5888 55.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5397 \N 53 102 5397 188 5889 5.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5397 \N 53 102 5397 188 5890 40.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5397 \N 53 102 5397 188 5891 70.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5397 \N 53 102 5397 188 5892 50.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5397 \N 53 102 5397 188 5893 45.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5397 \N 53 102 5397 188 5894 20.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5397 \N 53 102 5397 188 5895 85.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5397 \N 53 102 5397 188 5896 45.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5397 \N 53 102 5397 188 5897 30.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5397 \N 53 102 5397 188 5898 35.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5397 \N 53 102 5397 188 5899 35.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5397 \N 53 102 5397 188 5900 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5397 \N 53 102 5397 188 5901 90.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5397 \N 53 102 5397 188 5902 50.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5397 \N 53 102 5397 188 5903 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5397 \N 53 102 5397 189 5904 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5397 \N 53 102 5397 189 5905 7.9130001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5397 \N 53 102 5397 190 5906 2.6400012969970703 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5397 \N 53 102 5397 190 5907 23.728000640869141 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5397 \N 53 102 5397 190 5908 21.090000152587891 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5397 \N 53 102 5397 190 5909 14.503000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5397 \N 53 102 5397 190 5910 15.820001602172852 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5397 \N 53 102 5397 190 5911 1.3180007934570312 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5397 \N 53 102 5397 190 5912 22.410001754760742 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5397 \N 53 102 5397 190 5913 17.13800048828125 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5397 \N 53 102 5397 190 5914 18.455001831054688 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5397 \N 53 102 5397 190 5915 25.048000335693359 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5397 \N 53 102 5397 190 5916 9.2300014495849609 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5397 \N 53 102 5397 190 5917 9.2300014495849609 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5397 \N 53 102 5397 190 5918 3.9580001831054688 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5397 \N 53 102 5397 190 5919 10.548000335693359 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5397 \N 53 102 5397 190 5920 6.595001220703125 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5397 \N 53 102 5397 190 5921 11.865001678466797 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5397 \N 53 102 5397 190 5922 6.595001220703125 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5397 \N 53 102 5397 190 5923 22.410001754760742 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5397 \N 53 102 5397 190 5924 25.048000335693359 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5397 \N 53 102 5397 190 5925 23.728000640869141 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5397 \N 53 102 5397 190 5926 21.090000152587891 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5397 \N 53 102 5397 190 5927 14.503000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5397 \N 53 102 5397 190 5928 18.455001831054688 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5397 \N 53 102 5397 190 5929 5.2750015258789062 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5397 \N 53 102 5397 190 5930 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5397 \N 53 102 5397 190 5931 1.3180007934570312 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5397 \N 53 102 5397 190 5932 11.865001678466797 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5397 \N 53 102 5397 190 5933 19.773000717163086 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5397 \N 53 102 5397 190 5934 13.183000564575195 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5397 \N 53 102 5397 190 5935 10.548000335693359 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5397 \N 53 102 5397 190 5936 3.9580001831054688 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5397 \N 53 102 5397 190 5937 5.2750015258789062 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5397 \N 53 102 5397 190 5938 17.13800048828125 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5397 \N 53 102 5397 190 5939 19.773000717163086 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5397 \N 53 102 5397 190 5940 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5397 \N 53 102 5397 190 5941 13.183000564575195 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5397 \N 53 102 5397 190 5942 7.9130001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5397 \N 53 102 5397 190 5943 2.6400012969970703 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5397 \N 53 102 5397 190 5944 15.820001602172852 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5397 \N 53 102 5397 190 5945 6.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5421 \N 53 102 5421 191 5946 3.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5421 \N 53 102 5421 191 5947 12.010000228881836 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5421 \N 53 102 5421 191 5948 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5421 \N 53 102 5421 191 5949 12.010000228881836 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5421 \N 53 102 5421 191 5950 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5421 \N 53 102 5421 191 5951 9.01300048828125 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5421 \N 53 102 5421 191 5952 6.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5421 \N 53 102 5421 191 5953 9.01300048828125 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5421 \N 53 102 5421 191 5954 3.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5421 \N 53 102 5421 191 5955 10.010000228881836 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5421 \N 53 102 5421 192 5956 20.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5421 \N 53 102 5421 192 5957 65.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5421 \N 53 102 5421 192 5958 80.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5421 \N 53 102 5421 192 5959 5.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5421 \N 53 102 5421 192 5960 45.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5421 \N 53 102 5421 192 5961 25.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5421 \N 53 102 5421 192 5962 90.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5421 \N 53 102 5421 192 5963 60.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5421 \N 53 102 5421 192 5964 65.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5421 \N 53 102 5421 192 5965 85.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5421 \N 53 102 5421 192 5966 35.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5421 \N 53 102 5421 192 5967 10.010000228881836 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5421 \N 53 102 5421 192 5968 45.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5421 \N 53 102 5421 192 5969 25.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5421 \N 53 102 5421 192 5970 55.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5421 \N 53 102 5421 192 5971 15.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5421 \N 53 102 5421 192 5972 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5421 \N 53 102 5421 192 5973 20.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5421 \N 53 102 5421 192 5974 40.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5421 \N 53 102 5421 192 5975 55.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5421 \N 53 102 5421 192 5976 30.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5421 \N 53 102 5421 192 5977 95.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5421 \N 53 102 5421 192 5978 75.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5421 \N 53 102 5421 192 5979 90.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5421 \N 53 102 5421 192 5980 30.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5421 \N 53 102 5421 192 5981 70.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5421 \N 53 102 5421 192 5982 95.017000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5421 \N 53 102 5421 192 5983 80.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5421 \N 53 102 5421 192 5984 85.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5421 \N 53 102 5421 192 5985 15.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5421 \N 53 102 5421 192 5986 50.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5421 \N 53 102 5421 192 5987 75.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5421 \N 53 102 5421 192 5988 70.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5421 \N 53 102 5421 192 5989 50.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5421 \N 53 102 5421 192 5990 40.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5421 \N 53 102 5421 192 5991 5.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5421 \N 53 102 5421 192 5992 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5421 \N 53 102 5421 192 5993 35.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5421 \N 53 102 5421 192 5994 60.014999389648438 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5421 \N 53 102 5421 192 5995 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5421 \N 53 102 5421 193 5996 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5421 \N 53 102 5421 193 5997 3.9680004119873047 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5421 \N 53 102 5421 194 5998 9.2399997711181641 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5421 \N 53 102 5421 194 5999 5.2849998474121094 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5421 \N 53 102 5421 194 6000 11.875 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5421 \N 53 102 5421 194 6001 6.6049995422363281 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5421 \N 53 102 5421 194 6002 21.102998733520508 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5421 \N 53 102 5421 194 6003 14.51300048828125 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5421 \N 53 102 5421 194 6004 1.3229999542236328 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5421 \N 53 102 5421 194 6005 21.102998733520508 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5421 \N 53 102 5421 194 6006 1.3229999542236328 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5421 \N 53 102 5421 194 6007 22.420000076293945 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5421 \N 53 102 5421 194 6008 25.055000305175781 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5421 \N 53 102 5421 194 6009 15.829999923706055 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5421 \N 53 102 5421 194 6010 13.192998886108398 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5421 \N 53 102 5421 194 6011 15.829999923706055 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5421 \N 53 102 5421 194 6012 18.465000152587891 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5421 \N 53 102 5421 194 6013 17.147998809814453 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5421 \N 53 102 5421 194 6014 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5421 \N 53 102 5421 194 6015 23.737998962402344 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5421 \N 53 102 5421 194 6016 2.6499996185302734 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5421 \N 53 102 5421 194 6017 19.784999847412109 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5421 \N 53 102 5421 194 6018 22.420000076293945 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5421 \N 53 102 5421 194 6019 7.9230003356933594 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5421 \N 53 102 5421 194 6020 11.875 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5421 \N 53 102 5421 194 6021 19.784999847412109 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5421 \N 53 102 5421 194 6022 14.51300048828125 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5421 \N 53 102 5421 194 6023 18.465000152587891 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5421 \N 53 102 5421 194 6024 25.055000305175781 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5421 \N 53 102 5421 194 6025 6.6049995422363281 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5421 \N 53 102 5421 194 6026 2.6499996185302734 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5421 \N 53 102 5421 194 6027 5.2849998474121094 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5421 \N 53 102 5421 194 6028 10.558000564575195 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5421 \N 53 102 5421 194 6029 23.737998962402344 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5421 \N 53 102 5421 194 6030 13.192998886108398 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5421 \N 53 102 5421 194 6031 10.558000564575195 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5421 \N 53 102 5421 194 6032 7.9230003356933594 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5421 \N 53 102 5421 194 6033 17.147998809814453 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5421 \N 53 102 5421 194 6034 9.2399997711181641 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5421 \N 53 102 5421 194 6035 3.9680004119873047 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5421 \N 53 102 5421 194 6036 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5421 \N 53 102 5421 194 6037 12.007999420166016 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5446 \N 53 102 5446 195 6038 12.007999420166016 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5446 \N 53 102 5446 195 6039 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5446 \N 53 102 5446 195 6040 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5446 \N 53 102 5446 195 6041 6.0079994201660156 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5446 \N 53 102 5446 195 6042 3.0079994201660156 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5446 \N 53 102 5446 195 6043 9.0079994201660156 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5446 \N 53 102 5446 195 6044 3.0079994201660156 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5446 \N 53 102 5446 195 6045 6.0079994201660156 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5446 \N 53 102 5446 195 6046 9.0079994201660156 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5446 \N 53 102 5446 195 6047 25.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5446 \N 53 102 5446 196 6048 70.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5446 \N 53 102 5446 196 6049 35.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5446 \N 53 102 5446 196 6050 25.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5446 \N 53 102 5446 196 6051 90.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5446 \N 53 102 5446 196 6052 45.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5446 \N 53 102 5446 196 6053 35.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5446 \N 53 102 5446 196 6054 45.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5446 \N 53 102 5446 196 6055 75.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5446 \N 53 102 5446 196 6056 30.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5446 \N 53 102 5446 196 6057 60.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5446 \N 53 102 5446 196 6058 65.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5446 \N 53 102 5446 196 6059 55.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5446 \N 53 102 5446 196 6060 60.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5446 \N 53 102 5446 196 6061 85.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5446 \N 53 102 5446 196 6062 80.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5446 \N 53 102 5446 196 6063 20.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5446 \N 53 102 5446 196 6064 95.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5446 \N 53 102 5446 196 6065 50.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5446 \N 53 102 5446 196 6066 20.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5446 \N 53 102 5446 196 6067 10 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5446 \N 53 102 5446 196 6068 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5446 \N 53 102 5446 196 6069 95.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5446 \N 53 102 5446 196 6070 40.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5446 \N 53 102 5446 196 6071 5.0030002593994141 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5446 \N 53 102 5446 196 6072 90.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5446 \N 53 102 5446 196 6073 55.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5446 \N 53 102 5446 196 6074 15.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5446 \N 53 102 5446 196 6075 30.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5446 \N 53 102 5446 196 6076 70.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5446 \N 53 102 5446 196 6077 80.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5446 \N 53 102 5446 196 6078 85.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5446 \N 53 102 5446 196 6079 50.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5446 \N 53 102 5446 196 6080 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5446 \N 53 102 5446 196 6081 5.0030002593994141 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5446 \N 53 102 5446 196 6082 75.008001327514648 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5446 \N 53 102 5446 196 6083 15.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5446 \N 53 102 5446 196 6084 40.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5446 \N 53 102 5446 196 6085 10 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5446 \N 53 102 5446 196 6086 65.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5446 \N 53 102 5446 196 6087 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5446 \N 53 102 5446 197 6088 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5446 \N 53 102 5446 197 6089 21.097000122070312 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5446 \N 53 102 5446 198 6090 1.3200016021728516 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5446 \N 53 102 5446 198 6091 15.825000762939453 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5446 \N 53 102 5446 198 6092 1.3200016021728516 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5446 \N 53 102 5446 198 6093 21.097000122070312 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5446 \N 53 102 5446 198 6094 6.6000003814697266 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5446 \N 53 102 5446 198 6095 10.552000045776367 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5446 \N 53 102 5446 198 6096 7.9170017242431641 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5446 \N 53 102 5446 198 6097 10.552000045776367 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5446 \N 53 102 5446 198 6098 23.732000350952148 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5446 \N 53 102 5446 198 6099 3.9620018005371094 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5446 \N 53 102 5446 198 6100 3.9620018005371094 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5446 \N 53 102 5446 198 6101 17.142000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5446 \N 53 102 5446 198 6102 11.870000839233398 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5446 \N 53 102 5446 198 6103 18.462001800537109 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5446 \N 53 102 5446 198 6104 13.187000274658203 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5446 \N 53 102 5446 198 6105 6.6000003814697266 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5446 \N 53 102 5446 198 6106 18.462001800537109 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5446 \N 53 102 5446 198 6107 25.05000114440918 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5446 \N 53 102 5446 198 6108 9.2350006103515625 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5446 \N 53 102 5446 198 6109 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5446 \N 53 102 5446 198 6110 2.6450004577636719 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5446 \N 53 102 5446 198 6111 5.2800006866455078 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5446 \N 53 102 5446 198 6112 23.732000350952148 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5446 \N 53 102 5446 198 6113 22.415000915527344 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5446 \N 53 102 5446 198 6114 5.2800006866455078 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5446 \N 53 102 5446 198 6115 11.870000839233398 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5446 \N 53 102 5446 198 6116 13.187000274658203 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5446 \N 53 102 5446 198 6117 2.6450004577636719 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5446 \N 53 102 5446 198 6118 15.825000762939453 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5446 \N 53 102 5446 198 6119 25.05000114440918 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5446 \N 53 102 5446 198 6120 22.415000915527344 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5446 \N 53 102 5446 198 6121 19.780000686645508 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5446 \N 53 102 5446 198 6122 19.780000686645508 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5446 \N 53 102 5446 198 6123 14.507001876831055 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5446 \N 53 102 5446 198 6124 9.2350006103515625 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5446 \N 53 102 5446 198 6125 17.142000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5446 \N 53 102 5446 198 6126 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5446 \N 53 102 5446 198 6127 14.507001876831055 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5446 \N 53 102 5446 198 6128 7.9170017242431641 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5446 \N 53 102 5446 198 6129 3.0069999694824219 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5471 \N 53 102 5471 199 6130 6.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5471 \N 53 102 5471 199 6131 3.0069999694824219 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5471 \N 53 102 5471 199 6132 9.0069999694824219 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5471 \N 53 102 5471 199 6133 6.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5471 \N 53 102 5471 199 6134 12.006999969482422 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5471 \N 53 102 5471 199 6135 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5471 \N 53 102 5471 199 6136 9.0069999694824219 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5471 \N 53 102 5471 199 6137 12.006999969482422 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5471 \N 53 102 5471 199 6138 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5471 \N 53 102 5471 199 6139 59.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5471 \N 53 102 5471 200 6140 34.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5471 \N 53 102 5471 200 6141 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5471 \N 53 102 5471 200 6142 44.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5471 \N 53 102 5471 200 6143 95.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5471 \N 53 102 5471 200 6144 39.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5471 \N 53 102 5471 200 6145 39.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5471 \N 53 102 5471 200 6146 9.9979991912841797 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5471 \N 53 102 5471 200 6147 24.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5471 \N 53 102 5471 200 6148 4.9979991912841797 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5471 \N 53 102 5471 200 6149 85.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5471 \N 53 102 5471 200 6150 55.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5471 \N 53 102 5471 200 6151 50.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5471 \N 53 102 5471 200 6152 90.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5471 \N 53 102 5471 200 6153 65.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5471 \N 53 102 5471 200 6154 70.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5471 \N 53 102 5471 200 6155 4.9979991912841797 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5471 \N 53 102 5471 200 6156 85.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5471 \N 53 102 5471 200 6157 24.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5471 \N 53 102 5471 200 6158 29.994998931884766 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5471 \N 53 102 5471 200 6159 65.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5471 \N 53 102 5471 200 6160 50.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5471 \N 53 102 5471 200 6161 29.994998931884766 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5471 \N 53 102 5471 200 6162 14.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5471 \N 53 102 5471 200 6163 44.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5471 \N 53 102 5471 200 6164 75.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5471 \N 53 102 5471 200 6165 75.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5471 \N 53 102 5471 200 6166 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5471 \N 53 102 5471 200 6167 95.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5471 \N 53 102 5471 200 6168 55.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5471 \N 53 102 5471 200 6169 34.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5471 \N 53 102 5471 200 6170 90.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5471 \N 53 102 5471 200 6171 9.9979991912841797 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5471 \N 53 102 5471 200 6172 19.994998931884766 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5471 \N 53 102 5471 200 6173 59.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5471 \N 53 102 5471 200 6174 70.000999450683594 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5471 \N 53 102 5471 200 6175 80.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5471 \N 53 102 5471 200 6176 80.003000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5471 \N 53 102 5471 200 6177 14.99799919128418 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5471 \N 53 102 5471 200 6178 19.994998931884766 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5471 \N 53 102 5471 200 6179 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5471 \N 53 102 5471 201 6180 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5471 \N 53 102 5471 201 6181 14.505001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5471 \N 53 102 5471 202 6182 11.870000839233398 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5471 \N 53 102 5471 202 6183 13.187000274658203 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5471 \N 53 102 5471 202 6184 9.2320003509521484 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5471 \N 53 102 5471 202 6185 18.460000991821289 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5471 \N 53 102 5471 202 6186 10.55000114440918 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5471 \N 53 102 5471 202 6187 2.6450004577636719 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5471 \N 53 102 5471 202 6188 6.5970001220703125 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5471 \N 53 102 5471 202 6189 1.3200016021728516 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5471 \N 53 102 5471 202 6190 23.730001449584961 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5471 \N 53 102 5471 202 6191 25.047000885009766 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5471 \N 53 102 5471 202 6192 15.825000762939453 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5471 \N 53 102 5471 202 6193 18.460000991821289 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5471 \N 53 102 5471 202 6194 15.825000762939453 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5471 \N 53 102 5471 202 6195 19.777000427246094 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5471 \N 53 102 5471 202 6196 11.870000839233398 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5471 \N 53 102 5471 202 6197 5.2800006866455078 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5471 \N 53 102 5471 202 6198 21.095001220703125 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5471 \N 53 102 5471 202 6199 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5471 \N 53 102 5471 202 6200 3.9620018005371094 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5471 \N 53 102 5471 202 6201 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5471 \N 53 102 5471 202 6202 17.142000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5471 \N 53 102 5471 202 6203 14.505001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5471 \N 53 102 5471 202 6204 2.6450004577636719 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5471 \N 53 102 5471 202 6205 6.5970001220703125 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5471 \N 53 102 5471 202 6206 13.187000274658203 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5471 \N 53 102 5471 202 6207 10.55000114440918 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5471 \N 53 102 5471 202 6208 22.41200065612793 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5471 \N 53 102 5471 202 6209 17.142000198364258 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5471 \N 53 102 5471 202 6210 23.730001449584961 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5471 \N 53 102 5471 202 6211 7.9150009155273438 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5471 \N 53 102 5471 202 6212 5.2800006866455078 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5471 \N 53 102 5471 202 6213 22.41200065612793 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5471 \N 53 102 5471 202 6214 21.095001220703125 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5471 \N 53 102 5471 202 6215 7.9150009155273438 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5471 \N 53 102 5471 202 6216 19.777000427246094 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5471 \N 53 102 5471 202 6217 25.047000885009766 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5471 \N 53 102 5471 202 6218 3.9620018005371094 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5471 \N 53 102 5471 202 6219 9.2320003509521484 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5471 \N 53 102 5471 202 6220 1.3200016021728516 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5471 \N 53 102 5471 202 6221 6.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5493 \N 53 102 5493 203 6222 3.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5493 \N 53 102 5493 203 6223 12.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5493 \N 53 102 5493 203 6224 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5493 \N 53 102 5493 203 6225 12.011999130249023 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5493 \N 53 102 5493 203 6226 9.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5493 \N 53 102 5493 203 6227 6.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5493 \N 53 102 5493 203 6228 3.0100002288818359 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5493 \N 53 102 5493 203 6229 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5493 \N 53 102 5493 203 6230 9.0119991302490234 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5493 \N 53 102 5493 203 6231 30.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5493 \N 53 102 5493 204 6232 65.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5493 \N 53 102 5493 204 6233 4.9970016479492188 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5493 \N 53 102 5493 204 6234 10 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5493 \N 53 102 5493 204 6235 75.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5493 \N 53 102 5493 204 6236 40 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5493 \N 53 102 5493 204 6237 15 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5493 \N 53 102 5493 204 6238 15 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5493 \N 53 102 5493 204 6239 60.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5493 \N 53 102 5493 204 6240 55 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5493 \N 53 102 5493 204 6241 95.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5493 \N 53 102 5493 204 6242 75.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5493 \N 53 102 5493 204 6243 30.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5493 \N 53 102 5493 204 6244 20 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5493 \N 53 102 5493 204 6245 50.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5493 \N 53 102 5493 204 6246 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5493 \N 53 102 5493 204 6247 25 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5493 \N 53 102 5493 204 6248 70.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5493 \N 53 102 5493 204 6249 25 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5493 \N 53 102 5493 204 6250 90.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5493 \N 53 102 5493 204 6251 4.9970016479492188 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5493 \N 53 102 5493 204 6252 90.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5493 \N 53 102 5493 204 6253 95.005001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5493 \N 53 102 5493 204 6254 35.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5493 \N 53 102 5493 204 6255 45.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5493 \N 53 102 5493 204 6256 85.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5493 \N 53 102 5493 204 6257 20 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5493 \N 53 102 5493 204 6258 40 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5493 \N 53 102 5493 204 6259 60.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5493 \N 53 102 5493 204 6260 65.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5493 \N 53 102 5493 204 6261 50.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5493 \N 53 102 5493 204 6262 45.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5493 \N 53 102 5493 204 6263 10 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5493 \N 53 102 5493 204 6264 85.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5493 \N 53 102 5493 204 6265 80.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5493 \N 53 102 5493 204 6266 80.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5493 \N 53 102 5493 204 6267 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5493 \N 53 102 5493 204 6268 35.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5493 \N 53 102 5493 204 6269 70.00200080871582 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5493 \N 53 102 5493 204 6270 55 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5493 \N 53 102 5493 204 6271 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5493 \N 53 102 5493 205 6272 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5493 \N 53 102 5493 205 6273 14.503000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 0 11 0 \N 5493 \N 53 102 5493 206 6274 18.454999923706055 -120 \N 0.028038074266199999 0.0249659073792 0 0 14 0 \N 5493 \N 53 102 5493 206 6275 11.864999771118164 -120 \N 0.028038074266199999 0.0249659073792 0 0 9 0 \N 5493 \N 53 102 5493 206 6276 21.092998504638672 -120 \N 0.028038074266199999 0.0249659073792 0 0 16 0 \N 5493 \N 53 102 5493 206 6277 9.2299995422363281 -120 \N 0.028038074266199999 0.0249659073792 0 0 7 0 \N 5493 \N 53 102 5493 206 6278 7.9130001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 1 6 0 \N 5493 \N 53 102 5493 206 6279 2.6399993896484375 -120 \N 0.028038074266199999 0.0249659073792 0 1 2 0 \N 5493 \N 53 102 5493 206 6280 7.9130001068115234 -120 \N 0.028038074266199999 0.0249659073792 0 0 6 0 \N 5493 \N 53 102 5493 206 6281 25.045999526977539 -120 \N 0.028038074266199999 0.0249659073792 0 0 19 0 \N 5493 \N 53 102 5493 206 6282 13.182998657226562 -120 \N 0.028038074266199999 0.0249659073792 0 1 10 0 \N 5493 \N 53 102 5493 206 6283 13.182998657226562 -120 \N 0.028038074266199999 0.0249659073792 0 0 10 0 \N 5493 \N 53 102 5493 206 6284 19.774999618530273 -120 \N 0.028038074266199999 0.0249659073792 0 1 15 0 \N 5493 \N 53 102 5493 206 6285 22.410999298095703 -120 \N 0.028038074266199999 0.0249659073792 0 0 17 0 \N 5493 \N 53 102 5493 206 6286 0 -120 \N 0.028038074266199999 0.0249659073792 0 1 0 0 \N 5493 \N 53 102 5493 206 6287 18.454999923706055 -120 \N 0.028038074266199999 0.0249659073792 0 1 14 0 \N 5493 \N 53 102 5493 206 6288 1.3179988861083984 -120 \N 0.028038074266199999 0.0249659073792 0 0 1 0 \N 5493 \N 53 102 5493 206 6289 3.9580001831054688 -120 \N 0.028038074266199999 0.0249659073792 0 0 3 0 \N 5493 \N 53 102 5493 206 6290 25.045999526977539 -120 \N 0.028038074266199999 0.0249659073792 0 1 19 0 \N 5493 \N 53 102 5493 206 6291 9.2299995422363281 -120 \N 0.028038074266199999 0.0249659073792 0 1 7 0 \N 5493 \N 53 102 5493 206 6292 15.819999694824219 -120 \N 0.028038074266199999 0.0249659073792 0 0 12 0 \N 5493 \N 53 102 5493 206 6293 19.774999618530273 -120 \N 0.028038074266199999 0.0249659073792 0 0 15 0 \N 5493 \N 53 102 5493 206 6294 14.503000259399414 -120 \N 0.028038074266199999 0.0249659073792 0 1 11 0 \N 5493 \N 53 102 5493 206 6295 6.5949993133544922 -120 \N 0.028038074266199999 0.0249659073792 0 1 5 0 \N 5493 \N 53 102 5493 206 6296 17.137998580932617 -120 \N 0.028038074266199999 0.0249659073792 0 1 13 0 \N 5493 \N 53 102 5493 206 6297 23.727998733520508 -120 \N 0.028038074266199999 0.0249659073792 0 1 18 0 \N 5493 \N 53 102 5493 206 6298 1.3179988861083984 -120 \N 0.028038074266199999 0.0249659073792 0 1 1 0 \N 5493 \N 53 102 5493 206 6299 23.727998733520508 -120 \N 0.028038074266199999 0.0249659073792 0 0 18 0 \N 5493 \N 53 102 5493 206 6300 10.548000335693359 -120 \N 0.028038074266199999 0.0249659073792 0 0 8 0 \N 5493 \N 53 102 5493 206 6301 10.548000335693359 -120 \N 0.028038074266199999 0.0249659073792 0 1 8 0 \N 5493 \N 53 102 5493 206 6302 15.819999694824219 -120 \N 0.028038074266199999 0.0249659073792 0 1 12 0 \N 5493 \N 53 102 5493 206 6303 22.410999298095703 -120 \N 0.028038074266199999 0.0249659073792 0 1 17 0 \N 5493 \N 53 102 5493 206 6304 11.864999771118164 -120 \N 0.028038074266199999 0.0249659073792 0 1 9 0 \N 5493 \N 53 102 5493 206 6305 2.6399993896484375 -120 \N 0.028038074266199999 0.0249659073792 0 0 2 0 \N 5493 \N 53 102 5493 206 6306 5.2749996185302734 -120 \N 0.028038074266199999 0.0249659073792 0 1 4 0 \N 5493 \N 53 102 5493 206 6307 3.9580001831054688 -120 \N 0.028038074266199999 0.0249659073792 0 1 3 0 \N 5493 \N 53 102 5493 206 6308 6.5949993133544922 -120 \N 0.028038074266199999 0.0249659073792 0 0 5 0 \N 5493 \N 53 102 5493 206 6309 0 -120 \N 0.028038074266199999 0.0249659073792 0 0 0 0 \N 5493 \N 53 102 5493 206 6310 21.092998504638672 -120 \N 0.028038074266199999 0.0249659073792 0 1 16 0 \N 5493 \N 53 102 5493 206 6311 5.2749996185302734 -120 \N 0.028038074266199999 0.0249659073792 0 0 4 0 \N 5493 \N 53 102 5493 206 6312 17.137998580932617 -120 \N 0.028038074266199999 0.0249659073792 0 0 13 0 \N 5493 \N 53 102 5493 206 6313 6.0069999694824219 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5515 \N 53 102 5515 207 6314 3.0050010681152344 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5515 \N 53 102 5515 207 6315 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5515 \N 53 102 5515 207 6316 12.006999969482422 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5515 \N 53 102 5515 207 6317 9.0050010681152344 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5515 \N 53 102 5515 207 6318 35 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5515 \N 53 102 5515 208 6319 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5515 \N 53 102 5515 208 6320 45 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5515 \N 53 102 5515 208 6321 95 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5515 \N 53 102 5515 208 6322 80.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5515 \N 53 102 5515 208 6323 90.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5515 \N 53 102 5515 208 6324 15 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5515 \N 53 102 5515 208 6325 75 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5515 \N 53 102 5515 208 6326 39.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5515 \N 53 102 5515 208 6327 60.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5515 \N 53 102 5515 208 6328 55 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5515 \N 53 102 5515 208 6329 65 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5515 \N 53 102 5515 208 6330 70.00200080871582 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5515 \N 53 102 5515 208 6331 29.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5515 \N 53 102 5515 208 6332 85 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5515 \N 53 102 5515 208 6333 25 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5515 \N 53 102 5515 208 6334 49.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5515 \N 53 102 5515 208 6335 9.9969997406005859 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5515 \N 53 102 5515 208 6336 5 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5515 \N 53 102 5515 208 6337 19.996999740600586 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5515 \N 53 102 5515 208 6338 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5515 \N 53 102 5515 209 6339 21.088001251220703 -120 \N 0.028037245164599999 0.0249657001038 0 0 16 0 \N 5515 \N 53 102 5515 210 6340 10.543001174926758 -120 \N 0.028037245164599999 0.0249657001038 0 0 8 0 \N 5515 \N 53 102 5515 210 6341 14.498001098632812 -120 \N 0.028037245164599999 0.0249657001038 0 0 11 0 \N 5515 \N 53 102 5515 210 6342 13.178001403808594 -120 \N 0.028037245164599999 0.0249657001038 0 0 10 0 \N 5515 \N 53 102 5515 210 6343 22.405000686645508 -120 \N 0.028037245164599999 0.0249657001038 0 0 17 0 \N 5515 \N 53 102 5515 210 6344 6.5900001525878906 -120 \N 0.028037245164599999 0.0249657001038 0 0 5 0 \N 5515 \N 53 102 5515 210 6345 9.2250003814697266 -120 \N 0.028037245164599999 0.0249657001038 0 0 7 0 \N 5515 \N 53 102 5515 210 6346 18.450000762939453 -120 \N 0.028037245164599999 0.0249657001038 0 0 14 0 \N 5515 \N 53 102 5515 210 6347 2.6350002288818359 -120 \N 0.028037245164599999 0.0249657001038 0 0 2 0 \N 5515 \N 53 102 5515 210 6348 23.723001480102539 -120 \N 0.028037245164599999 0.0249657001038 0 0 18 0 \N 5515 \N 53 102 5515 210 6349 11.860000610351562 -120 \N 0.028037245164599999 0.0249657001038 0 0 9 0 \N 5515 \N 53 102 5515 210 6350 7.9080009460449219 -120 \N 0.028037245164599999 0.0249657001038 0 0 6 0 \N 5515 \N 53 102 5515 210 6351 0 -120 \N 0.028037245164599999 0.0249657001038 0 0 0 0 \N 5515 \N 53 102 5515 210 6352 3.9530010223388672 -120 \N 0.028037245164599999 0.0249657001038 0 0 3 0 \N 5515 \N 53 102 5515 210 6353 19.770000457763672 -120 \N 0.028037245164599999 0.0249657001038 0 0 15 0 \N 5515 \N 53 102 5515 210 6354 25.040000915527344 -120 \N 0.028037245164599999 0.0249657001038 0 0 19 0 \N 5515 \N 53 102 5515 210 6355 1.3180007934570312 -120 \N 0.028037245164599999 0.0249657001038 0 0 1 0 \N 5515 \N 53 102 5515 210 6356 17.133001327514648 -120 \N 0.028037245164599999 0.0249657001038 0 0 13 0 \N 5515 \N 53 102 5515 210 6357 15.815000534057617 -120 \N 0.028037245164599999 0.0249657001038 0 0 12 0 \N 5515 \N 53 102 5515 210 6358 5.2700004577636719 -120 \N 0.028037245164599999 0.0249657001038 0 0 4 0 \N 5515 \N 53 102 5515 210 6359 9.0069999694824219 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5539 \N 53 102 5539 211 6360 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5539 \N 53 102 5539 211 6361 6.0050010681152344 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5539 \N 53 102 5539 211 6362 12.005001068115234 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5539 \N 53 102 5539 211 6363 3.0069999694824219 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5539 \N 53 102 5539 211 6364 95.01300048828125 -120 \N 0.028037245164599999 0.024972816559200001 0 0 19 0 \N 5539 \N 53 102 5539 212 6365 5.0079994201660156 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5539 \N 53 102 5539 212 6366 65.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 13 0 \N 5539 \N 53 102 5539 212 6367 10.005001068115234 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5539 \N 53 102 5539 212 6368 70.01300048828125 -120 \N 0.028037245164599999 0.024972816559200001 0 0 14 0 \N 5539 \N 53 102 5539 212 6369 15.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5539 \N 53 102 5539 212 6370 35.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 7 0 \N 5539 \N 53 102 5539 212 6371 60.01300048828125 -120 \N 0.028037245164599999 0.024972816559200001 0 0 12 0 \N 5539 \N 53 102 5539 212 6372 20.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5539 \N 53 102 5539 212 6373 30.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 6 0 \N 5539 \N 53 102 5539 212 6374 50.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 10 0 \N 5539 \N 53 102 5539 212 6375 45.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 9 0 \N 5539 \N 53 102 5539 212 6376 40.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 8 0 \N 5539 \N 53 102 5539 212 6377 75.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 15 0 \N 5539 \N 53 102 5539 212 6378 90.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 18 0 \N 5539 \N 53 102 5539 212 6379 80.01300048828125 -120 \N 0.028037245164599999 0.024972816559200001 0 0 16 0 \N 5539 \N 53 102 5539 212 6380 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5539 \N 53 102 5539 212 6381 55.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 11 0 \N 5539 \N 53 102 5539 212 6382 85.01300048828125 -120 \N 0.028037245164599999 0.024972816559200001 0 0 17 0 \N 5539 \N 53 102 5539 212 6383 25.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 5 0 \N 5539 \N 53 102 5539 212 6384 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5539 \N 53 102 5539 213 6385 22.402999877929688 -120 \N 0.028037245164599999 0.024972816559200001 0 0 17 0 \N 5539 \N 53 102 5539 214 6386 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5539 \N 53 102 5539 214 6387 21.083000183105469 -120 \N 0.028037245164599999 0.024972816559200001 0 0 16 0 \N 5539 \N 53 102 5539 214 6388 5.2699985504150391 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5539 \N 53 102 5539 214 6389 1.3179988861083984 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5539 \N 53 102 5539 214 6390 14.494998931884766 -120 \N 0.028037245164599999 0.024972816559200001 0 0 11 0 \N 5539 \N 53 102 5539 214 6391 3.9529991149902344 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5539 \N 53 102 5539 214 6392 23.719999313354492 -120 \N 0.028037245164599999 0.024972816559200001 0 0 18 0 \N 5539 \N 53 102 5539 214 6393 13.174999237060547 -120 \N 0.028037245164599999 0.024972816559200001 0 0 10 0 \N 5539 \N 53 102 5539 214 6394 9.2229995727539062 -120 \N 0.028037245164599999 0.024972816559200001 0 0 7 0 \N 5539 \N 53 102 5539 214 6395 10.539999008178711 -120 \N 0.028037245164599999 0.024972816559200001 0 0 8 0 \N 5539 \N 53 102 5539 214 6396 11.857999801635742 -120 \N 0.028037245164599999 0.024972816559200001 0 0 9 0 \N 5539 \N 53 102 5539 214 6397 6.5879993438720703 -120 \N 0.028037245164599999 0.024972816559200001 0 0 5 0 \N 5539 \N 53 102 5539 214 6398 2.6350002288818359 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5539 \N 53 102 5539 214 6399 15.812999725341797 -120 \N 0.028037245164599999 0.024972816559200001 0 0 12 0 \N 5539 \N 53 102 5539 214 6400 19.764999389648438 -120 \N 0.028037245164599999 0.024972816559200001 0 0 15 0 \N 5539 \N 53 102 5539 214 6401 7.904998779296875 -120 \N 0.028037245164599999 0.024972816559200001 0 0 6 0 \N 5539 \N 53 102 5539 214 6402 18.447999954223633 -120 \N 0.028037245164599999 0.024972816559200001 0 0 14 0 \N 5539 \N 53 102 5539 214 6403 17.129999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 13 0 \N 5539 \N 53 102 5539 214 6404 25.038000106811523 -120 \N 0.028037245164599999 0.024972816559200001 0 0 19 0 \N 5539 \N 53 102 5539 214 6405 12.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5561 \N 53 102 5561 215 6406 6.0030002593994141 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5561 \N 53 102 5561 215 6407 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5561 \N 53 102 5561 215 6408 9.0050010681152344 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5561 \N 53 102 5561 215 6409 3.0050010681152344 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5561 \N 53 102 5561 215 6410 30.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5561 \N 53 102 5561 216 6411 85.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5561 \N 53 102 5561 216 6412 35.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5561 \N 53 102 5561 216 6413 80.011999130249023 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5561 \N 53 102 5561 216 6414 70.011999130249023 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5561 \N 53 102 5561 216 6415 65.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5561 \N 53 102 5561 216 6416 50.011999130249023 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5561 \N 53 102 5561 216 6417 60.011999130249023 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5561 \N 53 102 5561 216 6418 55.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5561 \N 53 102 5561 216 6419 45.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5561 \N 53 102 5561 216 6420 20.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5561 \N 53 102 5561 216 6421 10.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5561 \N 53 102 5561 216 6422 40.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5561 \N 53 102 5561 216 6423 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5561 \N 53 102 5561 216 6424 15.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5561 \N 53 102 5561 216 6425 75.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5561 \N 53 102 5561 216 6426 25.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5561 \N 53 102 5561 216 6427 5.0069999694824219 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5561 \N 53 102 5561 216 6428 95.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5561 \N 53 102 5561 216 6429 90.011999130249023 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5561 \N 53 102 5561 216 6430 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5561 \N 53 102 5561 217 6431 11.871999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5561 \N 53 102 5561 218 6432 17.142000198364258 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5561 \N 53 102 5561 218 6433 22.415000915527344 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5561 \N 53 102 5561 218 6434 14.506999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5561 \N 53 102 5561 218 6435 6.5970001220703125 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5561 \N 53 102 5561 218 6436 2.6450004577636719 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5561 \N 53 102 5561 218 6437 1.3199996948242188 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5561 \N 53 102 5561 218 6438 10.552000045776367 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5561 \N 53 102 5561 218 6439 21.095001220703125 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5561 \N 53 102 5561 218 6440 19.777000427246094 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5561 \N 53 102 5561 218 6441 23.732000350952148 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5561 \N 53 102 5561 218 6442 25.052000045776367 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5561 \N 53 102 5561 218 6443 15.825000762939453 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5561 \N 53 102 5561 218 6444 13.190000534057617 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5561 \N 53 102 5561 218 6445 5.2800006866455078 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5561 \N 53 102 5561 218 6446 3.9619998931884766 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5561 \N 53 102 5561 218 6447 9.2320003509521484 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5561 \N 53 102 5561 218 6448 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5561 \N 53 102 5561 218 6449 18.460000991821289 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5561 \N 53 102 5561 218 6450 7.9150009155273438 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5561 \N 53 102 5561 218 6451 12.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5583 \N 53 102 5583 219 6452 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5583 \N 53 102 5583 219 6453 9.0069999694824219 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5583 \N 53 102 5583 219 6454 3.0069999694824219 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5583 \N 53 102 5583 219 6455 6.0050010681152344 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5583 \N 53 102 5583 219 6456 90.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5583 \N 53 102 5583 220 6457 4.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5583 \N 53 102 5583 220 6458 50.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5583 \N 53 102 5583 220 6459 34.996999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5583 \N 53 102 5583 220 6460 24.996999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5583 \N 53 102 5583 220 6461 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5583 \N 53 102 5583 220 6462 95.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5583 \N 53 102 5583 220 6463 75 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5583 \N 53 102 5583 220 6464 60 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5583 \N 53 102 5583 220 6465 55 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5583 \N 53 102 5583 220 6466 70.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5583 \N 53 102 5583 220 6467 45 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5583 \N 53 102 5583 220 6468 9.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5583 \N 53 102 5583 220 6469 80 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5583 \N 53 102 5583 220 6470 85 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5583 \N 53 102 5583 220 6471 20 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5583 \N 53 102 5583 220 6472 29.996999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5583 \N 53 102 5583 220 6473 65 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5583 \N 53 102 5583 220 6474 40 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5583 \N 53 102 5583 220 6475 14.996999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5583 \N 53 102 5583 220 6476 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5583 \N 53 102 5583 221 6477 6.5929985046386719 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5583 \N 53 102 5583 222 6478 25.047998428344727 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5583 \N 53 102 5583 222 6479 14.502998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5583 \N 53 102 5583 222 6480 13.182998657226562 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5583 \N 53 102 5583 222 6481 10.547998428344727 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5583 \N 53 102 5583 222 6482 17.137998580932617 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5583 \N 53 102 5583 222 6483 7.9099998474121094 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5583 \N 53 102 5583 222 6484 5.2729988098144531 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5583 \N 53 102 5583 222 6485 23.727998733520508 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5583 \N 53 102 5583 222 6486 9.2279987335205078 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5583 \N 53 102 5583 222 6487 1.3199996948242188 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5583 \N 53 102 5583 222 6488 21.090000152587891 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5583 \N 53 102 5583 222 6489 11.864999771118164 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5583 \N 53 102 5583 222 6490 19.772998809814453 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5583 \N 53 102 5583 222 6491 2.6379985809326172 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5583 \N 53 102 5583 222 6492 3.9549999237060547 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5583 \N 53 102 5583 222 6493 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5583 \N 53 102 5583 222 6494 15.819999694824219 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5583 \N 53 102 5583 222 6495 18.454999923706055 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5583 \N 53 102 5583 222 6496 22.409999847412109 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5583 \N 53 102 5583 222 6497 6.0080013275146484 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5605 \N 53 102 5605 223 6498 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5605 \N 53 102 5605 223 6499 3.0100002288818359 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5605 \N 53 102 5605 223 6500 12.008001327514648 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5605 \N 53 102 5605 223 6501 9.0100002288818359 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5605 \N 53 102 5605 223 6502 4.9979991912841797 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5605 \N 53 102 5605 224 6503 20 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5605 \N 53 102 5605 224 6504 90.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5605 \N 53 102 5605 224 6505 75.002998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5605 \N 53 102 5605 224 6506 80 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5605 \N 53 102 5605 224 6507 60 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5605 \N 53 102 5605 224 6508 30 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5605 \N 53 102 5605 224 6509 34.99799919128418 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5605 \N 53 102 5605 224 6510 14.99799919128418 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5605 \N 53 102 5605 224 6511 40 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5605 \N 53 102 5605 224 6512 85.002998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5605 \N 53 102 5605 224 6513 65.002998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5605 \N 53 102 5605 224 6514 45.002998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5605 \N 53 102 5605 224 6515 95.002998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5605 \N 53 102 5605 224 6516 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5605 \N 53 102 5605 224 6517 70 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5605 \N 53 102 5605 224 6518 24.99799919128418 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5605 \N 53 102 5605 224 6519 55.002998352050781 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5605 \N 53 102 5605 224 6520 10 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5605 \N 53 102 5605 224 6521 50 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5605 \N 53 102 5605 224 6522 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5605 \N 53 102 5605 225 6523 22.405000686645508 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5605 \N 53 102 5605 226 6524 23.722000122070312 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5605 \N 53 102 5605 226 6525 1.3169994354248047 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5605 \N 53 102 5605 226 6526 21.086999893188477 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5605 \N 53 102 5605 226 6527 19.770000457763672 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5605 \N 53 102 5605 226 6528 15.815000534057617 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5605 \N 53 102 5605 226 6529 18.450000762939453 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5605 \N 53 102 5605 226 6530 3.9549999237060547 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5605 \N 53 102 5605 226 6531 25.040000915527344 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5605 \N 53 102 5605 226 6532 2.6370010375976562 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5605 \N 53 102 5605 226 6533 11.860000610351562 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5605 \N 53 102 5605 226 6534 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5605 \N 53 102 5605 226 6535 7.9069995880126953 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5605 \N 53 102 5605 226 6536 6.5900001525878906 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5605 \N 53 102 5605 226 6537 5.2719993591308594 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5605 \N 53 102 5605 226 6538 17.131999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5605 \N 53 102 5605 226 6539 14.496999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5605 \N 53 102 5605 226 6540 10.541999816894531 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5605 \N 53 102 5605 226 6541 13.177000045776367 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5605 \N 53 102 5605 226 6542 9.2250003814697266 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5605 \N 53 102 5605 226 6543 12.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5628 \N 53 102 5628 227 6544 3.0019989013671875 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5628 \N 53 102 5628 227 6545 9.0019989013671875 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5628 \N 53 102 5628 227 6546 6 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5628 \N 53 102 5628 227 6547 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5628 \N 53 102 5628 227 6548 5.0050010681152344 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5628 \N 53 102 5628 228 6549 15.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5628 \N 53 102 5628 228 6550 30.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5628 \N 53 102 5628 228 6551 90.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5628 \N 53 102 5628 228 6552 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5628 \N 53 102 5628 228 6553 75.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5628 \N 53 102 5628 228 6554 10.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5628 \N 53 102 5628 228 6555 95.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5628 \N 53 102 5628 228 6556 20.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5628 \N 53 102 5628 228 6557 25.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5628 \N 53 102 5628 228 6558 85.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5628 \N 53 102 5628 228 6559 55.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5628 \N 53 102 5628 228 6560 50.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5628 \N 53 102 5628 228 6561 40.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5628 \N 53 102 5628 228 6562 45.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5628 \N 53 102 5628 228 6563 70.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5628 \N 53 102 5628 228 6564 65.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5628 \N 53 102 5628 228 6565 80.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5628 \N 53 102 5628 228 6566 60.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5628 \N 53 102 5628 228 6567 35.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5628 \N 53 102 5628 228 6568 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5628 \N 53 102 5628 229 6569 15.829999923706055 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5628 \N 53 102 5628 230 6570 13.192998886108398 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5628 \N 53 102 5628 230 6571 23.73499870300293 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5628 \N 53 102 5628 230 6572 6.6029987335205078 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5628 \N 53 102 5628 230 6573 17.147998809814453 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5628 \N 53 102 5628 230 6574 5.2829990386962891 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5628 \N 53 102 5628 230 6575 19.782999038696289 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5628 \N 53 102 5628 230 6576 1.3249988555908203 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5628 \N 53 102 5628 230 6577 11.875 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5628 \N 53 102 5628 230 6578 18.464998245239258 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5628 \N 53 102 5628 230 6579 25.052999496459961 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5628 \N 53 102 5628 230 6580 9.2379989624023438 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5628 \N 53 102 5628 230 6581 2.6429996490478516 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5628 \N 53 102 5628 230 6582 3.9629993438720703 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5628 \N 53 102 5628 230 6583 21.099998474121094 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5628 \N 53 102 5628 230 6584 7.9200000762939453 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5628 \N 53 102 5628 230 6585 14.512998580932617 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5628 \N 53 102 5628 230 6586 10.557998657226562 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5628 \N 53 102 5628 230 6587 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5628 \N 53 102 5628 230 6588 22.417999267578125 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5628 \N 53 102 5628 230 6589 3.0019989013671875 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5651 \N 53 102 5651 231 6590 6 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5651 \N 53 102 5651 231 6591 9.0019989013671875 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5651 \N 53 102 5651 231 6592 12 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5651 \N 53 102 5651 231 6593 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5651 \N 53 102 5651 231 6594 30 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5651 \N 53 102 5651 232 6595 35.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5651 \N 53 102 5651 232 6596 80.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5651 \N 53 102 5651 232 6597 15.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5651 \N 53 102 5651 232 6598 85.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5651 \N 53 102 5651 232 6599 20 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5651 \N 53 102 5651 232 6600 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5651 \N 53 102 5651 232 6601 75.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5651 \N 53 102 5651 232 6602 4.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5651 \N 53 102 5651 232 6603 45 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5651 \N 53 102 5651 232 6604 25.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5651 \N 53 102 5651 232 6605 10 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5651 \N 53 102 5651 232 6606 40.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5651 \N 53 102 5651 232 6607 70.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5651 \N 53 102 5651 232 6608 60.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5651 \N 53 102 5651 232 6609 90.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5651 \N 53 102 5651 232 6610 55 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5651 \N 53 102 5651 232 6611 95.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5651 \N 53 102 5651 232 6612 50.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5651 \N 53 102 5651 232 6613 65.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5651 \N 53 102 5651 232 6614 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5651 \N 53 102 5651 233 6615 11.867000579833984 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5651 \N 53 102 5651 234 6616 3.957000732421875 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5651 \N 53 102 5651 234 6617 17.139999389648438 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5651 \N 53 102 5651 234 6618 18.457000732421875 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5651 \N 53 102 5651 234 6619 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5651 \N 53 102 5651 234 6620 25.045000076293945 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5651 \N 53 102 5651 234 6621 1.3199996948242188 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5651 \N 53 102 5651 234 6622 22.409999847412109 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5651 \N 53 102 5651 234 6623 9.2299995422363281 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5651 \N 53 102 5651 234 6624 19.774999618530273 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5651 \N 53 102 5651 234 6625 14.501998901367188 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5651 \N 53 102 5651 234 6626 15.822000503540039 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5651 \N 53 102 5651 234 6627 10.546998977661133 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5651 \N 53 102 5651 234 6628 5.2749996185302734 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5651 \N 53 102 5651 234 6629 23.726999282836914 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5651 \N 53 102 5651 234 6630 7.9120006561279297 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5651 \N 53 102 5651 234 6631 13.184999465942383 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5651 \N 53 102 5651 234 6632 6.5949993133544922 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5651 \N 53 102 5651 234 6633 2.6399993896484375 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5651 \N 53 102 5651 234 6634 21.091999053955078 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5651 \N 53 102 5651 234 6635 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5676 \N 53 102 5676 235 6636 9 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5676 \N 53 102 5676 235 6637 5.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5676 \N 53 102 5676 235 6638 2.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5676 \N 53 102 5676 235 6639 11.995000839233398 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5676 \N 53 102 5676 235 6640 10.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5676 \N 53 102 5676 236 6641 20.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5676 \N 53 102 5676 236 6642 60.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5676 \N 53 102 5676 236 6643 55.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5676 \N 53 102 5676 236 6644 50.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5676 \N 53 102 5676 236 6645 70.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5676 \N 53 102 5676 236 6646 95.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5676 \N 53 102 5676 236 6647 25.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5676 \N 53 102 5676 236 6648 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5676 \N 53 102 5676 236 6649 80.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5676 \N 53 102 5676 236 6650 45.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5676 \N 53 102 5676 236 6651 85.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5676 \N 53 102 5676 236 6652 75.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5676 \N 53 102 5676 236 6653 40.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5676 \N 53 102 5676 236 6654 5.0020008087158203 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5676 \N 53 102 5676 236 6655 65.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5676 \N 53 102 5676 236 6656 30.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5676 \N 53 102 5676 236 6657 35.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5676 \N 53 102 5676 236 6658 90.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5676 \N 53 102 5676 236 6659 15.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5676 \N 53 102 5676 236 6660 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5676 \N 53 102 5676 237 6661 9.2250003814697266 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5676 \N 53 102 5676 238 6662 3.9530010223388672 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5676 \N 53 102 5676 238 6663 17.132999420166016 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5676 \N 53 102 5676 238 6664 22.405000686645508 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5676 \N 53 102 5676 238 6665 1.3180007934570312 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5676 \N 53 102 5676 238 6666 25.040000915527344 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5676 \N 53 102 5676 238 6667 19.770000457763672 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5676 \N 53 102 5676 238 6668 6.5900001525878906 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5676 \N 53 102 5676 238 6669 23.722999572753906 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5676 \N 53 102 5676 238 6670 18.453001022338867 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5676 \N 53 102 5676 238 6671 13.177999496459961 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5676 \N 53 102 5676 238 6672 14.49799919128418 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5676 \N 53 102 5676 238 6673 11.860000610351562 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5676 \N 53 102 5676 238 6674 5.2700004577636719 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5676 \N 53 102 5676 238 6675 2.6350002288818359 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5676 \N 53 102 5676 238 6676 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5676 \N 53 102 5676 238 6677 15.815000534057617 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5676 \N 53 102 5676 238 6678 21.08799934387207 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5676 \N 53 102 5676 238 6679 10.542999267578125 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5676 \N 53 102 5676 238 6680 7.9080009460449219 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5676 \N 53 102 5676 238 6681 3.0049991607666016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5701 \N 53 102 5701 239 6682 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5701 \N 53 102 5701 239 6683 9.0049991607666016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5701 \N 53 102 5701 239 6684 6.0079994201660156 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5701 \N 53 102 5701 239 6685 12.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5701 \N 53 102 5701 239 6686 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5701 \N 53 102 5701 240 6687 10.001998901367188 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5701 \N 53 102 5701 240 6688 85.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 17 0 \N 5701 \N 53 102 5701 240 6689 95.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 19 0 \N 5701 \N 53 102 5701 240 6690 30.006999969482422 -120 \N 0.028037245164599999 0.024972816559200001 0 0 6 0 \N 5701 \N 53 102 5701 240 6691 5.0049991607666016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5701 \N 53 102 5701 240 6692 65.006999969482422 -120 \N 0.028037245164599999 0.024972816559200001 0 0 13 0 \N 5701 \N 53 102 5701 240 6693 55.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 11 0 \N 5701 \N 53 102 5701 240 6694 25.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 5 0 \N 5701 \N 53 102 5701 240 6695 35.001998901367188 -120 \N 0.028037245164599999 0.024972816559200001 0 0 7 0 \N 5701 \N 53 102 5701 240 6696 80.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 16 0 \N 5701 \N 53 102 5701 240 6697 70.006999969482422 -120 \N 0.028037245164599999 0.024972816559200001 0 0 14 0 \N 5701 \N 53 102 5701 240 6698 75.010000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 15 0 \N 5701 \N 53 102 5701 240 6699 60.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 12 0 \N 5701 \N 53 102 5701 240 6700 15.001998901367188 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5701 \N 53 102 5701 240 6701 50.006999969482422 -120 \N 0.028037245164599999 0.024972816559200001 0 0 10 0 \N 5701 \N 53 102 5701 240 6702 20.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5701 \N 53 102 5701 240 6703 90.007999420166016 -120 \N 0.028037245164599999 0.024972816559200001 0 0 18 0 \N 5701 \N 53 102 5701 240 6704 45.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 9 0 \N 5701 \N 53 102 5701 240 6705 40.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 8 0 \N 5701 \N 53 102 5701 240 6706 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5701 \N 53 102 5701 241 6707 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5701 \N 53 102 5701 242 6708 11.864999771118164 -120 \N 0.028037245164599999 0.024972816559200001 0 0 9 0 \N 5701 \N 53 102 5701 242 6709 17.135000228881836 -120 \N 0.028037245164599999 0.024972816559200001 0 0 13 0 \N 5701 \N 53 102 5701 242 6710 22.408000946044922 -120 \N 0.028037245164599999 0.024972816559200001 0 0 17 0 \N 5701 \N 53 102 5701 242 6711 7.9099998474121094 -120 \N 0.028037245164599999 0.024972816559200001 0 0 6 0 \N 5701 \N 53 102 5701 242 6712 21.090000152587891 -120 \N 0.028037245164599999 0.024972816559200001 0 0 16 0 \N 5701 \N 53 102 5701 242 6713 5.2730007171630859 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5701 \N 53 102 5701 242 6714 3.9530010223388672 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5701 \N 53 102 5701 242 6715 19.773000717163086 -120 \N 0.028037245164599999 0.024972816559200001 0 0 15 0 \N 5701 \N 53 102 5701 242 6716 18.453001022338867 -120 \N 0.028037245164599999 0.024972816559200001 0 0 14 0 \N 5701 \N 53 102 5701 242 6717 25.043001174926758 -120 \N 0.028037245164599999 0.024972816559200001 0 0 19 0 \N 5701 \N 53 102 5701 242 6718 2.6350002288818359 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5701 \N 53 102 5701 242 6719 9.2280006408691406 -120 \N 0.028037245164599999 0.024972816559200001 0 0 7 0 \N 5701 \N 53 102 5701 242 6720 13.183000564575195 -120 \N 0.028037245164599999 0.024972816559200001 0 0 10 0 \N 5701 \N 53 102 5701 242 6721 10.548000335693359 -120 \N 0.028037245164599999 0.024972816559200001 0 0 8 0 \N 5701 \N 53 102 5701 242 6722 1.3180007934570312 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5701 \N 53 102 5701 242 6723 14.5 -120 \N 0.028037245164599999 0.024972816559200001 0 0 11 0 \N 5701 \N 53 102 5701 242 6724 23.725000381469727 -120 \N 0.028037245164599999 0.024972816559200001 0 0 18 0 \N 5701 \N 53 102 5701 242 6725 15.818000793457031 -120 \N 0.028037245164599999 0.024972816559200001 0 0 12 0 \N 5701 \N 53 102 5701 242 6726 6.5930004119873047 -120 \N 0.028037245164599999 0.024972816559200001 0 0 5 0 \N 5701 \N 53 102 5701 242 6727 9.0050010681152344 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5723 \N 53 102 5723 243 6728 6.0050010681152344 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5723 \N 53 102 5723 243 6729 12.008001327514648 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5723 \N 53 102 5723 243 6730 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5723 \N 53 102 5723 243 6731 3.0050010681152344 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5723 \N 53 102 5723 243 6732 45.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 9 0 \N 5723 \N 53 102 5723 244 6733 25.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 5 0 \N 5723 \N 53 102 5723 244 6734 15 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5723 \N 53 102 5723 244 6735 65.006999969482422 -120 \N 0.028037245164599999 0.024972816559200001 0 0 13 0 \N 5723 \N 53 102 5723 244 6736 55.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 11 0 \N 5723 \N 53 102 5723 244 6737 10 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5723 \N 53 102 5723 244 6738 35.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 7 0 \N 5723 \N 53 102 5723 244 6739 30.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 6 0 \N 5723 \N 53 102 5723 244 6740 75.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 15 0 \N 5723 \N 53 102 5723 244 6741 60.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 12 0 \N 5723 \N 53 102 5723 244 6742 40.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 8 0 \N 5723 \N 53 102 5723 244 6743 70.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 14 0 \N 5723 \N 53 102 5723 244 6744 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5723 \N 53 102 5723 244 6745 90.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 18 0 \N 5723 \N 53 102 5723 244 6746 80.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 16 0 \N 5723 \N 53 102 5723 244 6747 85.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 17 0 \N 5723 \N 53 102 5723 244 6748 50.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 10 0 \N 5723 \N 53 102 5723 244 6749 5 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5723 \N 53 102 5723 244 6750 95.004999160766602 -120 \N 0.028037245164599999 0.024972816559200001 0 0 19 0 \N 5723 \N 53 102 5723 244 6751 20 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5723 \N 53 102 5723 244 6752 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5723 \N 53 102 5723 245 6753 23.722000122070312 -120 \N 0.028037245164599999 0.024972816559200001 0 0 18 0 \N 5723 \N 53 102 5723 246 6754 19.769998550415039 -120 \N 0.028037245164599999 0.024972816559200001 0 0 15 0 \N 5723 \N 53 102 5723 246 6755 3.9519996643066406 -120 \N 0.028037245164599999 0.024972816559200001 0 0 3 0 \N 5723 \N 53 102 5723 246 6756 2.6349983215332031 -120 \N 0.028037245164599999 0.024972816559200001 0 0 2 0 \N 5723 \N 53 102 5723 246 6757 10.545000076293945 -120 \N 0.028037245164599999 0.024972816559200001 0 0 8 0 \N 5723 \N 53 102 5723 246 6758 0 -120 \N 0.028037245164599999 0.024972816559200001 0 0 0 0 \N 5723 \N 53 102 5723 246 6759 9.2249984741210938 -120 \N 0.028037245164599999 0.024972816559200001 0 0 7 0 \N 5723 \N 53 102 5723 246 6760 7.9069995880126953 -120 \N 0.028037245164599999 0.024972816559200001 0 0 6 0 \N 5723 \N 53 102 5723 246 6761 14.496999740600586 -120 \N 0.028037245164599999 0.024972816559200001 0 0 11 0 \N 5723 \N 53 102 5723 246 6762 1.3169994354248047 -120 \N 0.028037245164599999 0.024972816559200001 0 0 1 0 \N 5723 \N 53 102 5723 246 6763 6.5899982452392578 -120 \N 0.028037245164599999 0.024972816559200001 0 0 5 0 \N 5723 \N 53 102 5723 246 6764 21.086999893188477 -120 \N 0.028037245164599999 0.024972816559200001 0 0 16 0 \N 5723 \N 53 102 5723 246 6765 11.86199951171875 -120 \N 0.028037245164599999 0.024972816559200001 0 0 9 0 \N 5723 \N 53 102 5723 246 6766 15.814998626708984 -120 \N 0.028037245164599999 0.024972816559200001 0 0 12 0 \N 5723 \N 53 102 5723 246 6767 25.041999816894531 -120 \N 0.028037245164599999 0.024972816559200001 0 0 19 0 \N 5723 \N 53 102 5723 246 6768 13.179998397827148 -120 \N 0.028037245164599999 0.024972816559200001 0 0 10 0 \N 5723 \N 53 102 5723 246 6769 22.404998779296875 -120 \N 0.028037245164599999 0.024972816559200001 0 0 17 0 \N 5723 \N 53 102 5723 246 6770 5.2699985504150391 -120 \N 0.028037245164599999 0.024972816559200001 0 0 4 0 \N 5723 \N 53 102 5723 246 6771 17.131999969482422 -120 \N 0.028037245164599999 0.024972816559200001 0 0 13 0 \N 5723 \N 53 102 5723 246 6772 18.44999885559082 -120 \N 0.028037245164599999 0.024972816559200001 0 0 14 0 \N 5723 \N 53 102 5723 246 6773 12.005001068115234 -120 \N 0.028037245164599999 0.024862960597200001 0 0 4 0 \N 5748 \N 53 102 5748 247 6774 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5748 \N 53 102 5748 247 6775 6 -120 \N 0.028037245164599999 0.024862960597200001 0 0 2 0 \N 5748 \N 53 102 5748 247 6776 9.0030002593994141 -120 \N 0.028037245164599999 0.024862960597200001 0 0 3 0 \N 5748 \N 53 102 5748 247 6777 3.0030002593994141 -120 \N 0.028037245164599999 0.024862960597200001 0 0 1 0 \N 5748 \N 53 102 5748 247 6778 20.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 4 0 \N 5748 \N 53 102 5748 248 6779 5 -120 \N 0.028037245164599999 0.024862960597200001 0 0 1 0 \N 5748 \N 53 102 5748 248 6780 25 -120 \N 0.028037245164599999 0.024862960597200001 0 0 5 0 \N 5748 \N 53 102 5748 248 6781 34.99799919128418 -120 \N 0.028037245164599999 0.024862960597200001 0 0 7 0 \N 5748 \N 53 102 5748 248 6782 14.99799919128418 -120 \N 0.028037245164599999 0.024862960597200001 0 0 3 0 \N 5748 \N 53 102 5748 248 6783 65.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 13 0 \N 5748 \N 53 102 5748 248 6784 80.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 16 0 \N 5748 \N 53 102 5748 248 6785 85.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 17 0 \N 5748 \N 53 102 5748 248 6786 50 -120 \N 0.028037245164599999 0.024862960597200001 0 0 10 0 \N 5748 \N 53 102 5748 248 6787 10.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 2 0 \N 5748 \N 53 102 5748 248 6788 30 -120 \N 0.028037245164599999 0.024862960597200001 0 0 6 0 \N 5748 \N 53 102 5748 248 6789 95.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 19 0 \N 5748 \N 53 102 5748 248 6790 45.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 9 0 \N 5748 \N 53 102 5748 248 6791 70.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 14 0 \N 5748 \N 53 102 5748 248 6792 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5748 \N 53 102 5748 248 6793 40.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 8 0 \N 5748 \N 53 102 5748 248 6794 60.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 12 0 \N 5748 \N 53 102 5748 248 6795 90.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 18 0 \N 5748 \N 53 102 5748 248 6796 55.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 11 0 \N 5748 \N 53 102 5748 248 6797 75.003000259399414 -120 \N 0.028037245164599999 0.024862960597200001 0 0 15 0 \N 5748 \N 53 102 5748 248 6798 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5748 \N 53 102 5748 249 6799 25.045000076293945 -120 \N 0.028037245164599999 0.024862960597200001 0 0 19 0 \N 5748 \N 53 102 5748 250 6800 13.180000305175781 -120 \N 0.028037245164599999 0.024862960597200001 0 0 10 0 \N 5748 \N 53 102 5748 250 6801 11.863000869750977 -120 \N 0.028037245164599999 0.024862960597200001 0 0 9 0 \N 5748 \N 53 102 5748 250 6802 2.63800048828125 -120 \N 0.028037245164599999 0.024862960597200001 0 0 2 0 \N 5748 \N 53 102 5748 250 6803 1.3200016021728516 -120 \N 0.028037245164599999 0.024862960597200001 0 0 1 0 \N 5748 \N 53 102 5748 250 6804 17.13800048828125 -120 \N 0.028037245164599999 0.024862960597200001 0 0 13 0 \N 5748 \N 53 102 5748 250 6805 15.820001602172852 -120 \N 0.028037245164599999 0.024862960597200001 0 0 12 0 \N 5748 \N 53 102 5748 250 6806 10.545000076293945 -120 \N 0.028037245164599999 0.024862960597200001 0 0 8 0 \N 5748 \N 53 102 5748 250 6807 9.2280006408691406 -120 \N 0.028037245164599999 0.024862960597200001 0 0 7 0 \N 5748 \N 53 102 5748 250 6808 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5748 \N 53 102 5748 250 6809 18.454999923706055 -120 \N 0.028037245164599999 0.024862960597200001 0 0 14 0 \N 5748 \N 53 102 5748 250 6810 6.5930004119873047 -120 \N 0.028037245164599999 0.024862960597200001 0 0 5 0 \N 5748 \N 53 102 5748 250 6811 7.9100017547607422 -120 \N 0.028037245164599999 0.024862960597200001 0 0 6 0 \N 5748 \N 53 102 5748 250 6812 19.773000717163086 -120 \N 0.028037245164599999 0.024862960597200001 0 0 15 0 \N 5748 \N 53 102 5748 250 6813 22.410001754760742 -120 \N 0.028037245164599999 0.024862960597200001 0 0 17 0 \N 5748 \N 53 102 5748 250 6814 23.728000640869141 -120 \N 0.028037245164599999 0.024862960597200001 0 0 18 0 \N 5748 \N 53 102 5748 250 6815 14.5 -120 \N 0.028037245164599999 0.024862960597200001 0 0 11 0 \N 5748 \N 53 102 5748 250 6816 5.2730007171630859 -120 \N 0.028037245164599999 0.024862960597200001 0 0 4 0 \N 5748 \N 53 102 5748 250 6817 3.9549999237060547 -120 \N 0.028037245164599999 0.024862960597200001 0 0 3 0 \N 5748 \N 53 102 5748 250 6818 21.090000152587891 -120 \N 0.028037245164599999 0.024862960597200001 0 0 16 0 \N 5748 \N 53 102 5748 250 6819 9 -120 \N 0.028037245164599999 0.024862960597200001 0 0 3 0 \N 5770 \N 53 102 5770 251 6820 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5770 \N 53 102 5770 251 6821 6 -120 \N 0.028037245164599999 0.024862960597200001 0 0 2 0 \N 5770 \N 53 102 5770 251 6822 11.998001098632812 -120 \N 0.028037245164599999 0.024862960597200001 0 0 4 0 \N 5770 \N 53 102 5770 251 6823 2.9980010986328125 -120 \N 0.028037245164599999 0.024862960597200001 0 0 1 0 \N 5770 \N 53 102 5770 251 6824 45.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 9 0 \N 5770 \N 53 102 5770 252 6825 60.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 12 0 \N 5770 \N 53 102 5770 252 6826 20.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 4 0 \N 5770 \N 53 102 5770 252 6827 15.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 3 0 \N 5770 \N 53 102 5770 252 6828 95.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 19 0 \N 5770 \N 53 102 5770 252 6829 80.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 16 0 \N 5770 \N 53 102 5770 252 6830 65.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 13 0 \N 5770 \N 53 102 5770 252 6831 50.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 10 0 \N 5770 \N 53 102 5770 252 6832 90.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 18 0 \N 5770 \N 53 102 5770 252 6833 30.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 6 0 \N 5770 \N 53 102 5770 252 6834 5.0019989013671875 -120 \N 0.028037245164599999 0.024862960597200001 0 0 1 0 \N 5770 \N 53 102 5770 252 6835 25 -120 \N 0.028037245164599999 0.024862960597200001 0 0 5 0 \N 5770 \N 53 102 5770 252 6836 10 -120 \N 0.028037245164599999 0.024862960597200001 0 0 2 0 \N 5770 \N 53 102 5770 252 6837 35 -120 \N 0.028037245164599999 0.024862960597200001 0 0 7 0 \N 5770 \N 53 102 5770 252 6838 40.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 8 0 \N 5770 \N 53 102 5770 252 6839 70.001998901367188 -120 \N 0.028037245164599999 0.024862960597200001 0 0 14 0 \N 5770 \N 53 102 5770 252 6840 75.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 15 0 \N 5770 \N 53 102 5770 252 6841 85.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 17 0 \N 5770 \N 53 102 5770 252 6842 55.004999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 11 0 \N 5770 \N 53 102 5770 252 6843 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5770 \N 53 102 5770 252 6844 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5770 \N 53 102 5770 253 6845 5.279998779296875 -120 \N 0.028037245164599999 0.024862960597200001 0 0 4 0 \N 5770 \N 53 102 5770 254 6846 22.414999008178711 -120 \N 0.028037245164599999 0.024862960597200001 0 0 17 0 \N 5770 \N 53 102 5770 254 6847 1.3229999542236328 -120 \N 0.028037245164599999 0.024862960597200001 0 0 1 0 \N 5770 \N 53 102 5770 254 6848 13.187999725341797 -120 \N 0.028037245164599999 0.024862960597200001 0 0 10 0 \N 5770 \N 53 102 5770 254 6849 11.869998931884766 -120 \N 0.028037245164599999 0.024862960597200001 0 0 9 0 \N 5770 \N 53 102 5770 254 6850 19.777999877929688 -120 \N 0.028037245164599999 0.024862960597200001 0 0 15 0 \N 5770 \N 53 102 5770 254 6851 3.9629993438720703 -120 \N 0.028037245164599999 0.024862960597200001 0 0 3 0 \N 5770 \N 53 102 5770 254 6852 6.5979995727539062 -120 \N 0.028037245164599999 0.024862960597200001 0 0 5 0 \N 5770 \N 53 102 5770 254 6853 17.142999649047852 -120 \N 0.028037245164599999 0.024862960597200001 0 0 13 0 \N 5770 \N 53 102 5770 254 6854 7.9149990081787109 -120 \N 0.028037245164599999 0.024862960597200001 0 0 6 0 \N 5770 \N 53 102 5770 254 6855 25.052999496459961 -120 \N 0.028037245164599999 0.024862960597200001 0 0 19 0 \N 5770 \N 53 102 5770 254 6856 23.732999801635742 -120 \N 0.028037245164599999 0.024862960597200001 0 0 18 0 \N 5770 \N 53 102 5770 254 6857 14.504999160766602 -120 \N 0.028037245164599999 0.024862960597200001 0 0 11 0 \N 5770 \N 53 102 5770 254 6858 18.459999084472656 -120 \N 0.028037245164599999 0.024862960597200001 0 0 14 0 \N 5770 \N 53 102 5770 254 6859 15.82499885559082 -120 \N 0.028037245164599999 0.024862960597200001 0 0 12 0 \N 5770 \N 53 102 5770 254 6860 2.6449985504150391 -120 \N 0.028037245164599999 0.024862960597200001 0 0 2 0 \N 5770 \N 53 102 5770 254 6861 9.2329998016357422 -120 \N 0.028037245164599999 0.024862960597200001 0 0 7 0 \N 5770 \N 53 102 5770 254 6862 21.094999313354492 -120 \N 0.028037245164599999 0.024862960597200001 0 0 16 0 \N 5770 \N 53 102 5770 254 6863 0 -120 \N 0.028037245164599999 0.024862960597200001 0 0 0 0 \N 5770 \N 53 102 5770 254 6864 10.552999496459961 -120 \N 0.028037245164599999 0.024862960597200001 0 0 8 0 \N 5770 \N 53 102 5770 254 6865 6 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5792 \N 53 102 5792 255 6866 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5792 \N 53 102 5792 255 6867 3 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5792 \N 53 102 5792 255 6868 12 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5792 \N 53 102 5792 255 6869 9 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5792 \N 53 102 5792 255 6870 95.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5792 \N 53 102 5792 256 6871 50.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5792 \N 53 102 5792 256 6872 35.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5792 \N 53 102 5792 256 6873 90.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5792 \N 53 102 5792 256 6874 60.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5792 \N 53 102 5792 256 6875 55.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5792 \N 53 102 5792 256 6876 10.001998901367188 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5792 \N 53 102 5792 256 6877 80.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5792 \N 53 102 5792 256 6878 30.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5792 \N 53 102 5792 256 6879 75.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5792 \N 53 102 5792 256 6880 25.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5792 \N 53 102 5792 256 6881 20.001998901367188 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5792 \N 53 102 5792 256 6882 15.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5792 \N 53 102 5792 256 6883 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5792 \N 53 102 5792 256 6884 45.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5792 \N 53 102 5792 256 6885 85.010000228881836 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5792 \N 53 102 5792 256 6886 40.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5792 \N 53 102 5792 256 6887 65.004999160766602 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5792 \N 53 102 5792 256 6888 70.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5792 \N 53 102 5792 256 6889 5.0049991607666016 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5792 \N 53 102 5792 256 6890 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5792 \N 53 102 5792 257 6891 25.041999816894531 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5792 \N 53 102 5792 258 6892 22.404998779296875 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5792 \N 53 102 5792 258 6893 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5792 \N 53 102 5792 258 6894 9.2219982147216797 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5792 \N 53 102 5792 258 6895 3.9519996643066406 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5792 \N 53 102 5792 258 6896 10.541999816894531 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5792 \N 53 102 5792 258 6897 23.72199821472168 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5792 \N 53 102 5792 258 6898 18.451999664306641 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5792 \N 53 102 5792 258 6899 13.177000045776367 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5792 \N 53 102 5792 258 6900 17.131999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5792 \N 53 102 5792 258 6901 15.814998626708984 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5792 \N 53 102 5792 258 6902 5.2699985504150391 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5792 \N 53 102 5792 258 6903 21.086999893188477 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5792 \N 53 102 5792 258 6904 6.5869998931884766 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5792 \N 53 102 5792 258 6905 11.85999870300293 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5792 \N 53 102 5792 258 6906 19.769998550415039 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5792 \N 53 102 5792 258 6907 2.6349983215332031 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5792 \N 53 102 5792 258 6908 1.3169994354248047 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5792 \N 53 102 5792 258 6909 7.904998779296875 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5792 \N 53 102 5792 258 6910 14.494998931884766 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5792 \N 53 102 5792 258 6911 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5814 \N 53 102 5814 259 6912 9.0120010375976562 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5814 \N 53 102 5814 259 6913 3.0100002288818359 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5814 \N 53 102 5814 259 6914 12.012001037597656 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5814 \N 53 102 5814 259 6915 6.0120010375976562 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5814 \N 53 102 5814 259 6916 75.008001327514648 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5814 \N 53 102 5814 260 6917 15.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5814 \N 53 102 5814 260 6918 90.008001327514648 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5814 \N 53 102 5814 260 6919 20 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5814 \N 53 102 5814 260 6920 65.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5814 \N 53 102 5814 260 6921 25.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5814 \N 53 102 5814 260 6922 55.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5814 \N 53 102 5814 260 6923 85.008001327514648 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5814 \N 53 102 5814 260 6924 50.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5814 \N 53 102 5814 260 6925 45.008001327514648 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5814 \N 53 102 5814 260 6926 60.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5814 \N 53 102 5814 260 6927 35.003000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5814 \N 53 102 5814 260 6928 80.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5814 \N 53 102 5814 260 6929 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5814 \N 53 102 5814 260 6930 70.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5814 \N 53 102 5814 260 6931 40.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5814 \N 53 102 5814 260 6932 30.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5814 \N 53 102 5814 260 6933 10 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5814 \N 53 102 5814 260 6934 5.0030002593994141 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5814 \N 53 102 5814 260 6935 95.008001327514648 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5814 \N 53 102 5814 260 6936 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5814 \N 53 102 5814 261 6937 21.094999313354492 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5814 \N 53 102 5814 262 6938 14.503000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5814 \N 53 102 5814 262 6939 19.777999877929688 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5814 \N 53 102 5814 262 6940 1.3199996948242188 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5814 \N 53 102 5814 262 6941 11.868000030517578 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5814 \N 53 102 5814 262 6942 6.5949993133544922 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5814 \N 53 102 5814 262 6943 9.2299995422363281 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5814 \N 53 102 5814 262 6944 7.9130001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5814 \N 53 102 5814 262 6945 23.729999542236328 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5814 \N 53 102 5814 262 6946 22.413000106811523 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5814 \N 53 102 5814 262 6947 10.549999237060547 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5814 \N 53 102 5814 262 6948 25.049999237060547 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5814 \N 53 102 5814 262 6949 18.460000991821289 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5814 \N 53 102 5814 262 6950 17.139999389648438 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5814 \N 53 102 5814 262 6951 15.822999954223633 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5814 \N 53 102 5814 262 6952 5.2779998779296875 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5814 \N 53 102 5814 262 6953 3.9600009918212891 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5814 \N 53 102 5814 262 6954 2.63800048828125 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5814 \N 53 102 5814 262 6955 13.184999465942383 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5814 \N 53 102 5814 262 6956 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5814 \N 53 102 5814 262 6957 11.995000839233398 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5837 \N 53 102 5837 263 6958 2.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5837 \N 53 102 5837 263 6959 5.9950008392333984 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5837 \N 53 102 5837 263 6960 8.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5837 \N 53 102 5837 263 6961 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5837 \N 53 102 5837 263 6962 30.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5837 \N 53 102 5837 264 6963 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5837 \N 53 102 5837 264 6964 85.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5837 \N 53 102 5837 264 6965 65.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5837 \N 53 102 5837 264 6966 80.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5837 \N 53 102 5837 264 6967 5.0020008087158203 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5837 \N 53 102 5837 264 6968 45.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5837 \N 53 102 5837 264 6969 55.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5837 \N 53 102 5837 264 6970 90.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5837 \N 53 102 5837 264 6971 35.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5837 \N 53 102 5837 264 6972 20.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5837 \N 53 102 5837 264 6973 10.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5837 \N 53 102 5837 264 6974 50.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5837 \N 53 102 5837 264 6975 95.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5837 \N 53 102 5837 264 6976 40.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5837 \N 53 102 5837 264 6977 25.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5837 \N 53 102 5837 264 6978 60.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5837 \N 53 102 5837 264 6979 70.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5837 \N 53 102 5837 264 6980 75.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5837 \N 53 102 5837 264 6981 15.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5837 \N 53 102 5837 264 6982 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5837 \N 53 102 5837 265 6983 13.194999694824219 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5837 \N 53 102 5837 266 6984 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5837 \N 53 102 5837 266 6985 22.420000076293945 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5837 \N 53 102 5837 266 6986 14.512998580932617 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5837 \N 53 102 5837 266 6987 19.784999847412109 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5837 \N 53 102 5837 266 6988 17.147998809814453 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5837 \N 53 102 5837 266 6989 7.9229984283447266 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5837 \N 53 102 5837 266 6990 10.559999465942383 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5837 \N 53 102 5837 266 6991 9.2399997711181641 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5837 \N 53 102 5837 266 6992 6.6049995422363281 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5837 \N 53 102 5837 266 6993 18.467998504638672 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5837 \N 53 102 5837 266 6994 23.737998962402344 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5837 \N 53 102 5837 266 6995 15.829999923706055 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5837 \N 53 102 5837 266 6996 1.3330001831054688 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5837 \N 53 102 5837 266 6997 25.057998657226562 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5837 \N 53 102 5837 266 6998 11.878000259399414 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5837 \N 53 102 5837 266 6999 2.6499996185302734 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5837 \N 53 102 5837 266 7000 5.2880001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5837 \N 53 102 5837 266 7001 3.9699993133544922 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5837 \N 53 102 5837 266 7002 21.102998733520508 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5837 \N 53 102 5837 266 7003 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5864 \N 53 102 5864 267 7004 6.0050010681152344 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5864 \N 53 102 5864 267 7005 9.0020008087158203 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5864 \N 53 102 5864 267 7006 3.0020008087158203 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5864 \N 53 102 5864 267 7007 12.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5864 \N 53 102 5864 267 7008 40 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5864 \N 53 102 5864 268 7009 9.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5864 \N 53 102 5864 268 7010 45 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5864 \N 53 102 5864 268 7011 55 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5864 \N 53 102 5864 268 7012 25.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5864 \N 53 102 5864 268 7013 20.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5864 \N 53 102 5864 268 7014 15 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5864 \N 53 102 5864 268 7015 80.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5864 \N 53 102 5864 268 7016 90.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5864 \N 53 102 5864 268 7017 50 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5864 \N 53 102 5864 268 7018 60.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5864 \N 53 102 5864 268 7019 30.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5864 \N 53 102 5864 268 7020 65.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5864 \N 53 102 5864 268 7021 85.006999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5864 \N 53 102 5864 268 7022 70.00200080871582 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5864 \N 53 102 5864 268 7023 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5864 \N 53 102 5864 268 7024 95.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5864 \N 53 102 5864 268 7025 35.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5864 \N 53 102 5864 268 7026 4.9969997406005859 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5864 \N 53 102 5864 268 7027 75.005001068115234 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5864 \N 53 102 5864 268 7028 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5864 \N 53 102 5864 269 7029 2.6350002288818359 -120 \N 0.028037245164599999 0.0252594093456 0 0 2 0 \N 5864 \N 53 102 5864 270 7030 22.405000686645508 -120 \N 0.028037245164599999 0.0252594093456 0 0 17 0 \N 5864 \N 53 102 5864 270 7031 15.815000534057617 -120 \N 0.028037245164599999 0.0252594093456 0 0 12 0 \N 5864 \N 53 102 5864 270 7032 19.770000457763672 -120 \N 0.028037245164599999 0.0252594093456 0 0 15 0 \N 5864 \N 53 102 5864 270 7033 11.862001419067383 -120 \N 0.028037245164599999 0.0252594093456 0 0 9 0 \N 5864 \N 53 102 5864 270 7034 1.3170013427734375 -120 \N 0.028037245164599999 0.0252594093456 0 0 1 0 \N 5864 \N 53 102 5864 270 7035 7.9070014953613281 -120 \N 0.028037245164599999 0.0252594093456 0 0 6 0 \N 5864 \N 53 102 5864 270 7036 13.180000305175781 -120 \N 0.028037245164599999 0.0252594093456 0 0 10 0 \N 5864 \N 53 102 5864 270 7037 6.5900001525878906 -120 \N 0.028037245164599999 0.0252594093456 0 0 5 0 \N 5864 \N 53 102 5864 270 7038 21.086999893188477 -120 \N 0.028037245164599999 0.0252594093456 0 0 16 0 \N 5864 \N 53 102 5864 270 7039 25.041999816894531 -120 \N 0.028037245164599999 0.0252594093456 0 0 19 0 \N 5864 \N 53 102 5864 270 7040 0 -120 \N 0.028037245164599999 0.0252594093456 0 0 0 0 \N 5864 \N 53 102 5864 270 7041 17.131999969482422 -120 \N 0.028037245164599999 0.0252594093456 0 0 13 0 \N 5864 \N 53 102 5864 270 7042 23.722000122070312 -120 \N 0.028037245164599999 0.0252594093456 0 0 18 0 \N 5864 \N 53 102 5864 270 7043 10.545000076293945 -120 \N 0.028037245164599999 0.0252594093456 0 0 8 0 \N 5864 \N 53 102 5864 270 7044 5.2700004577636719 -120 \N 0.028037245164599999 0.0252594093456 0 0 4 0 \N 5864 \N 53 102 5864 270 7045 14.496999740600586 -120 \N 0.028037245164599999 0.0252594093456 0 0 11 0 \N 5864 \N 53 102 5864 270 7046 9.2250003814697266 -120 \N 0.028037245164599999 0.0252594093456 0 0 7 0 \N 5864 \N 53 102 5864 270 7047 18.450000762939453 -120 \N 0.028037245164599999 0.0252594093456 0 0 14 0 \N 5864 \N 53 102 5864 270 7048 3.9520015716552734 -120 \N 0.028037245164599999 0.0252594093456 0 0 3 0 \N 5864 \N 53 102 5864 270 \. -- -- Data for Name: planeinfoannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY planeinfoannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: planeslicingcontext; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY planeslicingcontext (constant, lowerlimit, planeprevious, planeselected, upperlimit, codomainmapcontext_id) FROM stdin; \. -- -- Data for Name: plate; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY plate (id, columnnamingconvention, columns, defaultsample, description, permissions, externalidentifier, name, rownamingconvention, rows, status, version, welloriginx, welloriginy, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; \. -- -- Data for Name: plateacquisition; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY plateacquisition (id, description, permissions, endtime, maximumfieldcount, name, starttime, version, creation_id, external_id, group_id, owner_id, update_id, plate) FROM stdin; \. -- -- Data for Name: plateacquisitionannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY plateacquisitionannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: plateannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY plateannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: project; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY project (id, description, permissions, name, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; 2 To compare Francis old/new system data -40 PICs Intensity Distribution \N 1045 \N 3 2 1045 3 ssssssssssssssss -40 aa \N 1466 \N 3 5 1468 4 4 stacks chosen as a base to set the best parameters values (and the default values) for PICsManager. -40 Base Data \N 1605 \N 3 2 1605 51 -120 C14-FRAP \N 5141 \N 53 102 6435 \. -- -- Data for Name: projectannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY projectannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 1 -40 \N 62 1470 \N 3 5 1470 3 53 -120 \N 327 6033 \N 53 102 6033 51 \. -- -- Data for Name: projectdatasetlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY projectdatasetlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; 4 -40 \N 4 1046 \N 3 2 1046 2 5 -40 \N 5 1047 \N 3 2 1047 2 6 -40 \N 6 1048 \N 3 2 1048 2 7 -40 \N 7 1467 \N 3 5 1467 3 8 -40 \N 8 1608 \N 3 2 1608 4 9 -40 \N 9 1902 \N 3 2 1902 4 51 -40 \N 51 2828 \N 3 2 2828 2 52 -40 \N 52 3133 \N 3 2 3133 2 53 -40 \N 53 3285 \N 3 2 3285 2 101 -120 \N 101 5143 \N 53 102 5143 51 102 -120 \N 102 5196 \N 53 102 5196 51 \. -- -- Data for Name: pulse; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY pulse (id, permissions, value, external_id) FROM stdin; 1 -52 CW \N 2 -52 Single \N 3 -52 QSwitched \N 4 -52 Repetitive \N 5 -52 ModeLocked \N 6 -52 Other \N 7 -52 Unknown \N \. -- -- Data for Name: quantumdef; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY quantumdef (id, bitresolution, cdend, cdstart, permissions, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; 45 255 255 0 -40 0 1059 \N 3 2 1059 46 255 255 0 -40 0 1059 \N 3 2 1059 47 255 255 0 -40 0 1059 \N 3 2 1059 48 255 255 0 -40 0 1059 \N 3 2 1059 49 255 255 0 -40 0 1059 \N 3 2 1059 50 255 255 0 -40 0 1059 \N 3 2 1059 51 255 255 0 -40 0 1123 \N 3 2 1123 52 255 255 0 -40 0 1123 \N 3 2 1123 53 255 255 0 -40 0 1123 \N 3 2 1123 54 255 255 0 -40 0 1123 \N 3 2 1123 55 255 255 0 -40 0 1123 \N 3 2 1123 56 255 255 0 -40 0 1123 \N 3 2 1123 57 255 255 0 -40 0 1145 \N 3 2 1145 58 255 255 0 -40 0 1145 \N 3 2 1145 59 255 255 0 -40 0 1145 \N 3 2 1145 60 255 255 0 -40 0 1149 \N 3 2 1149 61 255 255 0 -40 0 1149 \N 3 2 1149 62 255 255 0 -40 0 1149 \N 3 2 1149 63 255 255 0 -40 0 1149 \N 3 2 1149 64 255 255 0 -40 0 1149 \N 3 2 1149 65 255 255 0 -40 0 1149 \N 3 2 1149 66 255 255 0 -40 0 1149 \N 3 2 1149 67 255 255 0 -40 0 1149 \N 3 2 1149 68 255 255 0 -40 0 1282 \N 3 5 1282 69 255 255 0 -40 0 1283 \N 3 5 1283 70 255 255 0 -40 0 1284 \N 3 5 1284 71 255 255 0 -40 0 1285 \N 3 5 1285 72 255 255 0 -40 0 1286 \N 3 5 1286 73 255 255 0 -40 0 1293 \N 3 5 1293 74 255 255 0 -40 0 1300 \N 3 5 1300 75 255 255 0 -40 0 1304 \N 3 5 1304 76 255 255 0 -40 0 1302 \N 3 5 1302 77 255 255 0 -40 0 1301 \N 3 5 1301 78 255 255 0 -40 0 1303 \N 3 5 1303 79 255 255 0 -40 0 1311 \N 3 5 1311 80 255 255 0 -40 0 1318 \N 3 5 1318 81 255 255 0 -40 0 1320 \N 3 5 1320 82 255 255 0 -40 0 1321 \N 3 5 1321 83 255 255 0 -40 0 1322 \N 3 5 1322 84 255 255 0 -40 0 1319 \N 3 5 1319 85 255 255 0 -40 0 1329 \N 3 5 1329 86 255 255 0 -40 0 1334 \N 3 5 1334 88 255 255 0 -40 0 1336 \N 3 5 1336 87 255 255 0 -40 0 1335 \N 3 5 1335 89 255 255 0 -40 0 1338 \N 3 5 1338 90 255 255 0 -40 0 1344 \N 3 5 1344 91 255 255 0 -40 0 1618 \N 3 2 1618 92 255 255 0 -40 0 1618 \N 3 2 1618 93 255 255 0 -40 0 1618 \N 3 2 1618 94 255 255 0 -40 0 1618 \N 3 2 1618 99 255 255 0 -40 0 2065 \N 3 2 2065 100 255 255 0 -40 0 2083 \N 3 2 2083 101 255 255 0 -40 0 2101 \N 3 2 2101 102 255 255 0 -40 0 2252 \N 3 2 2252 151 255 255 0 -40 0 2841 \N 3 2 2841 152 255 255 0 -40 0 2857 \N 3 2 2857 153 255 255 0 -40 0 2873 \N 3 2 2873 154 255 255 0 -40 0 2889 \N 3 2 2889 155 255 255 0 -40 0 2905 \N 3 2 2905 156 255 255 0 -40 0 2921 \N 3 2 2921 157 255 255 0 -40 0 3291 \N 3 2 3291 158 255 255 0 -40 0 3314 \N 3 2 3314 159 255 255 0 -40 0 3335 \N 3 2 3335 160 255 255 0 -40 0 3352 \N 3 2 3352 162 255 255 0 -40 0 3465 \N 3 2 3465 163 255 255 0 -40 0 3492 \N 3 2 3492 164 255 255 0 -40 0 3674 \N 3 2 3674 165 255 255 0 -40 0 3690 \N 3 2 3690 166 255 255 0 -40 0 3706 \N 3 2 3706 167 255 255 0 -40 0 3722 \N 3 2 3722 168 255 255 0 -40 0 3738 \N 3 2 3738 169 255 255 0 -40 0 3754 \N 3 2 3754 170 255 255 0 -40 0 3770 \N 3 2 3770 171 255 255 0 -40 0 3786 \N 3 2 3786 172 255 255 0 -40 0 3809 \N 3 2 3809 173 255 255 0 -40 0 4116 \N 3 2 4116 174 255 255 0 -40 0 4132 \N 3 2 4132 201 255 255 0 -40 0 5078 \N 3 3 5078 202 255 255 0 -40 0 5077 \N 3 3 5077 203 255 255 0 -40 0 5076 \N 3 3 5076 204 255 255 0 -40 0 5075 \N 3 3 5075 205 255 255 0 -120 0 5155 \N 53 102 5155 206 255 255 0 -120 0 5155 \N 53 102 5155 207 255 255 0 -120 0 5155 \N 53 102 5155 208 255 255 0 -120 0 5155 \N 53 102 5155 209 255 255 0 -120 0 5177 \N 53 102 5177 210 255 255 0 -120 0 5177 \N 53 102 5177 211 255 255 0 -120 0 5177 \N 53 102 5177 212 255 255 0 -120 0 5177 \N 53 102 5177 213 255 255 0 -120 0 5200 \N 53 102 5200 214 255 255 0 -120 0 5200 \N 53 102 5200 215 255 255 0 -120 0 5200 \N 53 102 5200 216 255 255 0 -120 0 5200 \N 53 102 5200 217 255 255 0 -120 0 5223 \N 53 102 5223 218 255 255 0 -120 0 5223 \N 53 102 5223 219 255 255 0 -120 0 5223 \N 53 102 5223 220 255 255 0 -120 0 5223 \N 53 102 5223 221 255 255 0 -120 0 5245 \N 53 102 5245 222 255 255 0 -120 0 5245 \N 53 102 5245 223 255 255 0 -120 0 5245 \N 53 102 5245 224 255 255 0 -120 0 5245 \N 53 102 5245 225 255 255 0 -120 0 5267 \N 53 102 5267 226 255 255 0 -120 0 5267 \N 53 102 5267 227 255 255 0 -120 0 5267 \N 53 102 5267 228 255 255 0 -120 0 5267 \N 53 102 5267 229 255 255 0 -120 0 5289 \N 53 102 5289 230 255 255 0 -120 0 5289 \N 53 102 5289 231 255 255 0 -120 0 5289 \N 53 102 5289 232 255 255 0 -120 0 5289 \N 53 102 5289 233 255 255 0 -120 0 5311 \N 53 102 5311 234 255 255 0 -120 0 5311 \N 53 102 5311 235 255 255 0 -120 0 5311 \N 53 102 5311 236 255 255 0 -120 0 5311 \N 53 102 5311 237 255 255 0 -120 0 5362 \N 53 102 5362 238 255 255 0 -120 0 5367 \N 53 102 5367 239 255 255 0 -120 0 5369 \N 53 102 5369 240 255 255 0 -120 0 5375 \N 53 102 5375 241 255 255 0 -120 0 5403 \N 53 102 5403 242 255 255 0 -120 0 5403 \N 53 102 5403 243 255 255 0 -120 0 5403 \N 53 102 5403 244 255 255 0 -120 0 5403 \N 53 102 5403 245 255 255 0 -120 0 5427 \N 53 102 5427 246 255 255 0 -120 0 5427 \N 53 102 5427 247 255 255 0 -120 0 5427 \N 53 102 5427 248 255 255 0 -120 0 5427 \N 53 102 5427 249 255 255 0 -120 0 5453 \N 53 102 5453 250 255 255 0 -120 0 5453 \N 53 102 5453 251 255 255 0 -120 0 5453 \N 53 102 5453 252 255 255 0 -120 0 5453 \N 53 102 5453 253 255 255 0 -120 0 5475 \N 53 102 5475 254 255 255 0 -120 0 5475 \N 53 102 5475 255 255 255 0 -120 0 5475 \N 53 102 5475 256 255 255 0 -120 0 5475 \N 53 102 5475 257 255 255 0 -120 0 5497 \N 53 102 5497 258 255 255 0 -120 0 5497 \N 53 102 5497 259 255 255 0 -120 0 5497 \N 53 102 5497 260 255 255 0 -120 0 5497 \N 53 102 5497 261 255 255 0 -120 0 5519 \N 53 102 5519 262 255 255 0 -120 0 5519 \N 53 102 5519 263 255 255 0 -120 0 5519 \N 53 102 5519 264 255 255 0 -120 0 5519 \N 53 102 5519 265 255 255 0 -120 0 5543 \N 53 102 5543 266 255 255 0 -120 0 5543 \N 53 102 5543 267 255 255 0 -120 0 5543 \N 53 102 5543 268 255 255 0 -120 0 5543 \N 53 102 5543 269 255 255 0 -120 0 5565 \N 53 102 5565 270 255 255 0 -120 0 5565 \N 53 102 5565 271 255 255 0 -120 0 5565 \N 53 102 5565 272 255 255 0 -120 0 5565 \N 53 102 5565 273 255 255 0 -120 0 5587 \N 53 102 5587 274 255 255 0 -120 0 5587 \N 53 102 5587 275 255 255 0 -120 0 5587 \N 53 102 5587 276 255 255 0 -120 0 5587 \N 53 102 5587 277 255 255 0 -120 0 5609 \N 53 102 5609 278 255 255 0 -120 0 5609 \N 53 102 5609 279 255 255 0 -120 0 5609 \N 53 102 5609 280 255 255 0 -120 0 5609 \N 53 102 5609 281 255 255 0 -120 0 5633 \N 53 102 5633 282 255 255 0 -120 0 5633 \N 53 102 5633 283 255 255 0 -120 0 5633 \N 53 102 5633 284 255 255 0 -120 0 5633 \N 53 102 5633 285 255 255 0 -120 0 5658 \N 53 102 5658 286 255 255 0 -120 0 5658 \N 53 102 5658 287 255 255 0 -120 0 5658 \N 53 102 5658 288 255 255 0 -120 0 5658 \N 53 102 5658 289 255 255 0 -120 0 5683 \N 53 102 5683 290 255 255 0 -120 0 5683 \N 53 102 5683 291 255 255 0 -120 0 5683 \N 53 102 5683 292 255 255 0 -120 0 5683 \N 53 102 5683 293 255 255 0 -120 0 5705 \N 53 102 5705 294 255 255 0 -120 0 5705 \N 53 102 5705 295 255 255 0 -120 0 5705 \N 53 102 5705 296 255 255 0 -120 0 5705 \N 53 102 5705 297 255 255 0 -120 0 5730 \N 53 102 5730 298 255 255 0 -120 0 5730 \N 53 102 5730 299 255 255 0 -120 0 5730 \N 53 102 5730 300 255 255 0 -120 0 5730 \N 53 102 5730 301 255 255 0 -120 0 5752 \N 53 102 5752 302 255 255 0 -120 0 5752 \N 53 102 5752 303 255 255 0 -120 0 5752 \N 53 102 5752 304 255 255 0 -120 0 5752 \N 53 102 5752 305 255 255 0 -120 0 5774 \N 53 102 5774 306 255 255 0 -120 0 5774 \N 53 102 5774 307 255 255 0 -120 0 5774 \N 53 102 5774 308 255 255 0 -120 0 5774 \N 53 102 5774 309 255 255 0 -120 0 5796 \N 53 102 5796 310 255 255 0 -120 0 5796 \N 53 102 5796 311 255 255 0 -120 0 5796 \N 53 102 5796 312 255 255 0 -120 0 5796 \N 53 102 5796 313 255 255 0 -120 0 5818 \N 53 102 5818 314 255 255 0 -120 0 5818 \N 53 102 5818 315 255 255 0 -120 0 5818 \N 53 102 5818 316 255 255 0 -120 0 5818 \N 53 102 5818 317 255 255 0 -120 0 5844 \N 53 102 5844 318 255 255 0 -120 0 5844 \N 53 102 5844 319 255 255 0 -120 0 5844 \N 53 102 5844 320 255 255 0 -120 0 5844 \N 53 102 5844 321 255 255 0 -120 0 5871 \N 53 102 5871 322 255 255 0 -120 0 5871 \N 53 102 5871 323 255 255 0 -120 0 5871 \N 53 102 5871 324 255 255 0 -120 0 5871 \N 53 102 5871 \. -- -- Data for Name: reagent; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY reagent (id, description, permissions, name, reagentidentifier, version, creation_id, external_id, group_id, owner_id, update_id, screen) FROM stdin; \. -- -- Data for Name: reagentannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY reagentannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: renderingdef; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY renderingdef (id, compression, defaultt, defaultz, permissions, name, version, creation_id, external_id, group_id, owner_id, update_id, model, pixels, quantization) FROM stdin; 51 \N 0 24 -40 \N 1 1123 \N 3 2 1123 1 49 51 52 \N 0 10 -40 \N 1 1123 \N 3 2 1123 1 48 52 53 \N 0 23 -40 \N 1 1123 \N 3 2 1123 1 47 53 54 \N 0 23 -40 \N 1 1123 \N 3 2 1123 1 46 54 55 \N 0 21 -40 \N 1 1123 \N 3 2 1123 1 45 55 56 \N 0 18 -40 \N 1 1123 \N 3 2 1123 1 44 56 91 \N 0 19 -40 \N 1 1618 \N 3 2 1618 1 61 91 92 \N 0 16 -40 \N 1 1618 \N 3 2 1618 1 62 92 93 \N 0 18 -40 \N 1 1618 \N 3 2 1618 1 63 93 94 \N 0 21 -40 \N 1 1618 \N 3 2 1618 1 64 94 45 \N 0 20 -40 \N 1 1059 \N 3 2 1059 1 43 45 47 \N 0 20 -40 \N 1 1059 \N 3 2 1059 1 41 47 48 \N 0 18 -40 \N 1 1059 \N 3 2 1059 1 40 48 49 \N 0 16 -40 \N 1 1059 \N 3 2 1059 1 39 49 50 \N 0 16 -40 \N 1 1059 \N 3 2 1059 1 38 50 60 \N 0 22 -40 \N 1 1149 \N 3 2 1149 1 60 60 61 \N 0 17 -40 \N 1 1149 \N 3 2 1149 1 59 61 62 \N 0 19 -40 \N 1 1149 \N 3 2 1149 1 58 62 63 \N 0 16 -40 \N 1 1149 \N 3 2 1149 1 57 63 64 \N 0 17 -40 \N 1 1149 \N 3 2 1149 1 56 64 65 \N 0 16 -40 \N 1 1149 \N 3 2 1149 1 55 65 66 \N 0 17 -40 \N 1 1149 \N 3 2 1149 1 54 66 67 \N 0 19 -40 \N 1 1149 \N 3 2 1149 1 53 67 57 \N 0 18 -40 \N 2 1145 \N 3 2 1149 1 52 57 58 \N 0 18 -40 \N 2 1145 \N 3 2 1149 1 51 58 59 \N 0 19 -40 \N 2 1145 \N 3 2 1149 1 50 59 68 \N 0 20 -40 \N 1 1282 \N 3 5 1282 1 43 68 69 \N 0 16 -40 \N 1 1283 \N 3 5 1283 1 39 69 70 \N 0 20 -40 \N 1 1284 \N 3 5 1284 1 42 70 71 \N 0 20 -40 \N 1 1285 \N 3 5 1285 1 41 71 72 \N 0 18 -40 \N 1 1286 \N 3 5 1286 1 40 72 73 \N 0 16 -40 \N 1 1293 \N 3 5 1293 1 38 73 74 \N 0 23 -40 \N 1 1300 \N 3 5 1300 1 46 74 75 \N 0 23 -40 \N 1 1304 \N 3 5 1304 1 47 75 77 \N 0 18 -40 \N 1 1302 \N 3 5 1302 1 44 76 76 \N 0 24 -40 \N 1 1301 \N 3 5 1301 1 49 77 78 \N 0 21 -40 \N 1 1303 \N 3 5 1303 1 45 78 79 \N 0 10 -40 \N 1 1311 \N 3 5 1311 1 48 79 80 \N 0 19 -40 \N 1 1318 \N 3 5 1318 1 50 80 81 \N 0 16 -40 \N 1 1320 \N 3 5 1320 1 55 81 82 \N 0 18 -40 \N 1 1321 \N 3 5 1321 1 52 82 83 \N 0 18 -40 \N 1 1322 \N 3 5 1322 1 51 83 84 \N 0 19 -40 \N 1 1319 \N 3 5 1319 1 53 84 85 \N 0 17 -40 \N 1 1329 \N 3 5 1329 1 54 85 86 \N 0 17 -40 \N 1 1334 \N 3 5 1334 1 56 86 88 \N 0 19 -40 \N 1 1335 \N 3 5 1335 1 58 87 87 \N 0 16 -40 \N 1 1336 \N 3 5 1336 1 57 88 89 \N 0 22 -40 \N 1 1338 \N 3 5 1338 1 60 89 90 \N 0 17 -40 \N 1 1344 \N 3 5 1344 1 59 90 101 \N 0 16 -40 \N 2 2101 \N 3 2 2142 1 71 101 100 \N 0 18 -40 \N 2 2083 \N 3 2 2161 1 70 100 99 \N 0 19 -40 \N 2 2065 \N 3 2 2171 1 69 99 46 \N 0 39 -40 \N 2 1059 \N 3 2 2797 1 42 46 102 \N 0 19 -40 \N 3 2252 \N 3 2 2276 1 72 102 151 \N 0 20 -40 \N 2 2841 \N 3 2 2993 1 101 151 152 \N 0 20 -40 \N 3 2857 \N 3 2 2972 1 102 152 153 \N 0 20 -40 \N 2 2873 \N 3 2 3003 1 103 153 154 \N 0 18 -40 \N 2 2889 \N 3 2 3057 1 104 154 155 \N 0 16 -40 \N 2 2905 \N 3 2 3067 1 105 155 156 \N 0 16 -40 \N 2 2921 \N 3 2 3077 1 106 156 158 \N 0 21 -40 \N 2 3314 \N 3 2 3418 1 108 158 159 \N 0 23 -40 \N 2 3335 \N 3 2 3428 1 109 159 172 \N 0 22 -40 \N 3 3809 \N 3 2 4039 1 122 172 157 \N 0 18 -40 \N 3 3291 \N 3 2 3407 1 107 157 160 \N 0 23 -40 \N 2 3352 \N 3 2 3438 1 110 160 162 \N 0 24 -40 \N 3 3465 \N 3 2 3510 1 112 162 163 \N 0 0 -40 \N 2 3492 \N 3 2 3611 1 113 163 164 \N 0 18 -40 \N 2 3674 \N 3 2 3818 1 114 164 165 \N 0 19 -40 \N 2 3690 \N 3 2 3828 1 115 165 166 \N 0 17 -40 \N 2 3706 \N 3 2 3838 1 116 166 167 \N 0 16 -40 \N 2 3722 \N 3 2 3860 1 117 167 168 \N 0 17 -40 \N 2 3738 \N 3 2 3870 1 118 168 169 \N 0 16 -40 \N 2 3754 \N 3 2 4006 1 119 169 170 \N 0 19 -40 \N 2 3770 \N 3 2 4016 1 120 170 171 \N 0 28 -40 \N 2 3786 \N 3 2 4028 1 121 171 173 \N 0 19 -40 \N 2 4116 \N 3 2 4256 1 123 173 174 \N 0 18 -40 \N 2 4132 \N 3 2 4282 1 124 174 201 \N 0 18 -40 \N 1 5078 \N 3 3 5078 1 70 201 202 \N 0 19 -40 \N 1 5077 \N 3 3 5077 1 69 202 203 \N 0 16 -40 \N 1 5076 \N 3 3 5076 1 71 203 204 \N 0 19 -40 \N 1 5075 \N 3 3 5075 1 72 204 205 \N 0 0 -120 \N 1 5155 \N 53 102 5155 1 151 205 206 \N 0 0 -120 \N 1 5155 \N 53 102 5155 1 152 206 207 \N 0 0 -120 \N 1 5155 \N 53 102 5155 1 153 207 208 \N 0 0 -120 \N 1 5155 \N 53 102 5155 1 154 208 209 \N 0 0 -120 \N 1 5177 \N 53 102 5177 2 155 209 210 \N 0 0 -120 \N 1 5177 \N 53 102 5177 2 156 210 211 \N 0 0 -120 \N 1 5177 \N 53 102 5177 2 157 211 212 \N 0 0 -120 \N 1 5177 \N 53 102 5177 2 158 212 213 \N 0 0 -120 \N 1 5200 \N 53 102 5200 2 159 213 214 \N 0 0 -120 \N 1 5200 \N 53 102 5200 2 160 214 215 \N 0 0 -120 \N 1 5200 \N 53 102 5200 2 161 215 216 \N 0 0 -120 \N 1 5200 \N 53 102 5200 2 162 216 217 \N 0 0 -120 \N 1 5223 \N 53 102 5223 2 163 217 218 \N 0 0 -120 \N 1 5223 \N 53 102 5223 2 164 218 219 \N 0 0 -120 \N 1 5223 \N 53 102 5223 2 165 219 220 \N 0 0 -120 \N 1 5223 \N 53 102 5223 2 166 220 221 \N 0 0 -120 \N 1 5245 \N 53 102 5245 2 167 221 222 \N 0 0 -120 \N 1 5245 \N 53 102 5245 2 168 222 223 \N 0 0 -120 \N 1 5245 \N 53 102 5245 2 169 223 224 \N 0 0 -120 \N 1 5245 \N 53 102 5245 2 170 224 225 \N 0 0 -120 \N 1 5267 \N 53 102 5267 2 171 225 226 \N 0 0 -120 \N 1 5267 \N 53 102 5267 2 172 226 227 \N 0 0 -120 \N 1 5267 \N 53 102 5267 2 173 227 228 \N 0 0 -120 \N 1 5267 \N 53 102 5267 2 174 228 229 \N 0 0 -120 \N 1 5289 \N 53 102 5289 2 175 229 230 \N 0 0 -120 \N 1 5289 \N 53 102 5289 2 176 230 231 \N 0 0 -120 \N 1 5289 \N 53 102 5289 2 177 231 232 \N 0 0 -120 \N 1 5289 \N 53 102 5289 2 178 232 233 \N 0 0 -120 \N 1 5311 \N 53 102 5311 1 179 233 234 \N 0 0 -120 \N 1 5311 \N 53 102 5311 1 180 234 235 \N 0 0 -120 \N 1 5311 \N 53 102 5311 1 181 235 236 \N 0 0 -120 \N 1 5311 \N 53 102 5311 1 182 236 237 \N 0 0 -120 \N 2 5362 \N 53 102 5379 1 186 237 238 \N 0 0 -120 \N 2 5367 \N 53 102 5379 1 183 238 239 \N 0 0 -120 \N 2 5369 \N 53 102 5379 1 184 239 240 \N 0 0 -120 \N 2 5375 \N 53 102 5379 1 185 240 241 \N 0 0 -120 \N 1 5403 \N 53 102 5403 1 187 241 242 \N 0 0 -120 \N 1 5403 \N 53 102 5403 1 188 242 243 \N 0 0 -120 \N 1 5403 \N 53 102 5403 1 189 243 244 \N 0 0 -120 \N 1 5403 \N 53 102 5403 1 190 244 245 \N 0 0 -120 \N 1 5427 \N 53 102 5427 1 191 245 246 \N 0 0 -120 \N 1 5427 \N 53 102 5427 1 192 246 247 \N 0 0 -120 \N 1 5427 \N 53 102 5427 1 193 247 248 \N 0 0 -120 \N 1 5427 \N 53 102 5427 1 194 248 249 \N 0 0 -120 \N 1 5453 \N 53 102 5453 1 195 249 250 \N 0 0 -120 \N 1 5453 \N 53 102 5453 1 196 250 251 \N 0 0 -120 \N 1 5453 \N 53 102 5453 1 197 251 252 \N 0 0 -120 \N 1 5453 \N 53 102 5453 1 198 252 253 \N 0 0 -120 \N 1 5475 \N 53 102 5475 1 199 253 254 \N 0 0 -120 \N 1 5475 \N 53 102 5475 1 200 254 255 \N 0 0 -120 \N 1 5475 \N 53 102 5475 1 201 255 256 \N 0 0 -120 \N 1 5475 \N 53 102 5475 1 202 256 257 \N 0 0 -120 \N 1 5497 \N 53 102 5497 1 203 257 258 \N 0 0 -120 \N 1 5497 \N 53 102 5497 1 204 258 259 \N 0 0 -120 \N 1 5497 \N 53 102 5497 1 205 259 260 \N 0 0 -120 \N 1 5497 \N 53 102 5497 1 206 260 261 \N 0 0 -120 \N 1 5519 \N 53 102 5519 2 207 261 262 \N 0 0 -120 \N 1 5519 \N 53 102 5519 2 208 262 263 \N 0 0 -120 \N 1 5519 \N 53 102 5519 2 209 263 264 \N 0 0 -120 \N 1 5519 \N 53 102 5519 2 210 264 265 \N 0 0 -120 \N 1 5543 \N 53 102 5543 2 211 265 266 \N 0 0 -120 \N 1 5543 \N 53 102 5543 2 212 266 267 \N 0 0 -120 \N 1 5543 \N 53 102 5543 2 213 267 268 \N 0 0 -120 \N 1 5543 \N 53 102 5543 2 214 268 269 \N 0 0 -120 \N 1 5565 \N 53 102 5565 2 215 269 270 \N 0 0 -120 \N 1 5565 \N 53 102 5565 2 216 270 271 \N 0 0 -120 \N 1 5565 \N 53 102 5565 2 217 271 272 \N 0 0 -120 \N 1 5565 \N 53 102 5565 2 218 272 273 \N 0 0 -120 \N 1 5587 \N 53 102 5587 2 219 273 274 \N 0 0 -120 \N 1 5587 \N 53 102 5587 2 221 274 275 \N 0 0 -120 \N 1 5587 \N 53 102 5587 2 222 275 276 \N 0 0 -120 \N 1 5587 \N 53 102 5587 2 220 276 277 \N 0 0 -120 \N 2 5609 \N 53 102 5610 2 223 277 278 \N 0 0 -120 \N 2 5609 \N 53 102 5610 2 224 278 279 \N 0 0 -120 \N 2 5609 \N 53 102 5610 2 225 279 280 \N 0 0 -120 \N 2 5609 \N 53 102 5610 2 226 280 281 \N 0 0 -120 \N 1 5633 \N 53 102 5633 2 227 281 282 \N 0 0 -120 \N 1 5633 \N 53 102 5633 2 229 282 283 \N 0 0 -120 \N 1 5633 \N 53 102 5633 2 230 283 284 \N 0 0 -120 \N 1 5633 \N 53 102 5633 2 228 284 285 \N 0 0 -120 \N 1 5658 \N 53 102 5658 2 231 285 286 \N 0 0 -120 \N 1 5658 \N 53 102 5658 2 232 286 287 \N 0 0 -120 \N 1 5658 \N 53 102 5658 2 233 287 288 \N 0 0 -120 \N 1 5658 \N 53 102 5658 2 234 288 289 \N 0 0 -120 \N 1 5683 \N 53 102 5683 2 235 289 290 \N 0 0 -120 \N 1 5683 \N 53 102 5683 2 236 290 291 \N 0 0 -120 \N 1 5683 \N 53 102 5683 2 237 291 292 \N 0 0 -120 \N 1 5683 \N 53 102 5683 2 238 292 293 \N 0 0 -120 \N 1 5705 \N 53 102 5705 2 239 293 294 \N 0 0 -120 \N 1 5705 \N 53 102 5705 2 240 294 295 \N 0 0 -120 \N 1 5705 \N 53 102 5705 2 241 295 296 \N 0 0 -120 \N 1 5705 \N 53 102 5705 2 242 296 297 \N 0 0 -120 \N 1 5730 \N 53 102 5730 2 243 297 298 \N 0 0 -120 \N 1 5730 \N 53 102 5730 2 244 298 299 \N 0 0 -120 \N 1 5730 \N 53 102 5730 2 245 299 300 \N 0 0 -120 \N 1 5730 \N 53 102 5730 2 246 300 301 \N 0 0 -120 \N 1 5752 \N 53 102 5752 2 247 301 302 \N 0 0 -120 \N 1 5752 \N 53 102 5752 2 248 302 303 \N 0 0 -120 \N 1 5752 \N 53 102 5752 2 249 303 304 \N 0 0 -120 \N 1 5752 \N 53 102 5752 2 250 304 305 \N 0 0 -120 \N 1 5774 \N 53 102 5774 2 251 305 306 \N 0 0 -120 \N 1 5774 \N 53 102 5774 2 252 306 307 \N 0 0 -120 \N 1 5774 \N 53 102 5774 2 253 307 308 \N 0 0 -120 \N 1 5774 \N 53 102 5774 2 254 308 309 \N 0 0 -120 \N 1 5796 \N 53 102 5796 2 255 309 310 \N 0 0 -120 \N 1 5796 \N 53 102 5796 2 256 310 311 \N 0 0 -120 \N 1 5796 \N 53 102 5796 2 257 311 312 \N 0 0 -120 \N 1 5796 \N 53 102 5796 2 258 312 313 \N 0 0 -120 \N 1 5818 \N 53 102 5818 2 259 313 314 \N 0 0 -120 \N 1 5818 \N 53 102 5818 2 260 314 315 \N 0 0 -120 \N 1 5818 \N 53 102 5818 2 261 315 316 \N 0 0 -120 \N 1 5818 \N 53 102 5818 2 262 316 317 \N 0 0 -120 \N 1 5844 \N 53 102 5844 2 263 317 318 \N 0 0 -120 \N 1 5844 \N 53 102 5844 2 265 318 319 \N 0 0 -120 \N 1 5844 \N 53 102 5844 2 266 319 320 \N 0 0 -120 \N 1 5844 \N 53 102 5844 2 264 320 321 \N 0 0 -120 \N 1 5871 \N 53 102 5871 2 267 321 322 \N 0 0 -120 \N 1 5871 \N 53 102 5871 2 269 322 323 \N 0 0 -120 \N 1 5871 \N 53 102 5871 2 270 323 324 \N 0 0 -120 \N 1 5871 \N 53 102 5871 2 268 324 \. -- -- Data for Name: renderingmodel; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY renderingmodel (id, permissions, value, external_id) FROM stdin; 1 -52 rgb \N 2 -52 greyscale \N \. -- -- Data for Name: reverseintensitycontext; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY reverseintensitycontext (reverse, codomainmapcontext_id) FROM stdin; \. -- -- Data for Name: roi; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY roi (id, description, permissions, keywords, namespaces, version, creation_id, external_id, group_id, owner_id, update_id, image, source) FROM stdin; 1 \N -120 {} {} \N 5151 \N 53 102 5151 152 \N 2 \N -120 {} {} \N 5173 \N 53 102 5173 156 \N 3 \N -120 {} {} \N 5195 \N 53 102 5195 160 \N 4 \N -120 {} {} \N 5218 \N 53 102 5218 164 \N 5 \N -120 {} {} \N 5241 \N 53 102 5241 168 \N 6 \N -120 {} {} \N 5263 \N 53 102 5263 172 \N 7 \N -120 {} {} \N 5285 \N 53 102 5285 176 \N 8 \N -120 {} {} \N 5307 \N 53 102 5307 180 \N 9 \N -120 {} {} \N 5329 \N 53 102 5329 184 \N 10 \N -120 {} {} \N 5397 \N 53 102 5397 188 \N 11 \N -120 {} {} \N 5421 \N 53 102 5421 192 \N 12 \N -120 {} {} \N 5446 \N 53 102 5446 196 \N 13 \N -120 {} {} \N 5471 \N 53 102 5471 200 \N 14 \N -120 {} {} \N 5493 \N 53 102 5493 204 \N 15 \N -120 {} {} \N 5515 \N 53 102 5515 208 \N 16 \N -120 {} {} \N 5539 \N 53 102 5539 212 \N 17 \N -120 {} {} \N 5561 \N 53 102 5561 216 \N 18 \N -120 {} {} \N 5583 \N 53 102 5583 220 \N 19 \N -120 {} {} \N 5605 \N 53 102 5605 224 \N 20 \N -120 {} {} \N 5628 \N 53 102 5628 228 \N 21 \N -120 {} {} \N 5651 \N 53 102 5651 232 \N 22 \N -120 {} {} \N 5676 \N 53 102 5676 236 \N 23 \N -120 {} {} \N 5701 \N 53 102 5701 240 \N 24 \N -120 {} {} \N 5723 \N 53 102 5723 244 \N 25 \N -120 {} {} \N 5748 \N 53 102 5748 248 \N 26 \N -120 {} {} \N 5770 \N 53 102 5770 252 \N 27 \N -120 {} {} \N 5792 \N 53 102 5792 256 \N 28 \N -120 {} {} \N 5814 \N 53 102 5814 260 \N 29 \N -120 {} {} \N 5837 \N 53 102 5837 264 \N 30 \N -120 {} {} \N 5864 \N 53 102 5864 268 \N \. -- -- Data for Name: roiannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY roiannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: screen; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY screen (id, description, permissions, name, protocoldescription, protocolidentifier, reagentsetdescription, reagentsetidentifier, type, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; \. -- -- Data for Name: screenannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY screenannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: screenplatelink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY screenplatelink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: scriptjob; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY scriptjob (description, job_id) FROM stdin; \. -- -- Data for Name: session; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY session (id, closed, defaulteventtype, permissions, message, started, timetoidle, timetolive, useragent, uuid, version, external_id, node, owner) FROM stdin; 0 2012-08-01 15:36:31.766616 BOOTSTRAP -52 \N 2012-08-01 15:36:31.766616 0 0 \N 0 \N \N 0 0 1 2012-08-01 15:36:31.767709 PREVIOUSITEMS -52 \N 2012-08-01 15:36:31.767709 0 0 \N 1111 \N \N 0 0 2 \N Sessions -35 \N 2012-08-01 15:37:02.863 0 9223372036854775807 \N 7842eb5e-6203-41e0-9a62-477d6a0d23b0 \N \N 0 0 3 2012-08-01 15:37:10.654426 User -120 Initial message. 2012-08-01 15:37:10.385 600000 0 Python service 629f0f23-5cac-49b5-8e82-842697912351 0 \N 1 0 53 \N Sessions -35 \N 2012-08-01 15:37:14.285 0 9223372036854775807 \N 0e258339-f7cf-42b6-9da6-080d67e54faa \N \N 0 0 54 \N Sessions -35 \N 2012-08-01 15:37:14.55 0 9223372036854775807 \N d6ef562c-d216-4df4-bb9b-d0970eabd054 \N \N 0 0 55 \N FullText -120 Initial message. 2012-08-01 15:37:15.195 600000 0 ExecutionThread ed8957a5-963f-40e8-b529-85c0d0eba5d9 0 \N 0 0 105 \N Task -120 Initial message. 2012-08-01 15:37:17.489 600000 0 ExecutionThread 10abbee1-3be4-438e-a77d-1600288a012c 0 \N 0 0 32 2012-08-01 16:07:05.486709 User -120 Initial message. 2012-08-01 15:50:27.507 600000 0 OMERO.web bb3a2c97-9539-4266-bd5b-b8e009653303 0 \N 1 1 10 2012-08-01 16:07:05.494197 User -120 Initial message. 2012-08-01 15:39:33.915 600000 0 OMERO.web 86e02dab-51e5-438d-8a08-32fb693f053b 0 \N 1 1 27 2012-08-01 16:07:05.502529 User -120 Initial message. 2012-08-01 15:48:56.131 600000 0 OMERO.web 3c490fde-f3b8-4c7d-979b-cc8986a31202 0 \N 1 1 9 2012-08-01 16:07:05.511001 User -120 Initial message. 2012-08-01 15:39:33.786 600000 0 OMERO.web e0b37ebc-a05c-4cb7-bd78-52cc64d9b62b 0 \N 1 1 26 2012-08-01 16:07:05.519506 User -120 Initial message. 2012-08-01 15:48:56.011 600000 0 OMERO.web 00f9c1ea-e5de-40d0-b2da-029b86280134 0 \N 1 1 6 2012-08-01 16:07:05.552191 User -120 Initial message. 2012-08-01 15:38:46.769 600000 0 OMERO.web 67825b71-6283-4ea5-b4f0-327757648761 0 \N 1 1 31 2012-08-01 16:07:05.560721 User -120 Initial message. 2012-08-01 15:50:21.356 600000 0 OMERO.web fc937f86-01c4-4b33-8f78-0c832f48ae84 0 \N 1 1 17 2012-08-01 16:07:05.56904 User -120 Initial message. 2012-08-01 15:44:47.008 600000 0 OMERO.web 67b5cdda-7113-44f4-84c1-13ce68598122 0 \N 1 1 15 2012-08-01 16:07:05.577319 User -120 Initial message. 2012-08-01 15:39:57.119 600000 0 OMERO.web b1d1e44c-52cb-49b6-a18c-a58f1448ff23 0 \N 1 1 30 2012-08-01 16:07:05.602514 User -120 Initial message. 2012-08-01 15:50:08.715 600000 0 OMERO.web c116a93f-e8a8-40ee-b678-506b12792339 0 \N 1 1 23 2012-08-01 16:07:05.617076 User -120 Initial message. 2012-08-01 15:45:06.799 600000 0 OMERO.web 797901dc-72d0-414b-a4a2-e22f01c2f009 0 \N 1 1 12 2012-08-01 16:07:05.627493 User -120 Initial message. 2012-08-01 15:39:45.07 600000 0 OMERO.web 3890fdb5-cf37-406a-af09-e6cadd4c30dc 0 \N 1 1 14 2012-08-01 16:07:05.635922 User -120 Initial message. 2012-08-01 15:39:50.962 600000 0 OMERO.web 1ba7ae90-7a73-4b49-84c2-ac4c51241c4e 0 \N 1 1 7 2012-08-01 16:07:05.643865 User -120 Initial message. 2012-08-01 15:38:46.897 600000 0 OMERO.web 41111946-1674-4c39-8234-063beefa032a 0 \N 1 1 21 2012-08-01 16:07:05.65218 User -120 Initial message. 2012-08-01 15:44:55.934 600000 0 OMERO.web 145eaf10-4678-420e-a4b5-cd808ac82a1c 0 \N 1 1 34 2012-08-01 16:07:05.66651 User -120 Initial message. 2012-08-01 15:57:02.406 600000 0 OMERO.web 11c98ef1-a1da-4930-8018-4af5d458bf56 0 \N 1 1 25 2012-08-01 16:07:05.6866 User -120 Initial message. 2012-08-01 15:48:49.858 600000 0 OMERO.web fb2b4cc0-fba3-48ce-b67b-6c41567d7eeb 0 \N 1 1 24 2012-08-01 16:07:05.694207 User -120 Initial message. 2012-08-01 15:45:06.904 600000 0 OMERO.web 6613d685-a209-4d83-8928-2d931e819baa 0 \N 1 1 22 2012-08-01 16:07:05.702028 User -120 Initial message. 2012-08-01 15:45:00.643 600000 0 OMERO.web 073f4ff0-368c-4005-b57d-09b60288a195 0 \N 1 1 28 2012-08-01 16:07:05.718702 User -120 Initial message. 2012-08-01 15:50:02.336 600000 0 OMERO.web a854da8f-81ec-4f5e-a7fb-e6cbb7aa43ad 0 \N 1 1 19 2012-08-01 16:07:05.727038 User -120 Initial message. 2012-08-01 15:44:49.673 600000 0 OMERO.web 528981e4-7301-469b-93c8-3ac83cd0badc 0 \N 1 1 8 2012-08-01 16:07:05.735425 User -120 Initial message. 2012-08-01 15:39:27.617 600000 0 OMERO.web 8624466d-c89a-4738-86a3-26b23686acf1 0 \N 1 1 33 2012-08-01 16:07:05.743713 User -120 Initial message. 2012-08-01 15:50:27.611 600000 0 OMERO.web bd619f52-55fd-456b-b7dd-0854272e4299 0 \N 1 1 18 2012-08-01 16:07:05.75201 User -120 Initial message. 2012-08-01 15:44:47.136 600000 0 OMERO.web 254ad5ee-f52b-4835-9408-5c3ab7eb4c0e 0 \N 1 1 20 2012-08-01 16:07:05.767404 User -120 Initial message. 2012-08-01 15:44:55.82 600000 0 OMERO.web f0bd6141-b8b1-459c-9791-ceaedd8aa6f7 0 \N 1 1 5 2012-08-01 16:07:05.776934 User -120 Initial message. 2012-08-01 15:38:43.458 600000 0 OMERO.web dd3f22cd-a3f8-4af6-8d61-1afa9468e46e 0 \N 1 1 13 2012-08-01 16:07:05.785288 User -120 Initial message. 2012-08-01 15:39:45.289 600000 0 OMERO.web 06185f7a-3cde-429a-ad1f-e88f67845a9b 0 \N 1 1 39 2012-08-01 16:09:05.467866 User -120 Initial message. 2012-08-01 15:57:20.667 600000 0 OMERO.web 1d34888b-9ac1-4f58-9c8c-87124f47cdb5 0 \N 1 1 36 2012-08-01 16:09:05.502171 User -120 Initial message. 2012-08-01 15:57:08.673 600000 0 OMERO.web 4b58d2ef-d275-46f0-9234-e49788ee74ce 0 \N 1 1 35 2012-08-01 16:09:05.511236 User -120 Initial message. 2012-08-01 15:57:08.562 600000 0 OMERO.web b84615fd-0ff1-4aa1-a54f-f31d10bdb174 0 \N 1 1 37 2012-08-01 16:09:05.519658 User -120 Initial message. 2012-08-01 15:57:14.413 600000 0 OMERO.web cfbf55a3-f616-46a8-97bb-c402d58209fe 0 \N 1 1 38 2012-08-01 16:09:05.540371 User -120 Initial message. 2012-08-01 15:57:20.558 600000 0 OMERO.web 0a953597-1f9a-4c4d-8c85-ea403fedafe9 0 \N 1 1 41 2012-08-01 16:15:05.708891 User -120 Initial message. 2012-08-01 16:03:42.841 600000 0 OMERO.web 8832ceef-9d4d-49cb-bd23-3a1e98944d09 0 \N 1 0 40 2012-08-01 16:15:05.723661 User -120 Initial message. 2012-08-01 16:03:42.696 600000 0 OMERO.web 94412bf3-167e-4978-acec-4e7c1c217fb4 0 \N 1 1 29 2012-08-01 16:07:05.457664 User -120 Initial message. 2012-08-01 15:50:08.496 600000 0 OMERO.web a009ba1c-09ac-4692-9be5-7207d6575391 0 \N 1 1 11 2012-08-01 16:07:05.547627 User -120 Initial message. 2012-08-01 15:39:38.906 600000 0 OMERO.web f43c013c-3d25-4f49-8c35-ff8e906f81cd 0 \N 1 1 16 2012-08-01 16:07:05.710385 User -120 Initial message. 2012-08-01 15:39:57.241 600000 0 OMERO.web 3c220a9c-9918-4788-a0ee-f4668ffdf068 0 \N 1 1 43 2012-08-01 16:07:45.91895 User -120 Initial message. 2012-08-01 16:07:07.51 600000 0 OMERO.web c4d2937f-b740-4f65-9dca-b445bdc6bb72 0 \N 1 0 44 2012-08-01 16:19:05.461306 User -120 Initial message. 2012-08-01 16:08:26.209 600000 0 OMERO.web 37e4a5d9-f1ac-41df-9479-ae13bf144c78 0 \N 1 1 45 2012-08-01 16:19:05.490463 User -120 Initial message. 2012-08-01 16:08:26.309 600000 0 OMERO.web d08cea5d-0743-4d4b-8533-c6d97c6e270a 0 \N 1 0 42 2012-08-01 16:19:05.497866 User -120 Initial message. 2012-08-01 16:07:07.392 600000 0 OMERO.web 37c5b840-de8a-4590-a1fb-a67e26c0137a 0 \N 1 1 46 2012-08-01 16:21:05.666611 User -120 Initial message. 2012-08-01 16:09:41.776 600000 0 OMERO.web ee2a2225-1286-46df-a3e0-2a82e6a6936c 0 \N 1 1 47 2012-08-01 16:34:16.992596 User -120 Initial message. 2012-08-01 16:09:41.872 600000 0 OMERO.web de915754-fc08-4596-969c-bd0011f355a9 0 \N 1 0 51 2012-08-01 16:34:51.477001 User -120 Initial message. 2012-08-01 16:34:21.937 600000 0 OMERO.web 004e64c0-15bc-4243-ac9a-41e81322261c 0 \N 1 2 49 2012-08-01 16:34:56.151385 User -120 Initial message. 2012-08-01 16:34:17.616 600000 0 OMERO.web 2e20acff-dc65-48fb-ad15-5057bd575bce 0 \N 1 4 50 2012-08-01 16:45:05.713832 User -120 Initial message. 2012-08-01 16:34:21.846 600000 0 OMERO.web 5e4ad34f-d5b0-4b95-b85b-e14c2cd752bb 0 \N 1 1 48 2012-08-01 16:45:05.739531 User -120 Initial message. 2012-08-01 16:34:17.507 600000 0 OMERO.web 6dfb2a9a-1976-418a-87e2-59b32cd7aa4c 0 \N 1 1 52 2012-08-02 15:37:05.479009 User -120 Initial message. 2012-08-02 15:25:08.489 600000 0 OMERO.insight b14a8bfc-79cc-4659-bd46-657efcced883 0 \N 1 0 155 2012-08-02 15:39:05.701447 User -120 Initial message. 2012-08-02 15:25:48.204 600000 0 OMERO.insight 1a2f7fd1-87cc-444b-a535-4442012ec117 0 \N 1 2 156 2012-08-02 15:39:05.714584 User -120 Initial message. 2012-08-02 15:28:27.334 600000 0 OMERO.importer f3d39375-06a0-4efc-821e-704765f03cef 0 \N 1 2 158 2012-08-02 17:27:26.362351 User -120 Initial message. 2012-08-02 17:27:06.45 600000 0 OMERO.web 0d4790ba-a6da-4246-bcd2-702708a0b071 0 \N 1 2 157 2012-08-02 17:39:05.700343 User -120 Initial message. 2012-08-02 17:27:06.313 600000 0 OMERO.web e3bc4d2e-9c5a-4837-9277-5664f224c2b6 0 \N 1 1 159 2012-08-02 17:43:05.473956 User -120 Initial message. 2012-08-02 17:32:42.442 600000 0 OMERO.web 6a36ed52-e8e6-4581-95ee-39be0d2059fc 0 \N 1 1 160 2012-08-02 17:55:05.468872 User -120 Initial message. 2012-08-02 17:32:42.566 600000 0 OMERO.web b533c69c-8a08-401e-952d-237d6db95869 0 \N 1 2 163 2012-08-02 17:56:04.029808 User -120 Initial message. 2012-08-02 17:49:08.508 600000 0 OMERO.web 145f2fc1-0c8f-4c79-874d-7802a422e074 0 \N 1 2 168 2012-08-02 17:59:39.441232 User -120 Initial message. 2012-08-02 17:57:17.371 600000 0 OMERO.web ca45cfed-b666-45e1-8dfa-2f229a266b49 0 \N 1 3 162 2012-08-02 18:01:05.477602 User -120 Initial message. 2012-08-02 17:49:08.399 600000 0 OMERO.web e319be44-a20b-45a6-9953-4d778572f947 0 \N 1 1 161 2012-08-02 18:03:05.693601 User -120 Initial message. 2012-08-02 17:45:56.153 600000 0 OMERO.importer 062cb68e-8376-46b7-915e-3dd6aefe196e 0 \N 1 2 167 2012-08-02 18:09:05.690237 User -120 Initial message. 2012-08-02 17:57:17.288 600000 0 OMERO.web 9ac9089b-e4c8-4cd3-a16b-2883829cb823 0 \N 1 1 164 2012-08-02 18:09:05.717199 User -120 Initial message. 2012-08-02 17:57:09.554 600000 0 OMERO.web a45d2686-ed58-4539-998e-1636c176309e 0 \N 1 1 166 2012-08-02 18:09:05.730121 User -120 Initial message. 2012-08-02 17:57:12.749 600000 0 OMERO.web 13a3390f-8409-4720-ae59-f421e6a67fbc 0 \N 1 1 165 2012-08-02 18:09:05.737229 User -120 Initial message. 2012-08-02 17:57:12.682 600000 0 OMERO.web fb5a522b-3689-407d-94d9-57c78539cd01 0 \N 1 1 169 2012-08-02 18:15:05.696241 User -120 Initial message. 2012-08-02 18:01:16.815 600000 0 OMERO.insight 36c423ae-0c0b-46bb-aba9-8c74a7070d37 0 \N 1 2 170 2012-08-06 16:55:05.467117 User -120 Initial message. 2012-08-06 16:43:51.767 600000 0 OMERO.web 6a8ae4bb-bff6-4e01-b25e-895c169ebd2f 0 \N 1 1 171 2012-08-06 17:05:05.470574 User -120 Initial message. 2012-08-06 16:43:51.884 600000 0 OMERO.web eab40255-6286-4617-9f8e-053505962f73 0 \N 1 2 175 2012-08-10 09:15:05.683167 User -120 Initial message. 2012-08-10 09:03:49.599 600000 0 OMERO.web ff94f103-9168-4e18-806e-b96c46557a99 0 \N 1 2 177 2012-08-10 09:15:05.70597 User -120 Initial message. 2012-08-10 09:04:11.852 600000 0 OMERO.web 172ef013-53b6-4607-bd7b-afd1f22c950b 0 \N 1 2 178 2012-08-10 09:15:05.710371 User -120 Initial message. 2012-08-10 09:04:44.678 600000 0 OMERO.web ab919aac-8ea8-4d04-b116-43d2f284402f 0 \N 1 1 176 2012-08-10 09:15:05.719174 User -120 Initial message. 2012-08-10 09:04:11.761 600000 0 OMERO.web 2388cfd3-78d8-4c78-a670-d1a7184b0368 0 \N 1 1 173 2012-08-10 09:15:05.72688 User -120 Initial message. 2012-08-10 09:03:38.653 600000 0 OMERO.web a7f9c14a-a901-432c-8148-f807d52ec49a 0 \N 1 2 174 2012-08-10 09:15:05.735128 User -120 Initial message. 2012-08-10 09:03:49.517 600000 0 OMERO.web 637e2829-de77-419b-94c5-511cf46bbc97 0 \N 1 1 179 2012-08-10 09:15:05.743407 User -120 Initial message. 2012-08-10 09:04:44.759 600000 0 OMERO.web f3afa54b-63aa-4550-83a0-b8f7469fe85f 0 \N 1 3 172 2012-08-10 09:15:05.752016 User -120 Initial message. 2012-08-10 09:03:38.556 600000 0 OMERO.web b82beab7-965b-4e4a-bb11-50e2938b202e 0 \N 1 1 180 2012-08-10 10:09:05.699032 User -120 Initial message. 2012-08-10 09:59:02.699 600000 0 OMERO.web 372585be-a08e-4f98-9eb2-8ae6ef036a0d 0 \N 1 1 181 2012-08-10 10:21:05.676144 User -120 Initial message. 2012-08-10 09:59:02.804 600000 0 OMERO.web 5c4b7aa0-c121-4680-ae5b-ef6d15b9380d 0 \N 1 2 184 2012-08-16 12:58:11.960162 User -120 Initial message. 2012-08-16 12:56:35.967 600000 0 OMERO.web 16e50b0e-f9dd-490f-b05c-eafd3b23f9d2 0 \N 1 4 183 2012-08-16 13:07:05.46678 User -120 Initial message. 2012-08-16 12:56:35.87 600000 0 OMERO.web c89fe2c4-5012-4e59-af12-4c02193d2d47 0 \N 1 1 4 2012-08-19 04:33:44.680487 User -120 Initial message. 2012-08-01 15:37:17.383 600000 0 Python service 1002a957-f5c8-458f-9784-46887d22f23b 0 \N 1 0 186 2012-08-20 13:33:05.471015 User -120 Initial message. 2012-08-20 13:21:06.223 600000 0 OMERO.web 01bc6ad6-a159-42c4-93c6-99b3c3550bbb 0 \N 1 1 187 2012-08-20 15:49:05.458989 User -120 Initial message. 2012-08-20 13:21:06.349 600000 0 OMERO.web 7900fe64-eb79-4536-84d9-7f022344d6d5 0 \N 1 0 188 2012-08-22 14:39:05.471817 User -120 Initial message. 2012-08-22 14:28:55.839 600000 0 OMERO.web 403292d0-2a1d-4db5-b25e-42f8696c8025 0 \N 1 1 190 2012-08-22 16:19:05.515782 User -120 Initial message. 2012-08-22 16:08:49.052 600000 0 OMERO.insight cf612f4a-3728-4025-9adb-917466f4f20c 0 \N 1 2 191 2012-08-22 16:21:05.464009 User -120 Initial message. 2012-08-22 16:10:26.12 600000 0 OMERO.web 60db56ba-7d56-465c-b0fa-6110889124cd 0 \N 1 1 192 2012-08-22 16:33:05.466536 User -120 Initial message. 2012-08-22 16:10:26.204 600000 0 OMERO.web 54c6a3bc-1b40-4329-91fe-97e0f5844288 0 \N 1 2 193 2012-08-22 16:39:05.461924 User -120 Initial message. 2012-08-22 16:10:32.992 600000 0 OMERO.insight 4ad8814b-d2a6-4f17-839c-02fef18db1b7 0 \N 1 2 189 2012-08-22 18:25:05.467617 User -120 Initial message. 2012-08-22 14:28:55.972 600000 0 OMERO.web f98cb992-6c5d-4915-b80f-bafee444b5a5 0 \N 1 5 194 2012-08-23 14:07:05.460615 User -120 Initial message. 2012-08-23 13:55:07.014 600000 0 OMERO.web 9922097a-b4fd-43f1-aa8a-0a0074d0e657 0 \N 1 1 195 2012-08-23 14:07:05.492531 User -120 Initial message. 2012-08-23 13:55:07.127 600000 0 OMERO.web 7fe1361c-61b4-4300-8135-d6d913658f4c 0 \N 1 2 198 2012-08-24 14:25:22.903302 User -120 Initial message. 2012-08-24 14:22:39.483 600000 0 OMERO.web eff9759b-0fb1-470b-9647-c6bdb9b313b9 0 \N 1 2 197 2012-08-24 14:33:05.474408 User -120 Initial message. 2012-08-24 14:22:39.413 600000 0 OMERO.web a9ac02f0-60df-4e5d-861f-d6e5d21f4aa8 0 \N 1 1 196 2012-08-24 14:37:05.469983 User -120 Initial message. 2012-08-24 14:20:02.476 600000 0 OMERO.insight e3398717-4373-4976-9811-ad5a48c870b6 0 \N 1 2 199 2012-08-24 14:43:05.453041 User -120 Initial message. 2012-08-24 14:32:02.621 600000 0 OMERO.web 6e3c75e1-0ef9-4569-8bc3-d49ff0689526 0 \N 1 1 201 2012-08-24 15:57:05.456049 User -120 Initial message. 2012-08-24 14:44:18.061 600000 0 OMERO.insight b7cd8ba4-e963-441a-a546-cecb46dc02ea 0 \N 1 2 202 2012-08-24 16:03:05.475885 User -120 Initial message. 2012-08-24 15:52:40.574 600000 0 OMERO.insight 72ce331e-e8a1-4b43-a72e-6540a5188176 0 \N 1 2 203 2012-08-24 16:37:05.468401 User -120 Initial message. 2012-08-24 16:13:39.672 600000 0 OMERO.insight ec708e4e-6fd4-4e86-a537-46ad95ec5495 0 \N 1 2 200 2012-08-24 16:39:06.052961 User -120 Initial message. 2012-08-24 14:32:02.732 600000 0 OMERO.web 22543a53-54ab-40f3-abdd-6d3997442161 0 \N 1 2 204 2012-08-24 16:39:39.773032 User -120 Initial message. 2012-08-24 16:26:05.137 600000 0 OMERO.insight a3f6b4af-6f1d-4188-b33b-5d592371284a 0 \N 1 2 205 2012-08-27 10:59:05.469757 User -120 Initial message. 2012-08-27 10:48:21.279 600000 0 OMERO.web 1eca2918-d679-4856-a658-c9f5f80d1535 0 \N 1 1 206 2012-08-27 11:11:05.46299 User -120 Initial message. 2012-08-27 10:48:21.383 600000 0 OMERO.web 6e51cf65-b853-412b-9f44-13fce0471b37 0 \N 1 2 207 2012-08-29 12:23:05.456604 User -120 Initial message. 2012-08-29 12:11:49.628 600000 0 OMERO.web 6ee97ec4-caaa-461f-855d-07507adaee67 0 \N 1 1 208 2012-08-29 13:57:05.475385 User -120 Initial message. 2012-08-29 12:11:49.746 600000 0 OMERO.web 4dc7b21e-acc7-4883-baed-3d8c15257bea 0 \N 1 2 210 2012-08-29 15:57:05.470432 User -120 Initial message. 2012-08-29 15:46:06.302 600000 0 OMERO.insight 066887f8-336c-40fb-ab3d-a26ad194efc5 0 \N 1 2 209 2012-08-29 15:57:05.491468 User -120 Initial message. 2012-08-29 15:45:09.36 600000 0 OMERO.insight 4cc74683-e2dc-4979-a10c-7df9beb48e82 0 \N 1 2 211 2012-08-29 16:09:05.461811 User -120 Initial message. 2012-08-29 15:58:03.402 600000 0 OMERO.insight a205bc8b-6af5-48f2-8c7f-7c6f700e2043 0 \N 1 2 212 2012-08-29 16:11:05.464758 User -120 Initial message. 2012-08-29 15:59:15.319 600000 0 OMERO.web b4ea513e-a0bd-4a56-b2b2-70143a140327 0 \N 1 1 213 2012-08-29 16:21:05.470544 User -120 Initial message. 2012-08-29 15:59:15.429 600000 0 OMERO.web 7ac75de7-0d79-4d47-8745-b780707136cc 0 \N 1 2 214 2012-08-30 09:05:05.479045 User -120 Initial message. 2012-08-30 08:54:27.124 600000 0 OMERO.insight 2656b935-4cec-412b-95e7-25e3b4e8b915 0 \N 1 2 215 2012-08-30 09:07:05.47317 User -120 Initial message. 2012-08-30 08:56:02.784 600000 0 OMERO.insight 8ae19db3-c7f5-4f2b-9901-a17f1b69edf4 0 \N 1 2 216 2012-08-30 09:09:05.696418 User -120 Initial message. 2012-08-30 08:57:13.969 600000 0 OMERO.insight 75e04d05-1bce-4b88-a639-7a3acd29a136 0 \N 1 2 217 2012-08-30 09:11:05.470089 User -120 Initial message. 2012-08-30 08:58:08.228 600000 0 OMERO.insight 9ff4782c-c893-4973-bc83-d5cbd0fe8dba 0 \N 1 2 218 2012-08-30 09:51:05.663896 User -120 Initial message. 2012-08-30 09:23:50.528 600000 0 OMERO.insight 07a69dfd-e97b-4274-89bd-76393b1ad7d9 0 \N 1 2 219 2012-08-30 13:37:05.474302 User -120 Initial message. 2012-08-30 13:25:39.176 600000 0 OMERO.insight 45fff037-09f7-4af6-b8b8-a12f6fe68187 0 \N 1 5 220 2012-08-30 13:45:05.465145 User -120 Initial message. 2012-08-30 13:33:20.468 600000 0 OMERO.web e54282de-7ef5-4e26-b3fe-b843c5adafe1 0 \N 1 1 221 2012-08-30 13:57:05.687252 User -120 Initial message. 2012-08-30 13:33:20.593 600000 0 OMERO.web 074a286c-43d0-4dcf-82e2-a63ca8f557a1 0 \N 1 5 182 2012-09-04 09:59:22.708197 Processing -120 Initial message. 2012-08-10 10:01:27.408 0 1344589287379 OMERO.scripts f43950f7-a2ca-47e8-82a4-7a8eddb263c8 0 \N 1 2 223 2012-08-31 10:40:09.859425 User -120 Initial message. 2012-08-31 10:32:49.858 600000 0 OMERO.web 904325cf-3de6-4e2b-b3a6-fa57ce26d1f3 0 \N 1 2 225 2012-08-31 10:42:13.372481 User -120 Initial message. 2012-08-31 10:41:21.859 600000 0 OMERO.web 0ce71fb2-67e1-4f02-b5cc-1f3907bde5a5 0 \N 1 0 227 2012-08-31 10:42:22.725879 User -120 Initial message. 2012-08-31 10:42:17.461 600000 0 OMERO.web 7b3ae570-cd35-41a9-84cc-d36b575df7ef 0 \N 1 2 222 2012-08-31 10:43:05.47094 User -120 Initial message. 2012-08-31 10:32:49.715 600000 0 OMERO.web af37b061-7eb1-4c77-a3ae-701c20d20370 0 \N 1 1 226 2012-08-31 10:53:05.471094 User -120 Initial message. 2012-08-31 10:42:17.374 600000 0 OMERO.web a8017620-e484-4a58-9336-de4dfe4f3f0b 0 \N 1 1 224 2012-08-31 10:53:05.502512 User -120 Initial message. 2012-08-31 10:41:21.752 600000 0 OMERO.web 37d6bcf6-85e2-4c30-a892-00a2f9da734d 0 \N 1 1 228 2012-08-31 13:33:05.689325 User -120 Initial message. 2012-08-31 13:22:53.784 600000 0 OMERO.web 83306187-b0d9-45f1-9257-491df2596208 0 \N 1 1 229 2012-08-31 13:39:59.881582 User -120 Initial message. 2012-08-31 13:22:53.894 600000 0 OMERO.web 13af6184-a033-4543-b359-033b213761a3 0 \N 1 2 230 2012-08-31 14:29:05.469388 User -120 Initial message. 2012-08-31 14:18:48.583 600000 0 OMERO.web 00255051-ef92-4e41-871b-ea5409fac735 0 \N 1 1 231 2012-08-31 17:13:05.469116 User -120 Initial message. 2012-08-31 14:18:48.699 600000 0 OMERO.web e787486b-053c-4b23-9521-6f4af812b5bf 0 \N 1 5 232 2012-08-31 20:13:05.471575 User -120 Initial message. 2012-08-31 20:01:34.773 600000 0 OMERO.web 1eeda3ee-aa42-4016-bfa9-416115f70e64 0 \N 1 1 233 2012-08-31 20:23:05.467947 User -120 Initial message. 2012-08-31 20:01:34.873 600000 0 OMERO.web 1101a9f0-4f4e-4f6d-a74b-da7fb6362f33 0 \N 1 2 234 2012-09-03 09:17:05.47089 User -120 Initial message. 2012-09-03 09:06:58.317 600000 0 OMERO.web aece87a8-b8a1-41ac-b264-cf8bf0cda484 0 \N 1 1 235 2012-09-03 09:19:05.456518 User -120 Initial message. 2012-09-03 09:06:58.427 600000 0 OMERO.web 59226bf9-eccc-41c1-817e-14946cfe9fff 0 \N 1 2 236 2012-09-03 10:27:05.687365 User -120 Initial message. 2012-09-03 10:15:56.183 600000 0 OMERO.insight f352205d-2e08-451b-ab44-264a19c7fbed 0 \N 1 5 237 2012-09-03 18:17:05.464112 User -120 Initial message. 2012-09-03 18:06:45.932 600000 0 OMERO.web 9a67e206-9b1b-4f70-b387-b5733ea7952e 0 \N 1 1 238 2012-09-03 18:29:05.4672 User -120 Initial message. 2012-09-03 18:06:46.028 600000 0 OMERO.web e3cf0b19-a7fa-4616-9fdd-dbdd4734ce10 0 \N 1 2 185 2012-09-04 09:59:22.708197 User -120 Initial message. 2012-08-19 04:33:44.68 600000 0 Python service eb2fc94f-4d00-409c-bd96-afbd0470584e 0 \N 1 0 255 \N Sessions -35 \N 2012-09-04 10:13:56.787 0 9223372036854775807 \N 8a58bcc1-74e2-42d9-96ed-3f1eef13f803 \N \N 0 0 256 2012-09-04 10:14:04.539259 User -120 Initial message. 2012-09-04 10:14:04.298 600000 0 Python service 05d0ef22-5ecc-4f4f-a21f-672b8cae164c 0 \N 51 0 306 \N Sessions -35 \N 2012-09-04 10:14:08.112 0 9223372036854775807 \N c2921d21-e291-4a30-bdd0-43f01791ef08 \N \N 0 0 307 \N Sessions -35 \N 2012-09-04 10:14:08.38 0 9223372036854775807 \N 473c43e1-fa21-473c-bca6-3d852fad67dc \N \N 0 0 308 \N FullText -120 Initial message. 2012-09-04 10:14:09.033 600000 0 ExecutionThread 5f6f135f-4cef-4b43-93c5-bd3e6279cd04 0 \N 0 0 358 \N Task -120 Initial message. 2012-09-04 10:14:11.449 600000 0 ExecutionThread 1c886517-d870-46d0-aec6-075396ccae77 0 \N 0 0 259 2012-09-04 10:16:09.095019 User -120 Initial message. 2012-09-04 10:14:20.655 600000 0 OMERO.web 0a246c66-2e7b-46a5-a85a-e1a48472594f 0 \N 51 2 261 2012-09-04 10:43:59.419945 User -120 Initial message. 2012-09-04 10:16:43.203 600000 0 OMERO.web 20c4298b-ff44-4e5b-acbe-70d8edbd4dc0 0 \N 51 1 258 2012-09-04 10:43:59.779053 User -120 Initial message. 2012-09-04 10:14:20.389 600000 0 OMERO.web 4af562f9-4da8-40b0-88a3-fe3f0c2393d3 0 \N 51 1 260 2012-09-04 10:47:59.42509 User -120 Initial message. 2012-09-04 10:14:47.678 600000 0 OMERO.insight ee6ff724-7510-4438-b70d-57f4d696cea7 0 \N 51 2 264 2012-09-04 12:55:59.425872 User -120 Initial message. 2012-09-04 12:44:02.806 600000 0 OMERO.web 6fa2054d-705a-46a1-83b2-1aebcbc82039 0 \N 51 1 263 2012-09-04 14:43:59.419546 User -120 Initial message. 2012-09-04 10:38:07.742 600000 0 OMERO.insight f41df921-1fe5-458e-81f5-bbf8c7e15468 0 \N 51 2 262 2012-09-04 16:37:59.411223 User -120 Initial message. 2012-09-04 10:16:43.321 600000 0 OMERO.web 85c0705e-923b-46f4-99e9-bcc8f97d1471 0 \N 51 2 267 2012-09-04 16:37:59.436164 User -120 Initial message. 2012-09-04 16:27:29.152 600000 0 OMERO.web 6e81c278-81de-4258-bc82-51b75020678a 0 \N 51 1 269 2012-09-04 17:01:59.420584 User -120 Initial message. 2012-09-04 16:51:26.759 600000 0 OMERO.web b14da6e6-ee48-4e8e-a7bf-e337a2fb8e2d 0 \N 51 1 270 2012-09-04 17:15:59.419706 User -120 Initial message. 2012-09-04 16:51:26.847 600000 0 OMERO.web a62689c5-7804-4341-82a8-fd3684a6a206 0 \N 51 5 271 2012-09-04 17:33:59.43558 User -120 Initial message. 2012-09-04 17:23:48.332 600000 0 OMERO.web d42d45f5-4047-463a-8f58-83de13b11b6c 0 \N 51 1 272 2012-09-04 17:59:59.43307 User -120 Initial message. 2012-09-04 17:23:48.409 600000 0 OMERO.web 640f5229-545b-43a4-8dc7-32ab841b891b 0 \N 51 2 273 2012-09-04 18:01:59.422254 User -120 Initial message. 2012-09-04 17:51:12.184 600000 0 OMERO.web 15d34d44-b80c-492b-9414-5c2be8fc1582 0 \N 51 1 274 2012-09-04 18:39:59.406434 User -120 Initial message. 2012-09-04 17:51:12.258 600000 0 OMERO.web cafd384a-89cf-4c4e-a17a-85d1d00db33d 0 \N 51 2 265 2012-09-04 18:43:59.415694 User -120 Initial message. 2012-09-04 12:44:02.897 600000 0 OMERO.web 934b85db-c28f-4d3a-a74b-d8607d9d0ea2 0 \N 51 2 257 2012-09-05 09:38:47.363624 User -120 Initial message. 2012-09-04 10:14:11.295 600000 0 Python service f77bf1e7-33d5-4c99-87a7-66ea0ed3ba92 0 \N 51 0 275 2012-09-05 09:35:59.413116 User -120 Initial message. 2012-09-05 09:25:52.355 600000 0 OMERO.web a00df8f6-06aa-4981-a0c7-a48fc09659f5 0 \N 51 1 266 2012-09-05 09:38:47.363624 User -120 Initial message. 2012-09-04 14:35:34.866 600000 0 OMERO.insight 7b2c176e-92f7-411c-a25b-a3ae50ca48ef 0 \N 51 2 268 2012-09-05 09:38:47.363624 User -120 Initial message. 2012-09-04 16:27:29.293 600000 0 OMERO.web 910624d1-57cb-4926-ba19-059c19bf9e21 0 \N 51 2 276 2012-09-05 09:38:47.363624 User -120 Initial message. 2012-09-05 09:25:52.452 600000 0 OMERO.web 2714e52d-79a5-450a-a7a4-787f591b97c8 0 \N 51 2 408 \N Sessions -35 \N 2012-09-05 09:56:27.586 0 9223372036854775807 \N 3f2aec97-881e-4f5b-91aa-7b1c2d4156e2 \N \N 0 0 409 2012-09-05 09:56:36.007713 User -120 Initial message. 2012-09-05 09:56:35.862 600000 0 Python service 9379fafa-baf9-4e40-bbfc-edecb637f771 0 \N 101 0 459 \N Sessions -35 \N 2012-09-05 09:56:37.528 0 9223372036854775807 \N 915adf00-5a5d-4a19-bd52-4eb0b460454d \N \N 0 0 460 \N Sessions -35 \N 2012-09-05 09:56:37.943 0 9223372036854775807 \N 5901e0a3-8d06-44b9-988b-21686050a225 \N \N 0 0 461 \N FullText -120 Initial message. 2012-09-05 09:56:38.454 600000 0 ExecutionThread 9baffc8b-edf8-4885-ada8-bb05391a7cfb 0 \N 0 0 511 \N Task -120 Initial message. 2012-09-05 09:56:40.212 600000 0 ExecutionThread ff70dbb9-09c5-4535-88d5-2bfc1f53b04e 0 \N 0 0 420 2012-09-05 10:26:30.727024 User -120 Initial message. 2012-09-05 10:09:20.029 600000 0 OMERO.web 71320915-4bdd-42df-b862-749e9e4ff5d1 0 \N 101 1 415 2012-09-05 10:26:30.733804 User -120 Initial message. 2012-09-05 10:08:59.215 600000 0 OMERO.web 3ddb895a-5d1b-46ff-99bc-f1b2a8078f75 0 \N 101 1 412 2012-09-05 10:26:30.736509 User -120 Initial message. 2012-09-05 09:56:48.858 600000 0 OMERO.web 5fac23eb-1547-443c-9ea0-f7a3f99d84c1 0 \N 101 2 416 2012-09-05 10:26:30.740329 User -120 Initial message. 2012-09-05 10:09:03.771 600000 0 OMERO.web f3171df3-c33c-4b39-9892-ffdba1c12455 0 \N 101 1 421 2012-09-05 10:26:30.742907 User -120 Initial message. 2012-09-05 10:09:20.197 600000 0 OMERO.web 6b1c4796-b2a1-4984-9512-3345509af5e8 0 \N 101 1 419 2012-09-05 10:26:30.745489 User -120 Initial message. 2012-09-05 10:09:13.794 600000 0 OMERO.web 709f8634-0694-42a7-867c-e5377d8ad6ed 0 \N 101 1 411 2012-09-05 10:26:30.760829 User -120 Initial message. 2012-09-05 09:56:48.352 600000 0 OMERO.web 686dc4e9-0823-4cd4-a7f5-4c072c6b0afd 0 \N 101 1 414 2012-09-05 10:26:30.763294 User -120 Initial message. 2012-09-05 10:08:59.039 600000 0 OMERO.web e669ee0e-0030-46d2-8f30-b96ec30a5263 0 \N 101 1 422 2012-09-05 10:26:30.774566 User -120 Initial message. 2012-09-05 10:09:28.201 600000 0 OMERO.web 2a7b7da2-885f-48e1-ae9d-0f74f60b1bbd 0 \N 101 1 418 2012-09-05 10:26:30.776951 User -120 Initial message. 2012-09-05 10:09:10.183 600000 0 OMERO.web 5c5ead26-bdaa-4c32-88dd-07009fc16d02 0 \N 101 1 417 2012-09-05 10:26:30.779385 User -120 Initial message. 2012-09-05 10:09:10.003 600000 0 OMERO.web 6cb1147d-1395-4b40-b152-4e5ea8c55965 0 \N 101 1 413 2012-09-05 10:26:30.792244 User -120 Initial message. 2012-09-05 10:08:55.743 600000 0 OMERO.web 2a2cd6fb-5ab0-45e7-aaa3-56e5d2bec115 0 \N 101 1 423 2012-09-05 10:32:30.750477 User -120 Initial message. 2012-09-05 10:09:28.375 600000 0 OMERO.web e727bb47-607e-49dd-bb35-aff75b756e64 0 \N 101 2 426 2012-09-05 11:22:30.716259 User -120 Initial message. 2012-09-05 11:11:02.144 600000 0 OMERO.web 9bcb844c-f7a3-4688-8620-dd3fd338f531 0 \N 101 1 424 2012-09-05 11:22:30.721138 User -120 Initial message. 2012-09-05 11:10:59.494 600000 0 OMERO.web 24d47fc6-756a-4d67-a1fa-ba2e17097363 0 \N 101 1 425 2012-09-05 11:22:30.752413 User -120 Initial message. 2012-09-05 11:10:59.674 600000 0 OMERO.web 3cc5617d-959b-4a1d-8990-ceead444f624 0 \N 101 2 410 2012-09-05 17:00:57.902321 User -120 Initial message. 2012-09-05 09:56:42.86 600000 0 Python service 02de317c-fe9f-4f8e-aa19-fd09cac5496e 0 \N 101 0 427 2012-09-05 17:00:57.902321 User -120 Initial message. 2012-09-05 11:11:02.287 600000 0 OMERO.web 184a1530-a51a-410c-b458-28f14ace6dfd 0 \N 101 2 561 \N Sessions -35 \N 2012-09-05 17:07:00.737 0 9223372036854775807 \N 280a6914-c21f-43c2-b374-54f51b9274de \N \N 0 0 562 2012-09-05 17:07:08.19433 User -120 Initial message. 2012-09-05 17:07:07.901 600000 0 Python service c2039887-6ac1-4a58-a048-a477a4d9f635 0 \N 151 0 612 \N Sessions -35 \N 2012-09-05 17:07:09.823 0 9223372036854775807 \N 74312ec3-69b4-4e05-ae84-5ff5debd1789 \N \N 0 0 613 \N Sessions -35 \N 2012-09-05 17:07:10.496 0 9223372036854775807 \N 2b865e16-d597-47c6-9ea3-70c501105430 \N \N 0 0 614 \N FullText -120 Initial message. 2012-09-05 17:07:10.355 600000 0 ExecutionThread 24af4b51-e894-4973-84ef-9abfdf389df8 0 \N 0 0 664 \N Task -120 Initial message. 2012-09-05 17:07:13.985 600000 0 ExecutionThread 8e4d9008-132b-4e42-b637-c92e17495a15 0 \N 0 0 567 2012-09-05 17:16:50.270929 User -120 Initial message. 2012-09-05 17:11:36.684 600000 0 OMERO.web efb9e18c-91fa-4a2d-8293-f8c8d7abc807 0 \N 151 3 568 2012-09-05 17:37:03.128831 User -120 Initial message. 2012-09-05 17:19:44.874 600000 0 OMERO.web c74e5667-adcb-43a2-8d03-badf73b7bcae 0 \N 151 1 566 2012-09-05 17:37:03.136345 User -120 Initial message. 2012-09-05 17:11:36.5 600000 0 OMERO.web 38af91b4-a87a-48cf-9ec0-fd18aadb9e3a 0 \N 151 1 564 2012-09-05 17:37:03.139163 User -120 Initial message. 2012-09-05 17:07:22.008 600000 0 OMERO.web 745a088f-40f5-480b-8171-244c8027db64 0 \N 151 1 565 2012-09-05 17:37:03.154602 User -120 Initial message. 2012-09-05 17:07:22.512 600000 0 OMERO.web f4843326-ce5d-4649-9c3c-c192922d4ef8 0 \N 151 2 569 2012-09-05 17:37:03.166602 User -120 Initial message. 2012-09-05 17:19:45.058 600000 0 OMERO.web 19cc2ddb-a039-43e7-a53c-cb675efef3dd 0 \N 151 2 570 2012-09-06 11:29:03.138141 User -120 Initial message. 2012-09-06 11:18:05.527 600000 0 OMERO.web 39fa4f14-c759-4d5d-8708-a550f00f16a4 0 \N 151 1 571 2012-09-06 13:03:03.143292 User -120 Initial message. 2012-09-06 11:18:05.701 600000 0 OMERO.web 3025495d-d275-4293-a0ea-f01c4200a78b 0 \N 151 2 573 2012-09-06 15:03:59.000538 User -120 Initial message. 2012-09-06 14:55:42.896 600000 0 OMERO.web 2a11d7e9-549a-4704-985c-a66cfc797898 0 \N 151 2 572 2012-09-06 15:07:03.172881 User -120 Initial message. 2012-09-06 14:55:42.727 600000 0 OMERO.web 69f476e9-007b-402d-a8fe-f07e1b01af26 0 \N 151 1 575 2012-09-06 15:15:03.145805 User -120 Initial message. 2012-09-06 15:04:03.08 600000 0 OMERO.web 6f0d5aff-5b29-4834-b193-abd8d85c6de9 0 \N 151 1 577 2012-09-06 15:35:03.143229 User -120 Initial message. 2012-09-06 15:24:13.411 600000 0 OMERO.importer 1cad0e62-a9a3-47c5-8e0b-02ea5b66b6e3 0 \N 151 102 563 2012-09-07 10:57:58.473002 User -120 Initial message. 2012-09-05 17:07:14.9 600000 0 Python service 9a2f9177-bde4-464f-ba0d-a56a09f94093 0 \N 151 0 579 2012-09-06 15:59:03.121975 User -120 Initial message. 2012-09-06 15:47:24.732 600000 0 OMERO.web ceba783a-d43c-441d-b68d-eb9581682911 0 \N 151 1 576 2012-09-06 15:59:03.136016 User -120 Initial message. 2012-09-06 15:04:03.216 600000 0 OMERO.web 926e49a3-82b1-4ac9-b5d2-187a762a8307 0 \N 151 102 580 2012-09-06 16:13:03.14454 User -120 Initial message. 2012-09-06 15:47:24.894 600000 0 OMERO.web 2c5a9c88-a98b-4db7-a224-88a6bf4afb36 0 \N 151 102 581 2012-09-06 16:13:03.163159 User -120 Initial message. 2012-09-06 15:50:54.6 600000 0 OMERO.insight 0c10f429-c0a1-4458-be8a-c14f20425307 0 \N 151 102 578 2012-09-06 17:05:03.151329 Processing -120 Initial message. 2012-09-06 15:37:57.188 0 1346942277131 OMERO.scripts 957e5409-a586-4ffb-9da2-a91f2ad21514 0 \N 151 102 574 2012-09-06 15:51:03.14736 User -120 Initial message. 2012-09-06 15:02:48.983 600000 0 OMERO.insight 5366a53c-91fd-450f-b456-4bfa7a5974ef 0 \N 151 102 588 2012-09-06 17:11:03.120254 User -120 Initial message. 2012-09-06 17:00:56.767 600000 0 OMERO.web 16dc2857-efe9-403c-a2e6-9234555bc2dc 0 \N 151 1 583 2012-09-06 17:11:03.123546 User -120 Initial message. 2012-09-06 17:00:26.432 600000 0 OMERO.web 0d6d0554-a97b-4a76-98b1-f08254c3fa8d 0 \N 151 1 582 2012-09-06 17:11:03.125937 User -120 Initial message. 2012-09-06 17:00:23.235 600000 0 OMERO.web c66f89e4-89cb-4c41-994e-c31799d24b97 0 \N 151 1 584 2012-09-06 17:11:03.128306 User -120 Initial message. 2012-09-06 17:00:26.541 600000 0 OMERO.web b770c910-899f-4748-98c7-5661de38a70c 0 \N 151 1 585 2012-09-06 17:11:03.130743 User -120 Initial message. 2012-09-06 17:00:43.459 600000 0 OMERO.web 58efbe69-832b-4453-a9e1-f1c4852ec307 0 \N 151 1 587 2012-09-06 17:11:03.146502 User -120 Initial message. 2012-09-06 17:00:49.731 600000 0 OMERO.web 19475393-db81-40df-ab94-8e064d067a26 0 \N 151 1 586 2012-09-06 17:11:03.149161 User -120 Initial message. 2012-09-06 17:00:49.622 600000 0 OMERO.web a6582fe8-84f9-4d2a-8021-922693e5e8dd 0 \N 151 1 589 2012-09-06 17:11:18.213388 User -120 Initial message. 2012-09-06 17:00:56.874 600000 0 OMERO.web f740f0c8-faec-4c90-90ed-157913008a62 0 \N 151 0 591 2012-09-06 17:12:07.404396 User -120 Initial message. 2012-09-06 17:11:22.846 600000 0 OMERO.web d1e4c1f7-4a58-4c74-81c0-234a2d1da135 0 \N 151 2 593 2012-09-06 17:12:24.932934 User -120 Initial message. 2012-09-06 17:12:11.22 600000 0 OMERO.web 4bc6dabc-bfb5-4fea-b0d2-aca07808a9d9 0 \N 151 102 595 2012-09-06 17:14:39.937235 User -120 Initial message. 2012-09-06 17:12:29.36 600000 0 OMERO.web 4a0da3e4-3750-4adc-b55b-e68ea847b49c 0 \N 151 52 590 2012-09-06 17:23:03.138354 User -120 Initial message. 2012-09-06 17:11:22.732 600000 0 OMERO.web a2dd4081-4067-4611-88ff-17f9438dbcaa 0 \N 151 1 592 2012-09-06 17:23:03.142804 User -120 Initial message. 2012-09-06 17:12:11.112 600000 0 OMERO.web 091a0107-ee23-43d9-bd90-760f1e229ff2 0 \N 151 1 594 2012-09-06 17:23:03.16478 User -120 Initial message. 2012-09-06 17:12:29.245 600000 0 OMERO.web 1728bbee-da22-4a10-ac34-2f05472431a4 0 \N 151 1 596 2012-09-06 17:25:03.122797 User -120 Initial message. 2012-09-06 17:14:44.635 600000 0 OMERO.web abb57f43-4a94-4041-8fef-656355d95897 0 \N 151 1 597 2012-09-06 17:39:03.150497 User -120 Initial message. 2012-09-06 17:14:44.74 600000 0 OMERO.web b040bf17-9744-4461-b83a-67bb20795adc 0 \N 151 2 598 2012-09-07 08:33:03.122176 User -120 Initial message. 2012-09-07 08:22:39.496 600000 0 OMERO.web 2d5ea8a5-58e0-430b-b433-23d606f381f1 0 \N 151 1 599 2012-09-07 08:49:03.137144 User -120 Initial message. 2012-09-07 08:22:39.643 600000 0 OMERO.web cf30620d-5bb2-4846-9918-653966c9fbce 0 \N 151 102 600 2012-09-07 10:57:58.473002 User -120 Initial message. 2012-09-07 10:57:15.297 600000 0 OMERO.web 272d83fc-b0d1-4078-92ad-e67dc891d501 0 \N 151 1 601 2012-09-07 10:57:58.473002 User -120 Initial message. 2012-09-07 10:57:15.44 600000 0 OMERO.web f0128122-5f89-4763-a8c7-9575e8600d16 0 \N 151 102 714 \N Sessions -35 \N 2012-09-07 10:58:21.855 0 9223372036854775807 \N f0a1cafc-dfe4-4e8e-9733-e57b8ea086fb \N \N 0 0 715 2012-09-07 10:58:29.399608 User -120 Initial message. 2012-09-07 10:58:29.204 600000 0 Python service b5ad7fca-5022-456d-9290-fcd739099d6f 0 \N 201 0 765 \N Sessions -35 \N 2012-09-07 10:58:31.527 0 9223372036854775807 \N 4917042b-06e3-4521-9e6f-ab7c8ef0dd3b \N \N 0 0 766 \N Sessions -35 \N 2012-09-07 10:58:31.622 0 9223372036854775807 \N 427d006b-47ba-4e2b-b7da-be6da67cf1a0 \N \N 0 0 767 \N FullText -120 Initial message. 2012-09-07 10:58:32.133 600000 0 ExecutionThread 1b9fbc2a-972f-458d-a21e-92a456087ff5 0 \N 0 0 817 \N Task -120 Initial message. 2012-09-07 10:58:34.426 600000 0 ExecutionThread fa3aac26-a7a2-4977-8108-e4eed079d688 0 \N 0 0 716 \N User -120 Initial message. 2012-09-07 10:58:36.203 600000 0 Python service d7be6b32-4dea-4844-bee9-0ed9c3e3d51a 0 \N 201 0 717 2012-09-07 11:28:24.518087 User -120 Initial message. 2012-09-07 10:58:37.155 600000 0 OMERO.web 227dd0a9-ede4-4559-8dd0-eeeb7dcf4120 0 \N 201 1 718 2012-09-07 11:28:24.551183 User -120 Initial message. 2012-09-07 10:58:37.648 600000 0 OMERO.web 3c4c11b9-3f8d-4e8a-a0e2-ae060feca614 0 \N 201 102 768 2012-09-07 11:28:32.042454 FullText -120 Initial message. 2012-09-07 10:58:32.133 600000 0 ExecutionThread 1ccf95dd-cedc-4fee-a0fe-689278e54f70 0 \N 0 0 720 2012-09-07 12:17:59.719725 User -120 Initial message. 2012-09-07 12:15:03.191 600000 0 OMERO.web d3b9e1d5-3dfe-499f-a253-0bb04b2392f9 0 \N 201 52 722 \N User -120 Initial message. 2012-09-07 12:18:03.622 600000 0 OMERO.web 2bcbc37b-0f8f-419c-93a2-301eac9bdc26 0 \N 201 102 719 2012-09-07 12:26:24.516786 User -120 Initial message. 2012-09-07 12:15:02.972 600000 0 OMERO.web 21e4b3c2-f1c7-4419-8bc1-531c250bdf85 0 \N 201 1 721 2012-09-07 12:28:24.507033 User -120 Initial message. 2012-09-07 12:18:03.46 600000 0 OMERO.web a8e243fa-f9d6-455e-96ea-04dc5102a11a 0 \N 201 1 \. -- -- Data for Name: sessionannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY sessionannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: shape; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY shape (discriminator, id, permissions, fillcolor, fillrule, fontfamily, fontsize, fontstretch, fontstyle, fontvariant, fontweight, g, locked, strokecolor, strokedasharray, strokedashoffset, strokelinecap, strokelinejoin, strokemiterlimit, strokewidth, thec, thet, thez, transform, vectoreffect, version, visibility, points, textvalue, cx, cy, anchor, baselineshift, decoration, direction, glyphorientationvertical, writingmode, x, y, d, height, rx, width, bytes, ry, x1, x2, y1, y2, creation_id, external_id, group_id, owner_id, update_id, roi, pixels, roi_index) FROM stdin; text 1 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 32.229729963025008 0 \N \N \N \N \N \N \N \N \N \N 5151 \N 53 102 5151 1 \N 0 polygon 2 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -110.06709483277736,-837.213531260749 -110.13201292779446,-835.2799887182757 -110.32647553976165,-833.3542796814912 -110.64969098459324,-831.4440709857506 -111.10036756720237,-829.5571128015758 -111.67671358150048,-827.7009052939882 -112.37635397523088,-825.8831152983425 -113.19658035546938,-824.1109096389926 -114.13393431278948,-822.3914551402919 -115.18474909984744,-820.7316686210935 -116.34477462313109,-819.1382168947496 -117.60934411329411,-817.6176001042785 -118.97333245757176,-816.1759017168641 -120.43128120253215,-814.8189551941896 -121.97727355132515,-813.5520939869369 -123.60518436918323,-812.3805682106206 -125.30834684275449,-811.3089612994205 -127.07996915593606,-810.3416900171824 -128.91284281679106,-809.4826711167508 -130.79967599821555,-808.7353213399686 -132.73288520002123,-808.1025574176774 -134.7045952489359,-807.587129410385 -136.70688930410384,-807.1908706917633 -138.73176718950236,-806.9156146354842 -140.77097872360812,-806.7622779283835 -142.81644039523158,-806.7316105869634 -144.85977702009905,-806.8236126112238 -146.89286341943745,-807.038033995664 -148.90744941172352,-807.3739580534483 -150.89545148576767,-807.8300514219061 -152.84891113313068,-808.4043973921985 -154.75986984537343,-809.0948292499862 -156.62070245472427,-809.8984302644277 -158.42386712857848,-810.8120336991805 -160.1621137074157,-811.831972806901 -161.82848370479937,-812.954080829244 -163.4162269722105,-814.1738576671969 -164.91896836938096,-815.4864698810792 -166.33066609671044,-816.8865840202092 -167.64557002768254,-818.3684499580706 -168.85847171436586,-819.9262342329803 -169.96445438191333,-821.5536867074205 -170.95905959889544,-823.244140568039 -171.83828727730094,-824.9908456663168 -172.59859567253645,-826.786801848234 -173.23690138342667,-828.6246756191031 -173.75066268738098,-830.4972168194038 -174.13783787281034,-832.3967586137808 -174.39680190396,-834.3156341668792 -174.5265547588274,-836.246259978511 -174.5265547588274,-838.1807192078202 -174.39680190396,-840.111345019452 -174.13783787281034,-842.0303039077173 -173.75066268738098,-843.9298457020943 -173.23690138342667,-845.802386902395 -172.59859567253645,-847.6402606732642 -171.83828727730094,-849.4362168551813 -170.95905959889544,-851.1829219534591 -169.96445438191333,-852.8733758140776 -168.85847171436586,-854.5007449533509 -167.64557002768254,-856.0586125634275 -166.33066609671044,-857.5404785012889 -164.91896836938096,-858.9405093052519 -163.4162269722105,-860.2531215191343 -161.82848370479937,-861.4728983570872 -160.1621137074157,-862.5950897145971 -158.42386712857848,-863.6149454871506 -156.62070245472427,-864.5285489219035 -154.75986984537343,-865.3322332715119 -152.84891113313068,-866.0225817941326 -150.89545148576767,-866.597011099592 -148.90744941172352,-867.0531044680498 -146.89286341943745,-867.3889451906672 -144.85977702009905,-867.6033665751074 -142.81644039523158,-867.6954519345347 -140.77097872360812,-867.6647845931146 -138.73176718950236,-867.5114478860139 -136.70688930410384,-867.2361084945678 -134.7045952489359,-866.839933111113 -132.73288520002123,-866.3244217686538 -130.79967599821555,-865.6917411815296 -128.91284281679106,-864.9443914047473 -127.07996915593606,-864.0852891691487 -125.30834684275449,-863.1180178869107 -123.60518436918323,-862.0464943108775 -121.97727355132515,-860.8749685345612 -120.43128120253215,-859.6081073273085 -118.97333245757176,-858.2510774694671 -117.60934411329411,-856.8093790820527 -116.34477462313109,-855.2887622915816 -115.18474909984744,-853.6953939004046 -114.13393431278948,-852.0356073812062 -113.19658035546938,-850.3161528825055 -112.37635397523088,-848.5439472231556 -111.67671358150048,-846.726073892343 -111.10036756720237,-844.8699497199223 -110.64969098459324,-842.9829915357475 -110.32647553976165,-841.0727828400069 -110.13201292779446,-839.1470738032224 -110.06709483277736,-837.213531260749 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5151 \N 53 102 5151 1 \N 1 text 3 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 42.222556203940208 0 \N \N \N \N \N \N \N \N \N \N 5173 \N 53 102 5173 2 \N 0 polygon 4 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -173.68789518940815,-868.8979565067991 -173.77288977221517,-866.1436559927643 -174.02764318301348,-863.4004884638306 -174.4510805128967,-860.6795101258917 -175.04151261929795,-857.9915468472185 -175.79652095717782,-855.3475012752892 -176.71311113744005,-852.7580457199596 -177.78759775812014,-850.2336221534624 -179.0156044043855,-847.7842886519927 -180.39225559655347,-845.4199497333299 -181.91194645247003,-843.1502027984235 -183.5685730251311,-840.9841077937696 -185.35545552347625,-838.9304175490339 -187.26545348119885,-836.9974242186366 -189.29085058793612,-835.1928057233371 -191.42343146847517,-833.5240096462722 -193.6546736307728,-831.9975622200874 -195.97555551793724,-830.6197593398055 -198.37678684584913,-829.3960523291656 -200.84861665514407,-828.3314318366612 -203.3811788176462,-827.4301207187102 -205.9642233091417,-826.6958043772772 -208.58734654700146,-826.1314772014581 -211.2400297797851,-825.7392890090658 -213.91152391842937,-825.5209289426673 -216.59115665307863,-825.4772415735459 -219.2680253362545,-825.6083036809098 -221.93145765810135,-825.9137313687204 -224.57070452955594,-826.3922193904489 -227.1750936407627,-827.041925045113 -229.7341830194887,-827.8601610604466 -232.2376458623126,-828.843549151316 -234.6754240930394,-829.988327136549 -237.03765158349324,-831.2897347052746 -239.3148844911402,-832.7426276505838 -241.4979093110688,-834.3410171942846 -243.5779348240094,-836.078607441354 -245.54659209633417,-837.9483347046936 -247.39597286966114,-839.9426746219586 -249.1185911712497,-842.0536421555598 -250.7075752620202,-844.2726380342464 -252.15643729893074,-846.5909094283526 -253.45941884141195,-848.9989357161365 -254.61126051374353,-851.4870427174415 -255.6072787842623,-854.0453259144878 -256.443519523777,-856.6634201142501 -257.1165660575496,-859.3306530068728 -257.62376950291844,-862.0365826201232 -257.9630184316745,-864.7699991896924 -258.13300759728855,-867.5200768473095 -258.13300759728855,-870.275759387081 -257.9630184316745,-873.0258370446983 -257.62376950291844,-875.759330393475 -257.1165660575496,-878.4651832275177 -256.443519523777,-881.1324928993481 -255.6072787842623,-883.7505870991105 -254.61126051374353,-886.3088702961568 -253.45941884141195,-888.7969772974617 -252.15643729893074,-891.2050035852457 -250.7075752620202,-893.5231982001442 -249.1185911712497,-895.7422708580384 -247.39597286966114,-897.8532383916396 -245.54659209633417,-899.8475783089046 -243.5779348240094,-901.7173055722442 -241.4979093110688,-903.4548958193136 -239.3148844911402,-905.0532853630144 -237.03765158349324,-906.5061783083237 -234.6754240930394,-907.8075858770493 -232.2376458623126,-908.9522870830746 -229.7341830194887,-909.9357519531517 -227.1750936407627,-910.7539879684853 -224.57070452955594,-911.4036168439419 -221.93145765810135,-911.8821816448778 -219.2680253362545,-912.1875325534809 -216.59115665307863,-912.3186714400523 -213.91152391842937,-912.2749840709309 -211.2400297797851,-912.0566240045324 -208.58734654700146,-911.6644358121401 -205.9642233091417,-911.1000318571135 -203.3811788176462,-910.3657155156803 -200.84861665514407,-909.464481176937 -198.37678684584913,-908.3998606844326 -195.97555551793724,-907.1761536737928 -193.6546736307728,-905.7982740143032 -191.42343146847517,-904.271903367326 -189.29085058793612,-902.6030305110535 -187.26545348119885,-900.7984887949616 -185.35545552347625,-898.8654954645643 -183.5685730251311,-896.8118052198287 -181.91194645247003,-894.6457102151747 -180.39225559655347,-892.3758865010608 -179.0156044043855,-890.0116243616055 -177.78759775812014,-887.5622908601358 -176.71311113744005,-885.0378672936387 -175.79652095717782,-882.4483349591014 -175.04151261929795,-879.8043661663797 -174.4510805128967,-877.1164028877065 -174.02764318301348,-874.3953477705601 -173.77288977221517,-871.652257020834 -173.68789518940815,-868.8979565067991 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5173 \N 53 102 5173 2 \N 1 text 5 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 42.461113241766093 4.1695602821759998e-05 \N \N \N \N \N \N \N \N \N \N 5195 \N 53 102 5195 3 \N 0 polygon 6 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -208.74093377637922,-594.1440855800298 -208.82645145776684,-591.2990278170898 -209.08262924150358,-588.4654780405286 -209.50846643312235,-585.6546940631082 -210.10221181730415,-582.8781838712072 -210.86153044029115,-580.1469551039706 -211.78329513187182,-577.4720987917491 -212.8638366789977,-574.8644557912762 -214.0987770433726,-572.3343666120518 -215.4831961438636,-569.89208837237 -217.01146507408947,-567.5475446257026 -218.67745458043572,-565.3100751870812 -220.47445167084794,-563.1886863067157 -222.39524300603804,-561.1918838875816 -224.43203150827816,-559.327840267832 -226.5766865350181,-557.6039772647692 -228.82053540087117,-556.0272163484615 -231.15453016002482,-554.6039786417437 -233.56933099744703,-553.339934746599 -236.05513944647473,-552.240254917778 -238.60199025803345,-551.3092754979738 -241.1996263138291,-550.5507490914403 -243.8375820175534,-549.9677611727866 -246.50522499048677,-549.5626466957701 -249.19183946270405,-549.3370734845045 -251.88658457747155,-549.2919588422512 -254.57861947805569,-549.4273861602164 -257.25710330772273,-549.7428550911659 -259.91123690534187,-550.237114767015 -262.5303461965907,-550.9082471900342 -265.10388219395537,-551.7534170592312 -267.62150438793606,-552.7692887263804 -270.0730390514442,-553.9517760224055 -272.448646022214,-555.2961256485848 -274.7386936159935,-556.7968337853456 -276.9340504957649,-558.4479796570873 -279.025835498127,-560.2428085761527 -281.00562611130965,-562.1741488988567 -282.8654584751742,-564.2343286342799 -284.5978273812128,-566.4148418794466 -286.19576966375394,-568.70701594897 -287.6528225043603,-571.1016778102295 -288.9631485186369,-573.5890706921642 -290.12149406062827,-576.1592710413032 -291.12314752721534,-578.8018549569407 -291.9641061405275,-581.50623175596 -292.6409925567359,-584.2614771904219 -293.1510131704516,-587.0565002299758 -293.49220828834217,-589.8801264530654 -293.6631602599114,-592.7208478733119 -293.6631602599114,-595.5673232867478 -293.49220828834217,-598.4081280981999 -293.1510131704516,-601.2317543212895 -292.6409925567359,-604.0267773608433 -291.9641061405275,-606.7820227953052 -291.12314752721534,-609.4863995943246 -290.12149406062827,-612.128983509962 -288.9631485186369,-614.699183859101 -287.6528225043603,-617.1865767410358 -286.19576966375394,-619.5811552110895 -284.5978273812128,-621.8734126718186 -282.8654584751742,-624.0539259169853 -281.00562611130965,-626.114022261203 -279.025835498127,-628.0454459751126 -276.9340504957649,-629.8402748941779 -274.7386936159935,-631.4914207659197 -272.448646022214,-632.9921289026804 -270.0730390514442,-634.3364785288597 -267.62150438793606,-635.5189658248848 -265.10388219395537,-636.5348374920341 -262.5303461965907,-637.380007361231 -259.91123690534187,-638.0510563930445 -257.25710330772273,-638.5453994600994 -254.57861947805569,-638.8608683910488 -251.88658457747155,-638.996295709014 -249.19183946270405,-638.9511810667608 -246.50522499048677,-638.7255244642894 -243.8375820175534,-638.3204933784787 -241.1996263138291,-637.737505459825 -238.60199025803345,-636.9789790532915 -236.05513944647473,-636.0479996334873 -233.56933099744703,-634.9482364134604 -231.15453016002482,-633.6841925183161 -228.82053540087117,-632.260954811598 -226.5766865350181,-630.6841938952904 -224.43203150827816,-628.9603308922275 -222.39524300603804,-627.096287272478 -220.47445167084794,-625.0995682445496 -218.67745458043572,-622.978179364184 -217.01146507408947,-620.7407099255627 -215.4831961438636,-618.3960827876895 -214.0987770433726,-615.9538045480077 -212.8638366789977,-613.423798759989 -211.78329513187182,-610.8160723683105 -210.86153044029115,-608.1412994472946 -210.10221181730415,-605.4100706800581 -209.50846643312235,-602.6334770969514 -209.08262924150358,-599.8227765107366 -208.82645145776684,-596.9891433429698 -208.74093377637922,-594.1440855800298 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5195 \N 53 102 5195 3 \N 1 text 7 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 26.4785690368196 -1.5151788749772287e-05 \N \N \N \N \N \N \N \N \N \N 5218 \N 53 102 5218 4 \N 0 polygon 8 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -255.45118699516664,-106.10359626259364 -255.50452129156582,-102.88020472396708 -255.66428175214352,-99.66978311651033 -255.92986230534945,-96.48527106781569 -256.300111415239,-93.33948699116547 -256.77357451009186,-90.24512808553197 -257.34843337525814,-87.21458851411256 -258.022203117383,-84.26014122579436 -258.7923382359564,-81.39360461580254 -259.65562655176353,-78.6266152578966 -260.6086740641242,-75.97023395786397 -261.6476019151185,-73.43518818213954 -262.7681676038967,-71.03172053991821 -263.96594680814366,-68.76943726526724 -265.2360909554597,-66.65752034216895 -266.5735090448245,-64.70442446874586 -267.9727464322885,-62.91802857514768 -269.4282272595916,-61.30551460924195 -270.934072632699,-59.87339784019087 -272.4842218361107,-58.62740564414218 -274.0724323328618,-57.57259871853793 -275.6922797645225,-56.71321956422846 -277.33733977266274,-56.05272278904832 -279.00088496307774,-55.59374480424031 -280.6761879415626,-55.33816443160908 -282.3566425282223,-55.287011992789765 -284.0354001145421,-55.44043900567008 -285.705672699162,-55.7979303094322 -287.3607934950321,-56.35794042162383 -288.9940351079476,-57.11825718108731 -290.59891257232346,-58.07581992649549 -292.16888031541987,-59.22681040708322 -293.69763519311687,-60.56650126476044 -295.17905588275966,-62.089589373465074 -296.6071422760032,-63.78989280338711 -297.9761366931226,-65.66059324958894 -299.28052388301296,-67.69414512127342 -300.5151522374995,-69.882336148938 -301.67493075556206,-72.21637829510793 -302.7551926862658,-74.6869077543358 -303.7516955287608,-77.28389404246934 -304.66031799650716,-79.99697333600356 -305.47742366020486,-82.81514543630608 -306.199739733484,-85.72710710896996 -306.8244176800596,-88.72110056592494 -307.3487907851117,-91.78509528690383 -307.77091961968034,-94.90675771586442 -308.0889859691156,-98.07348156456683 -308.3017170831624,-101.27253933046124 -308.4083250688058,-104.49108229668788 -308.4083250688058,-107.71611022849942 -308.3017170831624,-110.93462289114855 -308.0889859691156,-114.13368065704296 -307.77091961968034,-117.30043480932288 -307.3487907851117,-120.42206693470597 -306.8244176800596,-123.48609195926245 -306.199739733484,-126.48008541621745 -305.47742366020486,-129.39204708888116 -304.66031799650716,-132.21021918918385 -303.7516955287608,-134.92326817914045 -302.7551926862658,-137.520254467274 -301.67493075556206,-139.99078392650188 -300.5151522374995,-142.32482607267178 -299.28052388301296,-144.51301710033636 -297.9761366931226,-146.54659927559828 -296.6071422760032,-148.41726941822267 -295.17905588275966,-150.11757284814473 -293.69763519311687,-151.64066095684936 -292.16888031541987,-152.9803821181042 -290.59891257232346,-154.1313422951143 -288.9940351079476,-155.0889050405225 -287.3607934950321,-155.84922179998597 -285.705672699162,-156.4092622157552 -284.0354001145421,-156.76672321593972 -282.3566425282223,-156.92015022882003 -280.6761879415626,-156.86902809357815 -279.00088496307774,-156.61341741736948 -277.33733977266274,-156.15443943256147 -275.6922797645225,-155.49394265738133 -274.0724323328618,-154.63456350307186 -272.4842218361107,-153.5797565774676 -270.934072632699,-152.33379468499638 -269.4282272595916,-150.90167791594544 -267.9727464322885,-149.28916395003955 -266.5735090448245,-147.50276805644154 -265.2360909554597,-145.5496721830183 -263.96594680814366,-143.43772495634255 -262.7681676038967,-141.17547198526904 -261.6476019151185,-138.77197403947025 -260.6086740641242,-136.23695856732326 -259.65562655176353,-133.58057726729064 -258.7923382359564,-130.81355760580726 -258.022203117383,-127.94702099581544 -257.34843337525814,-124.99257370749723 -256.77357451009186,-121.96206443965531 -256.300111415239,-118.86767523044432 -255.92986230534945,-115.7219214573716 -255.66428175214352,-112.53740940867696 -255.50452129156582,-109.32698780122021 -255.45118699516664,-106.10359626259364 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5218 \N 53 102 5218 4 \N 1 text 9 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 38.644379740758076 2.9436414846232367e-07 \N \N \N \N \N \N \N \N \N \N 5241 \N 53 102 5241 5 \N 0 polygon 10 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 561.9395261794253,249.8775330781959 561.8616821690929,253.49439361254863 561.6285269242053,257.0966910693845 561.2410024100376,260.66991977219556 560.7006157710299,264.1996909070408 560.0095523666207,267.6717925728325 559.1706380926349,271.0722130361039 558.187226345452,274.38732088186777 557.0632733792272,277.6037484454145 555.803300627281,280.70850367068726 554.4123947020987,283.68912200218386 552.8961697167198,286.5336028022995 551.2606919275158,289.23046822415733 549.5125927700235,291.76888566709425 547.6588616265836,294.1386253882225 545.706996540786,296.33014527930584 543.6648346637194,298.33459086675833 541.5406276111933,300.1439366064365 539.3429095885998,301.75088226745817 537.0805162302196,303.1489282894256 534.7625845992206,304.3324888182574 532.3984778304373,305.2967598310508 529.9976155766203,306.0378886898306 527.5697565980196,306.5528799450219 525.1246408155794,306.8396612730199 522.672121186077,306.8970928958414 520.2220695055954,306.72490164355696 517.7843387309118,306.32382224908076 515.3687818188037,305.6954466337282 512.9851198509097,304.84229926443595 510.6429043551191,303.76784657341665 508.35159266279385,302.47636508301895 506.1203971943242,300.97311095947794 503.9583608163509,299.2641316198595 501.8741119307936,297.3562468927553 499.8761093858226,295.2572374113376 497.97235988627597,292.97545840759625 496.1705310294932,290.5201411412269 494.4778947873974,287.90118566727085 492.90123330996937,285.1291160927637 491.4469519610798,282.2151088356945 490.1208344075174,279.1708795891719 488.9282686906558,276.0086856763379 487.8740588333979,272.74128601684356 486.962424840176,269.3818186713628 486.19707805417414,265.9438243907251 485.5810516035775,262.44111120840654 485.1168511160185,258.88783450757825 484.80634168274133,255.29826565088604 484.6507666979092,251.68688073124096 484.6507666979092,248.06818527796878 484.80634168274133,244.45680050550575 485.1168511160185,240.86723106008526 485.5810516035775,237.31395435925697 486.19707805417414,233.81124117693838 486.962424840176,230.3732468963007 487.8740588333979,227.01377955081995 488.9282686906558,223.7463798913256 490.1208344075174,220.5841859784916 491.4469519610798,217.53995673196903 492.90123330996937,214.62595182981306 494.4778947873974,211.85387990039266 496.1705310294932,209.23492442643666 497.97235988627597,206.77960716006723 499.8761093858226,204.49782815632588 501.8741119307936,202.3988186749082 503.9583608163509,200.490933947804 506.1203971943242,198.7819546081856 508.35159266279385,197.27870048464453 510.6429043551191,195.98721899424686 512.9851198509097,194.91276630322758 515.3687818188037,194.05961893393535 517.7843387309118,193.43124331858272 520.2220695055954,193.03016392410655 522.672121186077,192.8579726718221 525.1246408155794,192.91540429464362 527.5697565980196,193.20218562264157 529.9976155766203,193.7171768778329 532.3984778304373,194.45830573661272 534.7625845992206,195.42257674940615 537.0805162302196,196.6061372782379 539.3429095885998,198.00418330020537 541.5406276111933,199.611128961227 543.6648346637194,201.4204747009052 545.706996540786,203.42492028835764 547.6588616265836,205.61644017944099 549.5125927700235,207.98617990056928 551.2606919275158,210.52459969841922 552.8961697167198,213.22146276536398 554.4123947020987,216.06594356547964 555.803300627281,219.04656189697624 557.0632733792272,222.15131712224903 558.187226345452,225.3677446857957 559.1706380926349,228.6828525315596 560.0095523666207,232.08327299483102 560.7006157710299,235.5553746606227 561.2410024100376,239.08514697292455 561.6285269242053,242.65837508700733 561.8616821690929,246.26067224947903 561.9395261794253,249.8775330781959 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5241 \N 53 102 5241 5 \N 1 text 11 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 43.415281500953832 -5.5497284531517156e-06 \N \N \N \N \N \N \N \N \N \N 5263 \N 53 102 5263 6 \N 0 polygon 12 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 806.7835939644556,466.1072028264865 806.6961746418616,469.7543289735011 806.4342274588728,473.3867816384856 805.9988179633525,476.9898873394098 805.391766466233,480.5491945833818 804.6153816545508,484.0503628720785 803.6729045697227,487.4792736963152 802.5680646292693,490.82209713278655 801.3053460137805,494.06544723646357 799.8898544734334,497.1961822503694 798.3272285323364,500.20173758928587 796.6238170798399,503.070037044099 794.7864129835704,505.78947058288486 792.822475078569,508.3491385389613 790.7399061781533,510.7386740195779 788.5470530739162,512.948553690709 786.2527953313834,514.9697647933469 783.8663233008729,516.7942491217774 781.3973157088071,518.414636636615 778.8556288729188,519.8244008571984 776.2515186913896,521.0178588615917 773.5955074493664,521.9901934854977 770.8982506254795,522.7375199189993 768.1706700853244,523.256863507645 765.4236876944972,523.5460265589682 762.6684029099041,523.6038991272776 759.9158707906237,523.430281422349 757.1771907935624,523.0258394115972 754.4634179777988,522.3921936157303 751.7854298111012,521.531941307664 749.15405936341,520.4485011201259 746.5798733177002,519.1462018413093 744.0732607656358,517.6303712105293 741.644300014088,515.9070917301705 739.3027585851343,513.9832450635147 737.0580488182311,511.8666452282242 734.9192722680416,509.5657722093751 732.8949977152976,507.08992735185495 730.9933943602821,504.4490335701383 729.2220986293464,501.6537907406823 727.5882585727388,498.71536491713516 726.098445068947,495.64567691621414 724.758651824701,492.45704713508513 723.5742509771433,489.1623065459318 722.5500818894847,485.77473009921414 721.6902291618673,482.30794792801316 720.9981558248452,478.7759231491169 720.4766589415594,475.1929074651931 720.1278252099083,471.5732857723923 719.9530309625479,467.93170935383085 719.9530309625479,464.28271849805594 720.1278252099083,460.6411198805807 720.4766589415594,457.02149818777986 720.9981558248452,453.43848250385605 721.6902291618673,449.9064577249598 722.5500818894847,446.4396977526726 723.5742509771433,443.052121305955 724.758651824701,439.75736961734475 726.098445068947,436.5687287367589 727.5882585727388,433.49904073583787 729.2220986293464,430.56062601174756 730.9933943602821,427.7653720828347 732.8949977152976,425.12448940057493 734.9192722680416,422.6486334435979 737.0580488182311,420.3477715242057 739.3027585851343,418.2311716889152 741.644300014088,416.3073250222594 744.0732607656358,414.58404554190054 746.5798733177002,413.0682038116637 749.15405936341,411.7659267317608 751.7854298111012,410.6824754447658 754.4634179777988,409.8222120372427 757.1771907935624,409.1885662413758 759.9158707906237,408.7841353300808 762.6684029099041,408.61051762515234 765.4236876944972,408.66839019346173 768.1706700853244,408.9575643442418 770.8982506254795,409.47688573397375 773.5955074493664,410.2242232669322 776.2515186913896,411.1965578908383 778.8556288729188,412.3900158952315 781.3973157088071,413.7997801158149 783.8663233008729,415.4201565311956 786.2527953313834,417.2446519590829 788.5470530739162,419.2658630617209 790.7399061781533,421.4757316333951 792.822475078569,423.86527821346857 794.7864129835704,426.42493507008817 796.6238170798399,429.14436860887395 798.3272285323364,432.012679163144 799.8898544734334,435.01823450206047 801.3053460137805,438.1489695159663 802.5680646292693,441.3923085201865 803.6729045697227,444.7351541555716 804.6153816545508,448.1640427808945 805.391766466233,451.66521106959124 805.9988179633525,455.2245183135632 806.4342274588728,458.8276462134012 806.6961746418616,462.46007667947185 806.7835939644556,466.1072028264865 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5263 \N 53 102 5263 6 \N 1 text 13 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 25.762906781737321 0 \N \N \N \N \N \N \N \N \N \N 5285 \N 53 102 5285 7 \N 0 polygon 14 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -822.1730204887305,-821.4396009588143 -822.2249168699366,-819.8052348842944 -822.3803946229999,-818.1774219169736 -822.6387138809787,-816.562715164051 -822.9990290816539,-814.967667732726 -823.4596491005866,-813.3987270349201 -824.0189885086161,-811.8621290920001 -824.6745106190845,-810.3640042300558 -825.4238901358888,-808.910588470454 -826.2638505054297,-807.5075893581745 -827.1911151741074,-806.1607144381973 -828.2019848072127,-804.8753541696701 -829.2922315936495,-803.6566876211857 -830.4576277223216,-802.5095767755048 -831.693522601023,-801.4387779201105 -832.9947371611612,-800.4484131708218 -834.3561980294203,-799.5427103387348 -835.7723033560981,-798.7250516727265 -837.2374512914919,-797.9989251169513 -838.7457229000671,-797.3671844438991 -840.2909878557342,-796.8323663402277 -841.8671158324038,-796.3965847114853 -843.467659418154,-796.0616363773875 -845.086171201063,-795.8290010718182 -846.7163094644867,-795.699418661719 -848.3513097106711,-795.6734176234773 -849.9846188324169,-795.7512093476478 -851.6097894178025,-795.9324767483981 -853.2201626643514,-796.2164799587864 -854.8092911601418,-796.601950635484 -856.3708331885294,-797.0875147398843 -857.8983413375925,-797.6710583664398 -859.3857909765188,-798.3503619143244 -860.8271574744964,-799.1226773063256 -862.216627591268,-799.9847279888442 -863.5487051724084,-800.9333431035578 -864.8177883682152,-801.9644005346476 -866.0190151959278,-803.0738838615722 -867.1474179775079,-804.2573538826807 -868.1985575113048,-805.5100543104896 -869.1681002909446,-806.8268060764062 -870.0521355911635,-808.2024301118377 -870.847175467807,-809.6313245670815 -871.5500490625531,-811.1078875924351 -872.1577969076341,-812.6259888618091 -872.6679880116701,-814.1794980491138 -873.0787198596674,-815.7622848282599 -873.3881956319105,-817.3680074826029 -873.5951469850703,-818.9900072096664 -873.6988340522051,-820.621942292806 -873.6988340522051,-822.2571539295451 -873.5951469850703,-823.8890890126847 -873.3881956319105,-825.5111944350256 -873.0787198596674,-827.1168113940912 -872.6679880116701,-828.6997038685147 -872.1577969076341,-830.2532130558194 -871.5500490625531,-831.7713143251934 -870.847175467807,-833.2477716552696 -870.0521355911635,-834.6767718057908 -869.1681002909446,-836.0523958412223 -868.1985575113048,-837.3691476071389 -867.1474179775079,-838.6218480349478 -866.0190151959278,-839.8053180560563 -864.8177883682152,-840.914801382981 -863.5487051724084,-841.9458588140707 -862.216627591268,-842.8943682335068 -860.8271574744964,-843.7565246113029 -859.3857909765188,-844.5288400033041 -857.8983413375925,-845.2081435511888 -856.3708331885294,-845.7916871777442 -854.8092911601418,-846.2772512821446 -853.2201626643514,-846.6627219588421 -851.6097894178025,-846.9467251692304 -849.9846188324169,-847.1279925699807 -848.3513097106711,-847.2057842941512 -846.7163094644867,-847.1797832559095 -845.086171201063,-847.0502008458103 -843.467659418154,-846.8174598449637 -841.8671158324038,-846.4826172061432 -840.2909878557342,-846.0468355774008 -838.7457229000671,-845.5120174737294 -837.2374512914919,-844.8802768006772 -835.7723033560981,-844.154150244902 -834.3561980294203,-843.3364915788937 -832.9947371611612,-842.4306830515294 -831.693522601023,-841.440423997518 -830.4576277223216,-840.3696251421237 -829.2922315936495,-839.2225142964428 -828.2019848072127,-838.0038477479584 -827.1911151741074,-836.7184874794312 -826.2638505054297,-835.371612559454 -825.4238901358888,-833.9686134471746 -824.6745106190845,-832.5151976875727 -824.0189885086161,-831.0170728256284 -823.4596491005866,-829.4804748827084 -822.9990290816539,-827.9115341849025 -822.6387138809787,-826.3164867535775 -822.3803946229999,-824.7017800006549 -822.2249168699366,-823.0739670333342 -822.1730204887305,-821.4396009588143 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5285 \N 53 102 5285 7 \N 1 text 15 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 38.535532693398743 0 \N \N \N \N \N \N \N \N \N \N 5307 \N 53 102 5307 8 \N 0 polygon 16 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 864.2822184781805,-2054.2518132605796 864.2046333936156,-2052.318231737463 863.972166025207,-2050.39256705971 863.5856800288125,-2048.4823042447556 863.0468307448261,-2046.5953601379638 862.3577053415714,-2044.7392197567688 861.5211826719077,-2042.921368118606 860.5405014453021,-2041.1491462982672 859.4196920557578,-2039.429751427901 858.1633246821893,-2037.7699488117275 856.7763293601189,-2036.1765037539667 855.2643558382833,-2034.6558936735523 853.6334856933483,-2033.2141641614896 851.8903043012302,-2031.8572168661408 850.041792880113,-2030.5903776652958 848.0954364474322,-2029.4188284941022 846.0590438915688,-2028.3473194597775 843.940783957512,-2027.380024898969 841.7492932038404,-2026.5209752056792 839.4932801604541,-2025.77362500334 837.1818851851822,-2025.140853144811 834.8243925784968,-2024.6253945403084 832.4303025548344,-2024.2291204441915 830.009295256935,-2023.9539021108185 827.5710508275394,-2023.8006031960474 825.1254653233517,-2023.7699434130932 822.6822908584339,-2023.8619227619558 820.2514594751515,-2024.0763972999923 817.8426873019052,-2024.4122154860588 815.4656904670964,-2024.8683697216545 813.1300771421436,-2025.4427008671348 810.8452395845011,-2026.1331937254977 808.6203541376586,-2026.9366815585984 806.4643812311417,-2027.8502855135764 804.3860293948503,-2028.870263081715 802.3936473020774,-2029.9924399263675 800.4952597551686,-2031.2122098829589 798.6984957142021,-2032.5248228442706 797.0106242826479,-2033.9248089898695 795.4384107647264,-2035.406698499323 793.9881886367281,-2036.9645897242683 792.6658235613545,-2038.592005245772 791.4766414163959,-2040.2824676448997 790.4253923090706,-2042.0290676747886 789.5163225473461,-2043.8250400312188 788.7531026686188,-2045.6628996967554 788.1388274397123,-2047.5354495392496 787.6759438855574,-2049.4350605986237 787.3663232605128,-2051.3539599721566 787.2111890770437,-2053.284518699771 787.2111890770437,-2055.219107821388 787.3663232605128,-2057.1496665490026 787.6759438855574,-2059.0685659225355 788.1388274397123,-2060.9681769819094 788.7531026686188,-2062.840582881761 789.5163225473461,-2064.6785864899407 790.4253923090706,-2066.474414903728 791.4766414163959,-2068.22115887626 792.6658235613545,-2069.9116212753875 793.9881886367281,-2071.5390367968907 795.4384107647264,-2073.0969280218364 797.0106242826479,-2074.5788175312896 798.6984957142021,-2075.9788036768887 800.4952597551686,-2077.2914166382006 802.3936473020774,-2078.511186594792 804.3860293948503,-2079.6333634394446 806.4643812311417,-2080.65319706494 808.6203541376586,-2081.5668010199183 810.8452395845011,-2082.3704327956616 813.1300771421436,-2083.0609256540242 815.4656904670964,-2083.635256799505 817.8426873019052,-2084.0914110351005 820.2514594751515,-2084.4272292211667 822.6822908584339,-2084.6417037592037 825.1254653233517,-2084.733683108066 827.5710508275394,-2084.7030233251116 830.009295256935,-2084.549724410341 832.4303025548344,-2084.2743621343247 834.8243925784968,-2083.8782319808506 837.1818851851822,-2083.3627733763483 839.4932801604541,-2082.7300015178193 841.7492932038404,-2081.9826513154803 843.940783957512,-2081.1236016221906 846.0590438915688,-2080.1563070613815 848.0954364474322,-2079.084798027057 850.041792880113,-2077.9132488558635 851.8903043012302,-2076.6464096550185 853.6334856933483,-2075.2894623596694 855.2643558382833,-2073.847732847607 856.7763293601189,-2072.3271227671926 858.1633246821893,-2070.733677709432 859.4196920557578,-2069.0738750932583 860.5405014453021,-2067.354480222892 861.5211826719077,-2065.582258402553 862.3577053415714,-2063.7644067643905 863.0468307448261,-2061.9082663831955 863.5856800288125,-2060.0213222764037 863.972166025207,-2058.1110594614493 864.2046333936156,-2056.185394783696 864.2822184781805,-2054.2518132605796 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5307 \N 53 102 5307 8 \N 1 text 17 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 19.618070528158665 0 \N \N \N \N \N \N \N \N \N \N 5329 \N 53 102 5329 9 \N 0 polygon 18 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -104.51646705087667,-142.94178815065044 -104.55596061787988,-140.85266859365447 -104.6743411661414,-138.77199525174882 -104.87104116342186,-136.7081141872756 -105.14539292473404,-134.6693046940783 -105.49619461710058,-132.6638460660004 -105.92211087054679,-130.6997171386409 -106.42130555135729,-128.78493013184843 -106.99190914156749,-126.92709665447902 -107.63155135947225,-125.13379493113926 -108.33762823362075,-123.4122025754436 -109.10736887131536,-121.76923012701128 -109.9376351531156,-120.21152105146665 -110.82508865408428,-118.74531820344171 -111.76612387528992,-117.37656397932406 -112.75700178080301,-116.11076678025955 -113.79371626069928,-114.95296762790284 -114.8720942838078,-113.90790708566432 -115.98776251346115,-112.97972480046572 -117.13628084449333,-112.17222657673508 -118.31300886624209,-111.48858391816232 -119.51317263104768,-110.93163448594392 -120.73196480700102,-110.50354825628875 -121.96451129369429,-110.2060945944135 -123.20577106947277,-110.04044194904588 -124.45080326542994,-110.00729138942276 -125.69460024416045,-110.10674306829213 -126.93212098400966,-110.3383963746617 -128.15839123182158,-110.70134993379845 -129.36850350293906,-111.19413483873018 -130.55755031270488,-111.81474803449478 -131.72072432920993,-112.56068570238955 -132.85341852604134,-113.4289766442206 -133.95099249253687,-114.41608212955502 -135.00907289202914,-115.5180628169672 -136.02335315634966,-116.73044521704182 -136.98982717557425,-118.04842199786961 -137.90455560827724,-119.46661829530231 -138.76383280277886,-120.9793254026979 -139.56422018139395,-122.58046738667127 -140.30251285618326,-124.26360108709414 -140.9757062447036,-126.02194950134479 -141.5811296070054,-127.84840178430767 -142.11631250863533,-129.73568016962034 -142.57908497338462,-131.676106279928 -142.9676442517872,-133.6619015851277 -143.28035451562403,-135.6850538653711 -143.51601393191785,-137.73745074806146 -143.6736543574369,-139.810779555106 -143.752608107194,-141.89669422416256 -143.752608107194,-143.98684869288894 -143.6736543574369,-146.07279674619488 -143.51601393191785,-148.14612555323941 -143.28035451562403,-150.1985224359298 -142.9676442517872,-152.22167471617317 -142.57908497338462,-154.20747002137287 -142.11631250863533,-156.14789613168054 -141.5811296070054,-158.03514113274383 -140.9757062447036,-159.86162679995607 -140.30251285618326,-161.61997521420673 -139.56422018139395,-163.3031089146296 -138.76383280277886,-164.90425089860298 -137.90455560827724,-166.41695800599857 -136.98982717557425,-167.83515430343127 -136.02335315634966,-169.15309770000977 -135.00907289202914,-170.3655134843337 -133.95099249253687,-171.46749417174584 -132.85341852604134,-172.45459965708028 -131.72072432920993,-173.32289059891133 -130.55755031270488,-174.0688282668061 -129.36850350293906,-174.6894414625707 -128.15839123182158,-175.18222636750244 -126.93212098400966,-175.54517992663918 -125.69460024416045,-175.77683323300874 -124.45080326542994,-175.87628491187812 -123.20577106947277,-175.843134352255 -121.96451129369429,-175.67748170688736 -120.73196480700102,-175.38002804501212 -119.51317263104768,-174.95194181535697 -118.31300886624209,-174.39495899888917 -117.13628084449333,-173.7113497245658 -115.98776251346115,-172.90385150083515 -114.8720942838078,-171.97566921563657 -113.79371626069928,-170.93060867339804 -112.75700178080301,-169.77280952104132 -111.76612387528992,-168.50701232197682 -110.82508865408428,-167.13825809785916 -109.9376351531156,-165.67205524983422 -109.10736887131536,-164.1143461742896 -108.33762823362075,-162.47137372585726 -107.63155135947225,-160.7497813701616 -106.99190914156749,-158.95644626257248 -106.42130555135729,-157.09864616945245 -105.92211087054679,-155.18385916265999 -105.49619461710058,-153.2197302353005 -105.14539292473404,-151.21427160722257 -104.87104116342186,-149.17546211402527 -104.6743411661414,-147.11158104955206 -104.55596061787988,-145.03087432339703 -104.51646705087667,-142.94178815065044 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5329 \N 53 102 5329 9 \N 1 text 19 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 31.529068531452786 0 \N \N \N \N \N \N \N \N \N \N 5397 \N 53 102 5397 10 \N 0 polygon 20 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -1144.5422780277374,-294.7186665073838 -1144.6057841023012,-292.74069193028953 -1144.7960027690367,-290.770705538675 -1145.1122350617147,-288.8165457395421 -1145.553083047876,-286.8862007183707 -1146.1169490904251,-284.987409029844 -1146.801336881399,-283.1278093763272 -1147.6037501128358,-281.3148407555482 -1148.5206939535876,-279.5558423129164 -1149.5486735725076,-277.8579534892045 -1150.6834951722187,-276.22791431591077 -1151.92056554607,-274.67231504605616 -1153.2548920781367,-273.1974463757057 -1154.6811825955385,-271.8092495178101 -1156.1935458114845,-270.5133162022052 -1157.7860904391828,-269.3148387494528 -1159.4522262256128,-268.21861007084067 -1161.1852630654355,-267.2291235207009 -1162.978411000993,-266.35032326561463 -1164.824181108398,-265.58580398904724 -1166.715384020719,-264.9385113343947 -1168.644231257113,-264.41119124041535 -1170.6029343367375,-264.0058906796387 -1172.5838046310682,-263.72425721531977 -1174.5787541023067,-263.56738922296205 -1176.5796947126553,-263.5360355949541 -1178.5786382766337,-263.63014640513694 -1180.567496756444,-263.8495219488734 -1182.5382819666065,-264.19316370297855 -1184.48310557396,-264.6597236611529 -1186.3940792453432,-265.2473046293446 -1188.2635143522318,-265.95356007806936 -1190.0838221184204,-266.77564421624976 -1191.8478131769768,-267.71031184353484 -1193.5482981609698,-268.7536687195033 -1195.1784871127413,-269.90157097293735 -1196.731689926952,-271.1494253971863 -1198.2017157598555,-272.49213952400663 -1199.5827731769784,-273.9244211805184 -1200.8690707438484,-275.4403790799299 -1202.0556158445406,-277.0340220831318 -1203.1375157154484,-278.69880986326217 -1204.1104767068769,-280.4281521673006 -1204.9706045784046,-282.2150094067928 -1205.7144044988838,-284.0522421409664 -1206.33888089876,-285.93236144593425 -1206.8414376177523,-287.8479283239683 -1207.220177461809,-289.79115429422575 -1207.473502793834,-291.7542009497048 -1207.600415090643,-293.7291799572442 -1207.600415090643,-295.70815305752336 -1207.473502793834,-297.68313206506275 -1207.220177461809,-299.6461787205418 -1206.8414376177523,-301.58940469079926 -1206.33888089876,-303.5049715688333 -1205.7144044988838,-305.38514079996037 -1204.9706045784046,-307.2223236079748 -1204.1104767068769,-309.00918084746695 -1203.1375157154484,-310.7385231515054 -1202.0556158445406,-312.40331093163576 -1200.8690707438484,-313.9969539348376 -1199.5827731769784,-315.51291183424917 -1198.2017157598555,-316.9451934907609 -1196.731689926952,-318.28790761758125 -1195.1784871127413,-319.5357620418302 -1193.5482981609698,-320.68366429526424 -1191.8478131769768,-321.7270211712327 -1190.0838221184204,-322.6616887985178 -1188.2635143522318,-323.4837729366982 -1186.3940792453432,-324.1900283854229 -1184.48310557396,-324.77760935361465 -1182.5382819666065,-325.244169311789 -1180.567496756444,-325.58781106589413 -1178.5786382766337,-325.8071866096306 -1176.5796947126553,-325.9013473459726 -1174.5787541023067,-325.8699437918055 -1172.5838046310682,-325.7130757994478 -1170.6029343367375,-325.43149226128804 -1168.644231257113,-325.0261417743522 -1166.715384020719,-324.4988216803728 -1164.824181108398,-323.8515789518796 -1162.978411000993,-323.0870097491529 -1161.1852630654355,-322.20820949406664 -1159.4522262256128,-321.2187229439269 -1157.7860904391828,-320.12254419147405 -1156.1935458114845,-318.92401681256234 -1154.6811825955385,-317.62808349695746 -1153.2548920781367,-316.23988663906187 -1151.92056554607,-314.7650179687114 -1150.6834951722187,-313.2094686250161 -1149.5486735725076,-311.5794294517223 -1148.5206939535876,-309.88149070185113 -1147.6037501128358,-308.1225421853786 -1146.801336881399,-306.3095735645996 -1146.1169490904251,-304.44992398492354 -1145.553083047876,-302.5511322963969 -1145.1122350617147,-300.62078727522544 -1144.7960027690367,-298.6666774022518 -1144.6057841023012,-296.696641084478 -1144.5422780277374,-294.7186665073838 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5397 \N 53 102 5397 10 \N 1 text 21 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 37.134237295728923 0 \N \N \N \N \N \N \N \N \N \N 5421 \N 53 102 5421 11 \N 0 polygon 22 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -60.92898756740581,-469.1161321404545 -61.00377851646611,-466.40472355680225 -61.22780500235139,-463.70425999008563 -61.600212667199685,-461.0255940942282 -62.11950061206404,-458.37953234164746 -62.783544487665864,-455.77665029723056 -63.58966576665384,-453.22752352586457 -64.53465483435689,-450.7423119588822 -65.61467862577231,-448.33112934611034 -66.8254191700838,-446.00367380382073 -68.16195813689602,-443.76922781473104 -69.61893847150645,-441.6368429540287 -71.19049512264566,-439.61510898184025 -72.87030122398379,-437.71220002473797 -74.6515911848835,-435.93573603122127 -76.52718378115277,-434.2928751347292 -78.48952833655117,-432.7902212906278 -80.53072781354288,-431.4338242762109 -82.6425619040497,-430.2292258722051 -84.81653321095683,-429.1811365922284 -87.04389033886669,-428.2938974978504 -89.31565098485083,-427.57101838353117 -91.62267121070994,-427.0154548656586 -93.9556454429734,-426.62937747501724 -96.30519883591154,-426.4144025643193 -98.66188727153558,-426.3713614006736 -101.01619735959764,-426.5003925285984 -103.35866189135594,-426.8011264960453 -105.67983674882169,-427.2721316763265 -107.97037017701825,-427.91169935371795 -110.22104896548711,-428.717151000868 -112.42282153904095,-429.6853462753651 -114.5667979577639,-430.81222120467584 -116.64436537077589,-432.0933885457251 -118.6471418347277,-433.5236297883281 -120.56709176756524,-435.09717224422786 -122.39643358551788,-436.80773522860045 -124.1278706106284,-438.648299152525 -125.75436016322315,-440.61161351955064 -127.26941374170087,-442.68973511063535 -128.6668661150031,-444.8742127101707 -129.9411524116497,-447.1563180135117 -131.08710030296228,-449.52686090095307 -132.1001147290882,-451.9762818007406 -132.9761317174944,-454.49469787057836 -133.7115722014612,-457.0720415421454 -134.30352674610714,-459.6977834320609 -134.74959391311725,-462.3615327014617 -135.04797262375524,-465.0524366964244 -135.19746215886366,-467.7597351260375 -135.19746215886366,-470.47248297336546 -135.04797262375524,-473.17978140297856 -134.74959391311725,-475.8707315794473 -134.30352674610714,-478.5344346673421 -133.7115722014612,-481.1602227387636 -132.9761317174944,-483.73752022882474 -132.1001147290882,-486.2559824801684 -131.08710030296228,-488.70535719845 -129.9411524116497,-491.07590008589125 -128.6668661150031,-493.35800538923223 -127.26941374170087,-495.54252917027367 -125.75436016322315,-497.6206045798524 -124.1278706106284,-499.58391894687804 -122.39643358551788,-501.42452905230857 -120.56709176756524,-503.13509203668116 -118.6471418347277,-504.7086344925809 -116.64436537077589,-506.13882955367785 -114.5667979577639,-507.4199968947271 -112.42282153904095,-508.54691800554394 -110.22104896548711,-509.5150670985349 -107.97037017701825,-510.3205187456851 -105.67983674882169,-510.9600864230764 -103.35866189135594,-511.4311377848637 -101.01619735959764,-511.7318255708045 -98.66188727153558,-511.8609028802354 -96.30519883591154,-511.81786171658973 -93.9556454429734,-511.6028868058918 -91.62267121070994,-511.2168094152504 -89.31565098485083,-510.66124589737785 -87.04389033886669,-509.9383206015526 -84.81653321095683,-509.0510815071745 -82.6425619040497,-508.0030384087039 -80.53072781354288,-506.7983938231921 -78.48952833655117,-505.4420429902812 -76.52718378115277,-503.93938914617985 -74.6515911848835,-502.29652824968775 -72.87030122398379,-500.5200180746651 -71.19049512264566,-498.6171091175627 -69.61893847150645,-496.59542132688034 -68.16195813689602,-494.463036466178 -66.8254191700838,-492.2285904770883 -65.61467862577231,-489.9010887532926 -64.53465483435689,-487.4899523220268 -63.58966576665384,-485.00474075504445 -62.783544487665864,-482.45561398367846 -62.11950061206404,-479.85273193926156 -61.600212667199685,-477.2066240051747 -61.22780500235139,-474.5279581093173 -61.00377851646611,-471.82749454260073 -60.92898756740581,-469.1161321404545 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5421 \N 53 102 5421 11 \N 1 text 23 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 33.280697392091589 0 \N \N \N \N \N \N \N \N \N \N 5446 \N 53 102 5446 12 \N 0 polygon 24 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -996.598234141862,-24.51899214348839 -996.6652697266093,-22.007628150364233 -996.866109406808,-19.506362894484123 -997.1998184233087,-17.025311805219765 -997.6651949429182,-14.574406698538441 -998.2603694473371,-12.163579390407428 -998.9828047331587,-9.802461238495837 -999.8296965229331,-7.500633524089732 -1000.7977063911252,-5.267326993793919 -1001.8826946900715,-3.111522012298412 -1003.0806553091296,-1.0419318702498153 -1004.3863803044648,0.933130752769042 -1005.7947952692631,2.805703711856591 -1007.3002916486257,4.568242165303438 -1008.8967267395676,6.213668650974583 -1010.5776907650612,7.735339702055235 -1012.3365068740362,9.127129307688264 -1014.165830530315,10.383445605102068 -1016.058584271763,11.499214187483112 -1018.006889414117,12.469961564614088 -1020.0031343471569,13.291748394363793 -1022.0390397755551,13.961303019707294 -1024.1067270150486,14.475904623833728 -1026.1976496962673,14.83351676716655 -1028.3033949868623,15.032620466086911 -1030.4154165174634,15.072497959105185 -1032.5254349927434,14.952932248561297 -1034.6247705063108,14.674424098285634 -1036.7051437628381,14.238125265087824 -1038.7580083929552,13.645755038118452 -1040.7750851013348,12.899700391635314 -1042.7483616666923,12.002965908619942 -1044.6698258677432,10.959207165033625 -1046.5318660942671,9.772547116412191 -1048.3267371990225,8.447826479781838 -1050.047495256896,6.990370043871128 -1051.687062805753,5.406020053366689 -1053.238762994523,3.701186285296128 -1054.6964531202211,1.8827125120068828 -1056.0542575539055,-0.04207342245157619 -1057.3067012776985,-2.0654263708374003 -1058.4487098847862,-4.179167190589286 -1059.4757431164412,-6.374832972975373 -1060.3836613249996,-8.643560198199772 -1061.1687254738617,-10.97620158029595 -1061.8278642115356,-13.363376143509937 -1062.3584067975926,-15.795469222300303 -1062.7582166396903,-18.262699229848852 -1063.0255577565508,-20.755100965932947 -1063.1596289260451,-23.26267584607462 -1063.1596289260451,-25.77530844090216 -1063.0255577565508,-28.282866628916153 -1062.7582166396903,-30.775268365000265 -1062.3584067975926,-33.242498372548816 -1061.8278642115356,-35.67460814346684 -1061.1687254738617,-38.06178270668083 -1060.3836613249996,-40.39440739664933 -1059.4757431164412,-42.663134621873745 -1058.4487098847862,-44.8588170963875 -1057.3067012776985,-46.972541224011735 -1056.0542575539055,-48.995894172397556 -1054.6964531202211,-50.92069679898366 -1053.238762994523,-52.73917057227291 -1051.687062805753,-54.44400434034347 -1050.047495256896,-56.028354330847904 -1048.3267371990225,-57.48581076675862 -1046.5318660942671,-58.81053140338897 -1044.6698258677432,-59.99717475988275 -1042.7483616666923,-61.04096688772437 -1040.7750851013348,-61.93766798648445 -1038.7580083929552,-62.68373932509523 -1036.7051437628381,-63.276109552064604 -1034.6247705063108,-63.712408385262414 -1032.5254349927434,-63.990899843410425 -1030.4154165174634,-64.11048224608197 -1028.3033949868623,-64.07058806093605 -1026.1976496962673,-63.87148436201551 -1024.1067270150486,-63.51387221868287 -1022.0390397755551,-62.999287306684074 -1020.0031343471569,-62.32973268134057 -1018.006889414117,-61.50794585159087 -1016.058584271763,-60.53719847445989 -1014.165830530315,-59.42142989207885 -1012.3365068740362,-58.165113594665044 -1010.5776907650612,-56.773323989032015 -1008.8967267395676,-55.251636245823725 -1007.3002916486257,-53.60622645228022 -1005.7947952692631,-51.84367130670573 -1004.3863803044648,-49.971115039745825 -1003.0806553091296,-47.996035724599324 -1001.8826946900715,-45.92644558255073 -1000.7977063911252,-43.770657293182865 -999.8296965229331,-41.537350762887044 -998.9828047331587,-39.235506356353284 -998.2603694473371,-36.87440489656935 -997.6651949429182,-34.46356089631066 -997.1998184233087,-32.012655789629335 -996.866109406808,-29.53160470036498 -996.6652697266093,-27.030356136612546 -996.598234141862,-24.51899214348839 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5446 \N 53 102 5446 12 \N 1 text 25 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 39.936853075994165 -0.00015711417866947592 \N \N \N \N \N \N \N \N \N \N 5471 \N 53 102 5471 13 \N 0 polygon 26 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -1372.7087042403803,-1266.274217727603 -1372.7891466998592,-1263.9850641443888 -1373.030159849938,-1261.705180297716 -1373.4306438913666,-1259.4436788099476 -1373.989027682358,-1257.2096723034463 -1374.7032687385893,-1255.0121162863963 -1375.5702247764875,-1252.859966266982 -1376.5865963983003,-1250.7618635250296 -1377.7481415212037,-1248.726292226188 -1379.0501467198378,-1246.7612651935688 -1380.4875843404848,-1244.8747952502845 -1382.0544840443554,-1243.074423876911 -1383.7447183784816,-1241.3676925540244 -1385.5512172048234,-1239.7610429629503 -1387.4670674995189,-1238.2612310133713 -1389.4840993252776,-1236.8742270440773 -1391.5946140873448,-1235.6056871654998 -1393.7898133917147,-1234.4604819171782 -1396.0610559585605,-1233.4434818386508 -1398.399072051341,-1232.5586147843842 -1400.7945919335145,-1231.809494380488 -1403.2377174118249,-1231.199262910536 -1405.7188645213732,-1230.7301199730286 -1408.2279779547248,-1230.4042651664683 -1410.7548452902658,-1230.2227982901052 -1413.289411220562,-1230.1863478006537 -1415.821463323999,-1230.2953850406504 -1418.3406320647855,-1230.5492815533803 -1420.8370192496648,-1230.9469375395927 -1423.3004124570236,-1231.4869389716798 -1425.7209134936054,-1232.1669291369612 -1428.0889383945118,-1232.9842370943998 -1430.394746080665,-1233.9357205604222 -1432.6290668155236,-1235.0172945663828 -1434.7829450909035,-1236.2248741436365 -1436.8478967411565,-1237.5532745242867 -1438.8152804864555,-1238.9974680546168 -1440.677397732046,-1240.5513272816577 -1442.4265498831735,-1242.2088818666207 -1444.0559810301545,-1243.9633758998227 -1445.5589352633067,-1245.8077392432238 -1446.9294422438409,-1247.7344304162475 -1448.161845861324,-1249.7357508241394 -1449.2512755762182,-1251.803687643787 -1450.1933321915203,-1253.9299138237209 -1450.9844020811213,-1256.1057880841145 -1451.62102873309,-1258.322669145141 -1452.1006983205677,-1260.5716014986158 -1452.4216825875897,-1262.8434725221764 -1452.5824103923685,-1265.1290124792813 -1452.5824103923685,-1267.4192658617462 -1452.4216825875897,-1269.7049629330297 -1452.1006983205677,-1271.9768339565903 -1451.62102873309,-1274.2257663100652 -1450.9844020811213,-1276.4426473710914 -1450.1933321915203,-1278.618521631485 -1449.2512755762182,-1280.744747811419 -1448.161845861324,-1282.8126846310668 -1446.9294422438409,-1284.8140050389586 -1445.5589352633067,-1286.7406962119824 -1444.0559810301545,-1288.5850595553834 -1442.4265498831735,-1290.3393964744066 -1440.677397732046,-1291.9969510593694 -1438.8152804864555,-1293.5509674005893 -1436.8478967411565,-1294.9951609309194 -1434.7829450909035,-1296.3235613115696 -1432.6290668155236,-1297.531140888823 -1430.394746080665,-1298.612714894784 -1428.0889383945118,-1299.5641983608064 -1425.7209134936054,-1300.3815063182449 -1423.3004124570236,-1301.0614964835263 -1420.8370192496648,-1301.6014979156132 -1418.3406320647855,-1301.9991539018258 -1415.821463323999,-1302.2530504145557 -1413.289411220562,-1302.3619305403736 -1410.7548452902658,-1302.325637165101 -1408.2279779547248,-1302.1441702887378 -1405.7188645213732,-1301.8181583679984 -1403.2377174118249,-1301.3491725446702 -1400.7945919335145,-1300.7389410747178 -1398.399072051341,-1299.989820670822 -1396.0610559585605,-1299.1049536165553 -1393.7898133917147,-1298.087953538028 -1391.5946140873448,-1296.9427482897058 -1389.4840993252776,-1295.6742084111288 -1387.4670674995189,-1294.2872044418345 -1385.5512172048234,-1292.7873924922558 -1383.7447183784816,-1291.1807429011817 -1382.0544840443554,-1289.4738544641164 -1380.4875843404848,-1287.6736402049216 -1379.0501467198378,-1285.7871702616371 -1377.7481415212037,-1283.8221432290181 -1376.5865963983003,-1281.7865719301765 -1375.5702247764875,-1279.6883120740456 -1374.7032687385893,-1277.536162054631 -1373.989027682358,-1275.3387631517598 -1373.4306438913666,-1273.1047566452585 -1373.030159849938,-1270.8432551574901 -1372.7891466998592,-1268.5633713108173 -1372.7087042403803,-1266.274217727603 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5471 \N 53 102 5471 13 \N 1 text 27 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 46.943278718427237 0 \N \N \N \N \N \N \N \N \N \N 5493 \N 53 102 5493 14 \N 0 polygon 28 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -2057.880675735745,-1423.0581122847507 -2057.975323265152,-1419.6133213878074 -2058.258536673639,-1416.182530741747 -2058.7292951095787,-1412.7793030896125 -2059.3857027056642,-1409.4173470103935 -2060.2251344148553,-1406.1105169190262 -2061.2442360103782,-1402.8717922147666 -2062.438778249778,-1399.7144439687643 -2063.8040943827605,-1396.6510140724351 -2065.3346426433513,-1393.6938985812485 -2067.0242979217896,-1390.8552018787802 -2068.86620592858,-1388.1460074969796 -2070.852783194494,-1385.5773989677953 -2072.9763004143574,-1383.159730643443 -2075.2281532673146,-1380.9027735323514 -2077.5991540887235,-1378.815569463216 -2080.079969377996,-1376.9064310849978 -2082.6602447829164,-1375.1830877028726 -2085.3299176231617,-1373.6526852782283 -2088.0781960386776,-1372.3210572489331 -2090.8938506615673,-1371.1938912169073 -2093.7657979598825,-1370.275416424606 -2096.682225221941,-1369.56957044259 -2099.6314655720057,-1369.0791241538461 -2102.601560462448,-1368.8059734256815 -2105.580843017533,-1368.7512849456698 -2108.5570630177367,-1368.915204549758 -2111.518261915431,-1369.2972947301057 -2114.452626998933,-1369.8958054553523 -2117.348199720613,-1370.7082575144045 -2120.193313204736,-1371.7315883523816 -2122.9767380834055,-1372.9617145627753 -2125.6870991527803,-1374.3933860515053 -2128.3134587168565,-1376.021061052597 -2130.8451707515264,-1377.8381769484488 -2133.2723184124143,-1379.8374419417257 -2135.5848390191973,-1382.0105433834663 -2137.7736907431813,-1384.3490227887617 -2139.82983175567,-1386.8434008210768 -2141.7450952436493,-1389.4836148000898 -2143.511606065997,-1392.259018701691 -2145.122509933218,-1395.1583831579853 -2146.571244227712,-1398.1701871291837 -2147.8518296756633,-1401.2821803957631 -2148.959162018938,-1404.4818210663077 -2149.8888661791348,-1407.7562755775082 -2150.637296257587,-1411.0922728582152 -2151.20109802752,-1414.476541837279 -2151.5783756216265,-1417.89537393571 -2151.7672331726,-1421.3349147385723 -2151.7672331726,-1424.781455666876 -2151.5783756216265,-1428.220996469738 -2151.20109802752,-1431.6398285681692 -2150.637296257587,-1435.024097547233 -2149.8888661791348,-1438.3600948279397 -2148.959162018938,-1441.6345493391402 -2147.8518296756633,-1444.8341900096848 -2146.571244227712,-1447.9461832762645 -2145.122509933218,-1450.957841411516 -2143.511606065997,-1453.8573517037569 -2141.7450952436493,-1456.6327556053584 -2139.82983175567,-1459.2728237484246 -2137.7736907431813,-1461.7672017807397 -2135.5848390191973,-1464.105681186035 -2133.2723184124143,-1466.2789284637224 -2130.8451707515264,-1468.2781934569994 -2128.3134587168565,-1470.095309352851 -2125.6870991527803,-1471.7229843539426 -2122.9767380834055,-1473.1546558426726 -2120.193313204736,-1474.3846362171198 -2117.348199720613,-1475.4079670550968 -2114.452626998933,-1476.2205649500956 -2111.518261915431,-1476.8190756753424 -2108.5570630177367,-1477.2010200197433 -2105.580843017533,-1477.3650854597781 -2102.601560462448,-1477.3103969797667 -2099.6314655720057,-1477.037246251602 -2096.682225221941,-1476.5467999628581 -2093.7657979598825,-1475.840953980842 -2090.8938506615673,-1474.9224791885406 -2088.0781960386776,-1473.7951673205682 -2085.3299176231617,-1472.4636851272196 -2082.6602447829164,-1470.9331368666287 -2080.079969377996,-1469.20993932045 -2077.5991540887235,-1467.3008009422324 -2075.2281532673146,-1465.2135968730968 -2072.9763004143574,-1462.9566397620051 -2070.852783194494,-1460.538971437653 -2068.86620592858,-1457.9703629084686 -2067.0242979217896,-1455.2611685266677 -2065.3346426433513,-1452.4223259882529 -2063.8040943827605,-1449.465356333013 -2062.438778249778,-1446.4019264366839 -2061.2442360103782,-1443.2445781906815 -2060.2251344148553,-1440.0058534864218 -2059.3857027056642,-1436.6988775591078 -2058.7292951095787,-1433.3370673158354 -2058.258536673639,-1429.933839663701 -2057.975323265152,-1426.502903181694 -2057.880675735745,-1423.0581122847507 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5493 \N 53 102 5493 14 \N 1 text 29 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 41.02980856033453 5.5743652130182942e-05 \N \N \N \N \N \N \N \N \N \N 5515 \N 53 102 5515 15 \N 0 polygon 30 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 1266.3766187479814,1298.0476255521794 1266.2940066555245,1300.4537445527267 1266.0463933527624,1302.8502756451073 1265.6350052000414,1305.227407946547 1265.0611800450133,1307.575665036183 1264.3274820956758,1309.8855704931536 1263.43681002194,1312.147870871205 1262.3927314175417,1314.3533127240835 1261.1993713127385,1316.4930885547526 1259.8616351489184,1318.5586138407846 1258.3848743166857,1320.5415270343592 1256.774997643166,1322.4338010495705 1255.0385828793108,1324.2279662370324 1253.1826537252884,1325.9167759219686 1251.2144568558758,1327.4932064042102 1249.142130844284,1328.9512373693274 1246.9739257510287,1330.2847370155855 1244.7185375858414,1331.4884654396847 1242.385108307672,1332.557405712933 1239.9831143373824,1333.4875442923774 1237.522143583139,1334.2749791223682 1235.0120069277168,1334.9164770710825 1232.4630726904122,1335.4094739305217 1229.885263241304,1335.7520744165138 1227.2892813616013,1335.9429406814074 1224.6853838832963,1335.9810693394645 1222.0840506129891,1335.8665718779891 1219.4958728445847,1335.5996712715898 1216.9312188973793,1335.1817053679179 1214.4003456033647,1334.6141235019284 1211.913509794533,1333.8992669070108 1209.4808568155718,1333.0401457403805 1207.1118630873434,1332.0399931338607 1204.8163394926223,1330.9030456050134 1202.6035394776627,1329.6338741333134 1200.4821590521965,1328.2373841601482 1198.4608942259558,1326.7193730253389 1196.5478835721524,1325.0859725306204 1194.7507082274751,1323.3436489396393 1193.0767263540058,1321.4994259525645 1191.5326271899999,1319.5608847060853 1190.1246540244956,1317.5356063368913 1188.8584927100105,1315.4319523928025 1187.739271662541,1313.2581729343337 1186.7713388869522,1311.0232984331305 1185.9587079261985,1308.7360248989248 1185.3046676557549,1306.405828752579 1184.8118380272722,1304.0418519530422 1184.4821700685743,1301.6537938957852 1184.3170016273125,1299.2512424889742 1184.3170016273125,1296.8438971280802 1184.4821700685743,1294.4413457212693 1184.8118380272722,1292.0532876640123 1185.3046676557549,1289.6894223517797 1185.9587079261985,1287.3591147181296 1186.7713388869522,1285.0719526712282 1187.739271662541,1282.8369666827207 1188.8584927100105,1280.6632987115563 1190.1246540244956,1278.5595332801631 1191.5326271899999,1276.5342549109691 1193.0767263540058,1274.59571366449 1194.7507082274751,1272.7514906774152 1196.5478835721524,1271.009167086434 1198.4608942259558,1269.3757665917155 1200.4821590521965,1267.8577554569063 1202.6035394776627,1266.461265483741 1204.8163394926223,1265.192094012041 1207.1118630873434,1264.0551464831938 1209.4808568155718,1263.054993876674 1211.913509794533,1262.1958727100437 1214.4003456033647,1261.481016115126 1216.9312188973793,1260.913545736441 1219.4958728445847,1260.4954683454646 1222.0840506129891,1260.2285677390653 1224.6853838832963,1260.11407027759 1227.2892813616013,1260.1523104229511 1229.885263241304,1260.3430652005407 1232.4630726904122,1260.6856656865327 1235.0120069277168,1261.178662545972 1237.522143583139,1261.8202719819906 1239.9831143373824,1262.607595324677 1242.385108307672,1263.5377339041215 1244.7185375858414,1264.6067856646741 1246.9739257510287,1265.8105140887733 1249.142130844284,1267.1440137350314 1251.2144568558758,1268.6019332128442 1253.1826537252884,1270.17847518239 1255.0385828793108,1271.867173380022 1256.774997643166,1273.6613385674839 1258.3848743166857,1275.5537240699994 1259.8616351489184,1277.5366372635742 1261.1993713127385,1279.602162549606 1262.3927314175417,1281.7419383802753 1263.43681002194,1283.9473802331538 1264.3274820956758,1286.2095691239008 1265.0611800450133,1288.5194745808715 1265.6350052000414,1290.8677316705075 1266.0463933527624,1293.244863971947 1266.2940066555245,1295.6413950643278 1266.3766187479814,1298.0476255521794 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5515 \N 53 102 5515 15 \N 1 text 31 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 31.010909661511679 -8.1271620241547948e-07 \N \N \N \N \N \N \N \N \N \N 5539 \N 53 102 5539 16 \N 0 polygon 32 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 1308.0332886464382,295.5039899908907 1307.9708720420927,297.10810972602957 1307.7837262567302,298.70579599971006 1307.4727875394155,300.2905763400962 1307.0390961668882,301.8560758012962 1306.4845246372784,303.39600395990345 1305.811361559412,304.9041516641314 1305.022207625137,306.37443654592124 1304.1202876923444,307.8009712891027 1303.1092427296212,309.17799292308433 1301.9930257885756,310.4999375927445 1300.7763181145338,311.7615006994299 1299.4639049804955,312.95761739576744 1298.0610917978302,314.0834178862718 1296.5734960609288,315.1344224792355 1295.0072554025523,316.1064115521355 1293.368403427787,316.99541254817456 1291.6638059631111,317.79788202470996 1289.9002248073289,318.51058212039135 1288.084733842266,319.1306325689974 1286.2247190327696,319.65554970981356 1284.327566343688,320.08324648763187 1282.40097382289,320.41194142853686 1280.4526395182447,320.6403536917933 1278.4904695329699,320.7675210214176 1276.522473997956,320.79300780152545 1274.5563509610724,320.7166384854168 1272.6001105532102,320.5387316578433 1270.6617629052605,320.2600480211702 1268.7489020374185,319.8816603607848 1266.8693300252273,319.40512259006607 1265.0306408888825,318.83234621752206 1263.2402205932317,318.16563285543816 1261.5052470477742,317.40767421987664 1259.8326901066625,316.5615131202993 1258.2293115687003,315.630536957838 1256.701665177344,314.61856224777904 1255.2556805100064,313.5295745503793 1253.8973911717742,312.36803405215744 1252.6322066016908,311.13859599152113 1251.4652241557776,309.84618867952156 1250.4010210516865,308.49601918886765 1249.444070479396,307.0935440961425 1248.5980134074925,305.64440608993954 1247.8664908045632,304.1544307199976 1247.2523114178034,302.6296223336201 1246.7579719113871,301.0761218144325 1246.3854488111183,299.5001968297879 1246.136302532106,297.9081605591466 1246.0114693234148,296.3064594674262 1246.0114693234148,294.7015205143553 1246.136302532106,293.09981617177004 1246.3854488111183,291.5077831519936 1246.7579719113871,289.93185491648416 1247.2523114178034,288.3783576481614 1247.8664908045632,286.8535460109191 1248.5980134074925,285.36357389184195 1249.444070479396,283.91443588563897 1250.4010210516865,282.511957542049 1251.4652241557776,281.1617929276923 1252.6322066016908,279.869382364828 1253.8973911717742,278.63994755505644 1255.2556805100064,277.47840380596983 1256.701665177344,276.38941610857 1258.2293115687003,275.377441398511 1259.8326901066625,274.4464652360497 1261.5052470477742,273.60030738733724 1263.2402205932317,272.8423455009109 1265.0306408888825,272.1756353896918 1266.8693300252273,271.6028590171478 1268.7489020374185,271.1263179955642 1270.6617629052605,270.7479335860437 1272.6001105532102,270.4692499493706 1274.5563509610724,270.29134312179707 1276.522473997956,270.21497380568843 1278.4904695329699,270.24046058579626 1280.4526395182447,270.3676279154206 1282.40097382289,270.5960369278122 1284.327566343688,270.9247318687172 1286.2247190327696,271.3524286465355 1288.084733842266,271.8773490382165 1289.9002248073289,272.49739623595764 1291.6638059631111,273.2100963316391 1293.368403427787,274.0125658081745 1295.0072554025523,274.90157005507837 1296.5734960609288,275.87355587711363 1298.0610917978302,276.9245604700772 1299.4639049804955,278.05036421144644 1300.7763181145338,279.24648090778396 1301.9930257885756,280.50804401446936 1303.1092427296212,281.8299854332647 1304.1202876923444,283.207005441814 1305.022207625137,284.6335434358602 1305.811361559412,286.10382831765 1306.4845246372784,287.61197602187804 1307.0390961668882,289.15190418048525 1307.4727875394155,290.7174036416853 1307.7837262567302,292.3021839820714 1307.9708720420927,293.8998670048871 1308.0332886464382,295.5039899908907 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5539 \N 53 102 5539 16 \N 1 text 33 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 21.946196540672158 5.89750180467209e-05 \N \N \N \N \N \N \N \N \N \N 5561 \N 53 102 5561 17 \N 0 polygon 34 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -86.83017395215111,-1030.8098489907804 -86.87437572817721,-1029.0089878397057 -87.00677464369208,-1027.2154395908688 -87.22689889855147,-1025.4362812464353 -87.53377540495757,-1023.678825708643 -87.92622466254943,-1021.9500320296215 -88.40265434583986,-1020.2568592615002 -88.96111827923338,-1018.6062664564084 -89.59940489955297,-1017.0047408663318 -90.31494879351378,-1015.4588876932911 -91.10483069772265,-1013.9748403391634 -91.96592493622272,-1012.5584963057534 -92.89469300793155,-1011.2157530948656 -93.88744897422104,-1009.9518005080882 -94.94018253386403,-1008.7719462970456 -96.04864748556116,-1007.6807905131452 -97.20839121544994,-1006.6826973077225 -98.41472520959562,-1005.7817949320407 -99.6628430040274,-1004.9817398372189 -100.94764325968424,-1004.2855987241954 -102.26399514999608,-1003.6963203438727 -103.6065909233387,-1003.2161457469363 -104.97003436556083,-1002.847198034036 -106.34881131247512,-1002.5907746555687 -107.73737811238517,-1002.4479371618596 -109.13019111359458,-1002.419393253125 -110.52155922686184,-1002.505142929365 -111.90596828799958,-1002.7048323404711 -113.27772720776633,-1003.0176358361908 -114.63146925951978,-1003.4424918661995 -115.96159181654552,-1003.9775132299194 -117.26281661472837,-1004.6204588766647 -118.52992436497118,-1005.3689698057136 -119.75775475319489,-1006.2198613660918 -120.9413833653926,-1007.1698309567882 -122.0760627126115,-1008.2149862266123 -123.15722223095301,-1009.3510809742644 -124.18046828157264,-1010.573633098373 -125.14173158822524,-1011.8775707473859 -126.03711979971959,-1013.2578220697513 -126.86300595244583,-1014.7087254637368 -127.61608744539348,-1016.2245013775736 -128.293356552642,-1017.799016409385 -128.89204144834326,-1019.4257833071857 -129.40975364426632,-1021.0985507190629 -129.84439952727072,-1022.810359592887 -130.1942393343239,-1024.5543688265648 -130.45785766499276,-1026.3236193679663 -130.63419296895236,-1028.110798314854 -130.72256703349544,-1029.9089466150986 -130.72256703349544,-1031.710751366462 -130.63419296895236,-1033.5088996667066 -130.45785766499276,-1035.2961965636305 -130.1942393343239,-1037.065447105032 -129.84439952727072,-1038.8094563387099 -129.40975364426632,-1040.521265212534 -128.89204144834326,-1042.193914674375 -128.293356552642,-1043.820799522212 -127.61608744539348,-1045.3953145540231 -126.86300595244583,-1046.910972517824 -126.03711979971959,-1048.3618759118092 -125.14173158822524,-1049.7421272341749 -124.18046828157264,-1051.0461828332238 -123.15722223095301,-1052.2687349573323 -122.0760627126115,-1053.4048297049844 -120.9413833653926,-1054.4498670247724 -119.75775475319489,-1055.399836615469 -118.52992436497118,-1056.250728175847 -117.26281661472837,-1056.9992391048959 -115.96159181654552,-1057.6423027016774 -114.63146925951978,-1058.1773240653974 -113.27772720776633,-1058.6020621453697 -111.90596828799958,-1058.9149835911257 -110.52155922686184,-1059.114673002232 -109.13019111359458,-1059.2004226784718 -107.73737811238517,-1059.1717608197011 -106.34881131247512,-1059.0290412760282 -104.97003436556083,-1058.7726178975608 -103.6065909233387,-1058.4035522346246 -102.26399514999608,-1057.9233776376882 -100.94764325968424,-1057.3340992573653 -99.6628430040274,-1056.6380760943778 -98.41472520959562,-1055.83790304952 -97.20839121544994,-1054.9370006738384 -96.04864748556116,-1053.9390254184516 -94.94018253386403,-1052.8478696345512 -93.88744897422104,-1051.6678974734723 -92.89469300793155,-1050.4040628367313 -91.96592493622272,-1049.0612016758073 -91.10483069772265,-1047.6449755924334 -90.31494879351378,-1046.1608102882697 -89.59940489955297,-1044.614957115229 -88.96111827923338,-1043.0135494751883 -88.40265434583986,-1041.3628387200606 -87.92622466254943,-1039.6697839019753 -87.53377540495757,-1037.9409902229538 -87.22689889855147,-1036.1835346851615 -87.00677464369208,-1034.404376340728 -86.87437572817721,-1032.610710141855 -86.83017395215111,-1030.8098489907804 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5561 \N 53 102 5561 17 \N 1 text 35 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 25.524368882845664 0 \N \N \N \N \N \N \N \N \N \N 5583 \N 53 102 5583 18 \N 0 polygon 36 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 471.6783641508058,575.8701158327201 471.62694116418186,577.5801688388315 471.47296773871597,579.28335635336 471.2169894763882,580.972790151307 470.860074847743,582.6416956747529 470.4036333245623,584.2832983657783 469.84952904694455,585.891028267206 469.19998988964204,587.4584290889385 468.4576301954759,588.9791582079571 467.6254280419208,590.4471003354015 466.7067479745208,591.8563447831541 465.70527280664135,593.2012309306714 464.6250718197175,594.4763027581523 463.4704416293423,595.6765134472812 462.2460653191785,596.7969298468212 460.9568760404626,597.8330734738524 459.60805701200536,598.7807613798609 458.20501878677646,599.6362425512332 456.75344471873484,600.3960160419308 455.259154562335,601.0570128408153 453.7281726727739,601.6165958716498 452.16668253915907,602.0725145262663 450.5809358508459,602.4229273979821 448.9773434311005,602.6664022815993 447.3623615700206,602.8019843736528 445.7424920245357,602.8291280721626 444.124259284991,602.7477197100493 442.51416510831615,602.5581230219664 440.9186885180246,602.2610200103891 439.34427443750633,601.8576382797725 437.797254123072,601.3496146360569 436.28386789736885,600.7390405534994 434.8101855824255,600.028280307347 433.3821633331914,599.2202665082428 432.0055413371653,598.3182273012358 430.68586654781154,597.3258000328595 429.42845858443616,596.2469630508859 428.23835289864695,595.0860811711555 427.1203689746015,593.847814743915 426.0790080286356,592.5371878540647 425.1184416425554,591.1594291872467 424.24256859717684,589.7201084303414 423.4548898385392,588.2249998709714 422.7585880448593,586.6801960645812 422.1564594262853,585.0918123000308 421.6509364583119,583.4663276008341 421.2440651483643,581.8102437239205 420.9374709356749,580.13022156013 420.73237005799103,578.4330584007985 420.6296263851144,576.7255742706767 420.6296263851144,575.0146801281793 420.73237005799103,573.3071732646417 420.9374709356749,571.6100328387259 421.2440651483643,569.9300106749356 421.6509364583119,568.2739267980219 422.1564594262853,566.6484193654094 422.7585880448593,565.0600583342749 423.4548898385392,563.5152317944688 424.24256859717684,562.0201232350988 425.1184416425554,560.5808024781935 426.0790080286356,559.2030665447915 427.1203689746015,557.8924169215252 428.23835289864695,556.6541504942847 429.42845858443616,555.4932913479702 430.68586654781154,554.4144316325807 432.0055413371653,553.4220043642044 433.3821633331914,552.5199878906132 434.8101855824255,551.7119513580932 436.28386789736885,551.0011911119408 437.797254123072,550.3906170293833 439.34427443750633,549.8825933856677 440.9186885180246,549.4792116550511 442.51416510831615,549.1821313768897 444.124259284991,548.9925119553909 445.7424920245357,548.9111035932776 447.3623615700206,548.9382472917874 448.9773434311005,549.0738293838409 450.5809358508459,549.3173042674581 452.16668253915907,549.6677171391739 453.7281726727739,550.1236357937904 455.259154562335,550.6832188246249 456.75344471873484,551.3442156235094 458.20501878677646,552.103989114207 459.60805701200536,552.9594702855793 460.9568760404626,553.9071581915878 462.2460653191785,554.9433245520348 463.4704416293423,556.0637409515749 464.6250718197175,557.2639289072879 465.70527280664135,558.5390007347688 466.7067479745208,559.8838868822861 467.6254280419208,561.2931313300387 468.4576301954759,562.7610961908989 469.19998988964204,564.2818253099175 469.84952904694455,565.8492033982342 470.4036333245623,567.456933299662 470.860074847743,569.0985587241032 471.2169894763882,570.7674415141332 471.47296773871597,572.4568753120802 471.62694116418186,574.1600628266087 471.6783641508058,575.8701158327201 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5583 \N 53 102 5583 18 \N 1 text 37 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 28.148323450460762 0 \N \N \N \N \N \N \N \N \N \N 5605 \N 53 102 5605 19 \N 0 polygon 38 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -1004.9299267164035,-1293.8263211648175 -1004.9866204956413,-1290.5273225656706 -1005.1564259512171,-1287.2414283680507 -1005.4386533777873,-1283.9822947377595 -1005.8323371878712,-1280.7626122531178 -1006.3356841475755,-1277.5956232567216 -1006.9467630819383,-1274.4938803858226 -1007.6630910517229,-1271.4700742187422 -1008.4817712944866,-1268.5363435695258 -1009.3994932245804,-1265.704275487945 -1010.4126703742181,-1262.9855949648397 -1011.5170265702696,-1260.391061403569 -1012.7082856396054,-1257.9311583253539 -1013.9816196448206,-1255.615817487142 -1015.3317868253043,-1253.4542809405357 -1016.753545420446,-1251.4553769139327 -1018.2411019053599,-1249.6269680482492 -1019.788386873023,-1247.9766411022633 -1021.3891929753436,-1246.5108793062047 -1023.0370369820926,-1245.235614126028 -1024.7254356630408,-1244.1560873223432 -1026.447491964753,-1243.2765750682806 -1028.1961708927254,-1242.6005258905577 -1029.9647133345911,-1242.1308365516174 -1031.7456704726405,-1241.8691623442842 -1033.5320073123692,-1241.816882679245 -1035.3166888592734,-1241.9738596154314 -1037.0922662956432,-1242.3396793296367 -1038.8518425680431,-1242.9129624111745 -1040.5879688587634,-1243.691087979739 -1042.2941619375745,-1244.6711592728873 -1043.9631109278353,-1245.8491759996275 -1045.5883325993168,-1247.2203102225542 -1047.163067839652,-1248.7791822399886 -1048.6812472418185,-1250.519308821701 -1050.1365255166554,-1252.4339308553256 -1051.523247080346,-1254.5151856999455 -1052.8357563490733,-1256.7547968914384 -1054.0686736211578,-1259.1436603192703 -1055.2170330181264,-1261.6721201086316 -1056.2762824847116,-1264.3301065615067 -1057.242283788852,-1267.1068602745368 -1058.110898698487,-1269.9912080211566 -1058.8788166279674,-1272.971562751595 -1059.5428649327127,-1276.0357856518062 -1060.1002847913494,-1279.171737907744 -1060.5490070878466,-1282.3665910000186 -1060.8871006472423,-1285.6076543503095 -1061.1133239999183,-1288.8818235570895 -1061.2265736173251,-1292.1759942188319 -1061.2265736173251,-1295.4766481108031 -1061.1133239999183,-1298.7706808314767 -1060.8871006472423,-1302.0449879793255 -1060.5490070878466,-1305.2860513296164 -1060.1002847913494,-1308.480904421891 -1059.5428649327127,-1311.6168566778288 -1058.8788166279674,-1314.68107957804 -1058.110898698487,-1317.6614343084784 -1057.242283788852,-1320.5457820550982 -1056.2762824847116,-1323.3225357681283 -1055.2170330181264,-1325.9805222210034 -1054.0686736211578,-1328.5089820103647 -1052.8357563490733,-1330.8978454381966 -1051.523247080346,-1333.1374566296895 -1050.1365255166554,-1335.2187114743094 -1048.6812472418185,-1337.133333507934 -1047.163067839652,-1338.8734600896464 -1045.5883325993168,-1340.4323321070808 -1043.9631109278353,-1341.8034663300075 -1042.2941619375745,-1342.9814830567477 -1040.5879688587634,-1343.961554349896 -1038.8518425680431,-1344.7396799184605 -1037.0922662956432,-1345.3128250589295 -1035.3166888592734,-1345.6787827142036 -1033.5320073123692,-1345.83575965039 -1031.7456704726405,-1345.783342044282 -1029.9647133345911,-1345.5218057780176 -1028.1961708927254,-1345.0521164390773 -1026.447491964753,-1344.3760672613544 -1024.7254356630408,-1343.4965550072918 -1023.0370369820926,-1342.417028203607 -1021.3891929753436,-1341.1417630234303 -1019.788386873023,-1339.6760012273717 -1018.2411019053599,-1338.0256742813858 -1016.753545420446,-1336.1972654157023 -1015.3317868253043,-1334.1983613890993 -1013.9816196448206,-1332.036824842493 -1012.7082856396054,-1329.7214840042811 -1011.5170265702696,-1327.261580926066 -1010.4126703742181,-1324.6670473647953 -1009.3994932245804,-1321.9482289006212 -1008.4817712944866,-1319.1162987601092 -1007.6630910517229,-1316.1825681108928 -1006.9467630819383,-1313.1587619438124 -1006.3356841475755,-1310.0570190729134 -1005.8323371878712,-1306.8900300765172 -1005.4386533777873,-1303.6703475918755 -1005.1564259512171,-1300.4112139615843 -1004.9866204956413,-1297.1253197639644 -1004.9299267164035,-1293.8263211648175 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5605 \N 53 102 5605 19 \N 1 text 39 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 26.717090661860524 0 \N \N \N \N \N \N \N \N \N \N 5628 \N 53 102 5628 20 \N 0 polygon 40 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 14.65252549908881,322.7142095449635 14.598734843402244,324.7118075651029 14.43752183218021,326.70136241982345 14.169617662279457,328.6748547870819 13.79600785989739,330.62436071833827 13.318234296665658,332.5419960040119 12.738236233811797,334.4200671815282 12.058366217742872,336.25100000519143 11.281294706542656,338.0274348196874 10.410200816977426,339.7421947689161 9.448613368657949,341.38838911728635 8.400347301703754,342.95942119750816 7.2696467369980375,344.448900984881 6.061073707100373,345.85085173988415 4.779492260663357,347.159662321425 3.4300684624323363,348.3700474478794 2.018206810910092,349.47709538384345 0.5496138206922332,350.47640305259574 -0.9698132466196512,351.3639170802592 -2.5339069044988136,352.13606890826344 -4.136436084083231,352.78975889776143 -5.770899491585672,353.32234043404526 -7.430748146467472,353.7316517177135 -9.109290007935442,354.0160793470073 -10.79970587052574,354.1744708920991 -12.495271902277539,354.20618258184356 -14.189137106559336,354.11108725156987 -15.87448227790731,353.8895504997064 -17.544504106441437,353.5425022179072 -19.192494655784724,353.07132532196573 -20.811777780727823,352.47789549077396 -22.39589987423504,351.7646129574906 -23.938439120438314,350.9343627705812 -25.433196241643273,349.99048300265025 -26.874162707161513,348.93676475044185 -28.255488942142907,347.7774680304226 -29.57167507458167,346.5172423008636 -30.817380188310338,345.1611979919668 -31.987613070005867,343.71473960223454 -33.07763683568601,342.18372465430934 -34.083064304213536,340.5742967913419 -34.999889788462774,338.8929652549115 -35.8243619306494,337.1464856681465 -36.553206240504,335.34189977468446 -37.183466139434,333.48645596075266 -37.71259833402624,331.5876489941278 -38.1385046072148,329.65310080725715 -38.45943644477845,327.69061613180213 -38.67412220001034,325.70809507292716 -38.78167172021621,323.7135172137158 -38.78167172021621,321.71490982400314 -38.67412220001034,319.72032799089584 -38.45943644477845,317.7378069320209 -38.1385046072148,315.7753262304618 -37.71259833402624,313.8407780435912 -37.183466139434,311.94196710307034 -36.553206240504,310.0865272630345 -35.8243619306494,308.28194136957245 -34.999889788462774,306.5354617828075 -34.083064304213536,304.854126272481 -33.07763683568601,303.2447182789934 -31.987613070005867,301.71370333106825 -30.817380188310338,300.2672449413361 -29.57167507458167,298.91116884127155 -28.255488942142907,297.65094311171254 -26.874162707161513,296.4916463916933 -25.433196241643273,295.4379321133808 -23.938439120438314,294.4940523454498 -22.39589987423504,293.6637981846446 -20.811777780727823,292.9505275730491 -19.192494655784724,292.35710171575323 -17.544504106441437,291.88592084591573 -15.87448227790731,291.53886064242874 -14.189137106559336,291.31733978614903 -12.495271902277539,291.22224048197955 -10.79970587052574,291.25396011951585 -9.109290007935442,291.4123357690237 -7.430748146467472,291.6967713461096 -5.770899491585672,292.10610249925764 -4.136436084083231,292.6386681399575 -2.5339069044988136,293.29235812945547 -0.9698132466196512,294.0645059835637 0.5496138206922332,294.95201206343523 2.018206810910092,295.9513157582917 3.4300684624323363,297.05837561594365 4.779492260663357,298.26874882071013 6.061073707100373,299.57755542835514 7.2696467369980375,300.9795220789421 8.400347301703754,302.4690177618987 9.448613368657949,304.0400220248488 10.410200816977426,305.6862322688029 11.281294706542656,307.40099221803155 12.058366217742872,309.17742703252753 12.738236233811797,311.0083558822948 13.318234296665658,312.88642705981107 13.79600785989739,314.80407029327665 14.169617662279457,316.75357225063703 14.43752183218021,318.72706461789556 14.598734843402244,320.71661947261606 14.65252549908881,322.7142095449635 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5628 \N 53 102 5628 20 \N 1 text 41 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 23.377453603636987 -1.6408385614944154e-05 \N \N \N \N \N \N \N \N \N \N 5651 \N 53 102 5651 21 \N 0 polygon 42 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 1090.1969681829676,-92.53992819906844 1090.1499089330239,-89.51323738853583 1090.0088624502778,-86.49878723367199 1089.7744194366114,-83.50865430628947 1089.4474987616195,-80.55484954465845 1089.029478729693,-77.6493182535066 1088.5219345458515,-74.803776020163 1087.9270977505387,-72.02964308101556 1087.2471342506553,-69.33807713828267 1086.48493192207,-66.73994054324115 1085.6435099077357,-64.24570184591354 1084.7262811518603,-61.86537016152474 1083.7369211328216,-59.60859362081664 1082.6794334967096,-57.4843968358772 1081.5580844237843,-55.50134498399749 1080.3772713613905,-53.667445357357515 1079.1419168252125,-51.9900817294844 1077.8568776973927,-50.47598153847979 1076.5274046613274,-49.131281520563796 1075.158814033956,-47.961330809447105 1073.7566190328455,-46.97092065372897 1072.326464142647,-46.16398906595741 1070.874125115097,-45.54378490648363 1069.4053777019321,-45.11283506669281 1067.9262601890587,-44.872878835459815 1066.4426139617553,-44.82480226560811 1064.9604773059286,-44.96890070807856 1063.4858228739424,-45.30455064421773 1062.024557684618,-45.83037376963431 1060.5825887567767,-46.54430262774053 1059.165691842155,-47.44344934266819 1057.779577058947,-48.524138436039664 1056.4298232582616,-49.782103727594915 1055.1219436576657,-51.21222580102231 1053.8611233070135,-52.80876172135627 1052.6524159890741,-54.565279401436186 1051.500809853075,-56.47472323544714 1050.4107679799029,-58.52938128215052 1049.386819083988,-60.7209837151961 1048.433098078505,-63.04067000635194 1047.5532804418317,-65.47918582613121 1046.7511072858883,-68.02665332639386 1046.0296633871703,-70.67286649128707 1045.3919678886311,-73.40706141984766 1044.8404492313418,-76.21834294402733 1044.3774702228304,-79.09532364420917 1044.004802968744,-82.02645201692035 1043.7239570405584,-84.9999468412893 1043.536179475581,-88.00373154550343 1043.4420609756937,-91.02582800806385 1043.4420609756937,-94.05399557330179 1043.536179475581,-97.07609203586222 1043.7239570405584,-100.07990955684758 1044.004802968744,-103.05340438121652 1044.3774702228304,-105.98449993715647 1044.8404492313418,-108.86151345410954 1045.3919678886311,-111.67276216151798 1046.0296633871703,-114.40698990684974 1046.7511072858883,-117.05317025497179 1047.5532804418317,-119.60063775523443 1048.433098078505,-122.0391535750137 1049.386819083988,-124.35887268294071 1050.4107679799029,-126.55047511598647 1051.500809853075,-128.60513316268967 1052.6524159890741,-130.51454417992946 1053.8611233070135,-132.27109467678054 1055.1219436576657,-133.86763059711467 1056.4298232582616,-135.29771985377073 1057.779577058947,-136.55571796209713 1059.165691842155,-137.63640705546862 1060.5825887567767,-138.53555377039646 1062.024557684618,-139.24944981173132 1063.4858228739424,-139.7753057539191 1064.9604773059286,-140.11095569005843 1066.4426139617553,-140.25502131575752 1067.9262601890587,-140.206977562677 1069.4053777019321,-139.96698851467283 1070.874125115097,-139.536038674882 1072.326464142647,-138.91583451540822 1073.7566190328455,-138.10893574440786 1075.158814033956,-137.11849277191854 1076.5274046613274,-135.948574877573 1077.8568776973927,-134.60384204288584 1079.1419168252125,-133.08977466865258 1080.3772713613905,-131.4124110407793 1081.5580844237843,-129.5785114141395 1082.6794334967096,-127.5954595622598 1083.7369211328216,-125.47126277732035 1084.7262811518603,-123.21445341984091 1085.6435099077357,-120.83415455222345 1086.48493192207,-118.33991585489565 1087.2471342506553,-115.74177925985416 1087.9270977505387,-113.05021331712123 1088.5219345458515,-110.27608037797387 1089.029478729693,-107.43050532785904 1089.4474987616195,-104.52497403670719 1089.7744194366114,-101.5712020918474 1090.0088624502778,-98.58103634769365 1090.1499089330239,-95.56658619282982 1090.1969681829676,-92.53992819906844 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5651 \N 53 102 5651 21 \N 1 text 43 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 46.039258323208927 4.8732406008883937e-05 \N \N \N \N \N \N \N \N \N \N 5676 \N 53 102 5676 22 \N 0 polygon 44 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 1390.041088074716,-1200.609043816717 1389.948399038487,-1197.6732087491177 1389.6706243242363,-1194.7491669237727 1389.2089335097082,-1191.848711582936 1388.565178426331,-1188.9836359688618 1387.7418931592167,-1186.165245999744 1386.7423915119746,-1183.4050425234009 1385.570767006709,-1180.7141365284022 1384.2317954192088,-1178.1033466088822 1382.7307398493233,-1175.5831014997268 1381.0736431153973,-1173.1636350061979 1379.2672302894598,-1170.8547910743087 1377.3188112324126,-1168.6656339315778 1375.2361831292171,-1166.6052278055222 1373.0277279537065,-1164.6816622755396 1370.7024124685865,-1162.9028319914034 1368.2694958309992,-1161.2757544195788 1365.7387245221457,-1159.807057167283 1363.1204298121004,-1158.502685588049 1360.4251379005611,-1157.3679027817261 1357.6636673816618,-1156.407192129667 1354.8471292439722,-1155.6244522243524 1351.9869268704988,-1155.0228019397666 1349.0944636442475,-1154.6047753610223 1346.1814353426605,-1154.3720293899241 1343.2596352079918,-1154.3254412097797 1340.3407590176837,-1154.465205750213 1337.4365025491782,-1154.7907382223525 1334.5587565095416,-1155.3008690484533 1331.71892428178,-1155.9933565378396 1328.9285067137112,-1156.8654716757746 1326.1987122587177,-1157.9138031938376 1323.540651905369,-1159.1339651754884 1320.9648518533636,-1160.521181844937 1318.4817408375868,-1162.0698977078994 1316.1013577336769,-1163.773680086782 1313.8333515580234,-1165.6258039095555 1311.686689073332,-1167.6188618505068 1309.6701421126845,-1169.7446668654266 1307.791800255478,-1171.9948369804808 1306.0592657570503,-1174.3602105033399 1304.479361154242,-1176.8312358824264 1303.0586165894592,-1179.3979717069142 1301.8026850217984,-1182.0501841715418 1300.7166346214842,-1184.777152146987 1299.804753840246,-1187.5678621094917 1299.0708438057522,-1190.411008140862 1298.5178284623635,-1193.2952843229036 1298.147949500756,-1196.208994878175 1297.9625714282981,-1199.1404440292333 1297.9625714282981,-1202.0777410690127 1298.147949500756,-1205.009190220071 1298.5178284623635,-1207.9229007753424 1299.0708438057522,-1210.8071769573842 1299.804753840246,-1213.6503229887544 1300.7166346214842,-1216.441032951259 1301.8026850217984,-1219.1679034618924 1303.0586165894592,-1221.820213391332 1304.479361154242,-1224.3869492158196 1306.0592657570503,-1226.8579745949062 1307.791800255478,-1229.2233481177652 1309.6701421126845,-1231.4734207680074 1311.686689073332,-1233.5993232477392 1313.8333515580234,-1235.5923811886905 1316.1013577336769,-1237.4445050114641 1318.4817408375868,-1239.1482873903467 1320.9648518533636,-1240.696905788497 1323.540651905369,-1242.084122457946 1326.1987122587177,-1243.3043819044085 1328.9285067137112,-1244.3527134224714 1331.71892428178,-1245.2248285604064 1334.5587565095416,-1245.9173160497928 1337.4365025491782,-1246.4274468758936 1340.3407590176837,-1246.752979348033 1343.2596352079918,-1246.8927438884664 1346.1814353426605,-1246.846155708322 1349.0944636442475,-1246.6133122724116 1351.9869268704988,-1246.1952856936673 1354.8471292439722,-1245.5937328738937 1357.6636673816618,-1244.810992968579 1360.4251379005611,-1243.85028231652 1363.1204298121004,-1242.715499510197 1365.7387245221457,-1241.4111279309632 1368.2694958309992,-1239.9424306786673 1370.7024124685865,-1238.3153531068426 1373.0277279537065,-1236.5365228227065 1375.2361831292171,-1234.6129572927239 1377.3188112324126,-1232.5524537018564 1379.2672302894598,-1230.3633940239374 1381.0736431153973,-1228.0544526272363 1382.7307398493233,-1225.6350835985193 1384.2317954192088,-1223.1148384893638 1385.570767006709,-1220.504048569844 1386.7423915119746,-1217.8131425748452 1387.7418931592167,-1215.052939098502 1388.565178426331,-1212.2345491293843 1389.2089335097082,-1209.369376050498 1389.6706243242363,-1206.4690181744734 1389.948399038487,-1203.5449763491283 1390.041088074716,-1200.609043816717 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5676 \N 53 102 5676 22 \N 1 text 45 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 36.497466289836346 0 \N \N \N \N \N \N \N \N \N \N 5701 \N 53 102 5701 23 \N 0 polygon 46 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 1943.0684801583168,554.8931808090108 1942.9950051599242,557.2237159142755 1942.7747259484734,559.5448479691507 1942.40880879378,561.8472468151105 1941.8984199656602,564.1216551854919 1941.245746220018,566.3589069284621 1940.4534116639395,568.5499998988806 1939.5246235394175,570.6861141812658 1938.463172223353,572.758575643863 1937.2731396601018,574.7591657290641 1935.9594824963804,576.6797205481591 1934.52744894636,578.5125500095503 1932.9828703591188,580.2503284809575 1931.3318696511903,581.885912559759 1929.5811528740148,583.4128877619684 1927.7377176464865,584.8249853873258 1925.8089989386813,586.1165563164113 1923.8028690718552,587.2823887809856 1921.7272003672647,588.3178541477178 1919.590594064801,589.2186882425934 1917.4013598369013,589.9812829183703 1915.1685362746377,590.602613162714 1912.9011619690825,591.0802006522658 1910.6081297275807,591.4120408607798 1908.2989154923853,591.5968217347137 1905.9825578545683,591.6338143554322 1903.6686785401098,591.5228364932766 1901.3663161400818,591.2643983912917 1899.0849465967376,590.8595205355659 1896.833754284876,590.3097701011642 1894.6216320118422,589.6174796277182 1892.4576183687082,588.785309668245 1890.3504603790923,587.8166861403287 1888.3084677154318,586.7155087586651 1886.340095833891,585.4861510350639 1884.4530712719989,584.1336425081051 1882.6549747835581,582.663377175687 1880.9533871223712,581.081295724683 1879.3547227724246,579.3937761931486 1877.865687785159,577.6075975243878 1876.4921135096533,575.7299395669535 1875.239685511259,573.7683830746482 1874.1133604366935,571.7308368146603 1873.1178033652193,569.6254646756998 1872.2568046737379,567.4607950057946 1871.5340089554236,565.2455201596649 1870.9521861010885,562.9885511676222 1870.5136686503647,560.6989995126017 1870.2204975754291,558.3860495694026 1870.073547578644,556.059031496551 1870.073547578644,553.7273301214706 1870.2204975754291,551.400312048619 1870.5136686503647,549.0873621054199 1870.9521861010885,546.7977922274335 1871.5340089554236,544.5408414583567 1872.2568046737379,542.325566612227 1873.1178033652193,540.1608787193559 1874.1133604366935,538.0555248033613 1875.239685511259,536.0179603204075 1876.4921135096533,534.0564220510681 1877.865687785159,532.1787640936338 1879.3547227724246,530.392567201907 1880.9533871223712,528.7050476703726 1882.6549747835581,527.1229662193688 1884.4530712719989,525.6527008869507 1886.340095833891,524.300174137026 1888.3084677154318,523.0708528593565 1890.3504603790923,521.9696572547272 1892.4576183687082,521.0010337268106 1894.6216320118422,520.1688819903034 1896.833754284876,519.4765550709258 1899.0849465967376,518.9268228594899 1901.3663161400818,518.5219267807983 1903.6686785401098,518.2634886788132 1905.9825578545683,518.1525472625895 1908.2989154923853,518.1895398833079 1910.6081297275807,518.3743207572418 1912.9011619690825,518.7061609657558 1915.1685362746377,519.1837120093758 1917.4013598369013,519.8050604766854 1919.590594064801,520.5676733754282 1921.7272003672647,521.4685256932698 1923.8028690718552,522.5039363911042 1925.8089989386813,523.6697870786445 1927.7377176464865,524.9613762306958 1929.5811528740148,526.3734738560532 1931.3318696511903,527.9004126123309 1932.9828703591188,529.53605136003 1934.52744894636,531.2737751625396 1935.9594824963804,533.1066228468967 1937.2731396601018,535.0271958889575 1938.463172223353,537.0277677511929 1939.5246235394175,539.1002474367558 1940.4534116639395,541.2363434961751 1941.245746220018,543.4274182436277 1941.8984199656602,545.6646882095638 1942.40880879378,547.9390965799453 1942.7747259484734,550.241495425905 1942.9950051599242,552.5626274807802 1943.0684801583168,554.8931808090108 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5701 \N 53 102 5701 23 \N 1 text 47 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 25.524313834099793 0 \N \N \N \N \N \N \N \N \N \N 5723 \N 53 102 5723 24 \N 0 polygon 48 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -729.4032698422437,233.89204149745694 -729.4546767731296,235.4961627751938 -729.608691525984,237.0938469187682 -729.8646959813977,238.67862781967034 -730.2215569204532,240.24412790211838 -730.6780381043316,241.7840540988434 -731.2320791350013,243.29220348499044 -731.8816196144312,244.76248822825085 -732.62398102518,246.18902412159008 -733.456175790102,247.5660452698919 -734.3749072723471,248.88798698878531 -735.3763637355567,250.14955099692594 -736.4565274035696,251.3456651738474 -737.6111744604211,252.47146826794386 -738.8355659906388,253.52247569412503 -740.1247570389471,254.49446041705457 -741.4735966102674,255.38346421895127 -742.876624649816,256.1859329132111 -744.3281750630064,256.89863264073614 -745.8224787353503,257.5186820636541 -747.3534574926549,258.0436022655834 -748.9149301408258,258.4712990450874 -750.5007154857683,258.7999920894919 -752.1043232736832,259.0284033081432 -753.7192632507714,259.1555701088356 -755.3391481831352,259.18105626667375 -756.9573847970738,259.1046863258874 -758.567482838788,258.9267806139833 -760.1629520544785,258.6480972930496 -761.7374052102477,258.2697132429947 -763.2843520522965,257.79317054297064 -764.7978174263335,257.2203959870738 -766.2715171183625,256.55368659717215 -767.6994759740923,255.79572411007868 -769.0761309188376,254.9495653194353 -770.3958158580122,254.01858895607648 -771.6531737567338,253.0066131951046 -772.8433626796287,251.91762522864735 -773.961231631618,250.7560838868201 -775.0026598166388,249.5266476007971 -775.9632173789231,248.23424039993648 -776.8390925821129,246.88407364254056 -777.6267827495548,245.48159611559097 -778.3230942642994,244.0324578168148 -778.9251425691032,242.5424833948659 -779.4307642460328,241.01767375901105 -779.8375898373521,239.46417388541056 -780.144177064439,237.88824786698595 -780.3492896884746,236.29621372113854 -780.4520005303448,234.69451019171677 -780.4520005303448,233.08957280319711 -780.3492896884746,231.48786927377535 -780.144177064439,229.89583512792794 -779.8375898373521,228.3199074998174 -779.4307642460328,226.7664076262169 -778.9251425691032,225.24160040489096 -778.3230942642994,223.75162356841312 -777.6267827495548,222.3024876841659 -776.8390925821129,220.90001015721631 -775.9632173789231,219.54984420466326 -775.0026598166388,218.25743378443076 -773.961231631618,217.02799749840779 -772.8433626796287,215.86645776626654 -771.6531737567338,214.7774697998093 -770.3958158580122,213.7654924291514 -769.0761309188376,212.8345176754786 -767.6994759740923,211.9883572751492 -766.2715171183625,211.23039478805578 -764.7978174263335,210.5636853981541 -763.2843520522965,209.99091084225728 -761.7374052102477,209.51436975191913 -760.1629520544785,209.1359840921783 -758.567482838788,208.8573023809306 -756.9573847970738,208.6793966690265 -755.3391481831352,208.60302672824017 -753.7192632507714,208.62851127639226 -752.1043232736832,208.75567968677066 -750.5007154857683,208.98409090542197 -748.9149301408258,209.3127855595125 -747.3534574926549,209.7404791196445 -745.8224787353503,210.26540093125976 -744.3281750630064,210.88544874449175 -742.876624649816,211.59815008170276 -741.4735966102674,212.40061716627662 -740.1247570389471,213.28962096817347 -738.8355659906388,214.26160730078885 -737.6111744604211,215.31261311728403 -736.4565274035696,216.43841782106648 -735.3763637355567,217.63453038830195 -734.3749072723471,218.89609600612857 -733.456175790102,220.218037725022 -732.62398102518,221.5950596781668 -731.8816196144312,223.02159557150603 -731.2320791350013,224.49187950992345 -730.6780381043316,226.00002648154157 -730.2215569204532,227.5399550927955 -729.8646959813977,229.10545356555758 -729.608691525984,230.6902344664597 -729.4546767731296,232.2879202197201 -729.4032698422437,233.89204149745694 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5723 \N 53 102 5723 24 \N 1 text 49 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 27.19419265292019 0 \N \N \N \N \N \N \N \N \N \N 5748 \N 53 102 5748 25 \N 0 polygon 50 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 379.8395880288506,-169.2836567721293 379.7848328279904,-167.7703315341983 379.6207610001346,-166.26309635905255 379.34800923366544,-164.76804130947738 378.9677678590365,-163.29114571984368 378.48146250458126,-161.83836124241893 377.8911278049125,-160.4155841652634 377.19907521567785,-159.02851700171234 376.4081421524935,-157.68275153668682 375.52152589832156,-156.38368578038285 374.54272823926345,-155.13655165037505 373.475763080337,-153.94638728951304 372.3248796244399,-152.8179817017143 371.0947146239202,-151.7559024340677 369.7902508574202,-150.76438484841967 368.41669256041104,-149.84741516768383 366.9796453588654,-149.0087581579459 365.4848048455929,-148.2516803074268 363.93826800390457,-147.57933737593368 362.3462356249999,-146.994386845409 360.7150815132258,-146.49918169465636 359.0514286118613,-146.09571503513263 357.36196214891834,-145.7856201109484 355.65345039871966,-145.57014261676434 353.9328277282093,-145.4501406977911 352.20698698117616,-145.42611263189283 350.4828625245643,-145.49816914748394 348.76744408952504,-145.66597805932147 347.06761759932124,-145.92890267902348 345.3901790103792,-146.28586340455075 343.7419658022805,-146.73542076651745 342.12956631567465,-147.27577542819188 340.55949968595235,-147.90476818549539 339.03803590957193,-148.61982460279606 337.5713619366812,-149.4180934234263 336.165346373237,-150.29636352337212 334.8256709709968,-151.25106391127298 333.5577129785788,-152.27840213893984 332.3665935851437,-153.37419820873396 331.25710179460873,-154.53405066618743 330.23370826670043,-155.75330891790088 329.300516873273,-157.0270178673353 328.4613200625153,-158.35013937164106 327.71946044843367,-159.71724773851858 327.0779484597908,-161.1228619114611 326.53935161169306,-162.56136242344405 326.10586371084844,-164.02693603271786 325.779194127152,-165.51368645122224 325.560685442627,-167.01557898037908 325.45120964353606,-168.52663428581738 325.45120964353606,-170.04070694054477 325.560685442627,-171.55176224598307 325.779194127152,-173.0536547751399 326.10586371084844,-174.5404051936443 326.53935161169306,-176.0059788029181 327.0779484597908,-177.4444516327975 327.71946044843367,-178.85009348784357 328.4613200625153,-180.21720185472108 329.300516873273,-181.54029567692328 330.23370826670043,-182.81403230846126 331.25710179460873,-184.03329056017472 332.3665935851437,-185.1931430176283 333.5577129785788,-186.28893908742225 334.8256709709968,-187.3162773150891 336.165346373237,-188.27097770298997 337.5713619366812,-189.14924780293578 339.03803590957193,-189.94751662356617 340.55949968595235,-190.66257304086685 342.12956631567465,-191.2915381160667 343.7419658022805,-191.83189277774113 345.3901790103792,-192.28147782181148 347.06761759932124,-192.6384385473386 348.76744408952504,-192.90136316704064 350.4828625245643,-193.06917207887815 352.20698698117616,-193.14122859446925 353.9328277282093,-193.11720052857115 355.65345039871966,-192.9971986095979 357.36196214891834,-192.7817211154137 359.0514286118613,-192.47162619122946 360.7150815132258,-192.06815953170573 362.3462356249999,-191.5729543809531 363.93826800390457,-190.98800385042844 365.4848048455929,-190.3156332368318 366.9796453588654,-189.55858306841634 368.41669256041104,-188.71989837657475 369.7902508574202,-187.80295637794242 371.0947146239202,-186.81143879229438 372.3248796244399,-185.74933184254428 373.475763080337,-184.62092625474554 374.54272823926345,-183.43076189388353 375.52152589832156,-182.1836554459793 376.4081421524935,-180.88458968967532 377.19907521567785,-179.5388242246498 377.8911278049125,-178.15175706109878 378.48146250458126,-176.72895230183966 378.9677678590365,-175.27619550651846 379.34800923366544,-173.7992999168848 379.6207610001346,-172.3042448673096 379.7848328279904,-170.79700969216384 379.8395880288506,-169.2836567721293 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5748 \N 53 102 5748 25 \N 1 text 51 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 26.001460617472745 0 \N \N \N \N \N \N \N \N \N \N 5770 \N 53 102 5770 26 \N 0 polygon 52 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 98.91956591654558,640.3818160128328 98.86719075696371,642.4096791031482 98.71031960887348,644.4294036124991 98.44957982122395,646.432783138413 98.08595480588198,648.4118147429416 97.6210044575322,650.3585293988904 97.05655995689176,652.2650259005729 96.39487636910278,654.1237421498433 95.63864959910991,655.9270821378012 94.79089770402052,657.6678228738407 93.85502871461392,659.3389787426338 92.83485759071667,660.9337675933771 91.7344366674345,662.4458142043148 90.55824216429751,663.8690485504776 89.31097072073747,665.1976718929283 87.99767503910311,666.4263941540402 86.62362824164433,667.5502304529724 85.1943916920202,668.5646706594403 83.71567935228285,669.4656115722079 82.1934764705166,670.249458651349 80.63388698244478,670.91305819674 79.04318437756083,671.4536973480593 77.42779474375132,671.8692397278039 75.79426285654182,672.1579558875187 74.1490656699499,672.3187606830753 72.49891751327127,672.3509419886389 70.85043098353954,672.2543980719479 69.21023563316538,672.02953586205 67.5849440591824,671.6772370385504 65.98110103711626,671.1989258531172 64.40518352098445,670.596467397222 62.863498911034455,669.8724049774155 61.36226983062873,669.029553186282 59.907549349359584,668.0713709207309 58.50520402767226,667.0016900959666 57.16086305073382,665.8248512885033 55.879935183810275,664.5455002716417 54.66759181688945,663.1688932122545 53.52871609855001,661.7005236524928 52.46788598058461,660.146292063556 51.48937421799934,658.5125397564453 50.59711445826055,656.8057097744245 49.79471819667124,655.0327877328214 49.085406954863075,653.2008609792257 48.47202923617365,651.3172881472597 47.95706052564634,649.3896991565774 47.54258633465336,647.4258595698493 47.23023437938757,645.4336366820074 47.02132717925574,643.4210673417545 46.91664468160009,641.3962901300548 46.91664468160009,639.3673758063649 47.02132717925574,637.3425646839112 47.23023437938757,635.3300292544121 47.54258633465336,633.3378063665704 47.95706052564634,631.3739328690882 48.47202923617365,629.44637778916 49.085406954863075,627.562804957194 49.79471819667124,625.7308782035983 50.59711445826055,623.9579561619952 51.48937421799934,622.2511261799743 52.46788598058461,620.6173399621097 53.52871609855001,619.0631422839269 54.66759181688945,617.5947727241652 55.879935183810275,616.218165664778 57.16086305073382,614.9388146479164 58.50520402767226,613.7619758404529 59.907549349359584,612.6922950156886 61.36226983062873,611.7341127501376 62.863498911034455,610.8912609590041 64.40518352098445,610.1671646284436 65.98110103711626,609.5647400833024 67.5849440591824,609.0864288978694 69.21023563316538,608.7341300743695 70.85043098353954,608.5092678644719 72.49891751327127,608.4126900370268 74.1490656699499,608.4449052533445 75.79426285654182,608.6057100489008 77.42779474375132,608.8944262086156 79.04318437756083,609.3099685883602 80.63388698244478,609.8506077396795 82.1934764705166,610.5142072850706 83.71567935228285,611.2980543642117 85.1943916920202,612.1989952769793 86.62362824164433,613.2134354834474 87.99767503910311,614.3372717823795 89.31097072073747,615.5659940434913 90.55824216429751,616.8946173859422 91.7344366674345,618.3178517321049 92.83485759071667,619.8298983430425 93.85502871461392,621.4246871937858 94.79089770402052,623.095843062579 95.63864959910991,624.8365837986184 96.39487636910278,626.6399237865763 97.05655995689176,628.4986061250927 97.6210044575322,630.4051365375293 98.08595480588198,632.3518511934781 98.44957982122395,634.3308827980065 98.71031960887348,636.3342623239205 98.86719075696371,638.3539868332714 98.91956591654558,640.3818160128328 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5770 \N 53 102 5770 26 \N 1 text 53 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 24.093081629699078 0 \N \N \N \N \N \N \N \N \N \N 5792 \N 53 102 5792 27 \N 0 polygon 54 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -695.5746295067,-1078.8233500890174 -695.6231354838654,-1077.2343072988238 -695.7684580892785,-1075.6516451606599 -696.010076453386,-1074.0818745439437 -696.3470139457752,-1072.5311156659288 -696.7778381751742,-1071.0057491786447 -697.3008563155342,-1069.511765081956 -697.9139848886415,-1068.0554138105042 -698.6147497641169,-1066.6422947119888 -699.4002861594167,-1065.2782675688863 -700.267403748526,-1063.9688015115082 -701.2127168793471,-1062.7191052353885 -702.2323841389236,-1061.534387436062 -703.3222385708277,-1060.4192057221212 -704.4779830012435,-1059.3779874847705 -705.6948644954957,-1058.4152903326028 -706.968065010215,-1057.534630135104 -708.2924409585609,-1056.739783196536 -709.6625883189164,-1056.033744516832 -711.0731030696644,-1055.4195090959238 -712.518255645717,-1054.8995510641903 -713.9921862645978,-1054.4759538998453 -715.4889700351363,-1054.1502802115494 -717.0026820661619,-1053.9240926079628 -718.5270719230334,-1053.7980421760278 -720.0561496058859,-1053.7729102200735 -721.583599571384,-1053.848436305324 -723.1034318196628,-1054.0247506491676 -724.609461024775,-1054.3008115124971 -726.0955669694678,-1054.675577156206 -727.5558247625704,-1055.1476151890217 -728.9843746216067,-1055.7149723501193 -730.3754218727945,-1056.3754349438966 -731.723367168434,-1057.1262684051976 -733.0227413782143,-1057.9644777340902 -734.2684660239889,-1058.8866772784768 -735.4553324102235,-1059.8890907340954 -736.578717819631,-1060.9678115792944 -737.6339995349248,-1062.1182822054816 -738.6170105996771,-1063.3362054388406 -739.5236491661544,-1064.6163725838373 -740.3504644735654,-1065.9538353797136 -741.093940652424,-1067.3431246961586 -741.7512129201862,-1068.778510968084 -742.3195467116964,-1070.2545250651785 -742.7967283313527,-1071.764916552801 -743.1808045183293,-1073.3036954310865 -743.4702126639662,-1074.8647414827822 -743.6637808117678,-1076.4418042732464 -743.7607927660982,-1078.0283729330613 -743.7607927660982,-1079.6181970275852 -743.6637808117678,-1081.2047656874 -743.4702126639662,-1082.781828477864 -743.1808045183293,-1084.3428745295598 -742.7967283313527,-1085.8816534078453 -742.3195467116964,-1087.3921751128562 -741.7512129201862,-1088.8680589925625 -741.093940652424,-1090.303445264488 -740.3504644735654,-1091.6927345809327 -739.5236491661544,-1093.030197376809 -738.6170105996771,-1094.3103645218057 -737.6339995349248,-1095.528287755165 -736.578717819631,-1096.6788885987403 -735.4553324102235,-1097.7574792265511 -734.2684660239889,-1098.760022899558 -733.0227413782143,-1099.6820922265563 -731.723367168434,-1100.520301555449 -730.3754218727945,-1101.27113501675 -728.9843746216067,-1101.931597610527 -727.5558247625704,-1102.4989547716245 -726.0955669694678,-1102.9709928044406 -724.609461024775,-1103.3457584481491 -723.1034318196628,-1103.6218193114787 -721.583599571384,-1103.7981336553223 -720.0561496058859,-1103.8737899579612 -718.5270719230334,-1103.8485277846187 -717.0026820661619,-1103.7224773526834 -715.4889700351363,-1103.4962897490968 -713.9921862645978,-1103.170616060801 -712.518255645717,-1102.747018896456 -711.0731030696644,-1102.2270608647227 -709.6625883189164,-1101.6128254438145 -708.2924409585609,-1100.9069169814986 -706.968065010215,-1100.1119398255425 -705.6948644954957,-1099.231409845432 -704.4779830012435,-1098.268582475876 -703.3222385708277,-1097.2274944559135 -702.2323841389236,-1096.1121825245846 -701.2127168793471,-1094.927464725258 -700.267403748526,-1093.6777684491383 -699.4002861594167,-1092.36830239176 -698.6147497641169,-1091.0042752486574 -697.9139848886415,-1089.5911561501423 -697.3008563155342,-1088.1348048786904 -696.7778381751742,-1086.6408207820018 -696.3470139457752,-1085.1154542947174 -696.010076453386,-1083.5646954167025 -695.7684580892785,-1081.9949247999866 -695.6231354838654,-1080.4122626618228 -695.5746295067,-1078.8233500890174 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5792 \N 53 102 5792 27 \N 1 text 55 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 27.432774328438832 0 \N \N \N \N \N \N \N \N \N \N 5814 \N 53 102 5814 28 \N 0 polygon 56 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N -325.4528468312648,639.4544473623481 -325.50810327489626,641.1493760488619 -325.6736278374905,642.8374818190248 -325.948747406224,644.5119723525232 -326.33236052374866,646.1660859250812 -326.822876196117,647.7931831965726 -327.4183974690074,649.3866860189459 -328.1165378514986,650.9401998203745 -328.91442131607084,652.4474830092189 -329.80880468275456,653.902446974027 -330.79620000328043,655.299217275609 -331.8725074086305,656.6321948391114 -333.0335046456372,657.8959947619437 -334.2744799245332,659.0855381018894 -335.5903543031022,660.1960518771065 -336.9759264549779,661.2230384700903 -338.425627901345,662.1623674157852 -339.9335842030133,663.0102448055476 -341.49367615249326,663.7633050752584 -343.09966215814535,664.4184580251351 -344.74511705210557,664.9730723959573 -346.4233708982101,665.424975869066 -348.12763137614564,665.7722714901397 -349.85116735767343,666.0136130335305 -351.5868805621056,666.1480214260401 -353.32785628497885,666.1749153429571 -355.067118629755,666.0942029961689 -356.7975693157461,665.906251538125 -358.5123548305637,665.6117952737243 -360.20443808559486,665.2119968523897 -361.8671491446758,664.7084778641059 -363.4936956874931,664.1032882433819 -365.07753016203276,663.3988450771762 -366.6123497845805,662.5979632009341 -368.09185177142206,661.7038857946251 -369.51022287544225,660.7202537867053 -370.861649849526,659.6509834699682 -372.14074779108233,658.5003582896564 -373.3423153737451,657.2730594394999 -374.46151842359757,655.9740128815273 -375.49388991917215,654.6084505381426 -376.4352687993761,653.1818796960863 -377.28179996349087,651.7000218143612 -378.03017903947205,650.1688431202698 -378.67734642357476,648.5945240133765 -379.2206708565786,646.9834284694705 -379.6579494237873,645.341981656416 -379.9874687471036,643.6768535103766 -380.2078826008798,641.9947139675162 -380.3183342960675,640.3023247521105 -380.3183342960675,638.6065699725857 -380.2078826008798,636.91418075718 -379.9874687471036,635.2320412143196 -379.6579494237873,633.5669130682802 -379.2206708565786,631.9254662552257 -378.67734642357476,630.3143707113197 -378.03017903947205,628.7400516044264 -377.28179996349087,627.2089035063724 -376.4352687993761,625.7270150286099 -375.49388991917215,624.3004441865536 -374.46151842359757,622.9348818431689 -373.3423153737451,621.6358352851963 -372.14074779108233,620.4085364350398 -370.861649849526,619.257911254728 -369.51022287544225,618.188640937991 -368.09185177142206,617.2050089300711 -366.6123497845805,616.3109315237621 -365.07753016203276,615.5100802435572 -363.4936956874931,614.8056370773517 -361.8671491446758,614.2004168605903 -360.20443808559486,613.6968978723065 -358.5123548305637,613.2970994509719 -356.7975693157461,613.0026431865712 -355.067118629755,612.8146917285274 -353.32785628497885,612.7339793817391 -351.5868805621056,612.7608732986561 -349.85116735767343,612.8952816911657 -348.12763137614564,613.1366232345565 -346.4233708982101,613.4839188556302 -344.74511705210557,613.9358223287389 -343.09966215814535,614.4904366995611 -341.49367615249326,615.1455896494379 -339.9335842030133,615.8986499191486 -338.425627901345,616.746527308911 -336.9759264549779,617.6858562546059 -335.5903543031022,618.7128428475897 -334.2744799245332,619.8233566228068 -333.0335046456372,621.0128999627525 -331.8725074086305,622.2766998855848 -330.79620000328043,623.6096774490873 -329.80880468275456,625.0064477506692 -328.91442131607084,626.4614117154773 -328.1165378514986,627.9686949043218 -327.4183974690074,629.5222087057504 -326.822876196117,631.1157115281236 -326.33236052374866,632.742808799615 -325.948747406224,634.396922372173 -325.6736278374905,636.0714129056714 -325.50810327489626,637.7595186758343 -325.4528468312648,639.4544473623481 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5814 \N 53 102 5814 28 \N 1 text 57 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 26.001465467779472 -1.279645020285143e-05 \N \N \N \N \N \N \N \N \N \N 5837 \N 53 102 5837 29 \N 0 polygon 58 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 503.1044866159927,438.5769148763415 503.0521235417627,440.34753409800965 502.89523906227566,442.110974511114 502.6344985929424,443.8602364573936 502.2708746639782,445.588166721185 501.80592844230773,447.2879192016298 501.2415026167604,448.9525582227179 500.5797981767709,450.57544242679415 499.8235791555833,452.1499944384542 498.9758143296443,453.6699184041983 498.03995874050895,455.1290464350286 497.0198001374373,456.5215305532026 495.9193566057928,457.8417531170809 494.7431580889475,459.0844163962798 493.49588808767567,460.2444785894194 492.1826139962573,461.3173201779762 490.8085567663756,462.29857757243127 489.3793212432191,463.18430946612193 487.9006146435784,463.97097124234233 486.378400113248,464.6553893814418 484.8187943554249,465.23477425727623 483.22811881650927,465.70682250880924 481.6127205358017,466.0696530578609 479.9791768887065,466.3217431268571 478.3339884719267,466.46214577848275 476.6838350324682,466.49024678312827 475.0353451315361,466.4059565656421 473.39514733033536,466.2096078337295 471.76987019007123,465.90200676375343 470.166039900347,465.48435622203266 468.59010587206507,464.95835813644453 467.0484279409761,464.32613671772236 465.54718679252824,463.5902512559071 464.09248633346806,462.7536193416446 462.6901233557376,461.81964483068907 461.3457794832268,460.79207708294985 460.0648804108218,459.6750749447431 458.85250632925306,458.47310437718914 457.71362226119925,457.19101523491526 456.6528093358331,455.83396448735317 455.6742903817214,454.4074290151894 454.78205789132767,452.9171672210156 453.9796436849076,451.36916784352644 453.27032365371343,449.7696243646202 452.65695140614014,448.12505017745013 452.1419838606268,446.4420226574205 451.7274940421062,444.7273111266886 451.41515828555504,442.9878384648142 451.2062434395432,441.23059153360805 451.1015812733341,439.4626595664825 451.1015812733341,437.69118298265073 451.2062434395432,435.9232510155252 451.41515828555504,434.166004084319 451.7274940421062,432.4265314224446 452.1419838606268,430.71181989171276 452.65695140614014,429.0287923716831 453.27032365371343,427.3842181845131 453.9796436849076,425.78467470560685 454.78205789132767,424.23667532811766 455.6742903817214,422.74641353394384 456.6528093358331,421.3198780617801 457.71362226119925,419.96282731421803 458.85250632925306,418.68073817194403 460.0648804108218,417.4787676043902 461.3457794832268,416.3617526697331 462.6901233557376,415.3341977184442 464.09248633346806,414.4002232074887 465.54718679252824,413.5635912932262 467.0484279409761,412.82770583141087 468.59010587206507,412.1954844126887 470.166039900347,411.66948632710057 471.76987019007123,411.25183578537985 473.39514733033536,410.9442347154037 475.0353451315361,410.7478859834912 476.6838350324682,410.66359576600496 478.3339884719267,410.6916967706504 479.9791768887065,410.83208662582604 481.6127205358017,411.08418949127224 483.22811881650927,411.44702004032393 484.8187943554249,411.919068291857 486.378400113248,412.4984531676915 487.9006146435784,413.1828713067909 489.3793212432191,413.9695330830112 490.8085567663756,414.855264976702 492.1826139962573,415.83652237115706 493.49588808767567,416.9093639597139 494.7431580889475,418.06942615285345 495.9193566057928,419.3120894320524 497.0198001374373,420.6323119959307 498.03995874050895,422.0247961141047 498.9758143296443,423.483924144935 499.8235791555833,425.0038353142288 500.5797981767709,426.5784001223391 501.2415026167604,428.20127152996514 501.80592844230773,429.86592334750344 502.2708746639782,431.565663031498 502.6344985929424,433.29360609173966 502.89523906227566,435.04286803801926 503.0521235417627,436.8063084511236 503.1044866159927,438.5769148763415 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5837 \N 53 102 5837 29 \N 1 text 59 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 0 \N \N \N \N \N \N \N \N ROI1 \N \N \N \N \N \N \N \N 26.717058450650068 7.5356795185913765e-06 \N \N \N \N \N \N \N \N \N \N 5864 \N 53 102 5864 30 \N 0 polygon 60 -120 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 1820.01269555112,266.9674182952346 1819.9589209420753,269.67628502510166 1819.7977176858137,272.37422878750647 1819.5298092075686,275.0504142172613 1819.156160074319,277.6940360918964 1818.6784582782761,280.294493594249 1818.0985123825255,282.841270683551 1817.4186132336401,285.3241131838972 1816.641533961683,287.7330608108843 1815.7704094093338,290.0583906540131 1814.8088567027617,292.29074151540186 1813.7606135390074,294.4211233293848 1812.629899898602,296.4409717961889 1811.421297474692,298.34212577489586 1810.1397496730424,300.11692901511447 1808.790320470289,301.75827537105886 1807.3784355556859,303.2595221412333 1805.9097617602306,304.61463701418336 1804.3904481984102,305.81815285441814 1802.826282272095,306.865224220007 1801.2237748083896,307.7516650409776 1799.5893160635253,308.47386195900094 1797.929416864606,309.02895895153927 1796.2509497513531,309.4146538684995 1794.5605461217426,309.6294320382986 1792.8649579446235,309.6724230899522 1791.1710577597164,309.54348007770955 1789.4857181067425,309.24306644586125 1787.8156909545503,308.7724670277649 1786.1677282719886,308.13348661866553 1784.5484614570337,307.32877777775343 1782.9642807659175,306.3615394009844 1781.421817596616,305.2356749703489 1779.926979921872,303.9557058935584 1778.486037427045,302.526809182442 1777.1047775140053,300.9547270247927 1775.788505301134,299.24578185572676 1774.542887619429,297.4068688220036 1773.3726267329096,295.44539172875045 1772.2825454764684,293.369244200263 1771.27710497238,291.1867569302487 1770.36028405943,288.9067805743025 1769.5358204346599,286.5384634473599 1768.8069695116217,284.0913287644123 1768.1767455621227,281.5752218907511 1767.6475600036092,279.0003386007647 1767.2217036826546,276.37695944523637 1766.9007440205987,273.71571538404703 1766.6861278679091,271.0272957785938 1766.57857864982,268.3225359940644 1766.57857864982,265.6123005964048 1766.6861278679091,262.9075417538354 1766.9007440205987,260.2191221483821 1767.2217036826546,257.55787808719276 1767.6475600036092,254.93449893166448 1768.1767455621227,252.35961469971812 1768.8069695116217,249.84350970997664 1769.5358204346599,247.39637502702922 1770.36028405943,245.02805790008662 1771.27710497238,242.74808154414043 1772.2825454764684,240.56559239020638 1773.3726267329096,238.48944486171877 1774.542887619429,236.52796776846557 1775.788505301134,234.68905850258227 1777.1047775140053,232.98012463703566 1778.486037427045,231.40802364018754 1779.926979921872,229.97913069691077 1781.421817596616,228.69917292363945 1782.9642807659175,227.57329718948483 1784.5484614570337,226.6060625805556 1786.1677282719886,225.80133490044463 1787.8156909545503,225.16238463406333 1789.4857181067425,224.69175507324894 1791.1710577597164,224.39135651275961 1792.8649579446235,224.26239842915797 1794.5605461217426,224.3054045521706 1796.2509497513531,224.52018648980953 1797.929416864606,224.90589271028907 1799.5893160635253,225.4609633279489 1801.2237748083896,226.18316778165172 1802.826282272095,227.0695972991032 1804.3904481984102,228.11668750389092 1805.9097617602306,229.3201958084462 1807.3784355556859,230.6753144492359 1808.790320470289,232.1765612194103 1810.1397496730424,233.8178925039957 1811.421297474692,235.59271081557333 1812.629899898602,237.49386667820005 1813.7606135390074,239.5137132610844 1814.8088567027617,241.6440931911474 1815.7704094093338,243.87644782037597 1816.641533961683,246.20177389566496 1817.4186132336401,248.61072340657196 1818.0985123825255,251.09356590691826 1818.6784582782761,253.6403429962202 1819.156160074319,256.2407995566129 1819.5298092075686,258.88442237320794 1819.7977176858137,261.56060827394276 1819.9589209420753,264.2585525073275 1820.01269555112,266.9674182952346 \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 5864 \N 53 102 5864 30 \N 1 \. -- -- Data for Name: share; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY share (active, data, itemcount, session_id, "group") FROM stdin; \. -- -- Data for Name: sharemember; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY sharemember (id, permissions, version, child, external_id, parent) FROM stdin; \. -- -- Data for Name: stagelabel; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY stagelabel (id, permissions, name, positionx, positiony, positionz, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; \. -- -- Data for Name: statsinfo; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY statsinfo (id, permissions, globalmax, globalmin, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; 92 -40 255 1 0 1058 \N 3 2 1058 93 -40 252 2 0 1058 \N 3 2 1058 94 -40 255 1 0 1058 \N 3 2 1058 95 -40 243 2 0 1058 \N 3 2 1058 96 -40 255 1 0 1058 \N 3 2 1058 97 -40 174 2 0 1058 \N 3 2 1058 98 -40 255 1 0 1058 \N 3 2 1058 99 -40 220 2 0 1058 \N 3 2 1058 100 -40 255 1 0 1058 \N 3 2 1058 101 -40 114 2 0 1058 \N 3 2 1058 102 -40 255 1 0 1058 \N 3 2 1058 103 -40 160 2 0 1058 \N 3 2 1058 104 -40 255 1 0 1122 \N 3 2 1122 105 -40 251 1 0 1122 \N 3 2 1122 106 -40 255 1 0 1122 \N 3 2 1122 107 -40 255 1 0 1122 \N 3 2 1122 108 -40 255 1 0 1122 \N 3 2 1122 109 -40 255 1 0 1122 \N 3 2 1122 110 -40 255 1 0 1122 \N 3 2 1122 111 -40 255 1 0 1122 \N 3 2 1122 112 -40 255 1 0 1122 \N 3 2 1122 113 -40 145 0 0 1122 \N 3 2 1122 114 -40 255 1 0 1122 \N 3 2 1122 115 -40 167 1 0 1122 \N 3 2 1122 116 -40 255 1 0 1148 \N 3 2 1148 117 -40 252 0 0 1148 \N 3 2 1148 118 -40 57 0 0 1148 \N 3 2 1148 119 -40 255 1 0 1148 \N 3 2 1148 120 -40 121 0 0 1148 \N 3 2 1148 121 -40 62 0 0 1148 \N 3 2 1148 122 -40 255 1 0 1148 \N 3 2 1148 123 -40 239 0 0 1148 \N 3 2 1148 124 -40 254 1 0 1148 \N 3 2 1148 125 -40 136 0 0 1148 \N 3 2 1148 126 -40 255 1 0 1148 \N 3 2 1148 127 -40 240 0 0 1148 \N 3 2 1148 128 -40 255 1 0 1148 \N 3 2 1148 129 -40 235 0 0 1148 \N 3 2 1148 130 -40 255 1 0 1148 \N 3 2 1148 131 -40 206 0 0 1148 \N 3 2 1148 132 -40 255 1 0 1148 \N 3 2 1148 133 -40 226 0 0 1148 \N 3 2 1148 134 -40 255 1 0 1148 \N 3 2 1148 135 -40 255 0 0 1148 \N 3 2 1148 136 -40 255 1 0 1148 \N 3 2 1148 137 -40 255 0 0 1148 \N 3 2 1148 138 -40 255 1 0 1148 \N 3 2 1148 139 -40 252 2 0 1148 \N 3 2 1148 156 -40 646.10052490234375 0.00025535080931149423 0 2064 \N 3 2 2064 157 -40 498.31805419921875 0.0019648140296339989 0 2064 \N 3 2 2064 158 -40 508.84121704101562 0.00041143447742797434 0 2082 \N 3 2 2082 159 -40 480.04440307617188 0.024126136675477028 0 2082 \N 3 2 2082 160 -40 523.22064208984375 0.0039611952379345894 0 2100 \N 3 2 2100 161 -40 408.01974487304688 0.060831442475318909 0 2100 \N 3 2 2100 162 -40 646.10052490234375 0.00025535080931149423 0 2258 \N 3 2 2258 163 -40 498.31805419921875 0.0019648140296339989 0 2258 \N 3 2 2258 241 -40 563.31561279296875 0.00013600883539766073 0 3848 \N 3 2 3848 242 -40 409.92868041992188 0.037315942347049713 0 3848 \N 3 2 3848 243 -40 685.25531005859375 0.00019378034630790353 0 4115 \N 3 2 4115 244 -40 437.6876220703125 5.8447483752388507e-05 0 4115 \N 3 2 4115 245 -40 537.75775146484375 0.00017748800746630877 0 4131 \N 3 2 4131 246 -40 300.91299438476562 0.00013707161997444928 0 4131 \N 3 2 4131 140 -40 255 0 0 1617 \N 3 2 1617 141 -40 255 0 0 1617 \N 3 2 1617 142 -40 255 0 0 1617 \N 3 2 1617 143 -40 255 1 0 1617 \N 3 2 1617 144 -40 255 0 0 1617 \N 3 2 1617 145 -40 255 1 0 1617 \N 3 2 1617 146 -40 255 0 0 1617 \N 3 2 1617 147 -40 255 1 0 1617 \N 3 2 1617 201 -40 443.33563232421875 0.00015244761016219854 0 2840 \N 3 2 2840 202 -40 178.05860900878906 0.0052451938390731812 0 2840 \N 3 2 2840 203 -40 255 1 0 2856 \N 3 2 2856 204 -40 114 2 0 2856 \N 3 2 2856 205 -40 508.41775512695312 0.00018492717936169356 0 2872 \N 3 2 2872 206 -40 294.04220581054688 0.012548287399113178 0 2872 \N 3 2 2872 207 -40 506.80081176757812 0.017444724217057228 0 2888 \N 3 2 2888 208 -40 217.50765991210938 0.046881880611181259 0 2888 \N 3 2 2888 209 -40 543.2529296875 0.0004275987739674747 0 2904 \N 3 2 2904 210 -40 211.77372741699219 0.013613857328891754 0 2904 \N 3 2 2904 211 -40 500.47537231445312 0.019173620268702507 0 2920 \N 3 2 2920 212 -40 342.47427368164062 0.0050826608203351498 0 2920 \N 3 2 2920 213 -40 483.15127563476562 0.055272508412599564 0 3290 \N 3 2 3290 214 -40 311.06533813476562 0.0056445244699716568 0 3290 \N 3 2 3290 215 -40 397.7344970703125 0.0563838891685009 0 3313 \N 3 2 3313 216 -40 430.4217529296875 0.0042169224470853806 0 3313 \N 3 2 3313 217 -40 624.1563720703125 0.00025142711820080876 0 3334 \N 3 2 3334 218 -40 419.12033081054688 0.0063828937709331512 0 3334 \N 3 2 3334 219 -40 605.077392578125 0.00025124958483502269 0 3351 \N 3 2 3351 220 -40 386.89627075195312 0.010278977453708649 0 3351 \N 3 2 3351 221 -40 848.9281005859375 0.00013195814972277731 0 3475 \N 3 2 3475 222 -40 216.505859375 0.11735013872385025 0 3475 \N 3 2 3475 223 -40 529.63043212890625 0.00014876112982165068 0 3491 \N 3 2 3491 224 -40 158.07133483886719 0.0131656713783741 0 3491 \N 3 2 3491 225 -40 980.29229736328125 0.0001329973601968959 0 3673 \N 3 2 3673 226 -40 300.30908203125 0.00016852181579452008 0 3673 \N 3 2 3673 227 -40 608.84033203125 0.00012867749319411814 0 3689 \N 3 2 3689 228 -40 121.31585693359375 0.0001230043126270175 0 3689 \N 3 2 3689 229 -40 635.7357177734375 0.00025291441124863923 0 3705 \N 3 2 3705 230 -40 466.44134521484375 0.00020316377049311996 0 3705 \N 3 2 3705 231 -40 586.61505126953125 0.00016345328185707331 0 3721 \N 3 2 3721 232 -40 402.42633056640625 0.00021061803272459656 0 3721 \N 3 2 3721 233 -40 552.038330078125 0.00073539087316021323 0 3737 \N 3 2 3737 234 -40 314.19549560546875 0.00025480857584625483 0 3737 \N 3 2 3737 235 -40 585.89984130859375 0.00014499736425932497 0 3753 \N 3 2 3753 236 -40 415.90252685546875 0.00022198824444785714 0 3753 \N 3 2 3753 237 -40 580.23687744140625 0.00036785218981094658 0 3769 \N 3 2 3769 238 -40 304.79840087890625 0.00015701176016591489 0 3769 \N 3 2 3769 239 -40 593.877685546875 0.00032726468634791672 0 3785 \N 3 2 3785 240 -40 573.97845458984375 0.000266553572146222 0 3785 \N 3 2 3785 251 -120 139 1 0 5154 \N 53 102 5154 252 -120 8 1 0 5154 \N 53 102 5154 253 -120 255 0 0 5154 \N 53 102 5154 254 -120 8 1 0 5154 \N 53 102 5154 255 -120 182 3 0 5154 \N 53 102 5154 256 -120 9 1 0 5154 \N 53 102 5154 257 -120 117 2 0 5154 \N 53 102 5154 258 -120 9 1 0 5154 \N 53 102 5154 259 -120 148 3 0 5176 \N 53 102 5176 260 -120 255 3 0 5176 \N 53 102 5176 261 -120 71 3 0 5176 \N 53 102 5176 262 -120 57 3 0 5176 \N 53 102 5176 263 -120 101 3 0 5199 \N 53 102 5199 264 -120 255 3 0 5199 \N 53 102 5199 265 -120 86 3 0 5199 \N 53 102 5199 266 -120 65 3 0 5199 \N 53 102 5199 267 -120 240 3 0 5222 \N 53 102 5222 268 -120 255 3 0 5222 \N 53 102 5222 269 -120 255 3 0 5222 \N 53 102 5222 270 -120 167 3 0 5222 \N 53 102 5222 271 -120 205 3 0 5244 \N 53 102 5244 272 -120 255 1 0 5244 \N 53 102 5244 273 -120 142 3 0 5244 \N 53 102 5244 274 -120 79 3 0 5244 \N 53 102 5244 275 -120 148 3 0 5266 \N 53 102 5266 276 -120 255 1 0 5266 \N 53 102 5266 277 -120 236 3 0 5266 \N 53 102 5266 278 -120 180 3 0 5266 \N 53 102 5266 279 -120 231 3 0 5288 \N 53 102 5288 280 -120 255 3 0 5288 \N 53 102 5288 281 -120 200 3 0 5288 \N 53 102 5288 282 -120 164 3 0 5288 \N 53 102 5288 283 -120 163 2 0 5310 \N 53 102 5310 284 -120 10 1 0 5310 \N 53 102 5310 285 -120 255 1 0 5310 \N 53 102 5310 286 -120 6 1 0 5310 \N 53 102 5310 287 -120 157 3 0 5310 \N 53 102 5310 288 -120 9 1 0 5310 \N 53 102 5310 289 -120 101 2 0 5310 \N 53 102 5310 290 -120 13 1 0 5310 \N 53 102 5310 291 -120 101 2 0 5378 \N 53 102 5378 292 -120 25 1 0 5378 \N 53 102 5378 293 -120 255 0 0 5378 \N 53 102 5378 294 -120 25 1 0 5378 \N 53 102 5378 295 -120 73 3 0 5378 \N 53 102 5378 296 -120 25 1 0 5378 \N 53 102 5378 297 -120 58 2 0 5378 \N 53 102 5378 298 -120 30 1 0 5378 \N 53 102 5378 299 -120 159 2 0 5402 \N 53 102 5402 300 -120 22 1 0 5402 \N 53 102 5402 301 -120 255 0 0 5402 \N 53 102 5402 302 -120 21 1 0 5402 \N 53 102 5402 303 -120 109 3 0 5402 \N 53 102 5402 304 -120 25 1 0 5402 \N 53 102 5402 305 -120 91 3 0 5402 \N 53 102 5402 306 -120 36 1 0 5402 \N 53 102 5402 307 -120 133 2 0 5426 \N 53 102 5426 308 -120 27 1 0 5426 \N 53 102 5426 309 -120 255 3 0 5426 \N 53 102 5426 310 -120 22 1 0 5426 \N 53 102 5426 311 -120 119 3 0 5426 \N 53 102 5426 312 -120 33 1 0 5426 \N 53 102 5426 313 -120 93 3 0 5426 \N 53 102 5426 314 -120 28 1 0 5426 \N 53 102 5426 315 -120 241 2 0 5452 \N 53 102 5452 316 -120 22 1 0 5452 \N 53 102 5452 317 -120 255 3 0 5452 \N 53 102 5452 318 -120 24 1 0 5452 \N 53 102 5452 319 -120 170 3 0 5452 \N 53 102 5452 320 -120 30 1 0 5452 \N 53 102 5452 321 -120 135 3 0 5452 \N 53 102 5452 322 -120 42 1 0 5452 \N 53 102 5452 323 -120 215 3 0 5474 \N 53 102 5474 324 -120 22 1 0 5474 \N 53 102 5474 325 -120 255 1 0 5474 \N 53 102 5474 326 -120 21 1 0 5474 \N 53 102 5474 327 -120 212 3 0 5474 \N 53 102 5474 328 -120 31 1 0 5474 \N 53 102 5474 329 -120 164 3 0 5474 \N 53 102 5474 330 -120 35 1 0 5474 \N 53 102 5474 331 -120 145 3 0 5496 \N 53 102 5496 332 -120 36 1 0 5496 \N 53 102 5496 333 -120 255 3 0 5496 \N 53 102 5496 334 -120 22 1 0 5496 \N 53 102 5496 335 -120 126 3 0 5496 \N 53 102 5496 336 -120 36 1 0 5496 \N 53 102 5496 337 -120 98 3 0 5496 \N 53 102 5496 338 -120 40 1 0 5496 \N 53 102 5496 339 -120 255 3 0 5518 \N 53 102 5518 340 -120 255 1 0 5518 \N 53 102 5518 341 -120 81 3 0 5518 \N 53 102 5518 342 -120 77 3 0 5518 \N 53 102 5518 343 -120 228 3 0 5542 \N 53 102 5542 344 -120 255 0 0 5542 \N 53 102 5542 345 -120 140 3 0 5542 \N 53 102 5542 346 -120 112 3 0 5542 \N 53 102 5542 347 -120 229 3 0 5564 \N 53 102 5564 348 -120 255 3 0 5564 \N 53 102 5564 349 -120 224 3 0 5564 \N 53 102 5564 350 -120 175 3 0 5564 \N 53 102 5564 351 -120 255 3 0 5586 \N 53 102 5586 352 -120 255 1 0 5586 \N 53 102 5586 353 -120 248 3 0 5586 \N 53 102 5586 354 -120 207 3 0 5586 \N 53 102 5586 355 -120 255 3 0 5608 \N 53 102 5608 356 -120 255 3 0 5608 \N 53 102 5608 357 -120 146 3 0 5608 \N 53 102 5608 358 -120 140 3 0 5608 \N 53 102 5608 359 -120 192 3 0 5632 \N 53 102 5632 360 -120 255 3 0 5632 \N 53 102 5632 361 -120 178 3 0 5632 \N 53 102 5632 362 -120 156 3 0 5632 \N 53 102 5632 363 -120 238 3 0 5657 \N 53 102 5657 364 -120 255 0 0 5657 \N 53 102 5657 365 -120 145 3 0 5657 \N 53 102 5657 366 -120 132 3 0 5657 \N 53 102 5657 367 -120 192 3 0 5682 \N 53 102 5682 368 -120 255 3 0 5682 \N 53 102 5682 369 -120 195 3 0 5682 \N 53 102 5682 370 -120 115 3 0 5682 \N 53 102 5682 371 -120 100 3 0 5704 \N 53 102 5704 372 -120 255 3 0 5704 \N 53 102 5704 373 -120 138 3 0 5704 \N 53 102 5704 374 -120 124 3 0 5704 \N 53 102 5704 375 -120 249 3 0 5729 \N 53 102 5729 376 -120 255 0 0 5729 \N 53 102 5729 377 -120 171 3 0 5729 \N 53 102 5729 378 -120 122 3 0 5729 \N 53 102 5729 379 -120 255 3 0 5751 \N 53 102 5751 380 -120 255 1 0 5751 \N 53 102 5751 381 -120 204 3 0 5751 \N 53 102 5751 382 -120 145 3 0 5751 \N 53 102 5751 383 -120 130 3 0 5773 \N 53 102 5773 384 -120 255 2 0 5773 \N 53 102 5773 385 -120 137 3 0 5773 \N 53 102 5773 386 -120 86 3 0 5773 \N 53 102 5773 387 -120 126 2 0 5795 \N 53 102 5795 388 -120 255 3 0 5795 \N 53 102 5795 389 -120 145 3 0 5795 \N 53 102 5795 390 -120 131 3 0 5795 \N 53 102 5795 391 -120 204 3 0 5817 \N 53 102 5817 392 -120 255 3 0 5817 \N 53 102 5817 393 -120 223 3 0 5817 \N 53 102 5817 394 -120 131 3 0 5817 \N 53 102 5817 395 -120 255 3 0 5841 \N 53 102 5841 396 -120 255 1 0 5841 \N 53 102 5841 397 -120 201 3 0 5841 \N 53 102 5841 398 -120 153 3 0 5841 \N 53 102 5841 399 -120 255 3 0 5870 \N 53 102 5870 400 -120 255 3 0 5870 \N 53 102 5870 401 -120 255 3 0 5870 \N 53 102 5870 402 -120 255 3 0 5870 \N 53 102 5870 \. -- -- Data for Name: thumbnail; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY thumbnail (id, permissions, mimetype, ref, sizex, sizey, version, creation_id, external_id, group_id, owner_id, update_id, pixels) FROM stdin; 106 -40 image/jpeg \N 96 96 1 2922 \N 3 2 3094 106 101 -40 image/jpeg \N 96 96 1 2842 \N 3 2 3094 101 102 -40 image/jpeg \N 96 96 1 2858 \N 3 2 3094 102 103 -40 image/jpeg \N 96 96 1 2874 \N 3 2 3094 103 104 -40 image/jpeg \N 96 96 1 2890 \N 3 2 3094 104 105 -40 image/jpeg \N 96 96 1 2906 \N 3 2 3094 105 107 -40 image/jpeg \N 96 96 0 3292 \N 3 2 3292 107 108 -40 image/jpeg \N 96 96 0 3315 \N 3 2 3315 108 109 -40 image/jpeg \N 96 96 0 3336 \N 3 2 3336 109 110 -40 image/jpeg \N 96 96 0 3353 \N 3 2 3353 110 111 -40 image/jpeg \N 96 96 0 3477 \N 3 2 3477 112 112 -40 image/jpeg \N 96 96 0 3493 \N 3 2 3493 113 113 -40 image/jpeg \N 96 96 0 3675 \N 3 2 3675 114 114 -40 image/jpeg \N 96 96 0 3691 \N 3 2 3691 115 115 -40 image/jpeg \N 96 96 0 3707 \N 3 2 3707 116 116 -40 image/jpeg \N 96 96 0 3723 \N 3 2 3723 117 117 -40 image/jpeg \N 96 96 0 3739 \N 3 2 3739 118 118 -40 image/jpeg \N 96 96 0 3755 \N 3 2 3755 119 119 -40 image/jpeg \N 96 96 0 3771 \N 3 2 3771 120 120 -40 image/jpeg \N 96 96 0 3787 \N 3 2 3787 121 121 -40 image/jpeg \N 96 96 0 3850 \N 3 2 3850 122 122 -40 image/jpeg \N 96 96 0 4117 \N 3 2 4117 123 123 -40 image/jpeg \N 96 96 0 4133 \N 3 2 4133 124 38 -40 image/jpeg \N 96 96 0 1060 \N 3 2 1060 38 39 -40 image/jpeg \N 96 96 0 1060 \N 3 2 1060 39 41 -40 image/jpeg \N 96 96 0 1060 \N 3 2 1060 43 42 -40 image/jpeg \N 96 96 0 1060 \N 3 2 1060 40 43 -40 image/jpeg \N 96 96 0 1060 \N 3 2 1060 41 44 -40 image/jpeg \N 96 96 0 1124 \N 3 2 1124 49 45 -40 image/jpeg \N 96 96 0 1124 \N 3 2 1124 48 46 -40 image/jpeg \N 96 96 0 1124 \N 3 2 1124 46 47 -40 image/jpeg \N 96 96 0 1124 \N 3 2 1124 47 48 -40 image/jpeg \N 96 96 0 1124 \N 3 2 1124 44 49 -40 image/jpeg \N 96 96 0 1124 \N 3 2 1124 45 51 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 50 50 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 51 55 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 52 54 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 53 53 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 54 52 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 55 59 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 56 58 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 57 57 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 58 56 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 59 60 -40 image/jpeg \N 96 96 1 1145 \N 3 2 1150 60 61 -40 image/jpeg \N 96 96 0 1619 \N 3 2 1619 64 62 -40 image/jpeg \N 96 96 0 1619 \N 3 2 1619 63 63 -40 image/jpeg \N 96 96 0 1619 \N 3 2 1619 62 64 -40 image/jpeg \N 96 96 0 1619 \N 3 2 1619 61 72 -40 image/jpeg \N 96 96 1 2260 \N 3 2 2288 72 69 -40 image/jpeg \N 96 96 1 2066 \N 3 2 2288 69 70 -40 image/jpeg \N 96 96 1 2084 \N 3 2 2288 70 71 -40 image/jpeg \N 96 96 1 2102 \N 3 2 2288 71 40 -40 image/jpeg \N 96 96 1 1060 \N 3 2 2799 42 151 -120 image/jpeg \N 96 96 0 5156 \N 53 102 5156 152 152 -120 image/jpeg \N 96 96 0 5156 \N 53 102 5156 153 153 -120 image/jpeg \N 96 96 0 5156 \N 53 102 5156 154 154 -120 image/jpeg \N 96 96 0 5156 \N 53 102 5156 151 155 -120 image/jpeg \N 96 96 0 5178 \N 53 102 5178 155 156 -120 image/jpeg \N 96 96 0 5178 \N 53 102 5178 156 157 -120 image/jpeg \N 96 96 0 5178 \N 53 102 5178 157 158 -120 image/jpeg \N 96 96 0 5178 \N 53 102 5178 158 159 -120 image/jpeg \N 96 96 0 5201 \N 53 102 5201 159 160 -120 image/jpeg \N 96 96 0 5201 \N 53 102 5201 162 161 -120 image/jpeg \N 96 96 0 5201 \N 53 102 5201 161 162 -120 image/jpeg \N 96 96 0 5201 \N 53 102 5201 160 163 -120 image/jpeg \N 96 96 0 5224 \N 53 102 5224 163 164 -120 image/jpeg \N 96 96 0 5224 \N 53 102 5224 166 165 -120 image/jpeg \N 96 96 0 5224 \N 53 102 5224 165 166 -120 image/jpeg \N 96 96 0 5224 \N 53 102 5224 164 167 -120 image/jpeg \N 96 96 0 5246 \N 53 102 5246 170 168 -120 image/jpeg \N 96 96 0 5246 \N 53 102 5246 169 169 -120 image/jpeg \N 96 96 0 5246 \N 53 102 5246 168 170 -120 image/jpeg \N 96 96 0 5246 \N 53 102 5246 167 171 -120 image/jpeg \N 96 96 0 5268 \N 53 102 5268 171 172 -120 image/jpeg \N 96 96 0 5268 \N 53 102 5268 174 173 -120 image/jpeg \N 96 96 0 5268 \N 53 102 5268 173 174 -120 image/jpeg \N 96 96 0 5268 \N 53 102 5268 172 175 -120 image/jpeg \N 96 96 0 5290 \N 53 102 5290 175 176 -120 image/jpeg \N 96 96 0 5290 \N 53 102 5290 178 177 -120 image/jpeg \N 96 96 0 5290 \N 53 102 5290 176 178 -120 image/jpeg \N 96 96 0 5290 \N 53 102 5290 177 179 -120 image/jpeg \N 96 96 0 5312 \N 53 102 5312 179 180 -120 image/jpeg \N 96 96 0 5312 \N 53 102 5312 182 181 -120 image/jpeg \N 96 96 0 5312 \N 53 102 5312 180 182 -120 image/jpeg \N 96 96 0 5312 \N 53 102 5312 181 183 -120 image/jpeg \N 96 96 0 5380 \N 53 102 5380 186 184 -120 image/jpeg \N 96 96 0 5380 \N 53 102 5380 184 185 -120 image/jpeg \N 96 96 0 5380 \N 53 102 5380 185 186 -120 image/jpeg \N 96 96 0 5380 \N 53 102 5380 183 187 -120 image/jpeg \N 96 96 0 5404 \N 53 102 5404 187 188 -120 image/jpeg \N 96 96 0 5404 \N 53 102 5404 190 189 -120 image/jpeg \N 96 96 0 5404 \N 53 102 5404 188 190 -120 image/jpeg \N 96 96 0 5404 \N 53 102 5404 189 191 -120 image/jpeg \N 96 96 0 5428 \N 53 102 5428 191 192 -120 image/jpeg \N 96 96 0 5428 \N 53 102 5428 193 193 -120 image/jpeg \N 96 96 0 5428 \N 53 102 5428 192 194 -120 image/jpeg \N 96 96 0 5428 \N 53 102 5428 194 195 -120 image/jpeg \N 96 96 0 5454 \N 53 102 5454 197 196 -120 image/jpeg \N 96 96 0 5454 \N 53 102 5454 196 197 -120 image/jpeg \N 96 96 0 5454 \N 53 102 5454 198 198 -120 image/jpeg \N 96 96 0 5454 \N 53 102 5454 195 199 -120 image/jpeg \N 96 96 0 5476 \N 53 102 5476 201 200 -120 image/jpeg \N 96 96 0 5476 \N 53 102 5476 200 201 -120 image/jpeg \N 96 96 0 5476 \N 53 102 5476 202 202 -120 image/jpeg \N 96 96 0 5476 \N 53 102 5476 199 203 -120 image/jpeg \N 96 96 0 5498 \N 53 102 5498 205 204 -120 image/jpeg \N 96 96 0 5498 \N 53 102 5498 204 205 -120 image/jpeg \N 96 96 0 5498 \N 53 102 5498 206 206 -120 image/jpeg \N 96 96 0 5498 \N 53 102 5498 203 207 -120 image/jpeg \N 96 96 0 5520 \N 53 102 5520 207 208 -120 image/jpeg \N 96 96 0 5520 \N 53 102 5520 208 209 -120 image/jpeg \N 96 96 0 5520 \N 53 102 5520 209 210 -120 image/jpeg \N 96 96 0 5520 \N 53 102 5520 210 211 -120 image/jpeg \N 96 96 0 5544 \N 53 102 5544 212 212 -120 image/jpeg \N 96 96 0 5544 \N 53 102 5544 213 213 -120 image/jpeg \N 96 96 0 5544 \N 53 102 5544 214 214 -120 image/jpeg \N 96 96 0 5544 \N 53 102 5544 211 215 -120 image/jpeg \N 96 96 0 5566 \N 53 102 5566 216 216 -120 image/jpeg \N 96 96 0 5566 \N 53 102 5566 217 217 -120 image/jpeg \N 96 96 0 5566 \N 53 102 5566 218 218 -120 image/jpeg \N 96 96 0 5566 \N 53 102 5566 215 219 -120 image/jpeg \N 96 96 0 5588 \N 53 102 5588 220 220 -120 image/jpeg \N 96 96 0 5588 \N 53 102 5588 221 221 -120 image/jpeg \N 96 96 0 5588 \N 53 102 5588 222 222 -120 image/jpeg \N 96 96 0 5588 \N 53 102 5588 219 226 -120 image/jpeg \N 96 96 1 5609 \N 53 102 5611 224 223 -120 image/jpeg \N 96 96 1 5609 \N 53 102 5611 223 225 -120 image/jpeg \N 96 96 1 5609 \N 53 102 5611 225 224 -120 image/jpeg \N 96 96 1 5609 \N 53 102 5611 226 227 -120 image/jpeg \N 96 96 0 5634 \N 53 102 5634 230 228 -120 image/jpeg \N 96 96 0 5634 \N 53 102 5634 229 229 -120 image/jpeg \N 96 96 0 5634 \N 53 102 5634 228 230 -120 image/jpeg \N 96 96 0 5634 \N 53 102 5634 227 231 -120 image/jpeg \N 96 96 0 5659 \N 53 102 5659 234 232 -120 image/jpeg \N 96 96 0 5659 \N 53 102 5659 233 233 -120 image/jpeg \N 96 96 0 5659 \N 53 102 5659 232 234 -120 image/jpeg \N 96 96 0 5659 \N 53 102 5659 231 235 -120 image/jpeg \N 96 96 0 5684 \N 53 102 5684 238 236 -120 image/jpeg \N 96 96 0 5684 \N 53 102 5684 237 237 -120 image/jpeg \N 96 96 0 5684 \N 53 102 5684 236 238 -120 image/jpeg \N 96 96 0 5684 \N 53 102 5684 235 239 -120 image/jpeg \N 96 96 0 5706 \N 53 102 5706 239 240 -120 image/jpeg \N 96 96 0 5706 \N 53 102 5706 242 241 -120 image/jpeg \N 96 96 0 5706 \N 53 102 5706 240 242 -120 image/jpeg \N 96 96 0 5706 \N 53 102 5706 241 243 -120 image/jpeg \N 96 96 0 5731 \N 53 102 5731 246 244 -120 image/jpeg \N 96 96 0 5731 \N 53 102 5731 244 245 -120 image/jpeg \N 96 96 0 5731 \N 53 102 5731 245 246 -120 image/jpeg \N 96 96 0 5731 \N 53 102 5731 243 247 -120 image/jpeg \N 96 96 0 5753 \N 53 102 5753 250 248 -120 image/jpeg \N 96 96 0 5753 \N 53 102 5753 248 249 -120 image/jpeg \N 96 96 0 5753 \N 53 102 5753 249 250 -120 image/jpeg \N 96 96 0 5753 \N 53 102 5753 247 251 -120 image/jpeg \N 96 96 0 5775 \N 53 102 5775 254 252 -120 image/jpeg \N 96 96 0 5775 \N 53 102 5775 252 253 -120 image/jpeg \N 96 96 0 5775 \N 53 102 5775 253 254 -120 image/jpeg \N 96 96 0 5775 \N 53 102 5775 251 255 -120 image/jpeg \N 96 96 0 5797 \N 53 102 5797 258 256 -120 image/jpeg \N 96 96 0 5797 \N 53 102 5797 255 257 -120 image/jpeg \N 96 96 0 5797 \N 53 102 5797 256 258 -120 image/jpeg \N 96 96 0 5797 \N 53 102 5797 257 259 -120 image/jpeg \N 96 96 0 5819 \N 53 102 5819 259 260 -120 image/jpeg \N 96 96 0 5819 \N 53 102 5819 262 261 -120 image/jpeg \N 96 96 0 5819 \N 53 102 5819 260 262 -120 image/jpeg \N 96 96 0 5819 \N 53 102 5819 261 263 -120 image/jpeg \N 96 96 0 5845 \N 53 102 5845 263 264 -120 image/jpeg \N 96 96 0 5845 \N 53 102 5845 266 265 -120 image/jpeg \N 96 96 0 5845 \N 53 102 5845 264 266 -120 image/jpeg \N 96 96 0 5845 \N 53 102 5845 265 267 -120 image/jpeg \N 96 96 0 5872 \N 53 102 5872 267 268 -120 image/jpeg \N 96 96 0 5872 \N 53 102 5872 270 269 -120 image/jpeg \N 96 96 0 5872 \N 53 102 5872 268 270 -120 image/jpeg \N 96 96 0 5872 \N 53 102 5872 269 \. -- -- Data for Name: transmittancerange; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY transmittancerange (id, cutin, cutintolerance, cutout, cutouttolerance, permissions, transmittance, version, creation_id, external_id, group_id, owner_id, update_id) FROM stdin; 1 500 \N 535 \N -40 \N \N 139 \N 3 2 139 2 555 \N 620 \N -40 \N \N 139 \N 3 2 139 3 650 \N 750 \N -40 \N \N 139 \N 3 2 139 4 700 \N 800 \N -40 \N \N 139 \N 3 2 139 5 692 \N 700 \N -40 \N \N 139 \N 3 2 139 6 500 \N 600 \N -40 \N \N 139 \N 3 2 139 7 650 \N 750 \N -40 \N \N 139 \N 3 2 139 8 555 \N 620 \N -40 \N \N 139 \N 3 2 139 9 500 \N 535 \N -40 \N \N 139 \N 3 2 139 10 650 \N 750 \N -40 \N \N 139 \N 3 2 139 11 555 \N 620 \N -40 \N \N 139 \N 3 2 139 12 500 \N 535 \N -40 \N \N 139 \N 3 2 139 13 500 \N 535 \N -40 \N \N 139 \N 3 2 139 14 555 \N 620 \N -40 \N \N 139 \N 3 2 139 15 650 \N 750 \N -40 \N \N 139 \N 3 2 139 16 555 \N 620 \N -40 \N \N 139 \N 3 2 139 17 500 \N 535 \N -40 \N \N 139 \N 3 2 139 18 650 \N 750 \N -40 \N \N 139 \N 3 2 139 19 500 \N 535 \N -40 \N \N 139 \N 3 2 139 20 555 \N 620 \N -40 \N \N 139 \N 3 2 139 21 650 \N 750 \N -40 \N \N 139 \N 3 2 139 22 650 \N 750 \N -40 \N \N 139 \N 3 2 139 23 555 \N 620 \N -40 \N \N 139 \N 3 2 139 24 500 \N 535 \N -40 \N \N 139 \N 3 2 139 25 500 \N 535 \N -40 \N \N 139 \N 3 2 139 26 555 \N 620 \N -40 \N \N 139 \N 3 2 139 27 650 \N 750 \N -40 \N \N 139 \N 3 2 139 28 650 \N 750 \N -40 \N \N 139 \N 3 2 139 29 555 \N 620 \N -40 \N \N 139 \N 3 2 139 30 500 \N 535 \N -40 \N \N 139 \N 3 2 139 31 555 \N 620 \N -40 \N \N 161 \N 3 2 161 32 500 \N 535 \N -40 \N \N 161 \N 3 2 161 33 650 \N 750 \N -40 \N \N 161 \N 3 2 161 34 500 \N 535 \N -40 \N \N 161 \N 3 2 161 35 650 \N 750 \N -40 \N \N 161 \N 3 2 161 36 555 \N 620 \N -40 \N \N 161 \N 3 2 161 37 500 \N 535 \N -40 \N \N 161 \N 3 2 161 38 650 \N 750 \N -40 \N \N 161 \N 3 2 161 39 555 \N 620 \N -40 \N \N 161 \N 3 2 161 40 500 \N 535 \N -40 \N \N 161 \N 3 2 161 41 650 \N 750 \N -40 \N \N 161 \N 3 2 161 42 555 \N 620 \N -40 \N \N 161 \N 3 2 161 43 500 \N 535 \N -40 \N \N 161 \N 3 2 161 44 555 \N 620 \N -40 \N \N 161 \N 3 2 161 45 650 \N 750 \N -40 \N \N 161 \N 3 2 161 46 500 \N 535 \N -40 \N \N 161 \N 3 2 161 47 555 \N 620 \N -40 \N \N 161 \N 3 2 161 48 650 \N 750 \N -40 \N \N 161 \N 3 2 161 49 555 \N 620 \N -40 \N \N 161 \N 3 2 161 50 650 \N 750 \N -40 \N \N 161 \N 3 2 161 51 500 \N 535 \N -40 \N \N 161 \N 3 2 161 52 500 \N 535 \N -40 \N \N 161 \N 3 2 161 53 555 \N 620 \N -40 \N \N 161 \N 3 2 161 54 650 \N 750 \N -40 \N \N 161 \N 3 2 161 55 650 \N 750 \N -40 \N \N 183 \N 3 2 183 56 555 \N 620 \N -40 \N \N 183 \N 3 2 183 57 500 \N 535 \N -40 \N \N 183 \N 3 2 183 58 650 \N 750 \N -40 \N \N 183 \N 3 2 183 59 555 \N 620 \N -40 \N \N 183 \N 3 2 183 60 500 \N 535 \N -40 \N \N 183 \N 3 2 183 61 500 \N 535 \N -40 \N \N 183 \N 3 2 183 62 555 \N 620 \N -40 \N \N 183 \N 3 2 183 63 650 \N 750 \N -40 \N \N 183 \N 3 2 183 64 650 \N 750 \N -40 \N \N 183 \N 3 2 183 65 500 \N 535 \N -40 \N \N 183 \N 3 2 183 66 555 \N 620 \N -40 \N \N 183 \N 3 2 183 67 500 \N 535 \N -40 \N \N 183 \N 3 2 183 68 650 \N 750 \N -40 \N \N 183 \N 3 2 183 69 555 \N 620 \N -40 \N \N 183 \N 3 2 183 70 650 \N 750 \N -40 \N \N 183 \N 3 2 183 71 500 \N 535 \N -40 \N \N 183 \N 3 2 183 72 555 \N 620 \N -40 \N \N 183 \N 3 2 183 73 650 \N 750 \N -40 \N \N 183 \N 3 2 183 74 555 \N 620 \N -40 \N \N 183 \N 3 2 183 75 500 \N 535 \N -40 \N \N 183 \N 3 2 183 76 555 \N 620 \N -40 \N \N 183 \N 3 2 183 77 650 \N 750 \N -40 \N \N 183 \N 3 2 183 78 500 \N 535 \N -40 \N \N 183 \N 3 2 183 79 498 \N 578 \N -40 \N \N 183 \N 3 2 183 80 692 \N 700 \N -40 \N \N 183 \N 3 2 183 81 700 \N 800 \N -40 \N \N 183 \N 3 2 183 82 555 \N 620 \N -40 \N \N 183 \N 3 2 183 83 650 \N 750 \N -40 \N \N 183 \N 3 2 183 84 500 \N 535 \N -40 \N \N 183 \N 3 2 183 85 555 \N 620 \N -40 \N \N 292 \N 3 2 292 86 650 \N 750 \N -40 \N \N 292 \N 3 2 292 87 500 \N 535 \N -40 \N \N 292 \N 3 2 292 88 500 \N 535 \N -40 \N \N 292 \N 3 2 292 89 650 \N 750 \N -40 \N \N 292 \N 3 2 292 90 555 \N 620 \N -40 \N \N 292 \N 3 2 292 91 650 \N 750 \N -40 \N \N 292 \N 3 2 292 92 555 \N 620 \N -40 \N \N 292 \N 3 2 292 93 500 \N 535 \N -40 \N \N 292 \N 3 2 292 94 555 \N 620 \N -40 \N \N 292 \N 3 2 292 95 500 \N 535 \N -40 \N \N 292 \N 3 2 292 96 650 \N 750 \N -40 \N \N 292 \N 3 2 292 97 700 \N 800 \N -40 \N \N 292 \N 3 2 292 98 692 \N 700 \N -40 \N \N 292 \N 3 2 292 99 498 \N 549 \N -40 \N \N 292 \N 3 2 292 100 650 \N 750 \N -40 \N \N 292 \N 3 2 292 101 555 \N 620 \N -40 \N \N 292 \N 3 2 292 102 500 \N 535 \N -40 \N \N 292 \N 3 2 292 103 555 \N 620 \N -40 \N \N 292 \N 3 2 292 104 500 \N 535 \N -40 \N \N 292 \N 3 2 292 105 650 \N 750 \N -40 \N \N 292 \N 3 2 292 106 500 \N 535 \N -40 \N \N 292 \N 3 2 292 107 555 \N 620 \N -40 \N \N 292 \N 3 2 292 108 650 \N 750 \N -40 \N \N 292 \N 3 2 292 109 500 \N 535 \N -40 \N \N 292 \N 3 2 292 110 650 \N 750 \N -40 \N \N 292 \N 3 2 292 111 555 \N 620 \N -40 \N \N 292 \N 3 2 292 112 500 \N 535 \N -40 \N \N 1055 \N 3 2 1055 113 653 \N 724 \N -40 \N \N 1055 \N 3 2 1055 114 555 \N 620 \N -40 \N \N 1055 \N 3 2 1055 115 555 \N 620 \N -40 \N \N 1055 \N 3 2 1055 116 653 \N 724 \N -40 \N \N 1055 \N 3 2 1055 117 500 \N 535 \N -40 \N \N 1055 \N 3 2 1055 118 500 \N 535 \N -40 \N \N 1055 \N 3 2 1055 119 555 \N 620 \N -40 \N \N 1055 \N 3 2 1055 120 653 \N 724 \N -40 \N \N 1055 \N 3 2 1055 121 500 \N 535 \N -40 \N \N 1055 \N 3 2 1055 122 555 \N 620 \N -40 \N \N 1055 \N 3 2 1055 123 653 \N 724 \N -40 \N \N 1055 \N 3 2 1055 124 500 \N 535 \N -40 \N \N 1055 \N 3 2 1055 125 653 \N 724 \N -40 \N \N 1055 \N 3 2 1055 126 555 \N 620 \N -40 \N \N 1055 \N 3 2 1055 127 653 \N 724 \N -40 \N \N 1055 \N 3 2 1055 128 500 \N 535 \N -40 \N \N 1055 \N 3 2 1055 129 555 \N 620 \N -40 \N \N 1055 \N 3 2 1055 130 555 \N 620 \N -40 \N \N 1118 \N 3 2 1118 131 653 \N 724 \N -40 \N \N 1118 \N 3 2 1118 132 500 \N 535 \N -40 \N \N 1118 \N 3 2 1118 133 555 \N 620 \N -40 \N \N 1118 \N 3 2 1118 134 653 \N 724 \N -40 \N \N 1118 \N 3 2 1118 135 500 \N 535 \N -40 \N \N 1118 \N 3 2 1118 136 500 \N 535 \N -40 \N \N 1118 \N 3 2 1118 137 555 \N 620 \N -40 \N \N 1118 \N 3 2 1118 138 653 \N 724 \N -40 \N \N 1118 \N 3 2 1118 139 555 \N 620 \N -40 \N \N 1118 \N 3 2 1118 140 653 \N 724 \N -40 \N \N 1118 \N 3 2 1118 141 500 \N 535 \N -40 \N \N 1118 \N 3 2 1118 142 500 \N 535 \N -40 \N \N 1118 \N 3 2 1118 143 555 \N 620 \N -40 \N \N 1118 \N 3 2 1118 144 653 \N 724 \N -40 \N \N 1118 \N 3 2 1118 145 653 \N 724 \N -40 \N \N 1118 \N 3 2 1118 146 500 \N 535 \N -40 \N \N 1118 \N 3 2 1118 147 555 \N 620 \N -40 \N \N 1118 \N 3 2 1118 148 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 149 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 150 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 151 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 152 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 153 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 154 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 155 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 156 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 157 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 158 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 159 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 160 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 161 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 162 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 163 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 164 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 165 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 166 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 167 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 168 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 169 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 170 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 171 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 172 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 173 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 174 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 175 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 176 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 177 650 \N 750 \N -40 \N \N 1143 \N 3 2 1143 178 653 \N 724 \N -40 \N \N 1143 \N 3 2 1143 179 555 \N 620 \N -40 \N \N 1143 \N 3 2 1143 180 500 \N 535 \N -40 \N \N 1143 \N 3 2 1143 181 700 \N 800 \N -40 \N \N 1614 \N 3 2 1614 182 500 \N 600 \N -40 \N \N 1614 \N 3 2 1614 183 692 \N 700 \N -40 \N \N 1614 \N 3 2 1614 184 535 \N 599 \N -40 \N \N 1614 \N 3 2 1614 185 650 \N 750 \N -40 \N \N 1614 \N 3 2 1614 186 500 \N 535 \N -40 \N \N 1614 \N 3 2 1614 187 500 \N 535 \N -40 \N \N 1614 \N 3 2 1614 188 650 \N 750 \N -40 \N \N 1614 \N 3 2 1614 189 535 \N 599 \N -40 \N \N 1614 \N 3 2 1614 190 535 \N 599 \N -40 \N \N 1614 \N 3 2 1614 191 650 \N 750 \N -40 \N \N 1614 \N 3 2 1614 192 500 \N 535 \N -40 \N \N 1614 \N 3 2 1614 201 692 \N 700 \N -120 \N \N 5151 \N 53 102 5151 202 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 203 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 204 700 \N 800 \N -120 \N \N 5151 \N 53 102 5151 205 692 \N 700 \N -120 \N \N 5151 \N 53 102 5151 206 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 207 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 208 700 \N 800 \N -120 \N \N 5151 \N 53 102 5151 209 692 \N 700 \N -120 \N \N 5151 \N 53 102 5151 210 700 \N 800 \N -120 \N \N 5151 \N 53 102 5151 211 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 212 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 213 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 214 700 \N 800 \N -120 \N \N 5151 \N 53 102 5151 215 692 \N 700 \N -120 \N \N 5151 \N 53 102 5151 216 500 \N 600 \N -120 \N \N 5151 \N 53 102 5151 217 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 218 700 \N 800 \N -120 \N \N 5173 \N 53 102 5173 219 692 \N 700 \N -120 \N \N 5173 \N 53 102 5173 220 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 221 700 \N 800 \N -120 \N \N 5173 \N 53 102 5173 222 692 \N 700 \N -120 \N \N 5173 \N 53 102 5173 223 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 224 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 225 700 \N 800 \N -120 \N \N 5173 \N 53 102 5173 226 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 227 692 \N 700 \N -120 \N \N 5173 \N 53 102 5173 228 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 229 700 \N 800 \N -120 \N \N 5173 \N 53 102 5173 230 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 231 500 \N 600 \N -120 \N \N 5173 \N 53 102 5173 232 692 \N 700 \N -120 \N \N 5173 \N 53 102 5173 233 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 234 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 235 700 \N 800 \N -120 \N \N 5195 \N 53 102 5195 236 692 \N 700 \N -120 \N \N 5195 \N 53 102 5195 237 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 238 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 239 692 \N 700 \N -120 \N \N 5195 \N 53 102 5195 240 700 \N 800 \N -120 \N \N 5195 \N 53 102 5195 241 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 242 700 \N 800 \N -120 \N \N 5195 \N 53 102 5195 243 692 \N 700 \N -120 \N \N 5195 \N 53 102 5195 244 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 245 700 \N 800 \N -120 \N \N 5195 \N 53 102 5195 246 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 247 692 \N 700 \N -120 \N \N 5195 \N 53 102 5195 248 500 \N 600 \N -120 \N \N 5195 \N 53 102 5195 249 700 \N 800 \N -120 \N \N 5218 \N 53 102 5218 250 692 \N 700 \N -120 \N \N 5218 \N 53 102 5218 251 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 252 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 253 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 254 692 \N 700 \N -120 \N \N 5218 \N 53 102 5218 255 700 \N 800 \N -120 \N \N 5218 \N 53 102 5218 256 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 257 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 258 700 \N 800 \N -120 \N \N 5218 \N 53 102 5218 259 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 260 692 \N 700 \N -120 \N \N 5218 \N 53 102 5218 261 692 \N 700 \N -120 \N \N 5218 \N 53 102 5218 262 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 263 500 \N 600 \N -120 \N \N 5218 \N 53 102 5218 264 700 \N 800 \N -120 \N \N 5218 \N 53 102 5218 265 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 266 700 \N 800 \N -120 \N \N 5241 \N 53 102 5241 267 692 \N 700 \N -120 \N \N 5241 \N 53 102 5241 268 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 269 700 \N 800 \N -120 \N \N 5241 \N 53 102 5241 270 692 \N 700 \N -120 \N \N 5241 \N 53 102 5241 271 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 272 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 273 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 274 692 \N 700 \N -120 \N \N 5241 \N 53 102 5241 275 700 \N 800 \N -120 \N \N 5241 \N 53 102 5241 276 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 277 700 \N 800 \N -120 \N \N 5241 \N 53 102 5241 278 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 279 500 \N 600 \N -120 \N \N 5241 \N 53 102 5241 280 692 \N 700 \N -120 \N \N 5241 \N 53 102 5241 281 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 282 692 \N 700 \N -120 \N \N 5263 \N 53 102 5263 283 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 284 700 \N 800 \N -120 \N \N 5263 \N 53 102 5263 285 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 286 692 \N 700 \N -120 \N \N 5263 \N 53 102 5263 287 700 \N 800 \N -120 \N \N 5263 \N 53 102 5263 288 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 289 700 \N 800 \N -120 \N \N 5263 \N 53 102 5263 290 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 291 692 \N 700 \N -120 \N \N 5263 \N 53 102 5263 292 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 293 700 \N 800 \N -120 \N \N 5263 \N 53 102 5263 294 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 295 692 \N 700 \N -120 \N \N 5263 \N 53 102 5263 296 500 \N 600 \N -120 \N \N 5263 \N 53 102 5263 297 700 \N 800 \N -120 \N \N 5285 \N 53 102 5285 298 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 299 692 \N 700 \N -120 \N \N 5285 \N 53 102 5285 300 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 301 692 \N 700 \N -120 \N \N 5285 \N 53 102 5285 302 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 303 700 \N 800 \N -120 \N \N 5285 \N 53 102 5285 304 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 305 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 306 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 307 700 \N 800 \N -120 \N \N 5285 \N 53 102 5285 308 692 \N 700 \N -120 \N \N 5285 \N 53 102 5285 309 700 \N 800 \N -120 \N \N 5285 \N 53 102 5285 310 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 311 500 \N 600 \N -120 \N \N 5285 \N 53 102 5285 312 692 \N 700 \N -120 \N \N 5285 \N 53 102 5285 313 692 \N 700 \N -120 \N \N 5307 \N 53 102 5307 314 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 315 700 \N 800 \N -120 \N \N 5307 \N 53 102 5307 316 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 317 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 318 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 319 700 \N 800 \N -120 \N \N 5307 \N 53 102 5307 320 692 \N 700 \N -120 \N \N 5307 \N 53 102 5307 321 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 322 692 \N 700 \N -120 \N \N 5307 \N 53 102 5307 323 700 \N 800 \N -120 \N \N 5307 \N 53 102 5307 324 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 325 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 326 700 \N 800 \N -120 \N \N 5307 \N 53 102 5307 327 692 \N 700 \N -120 \N \N 5307 \N 53 102 5307 328 500 \N 600 \N -120 \N \N 5307 \N 53 102 5307 329 700 \N 800 \N -120 \N \N 5329 \N 53 102 5329 330 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 331 692 \N 700 \N -120 \N \N 5329 \N 53 102 5329 332 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 333 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 334 692 \N 700 \N -120 \N \N 5329 \N 53 102 5329 335 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 336 700 \N 800 \N -120 \N \N 5329 \N 53 102 5329 337 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 338 700 \N 800 \N -120 \N \N 5329 \N 53 102 5329 339 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 340 692 \N 700 \N -120 \N \N 5329 \N 53 102 5329 341 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 342 500 \N 600 \N -120 \N \N 5329 \N 53 102 5329 343 700 \N 800 \N -120 \N \N 5329 \N 53 102 5329 344 692 \N 700 \N -120 \N \N 5329 \N 53 102 5329 345 700 \N 800 \N -120 \N \N 5397 \N 53 102 5397 346 692 \N 700 \N -120 \N \N 5397 \N 53 102 5397 347 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 348 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 349 700 \N 800 \N -120 \N \N 5397 \N 53 102 5397 350 692 \N 700 \N -120 \N \N 5397 \N 53 102 5397 351 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 352 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 353 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 354 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 355 692 \N 700 \N -120 \N \N 5397 \N 53 102 5397 356 700 \N 800 \N -120 \N \N 5397 \N 53 102 5397 357 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 358 700 \N 800 \N -120 \N \N 5397 \N 53 102 5397 359 692 \N 700 \N -120 \N \N 5397 \N 53 102 5397 360 500 \N 600 \N -120 \N \N 5397 \N 53 102 5397 361 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 362 700 \N 800 \N -120 \N \N 5421 \N 53 102 5421 363 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 364 692 \N 700 \N -120 \N \N 5421 \N 53 102 5421 365 700 \N 800 \N -120 \N \N 5421 \N 53 102 5421 366 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 367 692 \N 700 \N -120 \N \N 5421 \N 53 102 5421 368 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 369 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 370 692 \N 700 \N -120 \N \N 5421 \N 53 102 5421 371 700 \N 800 \N -120 \N \N 5421 \N 53 102 5421 372 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 373 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 374 500 \N 600 \N -120 \N \N 5421 \N 53 102 5421 375 692 \N 700 \N -120 \N \N 5421 \N 53 102 5421 376 700 \N 800 \N -120 \N \N 5421 \N 53 102 5421 377 692 \N 700 \N -120 \N \N 5446 \N 53 102 5446 378 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 379 700 \N 800 \N -120 \N \N 5446 \N 53 102 5446 380 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 381 692 \N 700 \N -120 \N \N 5446 \N 53 102 5446 382 700 \N 800 \N -120 \N \N 5446 \N 53 102 5446 383 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 384 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 385 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 386 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 387 700 \N 800 \N -120 \N \N 5446 \N 53 102 5446 388 692 \N 700 \N -120 \N \N 5446 \N 53 102 5446 389 700 \N 800 \N -120 \N \N 5446 \N 53 102 5446 390 692 \N 700 \N -120 \N \N 5446 \N 53 102 5446 391 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 392 500 \N 600 \N -120 \N \N 5446 \N 53 102 5446 393 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 394 700 \N 800 \N -120 \N \N 5471 \N 53 102 5471 395 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 396 692 \N 700 \N -120 \N \N 5471 \N 53 102 5471 397 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 398 700 \N 800 \N -120 \N \N 5471 \N 53 102 5471 399 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 400 692 \N 700 \N -120 \N \N 5471 \N 53 102 5471 401 700 \N 800 \N -120 \N \N 5471 \N 53 102 5471 402 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 403 692 \N 700 \N -120 \N \N 5471 \N 53 102 5471 404 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 405 700 \N 800 \N -120 \N \N 5471 \N 53 102 5471 406 692 \N 700 \N -120 \N \N 5471 \N 53 102 5471 407 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 408 500 \N 600 \N -120 \N \N 5471 \N 53 102 5471 409 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 410 700 \N 800 \N -120 \N \N 5493 \N 53 102 5493 411 692 \N 700 \N -120 \N \N 5493 \N 53 102 5493 412 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 413 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 414 700 \N 800 \N -120 \N \N 5493 \N 53 102 5493 415 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 416 692 \N 700 \N -120 \N \N 5493 \N 53 102 5493 417 700 \N 800 \N -120 \N \N 5493 \N 53 102 5493 418 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 419 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 420 692 \N 700 \N -120 \N \N 5493 \N 53 102 5493 421 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 422 700 \N 800 \N -120 \N \N 5493 \N 53 102 5493 423 692 \N 700 \N -120 \N \N 5493 \N 53 102 5493 424 500 \N 600 \N -120 \N \N 5493 \N 53 102 5493 425 700 \N 800 \N -120 \N \N 5515 \N 53 102 5515 426 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 427 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 428 692 \N 700 \N -120 \N \N 5515 \N 53 102 5515 429 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 430 700 \N 800 \N -120 \N \N 5515 \N 53 102 5515 431 692 \N 700 \N -120 \N \N 5515 \N 53 102 5515 432 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 433 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 434 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 435 700 \N 800 \N -120 \N \N 5515 \N 53 102 5515 436 692 \N 700 \N -120 \N \N 5515 \N 53 102 5515 437 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 438 500 \N 600 \N -120 \N \N 5515 \N 53 102 5515 439 700 \N 800 \N -120 \N \N 5515 \N 53 102 5515 440 692 \N 700 \N -120 \N \N 5515 \N 53 102 5515 441 700 \N 800 \N -120 \N \N 5539 \N 53 102 5539 442 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 443 692 \N 700 \N -120 \N \N 5539 \N 53 102 5539 444 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 445 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 446 700 \N 800 \N -120 \N \N 5539 \N 53 102 5539 447 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 448 692 \N 700 \N -120 \N \N 5539 \N 53 102 5539 449 692 \N 700 \N -120 \N \N 5539 \N 53 102 5539 450 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 451 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 452 700 \N 800 \N -120 \N \N 5539 \N 53 102 5539 453 700 \N 800 \N -120 \N \N 5539 \N 53 102 5539 454 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 455 692 \N 700 \N -120 \N \N 5539 \N 53 102 5539 456 500 \N 600 \N -120 \N \N 5539 \N 53 102 5539 457 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 458 700 \N 800 \N -120 \N \N 5561 \N 53 102 5561 459 692 \N 700 \N -120 \N \N 5561 \N 53 102 5561 460 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 461 700 \N 800 \N -120 \N \N 5561 \N 53 102 5561 462 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 463 692 \N 700 \N -120 \N \N 5561 \N 53 102 5561 464 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 465 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 466 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 467 692 \N 700 \N -120 \N \N 5561 \N 53 102 5561 468 700 \N 800 \N -120 \N \N 5561 \N 53 102 5561 469 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 470 700 \N 800 \N -120 \N \N 5561 \N 53 102 5561 471 692 \N 700 \N -120 \N \N 5561 \N 53 102 5561 472 500 \N 600 \N -120 \N \N 5561 \N 53 102 5561 473 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 474 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 475 692 \N 700 \N -120 \N \N 5583 \N 53 102 5583 476 700 \N 800 \N -120 \N \N 5583 \N 53 102 5583 477 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 478 692 \N 700 \N -120 \N \N 5583 \N 53 102 5583 479 700 \N 800 \N -120 \N \N 5583 \N 53 102 5583 480 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 481 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 482 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 483 700 \N 800 \N -120 \N \N 5583 \N 53 102 5583 484 692 \N 700 \N -120 \N \N 5583 \N 53 102 5583 485 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 486 500 \N 600 \N -120 \N \N 5583 \N 53 102 5583 487 692 \N 700 \N -120 \N \N 5583 \N 53 102 5583 488 700 \N 800 \N -120 \N \N 5583 \N 53 102 5583 489 700 \N 800 \N -120 \N \N 5605 \N 53 102 5605 490 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 491 692 \N 700 \N -120 \N \N 5605 \N 53 102 5605 492 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 493 692 \N 700 \N -120 \N \N 5605 \N 53 102 5605 494 700 \N 800 \N -120 \N \N 5605 \N 53 102 5605 495 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 496 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 497 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 498 692 \N 700 \N -120 \N \N 5605 \N 53 102 5605 499 700 \N 800 \N -120 \N \N 5605 \N 53 102 5605 500 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 501 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 502 500 \N 600 \N -120 \N \N 5605 \N 53 102 5605 503 700 \N 800 \N -120 \N \N 5605 \N 53 102 5605 504 692 \N 700 \N -120 \N \N 5605 \N 53 102 5605 505 692 \N 700 \N -120 \N \N 5628 \N 53 102 5628 506 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 507 700 \N 800 \N -120 \N \N 5628 \N 53 102 5628 508 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 509 700 \N 800 \N -120 \N \N 5628 \N 53 102 5628 510 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 511 692 \N 700 \N -120 \N \N 5628 \N 53 102 5628 512 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 513 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 514 692 \N 700 \N -120 \N \N 5628 \N 53 102 5628 515 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 516 700 \N 800 \N -120 \N \N 5628 \N 53 102 5628 517 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 518 692 \N 700 \N -120 \N \N 5628 \N 53 102 5628 519 700 \N 800 \N -120 \N \N 5628 \N 53 102 5628 520 500 \N 600 \N -120 \N \N 5628 \N 53 102 5628 521 700 \N 800 \N -120 \N \N 5651 \N 53 102 5651 522 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 523 692 \N 700 \N -120 \N \N 5651 \N 53 102 5651 524 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 525 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 526 692 \N 700 \N -120 \N \N 5651 \N 53 102 5651 527 700 \N 800 \N -120 \N \N 5651 \N 53 102 5651 528 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 529 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 530 700 \N 800 \N -120 \N \N 5651 \N 53 102 5651 531 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 532 692 \N 700 \N -120 \N \N 5651 \N 53 102 5651 533 692 \N 700 \N -120 \N \N 5651 \N 53 102 5651 534 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 535 500 \N 600 \N -120 \N \N 5651 \N 53 102 5651 536 700 \N 800 \N -120 \N \N 5651 \N 53 102 5651 537 692 \N 700 \N -120 \N \N 5676 \N 53 102 5676 538 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 539 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 540 700 \N 800 \N -120 \N \N 5676 \N 53 102 5676 541 700 \N 800 \N -120 \N \N 5676 \N 53 102 5676 542 692 \N 700 \N -120 \N \N 5676 \N 53 102 5676 543 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 544 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 545 692 \N 700 \N -120 \N \N 5676 \N 53 102 5676 546 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 547 700 \N 800 \N -120 \N \N 5676 \N 53 102 5676 548 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 549 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 550 692 \N 700 \N -120 \N \N 5676 \N 53 102 5676 551 700 \N 800 \N -120 \N \N 5676 \N 53 102 5676 552 500 \N 600 \N -120 \N \N 5676 \N 53 102 5676 553 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 554 692 \N 700 \N -120 \N \N 5701 \N 53 102 5701 555 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 556 700 \N 800 \N -120 \N \N 5701 \N 53 102 5701 557 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 558 700 \N 800 \N -120 \N \N 5701 \N 53 102 5701 559 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 560 692 \N 700 \N -120 \N \N 5701 \N 53 102 5701 561 700 \N 800 \N -120 \N \N 5701 \N 53 102 5701 562 692 \N 700 \N -120 \N \N 5701 \N 53 102 5701 563 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 564 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 565 700 \N 800 \N -120 \N \N 5701 \N 53 102 5701 566 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 567 500 \N 600 \N -120 \N \N 5701 \N 53 102 5701 568 692 \N 700 \N -120 \N \N 5701 \N 53 102 5701 569 692 \N 700 \N -120 \N \N 5723 \N 53 102 5723 570 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 571 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 572 700 \N 800 \N -120 \N \N 5723 \N 53 102 5723 573 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 574 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 575 700 \N 800 \N -120 \N \N 5723 \N 53 102 5723 576 692 \N 700 \N -120 \N \N 5723 \N 53 102 5723 577 700 \N 800 \N -120 \N \N 5723 \N 53 102 5723 578 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 579 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 580 692 \N 700 \N -120 \N \N 5723 \N 53 102 5723 581 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 582 692 \N 700 \N -120 \N \N 5723 \N 53 102 5723 583 700 \N 800 \N -120 \N \N 5723 \N 53 102 5723 584 500 \N 600 \N -120 \N \N 5723 \N 53 102 5723 585 692 \N 700 \N -120 \N \N 5748 \N 53 102 5748 586 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 587 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 588 700 \N 800 \N -120 \N \N 5748 \N 53 102 5748 589 700 \N 800 \N -120 \N \N 5748 \N 53 102 5748 590 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 591 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 592 692 \N 700 \N -120 \N \N 5748 \N 53 102 5748 593 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 594 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 595 700 \N 800 \N -120 \N \N 5748 \N 53 102 5748 596 692 \N 700 \N -120 \N \N 5748 \N 53 102 5748 597 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 598 500 \N 600 \N -120 \N \N 5748 \N 53 102 5748 599 700 \N 800 \N -120 \N \N 5748 \N 53 102 5748 600 692 \N 700 \N -120 \N \N 5748 \N 53 102 5748 601 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 602 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 603 692 \N 700 \N -120 \N \N 5770 \N 53 102 5770 604 700 \N 800 \N -120 \N \N 5770 \N 53 102 5770 605 700 \N 800 \N -120 \N \N 5770 \N 53 102 5770 606 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 607 692 \N 700 \N -120 \N \N 5770 \N 53 102 5770 608 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 609 700 \N 800 \N -120 \N \N 5770 \N 53 102 5770 610 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 611 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 612 692 \N 700 \N -120 \N \N 5770 \N 53 102 5770 613 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 614 500 \N 600 \N -120 \N \N 5770 \N 53 102 5770 615 692 \N 700 \N -120 \N \N 5770 \N 53 102 5770 616 700 \N 800 \N -120 \N \N 5770 \N 53 102 5770 617 692 \N 700 \N -120 \N \N 5792 \N 53 102 5792 618 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 619 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 620 700 \N 800 \N -120 \N \N 5792 \N 53 102 5792 621 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 622 700 \N 800 \N -120 \N \N 5792 \N 53 102 5792 623 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 624 692 \N 700 \N -120 \N \N 5792 \N 53 102 5792 625 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 626 692 \N 700 \N -120 \N \N 5792 \N 53 102 5792 627 700 \N 800 \N -120 \N \N 5792 \N 53 102 5792 628 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 629 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 630 692 \N 700 \N -120 \N \N 5792 \N 53 102 5792 631 500 \N 600 \N -120 \N \N 5792 \N 53 102 5792 632 700 \N 800 \N -120 \N \N 5792 \N 53 102 5792 633 700 \N 800 \N -120 \N \N 5814 \N 53 102 5814 634 692 \N 700 \N -120 \N \N 5814 \N 53 102 5814 635 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 636 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 637 692 \N 700 \N -120 \N \N 5814 \N 53 102 5814 638 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 639 700 \N 800 \N -120 \N \N 5814 \N 53 102 5814 640 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 641 692 \N 700 \N -120 \N \N 5814 \N 53 102 5814 642 700 \N 800 \N -120 \N \N 5814 \N 53 102 5814 643 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 644 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 645 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 646 692 \N 700 \N -120 \N \N 5814 \N 53 102 5814 647 500 \N 600 \N -120 \N \N 5814 \N 53 102 5814 648 700 \N 800 \N -120 \N \N 5814 \N 53 102 5814 649 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 650 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 651 700 \N 800 \N -120 \N \N 5837 \N 53 102 5837 652 692 \N 700 \N -120 \N \N 5837 \N 53 102 5837 653 692 \N 700 \N -120 \N \N 5837 \N 53 102 5837 654 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 655 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 656 700 \N 800 \N -120 \N \N 5837 \N 53 102 5837 657 692 \N 700 \N -120 \N \N 5837 \N 53 102 5837 658 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 659 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 660 700 \N 800 \N -120 \N \N 5837 \N 53 102 5837 661 700 \N 800 \N -120 \N \N 5837 \N 53 102 5837 662 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 663 500 \N 600 \N -120 \N \N 5837 \N 53 102 5837 664 692 \N 700 \N -120 \N \N 5837 \N 53 102 5837 665 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 666 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 667 692 \N 700 \N -120 \N \N 5864 \N 53 102 5864 668 700 \N 800 \N -120 \N \N 5864 \N 53 102 5864 669 692 \N 700 \N -120 \N \N 5864 \N 53 102 5864 670 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 671 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 672 700 \N 800 \N -120 \N \N 5864 \N 53 102 5864 673 700 \N 800 \N -120 \N \N 5864 \N 53 102 5864 674 692 \N 700 \N -120 \N \N 5864 \N 53 102 5864 675 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 676 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 677 692 \N 700 \N -120 \N \N 5864 \N 53 102 5864 678 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 679 700 \N 800 \N -120 \N \N 5864 \N 53 102 5864 680 500 \N 600 \N -120 \N \N 5864 \N 53 102 5864 681 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 682 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 683 692 \N 700 \N -120 \N \N 5962 \N 53 102 5962 684 700 \N 800 \N -120 \N \N 5962 \N 53 102 5962 685 692 \N 700 \N -120 \N \N 5962 \N 53 102 5962 686 700 \N 800 \N -120 \N \N 5962 \N 53 102 5962 687 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 688 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 689 700 \N 800 \N -120 \N \N 5962 \N 53 102 5962 690 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 691 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 692 692 \N 700 \N -120 \N \N 5962 \N 53 102 5962 693 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 694 500 \N 600 \N -120 \N \N 5962 \N 53 102 5962 695 692 \N 700 \N -120 \N \N 5962 \N 53 102 5962 696 700 \N 800 \N -120 \N \N 5962 \N 53 102 5962 \. -- -- Data for Name: well; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY well (id, alpha, blue, "column", permissions, externaldescription, externalidentifier, green, red, "row", status, type, version, creation_id, external_id, group_id, owner_id, update_id, plate) FROM stdin; \. -- -- Data for Name: wellannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY wellannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: wellreagentlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY wellreagentlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Data for Name: wellsample; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY wellsample (id, permissions, posx, posy, timepoint, version, creation_id, external_id, group_id, owner_id, update_id, image, plateacquisition, well, well_index) FROM stdin; \. -- -- Data for Name: wellsampleannotationlink; Type: TABLE DATA; Schema: public; Owner: db_user -- COPY wellsampleannotationlink (id, permissions, version, child, creation_id, external_id, group_id, owner_id, update_id, parent) FROM stdin; \. -- -- Name: _lock_ids_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY _lock_ids ADD CONSTRAINT _lock_ids_pkey PRIMARY KEY (id); -- -- Name: acquisitionmode_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY acquisitionmode ADD CONSTRAINT acquisitionmode_external_id_key UNIQUE (external_id); -- -- Name: acquisitionmode_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY acquisitionmode ADD CONSTRAINT acquisitionmode_pkey PRIMARY KEY (id); -- -- Name: acquisitionmode_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY acquisitionmode ADD CONSTRAINT acquisitionmode_value_key UNIQUE (value); -- -- Name: annotation_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY annotation ADD CONSTRAINT annotation_external_id_key UNIQUE (external_id); -- -- Name: annotation_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY annotation ADD CONSTRAINT annotation_pkey PRIMARY KEY (id); -- -- Name: annotationannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT annotationannotationlink_external_id_key UNIQUE (external_id); -- -- Name: annotationannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT annotationannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: annotationannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT annotationannotationlink_pkey PRIMARY KEY (id); -- -- Name: arc_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY arc ADD CONSTRAINT arc_pkey PRIMARY KEY (lightsource_id); -- -- Name: arctype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY arctype ADD CONSTRAINT arctype_external_id_key UNIQUE (external_id); -- -- Name: arctype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY arctype ADD CONSTRAINT arctype_pkey PRIMARY KEY (id); -- -- Name: arctype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY arctype ADD CONSTRAINT arctype_value_key UNIQUE (value); -- -- Name: binning_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY binning ADD CONSTRAINT binning_external_id_key UNIQUE (external_id); -- -- Name: binning_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY binning ADD CONSTRAINT binning_pkey PRIMARY KEY (id); -- -- Name: binning_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY binning ADD CONSTRAINT binning_value_key UNIQUE (value); -- -- Name: channel_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channel ADD CONSTRAINT channel_external_id_key UNIQUE (external_id); -- -- Name: channel_pixels_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channel ADD CONSTRAINT channel_pixels_key UNIQUE (pixels, pixels_index); -- -- Name: channel_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channel ADD CONSTRAINT channel_pkey PRIMARY KEY (id); -- -- Name: channelannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT channelannotationlink_external_id_key UNIQUE (external_id); -- -- Name: channelannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT channelannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: channelannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT channelannotationlink_pkey PRIMARY KEY (id); -- -- Name: channelbinding_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT channelbinding_external_id_key UNIQUE (external_id); -- -- Name: channelbinding_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT channelbinding_pkey PRIMARY KEY (id); -- -- Name: channelbinding_renderingdef_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT channelbinding_renderingdef_key UNIQUE (renderingdef, renderingdef_index); -- -- Name: codomainmapcontext_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT codomainmapcontext_external_id_key UNIQUE (external_id); -- -- Name: codomainmapcontext_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT codomainmapcontext_pkey PRIMARY KEY (id); -- -- Name: codomainmapcontext_renderingdef_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT codomainmapcontext_renderingdef_key UNIQUE (renderingdef, renderingdef_index); -- -- Name: configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY configuration ADD CONSTRAINT configuration_pkey PRIMARY KEY (name); -- -- Name: contrastmethod_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY contrastmethod ADD CONSTRAINT contrastmethod_external_id_key UNIQUE (external_id); -- -- Name: contrastmethod_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY contrastmethod ADD CONSTRAINT contrastmethod_pkey PRIMARY KEY (id); -- -- Name: contrastmethod_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY contrastmethod ADD CONSTRAINT contrastmethod_value_key UNIQUE (value); -- -- Name: contraststretchingcontext_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY contraststretchingcontext ADD CONSTRAINT contraststretchingcontext_pkey PRIMARY KEY (codomainmapcontext_id); -- -- Name: correction_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY correction ADD CONSTRAINT correction_external_id_key UNIQUE (external_id); -- -- Name: correction_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY correction ADD CONSTRAINT correction_pkey PRIMARY KEY (id); -- -- Name: correction_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY correction ADD CONSTRAINT correction_value_key UNIQUE (value); -- -- Name: count_experimenter_annotationlinks_by_owner_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY count_experimenter_annotationlinks_by_owner ADD CONSTRAINT count_experimenter_annotationlinks_by_owner_pkey PRIMARY KEY (experimenter_id, owner_id); -- -- Name: count_experimentergroup_annotationlinks_by_owner_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY count_experimentergroup_annotationlinks_by_owner ADD CONSTRAINT count_experimentergroup_annotationlinks_by_owner_pkey PRIMARY KEY (experimentergroup_id, owner_id); -- -- Name: count_node_annotationlinks_by_owner_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY count_node_annotationlinks_by_owner ADD CONSTRAINT count_node_annotationlinks_by_owner_pkey PRIMARY KEY (node_id, owner_id); -- -- Name: count_session_annotationlinks_by_owner_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY count_session_annotationlinks_by_owner ADD CONSTRAINT count_session_annotationlinks_by_owner_pkey PRIMARY KEY (session_id, owner_id); -- -- Name: dataset_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dataset ADD CONSTRAINT dataset_external_id_key UNIQUE (external_id); -- -- Name: dataset_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dataset ADD CONSTRAINT dataset_pkey PRIMARY KEY (id); -- -- Name: datasetannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT datasetannotationlink_external_id_key UNIQUE (external_id); -- -- Name: datasetannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT datasetannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: datasetannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT datasetannotationlink_pkey PRIMARY KEY (id); -- -- Name: datasetimagelink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT datasetimagelink_external_id_key UNIQUE (external_id); -- -- Name: datasetimagelink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT datasetimagelink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: datasetimagelink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT datasetimagelink_pkey PRIMARY KEY (id); -- -- Name: dbpatch_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dbpatch ADD CONSTRAINT dbpatch_external_id_key UNIQUE (external_id); -- -- Name: dbpatch_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dbpatch ADD CONSTRAINT dbpatch_pkey PRIMARY KEY (id); -- -- Name: detector_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detector ADD CONSTRAINT detector_external_id_key UNIQUE (external_id); -- -- Name: detector_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detector ADD CONSTRAINT detector_pkey PRIMARY KEY (id); -- -- Name: detectorsettings_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT detectorsettings_external_id_key UNIQUE (external_id); -- -- Name: detectorsettings_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT detectorsettings_pkey PRIMARY KEY (id); -- -- Name: detectortype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detectortype ADD CONSTRAINT detectortype_external_id_key UNIQUE (external_id); -- -- Name: detectortype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detectortype ADD CONSTRAINT detectortype_pkey PRIMARY KEY (id); -- -- Name: detectortype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY detectortype ADD CONSTRAINT detectortype_value_key UNIQUE (value); -- -- Name: dichroic_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dichroic ADD CONSTRAINT dichroic_external_id_key UNIQUE (external_id); -- -- Name: dichroic_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dichroic ADD CONSTRAINT dichroic_pkey PRIMARY KEY (id); -- -- Name: dimensionorder_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dimensionorder ADD CONSTRAINT dimensionorder_external_id_key UNIQUE (external_id); -- -- Name: dimensionorder_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dimensionorder ADD CONSTRAINT dimensionorder_pkey PRIMARY KEY (id); -- -- Name: dimensionorder_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dimensionorder ADD CONSTRAINT dimensionorder_value_key UNIQUE (value); -- -- Name: event_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY event ADD CONSTRAINT event_external_id_key UNIQUE (external_id); -- -- Name: event_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY event ADD CONSTRAINT event_pkey PRIMARY KEY (id); -- -- Name: eventlog_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY eventlog ADD CONSTRAINT eventlog_external_id_key UNIQUE (external_id); -- -- Name: eventlog_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY eventlog ADD CONSTRAINT eventlog_pkey PRIMARY KEY (id); -- -- Name: eventtype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY eventtype ADD CONSTRAINT eventtype_external_id_key UNIQUE (external_id); -- -- Name: eventtype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY eventtype ADD CONSTRAINT eventtype_pkey PRIMARY KEY (id); -- -- Name: eventtype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY eventtype ADD CONSTRAINT eventtype_value_key UNIQUE (value); -- -- Name: experiment_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experiment ADD CONSTRAINT experiment_external_id_key UNIQUE (external_id); -- -- Name: experiment_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experiment ADD CONSTRAINT experiment_pkey PRIMARY KEY (id); -- -- Name: experimenter_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenter ADD CONSTRAINT experimenter_external_id_key UNIQUE (external_id); -- -- Name: experimenter_omename_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenter ADD CONSTRAINT experimenter_omename_key UNIQUE (omename); -- -- Name: experimenter_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenter ADD CONSTRAINT experimenter_pkey PRIMARY KEY (id); -- -- Name: experimenterannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT experimenterannotationlink_external_id_key UNIQUE (external_id); -- -- Name: experimenterannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT experimenterannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: experimenterannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT experimenterannotationlink_pkey PRIMARY KEY (id); -- -- Name: experimentergroup_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimentergroup ADD CONSTRAINT experimentergroup_external_id_key UNIQUE (external_id); -- -- Name: experimentergroup_name_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimentergroup ADD CONSTRAINT experimentergroup_name_key UNIQUE (name); -- -- Name: experimentergroup_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimentergroup ADD CONSTRAINT experimentergroup_pkey PRIMARY KEY (id); -- -- Name: experimentergroupannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT experimentergroupannotationlink_external_id_key UNIQUE (external_id); -- -- Name: experimentergroupannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT experimentergroupannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: experimentergroupannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT experimentergroupannotationlink_pkey PRIMARY KEY (id); -- -- Name: experimenttype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenttype ADD CONSTRAINT experimenttype_external_id_key UNIQUE (external_id); -- -- Name: experimenttype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenttype ADD CONSTRAINT experimenttype_pkey PRIMARY KEY (id); -- -- Name: experimenttype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY experimenttype ADD CONSTRAINT experimenttype_value_key UNIQUE (value); -- -- Name: externalinfo_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY externalinfo ADD CONSTRAINT externalinfo_external_id_key UNIQUE (external_id); -- -- Name: externalinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY externalinfo ADD CONSTRAINT externalinfo_pkey PRIMARY KEY (id); -- -- Name: family_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY family ADD CONSTRAINT family_external_id_key UNIQUE (external_id); -- -- Name: family_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY family ADD CONSTRAINT family_pkey PRIMARY KEY (id); -- -- Name: family_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY family ADD CONSTRAINT family_value_key UNIQUE (value); -- -- Name: filament_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filament ADD CONSTRAINT filament_pkey PRIMARY KEY (lightsource_id); -- -- Name: filamenttype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filamenttype ADD CONSTRAINT filamenttype_external_id_key UNIQUE (external_id); -- -- Name: filamenttype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filamenttype ADD CONSTRAINT filamenttype_pkey PRIMARY KEY (id); -- -- Name: filamenttype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filamenttype ADD CONSTRAINT filamenttype_value_key UNIQUE (value); -- -- Name: filter_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filter ADD CONSTRAINT filter_external_id_key UNIQUE (external_id); -- -- Name: filter_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filter ADD CONSTRAINT filter_pkey PRIMARY KEY (id); -- -- Name: filterset_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filterset ADD CONSTRAINT filterset_external_id_key UNIQUE (external_id); -- -- Name: filterset_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filterset ADD CONSTRAINT filterset_pkey PRIMARY KEY (id); -- -- Name: filtersetemissionfilterlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT filtersetemissionfilterlink_external_id_key UNIQUE (external_id); -- -- Name: filtersetemissionfilterlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT filtersetemissionfilterlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: filtersetemissionfilterlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT filtersetemissionfilterlink_pkey PRIMARY KEY (id); -- -- Name: filtersetexcitationfilterlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT filtersetexcitationfilterlink_external_id_key UNIQUE (external_id); -- -- Name: filtersetexcitationfilterlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT filtersetexcitationfilterlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: filtersetexcitationfilterlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT filtersetexcitationfilterlink_pkey PRIMARY KEY (id); -- -- Name: filtertype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtertype ADD CONSTRAINT filtertype_external_id_key UNIQUE (external_id); -- -- Name: filtertype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtertype ADD CONSTRAINT filtertype_pkey PRIMARY KEY (id); -- -- Name: filtertype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY filtertype ADD CONSTRAINT filtertype_value_key UNIQUE (value); -- -- Name: format_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY format ADD CONSTRAINT format_external_id_key UNIQUE (external_id); -- -- Name: format_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY format ADD CONSTRAINT format_pkey PRIMARY KEY (id); -- -- Name: format_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY format ADD CONSTRAINT format_value_key UNIQUE (value); -- -- Name: groupexperimentermap_child_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT groupexperimentermap_child_key UNIQUE (child, child_index); -- -- Name: groupexperimentermap_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT groupexperimentermap_external_id_key UNIQUE (external_id); -- -- Name: groupexperimentermap_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT groupexperimentermap_parent_key UNIQUE (parent, child); -- -- Name: groupexperimentermap_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT groupexperimentermap_pkey PRIMARY KEY (id); -- -- Name: illumination_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY illumination ADD CONSTRAINT illumination_external_id_key UNIQUE (external_id); -- -- Name: illumination_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY illumination ADD CONSTRAINT illumination_pkey PRIMARY KEY (id); -- -- Name: illumination_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY illumination ADD CONSTRAINT illumination_value_key UNIQUE (value); -- -- Name: image_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY image ADD CONSTRAINT image_external_id_key UNIQUE (external_id); -- -- Name: image_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY image ADD CONSTRAINT image_pkey PRIMARY KEY (id); -- -- Name: imageannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT imageannotationlink_external_id_key UNIQUE (external_id); -- -- Name: imageannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT imageannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: imageannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT imageannotationlink_pkey PRIMARY KEY (id); -- -- Name: imagingenvironment_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT imagingenvironment_external_id_key UNIQUE (external_id); -- -- Name: imagingenvironment_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT imagingenvironment_pkey PRIMARY KEY (id); -- -- Name: immersion_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY immersion ADD CONSTRAINT immersion_external_id_key UNIQUE (external_id); -- -- Name: immersion_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY immersion ADD CONSTRAINT immersion_pkey PRIMARY KEY (id); -- -- Name: immersion_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY immersion ADD CONSTRAINT immersion_value_key UNIQUE (value); -- -- Name: importjob_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY importjob ADD CONSTRAINT importjob_pkey PRIMARY KEY (job_id); -- -- Name: instrument_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY instrument ADD CONSTRAINT instrument_external_id_key UNIQUE (external_id); -- -- Name: instrument_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY instrument ADD CONSTRAINT instrument_pkey PRIMARY KEY (id); -- -- Name: job_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY job ADD CONSTRAINT job_external_id_key UNIQUE (external_id); -- -- Name: job_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY job ADD CONSTRAINT job_pkey PRIMARY KEY (id); -- -- Name: joboriginalfilelink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT joboriginalfilelink_external_id_key UNIQUE (external_id); -- -- Name: joboriginalfilelink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT joboriginalfilelink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: joboriginalfilelink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT joboriginalfilelink_pkey PRIMARY KEY (id); -- -- Name: jobstatus_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY jobstatus ADD CONSTRAINT jobstatus_external_id_key UNIQUE (external_id); -- -- Name: jobstatus_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY jobstatus ADD CONSTRAINT jobstatus_pkey PRIMARY KEY (id); -- -- Name: jobstatus_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY jobstatus ADD CONSTRAINT jobstatus_value_key UNIQUE (value); -- -- Name: laser_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY laser ADD CONSTRAINT laser_pkey PRIMARY KEY (lightsource_id); -- -- Name: lasermedium_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lasermedium ADD CONSTRAINT lasermedium_external_id_key UNIQUE (external_id); -- -- Name: lasermedium_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lasermedium ADD CONSTRAINT lasermedium_pkey PRIMARY KEY (id); -- -- Name: lasermedium_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lasermedium ADD CONSTRAINT lasermedium_value_key UNIQUE (value); -- -- Name: lasertype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lasertype ADD CONSTRAINT lasertype_external_id_key UNIQUE (external_id); -- -- Name: lasertype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lasertype ADD CONSTRAINT lasertype_pkey PRIMARY KEY (id); -- -- Name: lasertype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lasertype ADD CONSTRAINT lasertype_value_key UNIQUE (value); -- -- Name: lightemittingdiode_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightemittingdiode ADD CONSTRAINT lightemittingdiode_pkey PRIMARY KEY (lightsource_id); -- -- Name: lightpath_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpath ADD CONSTRAINT lightpath_external_id_key UNIQUE (external_id); -- -- Name: lightpath_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpath ADD CONSTRAINT lightpath_pkey PRIMARY KEY (id); -- -- Name: lightpathemissionfilterlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT lightpathemissionfilterlink_external_id_key UNIQUE (external_id); -- -- Name: lightpathemissionfilterlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT lightpathemissionfilterlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: lightpathemissionfilterlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT lightpathemissionfilterlink_pkey PRIMARY KEY (id); -- -- Name: lightpathexcitationfilterlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT lightpathexcitationfilterlink_external_id_key UNIQUE (external_id); -- -- Name: lightpathexcitationfilterlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT lightpathexcitationfilterlink_parent_key UNIQUE (parent, parent_index); -- -- Name: lightpathexcitationfilterlink_parent_key1; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT lightpathexcitationfilterlink_parent_key1 UNIQUE (parent, child, owner_id); -- -- Name: lightpathexcitationfilterlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT lightpathexcitationfilterlink_pkey PRIMARY KEY (id); -- -- Name: lightsettings_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT lightsettings_external_id_key UNIQUE (external_id); -- -- Name: lightsettings_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT lightsettings_pkey PRIMARY KEY (id); -- -- Name: lightsource_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightsource ADD CONSTRAINT lightsource_external_id_key UNIQUE (external_id); -- -- Name: lightsource_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY lightsource ADD CONSTRAINT lightsource_pkey PRIMARY KEY (id); -- -- Name: link_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY link ADD CONSTRAINT link_external_id_key UNIQUE (external_id); -- -- Name: link_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY link ADD CONSTRAINT link_pkey PRIMARY KEY (id); -- -- Name: logicalchannel_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT logicalchannel_external_id_key UNIQUE (external_id); -- -- Name: logicalchannel_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT logicalchannel_pkey PRIMARY KEY (id); -- -- Name: medium_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY medium ADD CONSTRAINT medium_external_id_key UNIQUE (external_id); -- -- Name: medium_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY medium ADD CONSTRAINT medium_pkey PRIMARY KEY (id); -- -- Name: medium_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY medium ADD CONSTRAINT medium_value_key UNIQUE (value); -- -- Name: microbeammanipulation_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT microbeammanipulation_external_id_key UNIQUE (external_id); -- -- Name: microbeammanipulation_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT microbeammanipulation_pkey PRIMARY KEY (id); -- -- Name: microbeammanipulationtype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microbeammanipulationtype ADD CONSTRAINT microbeammanipulationtype_external_id_key UNIQUE (external_id); -- -- Name: microbeammanipulationtype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microbeammanipulationtype ADD CONSTRAINT microbeammanipulationtype_pkey PRIMARY KEY (id); -- -- Name: microbeammanipulationtype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microbeammanipulationtype ADD CONSTRAINT microbeammanipulationtype_value_key UNIQUE (value); -- -- Name: microscope_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microscope ADD CONSTRAINT microscope_external_id_key UNIQUE (external_id); -- -- Name: microscope_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microscope ADD CONSTRAINT microscope_pkey PRIMARY KEY (id); -- -- Name: microscopetype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microscopetype ADD CONSTRAINT microscopetype_external_id_key UNIQUE (external_id); -- -- Name: microscopetype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microscopetype ADD CONSTRAINT microscopetype_pkey PRIMARY KEY (id); -- -- Name: microscopetype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY microscopetype ADD CONSTRAINT microscopetype_value_key UNIQUE (value); -- -- Name: namespace_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY namespace ADD CONSTRAINT namespace_external_id_key UNIQUE (external_id); -- -- Name: namespace_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY namespace ADD CONSTRAINT namespace_pkey PRIMARY KEY (id); -- -- Name: namespaceannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT namespaceannotationlink_external_id_key UNIQUE (external_id); -- -- Name: namespaceannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT namespaceannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: namespaceannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT namespaceannotationlink_pkey PRIMARY KEY (id); -- -- Name: node_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY node ADD CONSTRAINT node_external_id_key UNIQUE (external_id); -- -- Name: node_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY node ADD CONSTRAINT node_pkey PRIMARY KEY (id); -- -- Name: node_uuid_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY node ADD CONSTRAINT node_uuid_key UNIQUE (uuid); -- -- Name: nodeannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT nodeannotationlink_external_id_key UNIQUE (external_id); -- -- Name: nodeannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT nodeannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: nodeannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT nodeannotationlink_pkey PRIMARY KEY (id); -- -- Name: objective_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY objective ADD CONSTRAINT objective_external_id_key UNIQUE (external_id); -- -- Name: objective_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY objective ADD CONSTRAINT objective_pkey PRIMARY KEY (id); -- -- Name: objectivesettings_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT objectivesettings_external_id_key UNIQUE (external_id); -- -- Name: objectivesettings_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT objectivesettings_pkey PRIMARY KEY (id); -- -- Name: originalfile_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY originalfile ADD CONSTRAINT originalfile_external_id_key UNIQUE (external_id); -- -- Name: originalfile_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY originalfile ADD CONSTRAINT originalfile_pkey PRIMARY KEY (id); -- -- Name: originalfileannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT originalfileannotationlink_external_id_key UNIQUE (external_id); -- -- Name: originalfileannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT originalfileannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: originalfileannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT originalfileannotationlink_pkey PRIMARY KEY (id); -- -- Name: otf_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY otf ADD CONSTRAINT otf_external_id_key UNIQUE (external_id); -- -- Name: otf_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY otf ADD CONSTRAINT otf_pkey PRIMARY KEY (id); -- -- Name: parsejob_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY parsejob ADD CONSTRAINT parsejob_pkey PRIMARY KEY (job_id); -- -- Name: password_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY password ADD CONSTRAINT password_pkey PRIMARY KEY (experimenter_id); -- -- Name: photometricinterpretation_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY photometricinterpretation ADD CONSTRAINT photometricinterpretation_external_id_key UNIQUE (external_id); -- -- Name: photometricinterpretation_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY photometricinterpretation ADD CONSTRAINT photometricinterpretation_pkey PRIMARY KEY (id); -- -- Name: photometricinterpretation_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY photometricinterpretation ADD CONSTRAINT photometricinterpretation_value_key UNIQUE (value); -- -- Name: pixels_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixels ADD CONSTRAINT pixels_external_id_key UNIQUE (external_id); -- -- Name: pixels_image_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixels ADD CONSTRAINT pixels_image_key UNIQUE (image, image_index); -- -- Name: pixels_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixels ADD CONSTRAINT pixels_pkey PRIMARY KEY (id); -- -- Name: pixelsannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT pixelsannotationlink_external_id_key UNIQUE (external_id); -- -- Name: pixelsannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT pixelsannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: pixelsannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT pixelsannotationlink_pkey PRIMARY KEY (id); -- -- Name: pixelsoriginalfilemap_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT pixelsoriginalfilemap_external_id_key UNIQUE (external_id); -- -- Name: pixelsoriginalfilemap_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT pixelsoriginalfilemap_parent_key UNIQUE (parent, child, owner_id); -- -- Name: pixelsoriginalfilemap_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT pixelsoriginalfilemap_pkey PRIMARY KEY (id); -- -- Name: pixelstype_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelstype ADD CONSTRAINT pixelstype_external_id_key UNIQUE (external_id); -- -- Name: pixelstype_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelstype ADD CONSTRAINT pixelstype_pkey PRIMARY KEY (id); -- -- Name: pixelstype_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pixelstype ADD CONSTRAINT pixelstype_value_key UNIQUE (value); -- -- Name: planeinfo_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT planeinfo_external_id_key UNIQUE (external_id); -- -- Name: planeinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT planeinfo_pkey PRIMARY KEY (id); -- -- Name: planeinfoannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT planeinfoannotationlink_external_id_key UNIQUE (external_id); -- -- Name: planeinfoannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT planeinfoannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: planeinfoannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT planeinfoannotationlink_pkey PRIMARY KEY (id); -- -- Name: planeslicingcontext_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY planeslicingcontext ADD CONSTRAINT planeslicingcontext_pkey PRIMARY KEY (codomainmapcontext_id); -- -- Name: plate_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plate ADD CONSTRAINT plate_external_id_key UNIQUE (external_id); -- -- Name: plate_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plate ADD CONSTRAINT plate_pkey PRIMARY KEY (id); -- -- Name: plateacquisition_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT plateacquisition_external_id_key UNIQUE (external_id); -- -- Name: plateacquisition_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT plateacquisition_pkey PRIMARY KEY (id); -- -- Name: plateacquisitionannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT plateacquisitionannotationlink_external_id_key UNIQUE (external_id); -- -- Name: plateacquisitionannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT plateacquisitionannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: plateacquisitionannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT plateacquisitionannotationlink_pkey PRIMARY KEY (id); -- -- Name: plateannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT plateannotationlink_external_id_key UNIQUE (external_id); -- -- Name: plateannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT plateannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: plateannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT plateannotationlink_pkey PRIMARY KEY (id); -- -- Name: project_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY project ADD CONSTRAINT project_external_id_key UNIQUE (external_id); -- -- Name: project_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY project ADD CONSTRAINT project_pkey PRIMARY KEY (id); -- -- Name: projectannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT projectannotationlink_external_id_key UNIQUE (external_id); -- -- Name: projectannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT projectannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: projectannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT projectannotationlink_pkey PRIMARY KEY (id); -- -- Name: projectdatasetlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT projectdatasetlink_external_id_key UNIQUE (external_id); -- -- Name: projectdatasetlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT projectdatasetlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: projectdatasetlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT projectdatasetlink_pkey PRIMARY KEY (id); -- -- Name: pulse_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pulse ADD CONSTRAINT pulse_external_id_key UNIQUE (external_id); -- -- Name: pulse_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pulse ADD CONSTRAINT pulse_pkey PRIMARY KEY (id); -- -- Name: pulse_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY pulse ADD CONSTRAINT pulse_value_key UNIQUE (value); -- -- Name: quantumdef_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT quantumdef_external_id_key UNIQUE (external_id); -- -- Name: quantumdef_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT quantumdef_pkey PRIMARY KEY (id); -- -- Name: reagent_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY reagent ADD CONSTRAINT reagent_external_id_key UNIQUE (external_id); -- -- Name: reagent_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY reagent ADD CONSTRAINT reagent_pkey PRIMARY KEY (id); -- -- Name: reagentannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT reagentannotationlink_external_id_key UNIQUE (external_id); -- -- Name: reagentannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT reagentannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: reagentannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT reagentannotationlink_pkey PRIMARY KEY (id); -- -- Name: renderingdef_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT renderingdef_external_id_key UNIQUE (external_id); -- -- Name: renderingdef_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT renderingdef_pkey PRIMARY KEY (id); -- -- Name: renderingmodel_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY renderingmodel ADD CONSTRAINT renderingmodel_external_id_key UNIQUE (external_id); -- -- Name: renderingmodel_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY renderingmodel ADD CONSTRAINT renderingmodel_pkey PRIMARY KEY (id); -- -- Name: renderingmodel_value_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY renderingmodel ADD CONSTRAINT renderingmodel_value_key UNIQUE (value); -- -- Name: reverseintensitycontext_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY reverseintensitycontext ADD CONSTRAINT reverseintensitycontext_pkey PRIMARY KEY (codomainmapcontext_id); -- -- Name: roi_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY roi ADD CONSTRAINT roi_external_id_key UNIQUE (external_id); -- -- Name: roi_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY roi ADD CONSTRAINT roi_pkey PRIMARY KEY (id); -- -- Name: roiannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT roiannotationlink_external_id_key UNIQUE (external_id); -- -- Name: roiannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT roiannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: roiannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT roiannotationlink_pkey PRIMARY KEY (id); -- -- Name: screen_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screen ADD CONSTRAINT screen_external_id_key UNIQUE (external_id); -- -- Name: screen_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screen ADD CONSTRAINT screen_pkey PRIMARY KEY (id); -- -- Name: screenannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT screenannotationlink_external_id_key UNIQUE (external_id); -- -- Name: screenannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT screenannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: screenannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT screenannotationlink_pkey PRIMARY KEY (id); -- -- Name: screenplatelink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT screenplatelink_external_id_key UNIQUE (external_id); -- -- Name: screenplatelink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT screenplatelink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: screenplatelink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT screenplatelink_pkey PRIMARY KEY (id); -- -- Name: scriptjob_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY scriptjob ADD CONSTRAINT scriptjob_pkey PRIMARY KEY (job_id); -- -- Name: session_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY session ADD CONSTRAINT session_external_id_key UNIQUE (external_id); -- -- Name: session_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY session ADD CONSTRAINT session_pkey PRIMARY KEY (id); -- -- Name: session_uuid_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY session ADD CONSTRAINT session_uuid_key UNIQUE (uuid); -- -- Name: sessionannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT sessionannotationlink_external_id_key UNIQUE (external_id); -- -- Name: sessionannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT sessionannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: sessionannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT sessionannotationlink_pkey PRIMARY KEY (id); -- -- Name: shape_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY shape ADD CONSTRAINT shape_external_id_key UNIQUE (external_id); -- -- Name: shape_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY shape ADD CONSTRAINT shape_pkey PRIMARY KEY (id); -- -- Name: shape_roi_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY shape ADD CONSTRAINT shape_roi_key UNIQUE (roi, roi_index); -- -- Name: share_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY share ADD CONSTRAINT share_pkey PRIMARY KEY (session_id); -- -- Name: sharemember_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY sharemember ADD CONSTRAINT sharemember_external_id_key UNIQUE (external_id); -- -- Name: sharemember_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY sharemember ADD CONSTRAINT sharemember_parent_key UNIQUE (parent, child); -- -- Name: sharemember_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY sharemember ADD CONSTRAINT sharemember_pkey PRIMARY KEY (id); -- -- Name: stagelabel_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT stagelabel_external_id_key UNIQUE (external_id); -- -- Name: stagelabel_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT stagelabel_pkey PRIMARY KEY (id); -- -- Name: statsinfo_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT statsinfo_external_id_key UNIQUE (external_id); -- -- Name: statsinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT statsinfo_pkey PRIMARY KEY (id); -- -- Name: thumbnail_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT thumbnail_external_id_key UNIQUE (external_id); -- -- Name: thumbnail_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT thumbnail_pkey PRIMARY KEY (id); -- -- Name: transmittancerange_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT transmittancerange_external_id_key UNIQUE (external_id); -- -- Name: transmittancerange_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT transmittancerange_pkey PRIMARY KEY (id); -- -- Name: unique_dbpatch; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY dbpatch ADD CONSTRAINT unique_dbpatch UNIQUE (currentversion, currentpatch, previousversion, previouspatch); -- -- Name: well_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY well ADD CONSTRAINT well_external_id_key UNIQUE (external_id); -- -- Name: well_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY well ADD CONSTRAINT well_pkey PRIMARY KEY (id); -- -- Name: wellannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT wellannotationlink_external_id_key UNIQUE (external_id); -- -- Name: wellannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT wellannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: wellannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT wellannotationlink_pkey PRIMARY KEY (id); -- -- Name: wellreagentlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT wellreagentlink_external_id_key UNIQUE (external_id); -- -- Name: wellreagentlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT wellreagentlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: wellreagentlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT wellreagentlink_pkey PRIMARY KEY (id); -- -- Name: wellsample_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellsample ADD CONSTRAINT wellsample_external_id_key UNIQUE (external_id); -- -- Name: wellsample_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellsample ADD CONSTRAINT wellsample_pkey PRIMARY KEY (id); -- -- Name: wellsample_well_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellsample ADD CONSTRAINT wellsample_well_key UNIQUE (well, well_index); -- -- Name: wellsampleannotationlink_external_id_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT wellsampleannotationlink_external_id_key UNIQUE (external_id); -- -- Name: wellsampleannotationlink_parent_key; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT wellsampleannotationlink_parent_key UNIQUE (parent, child, owner_id); -- -- Name: wellsampleannotationlink_pkey; Type: CONSTRAINT; Schema: public; Owner: db_user; Tablespace: -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT wellsampleannotationlink_pkey PRIMARY KEY (id); -- -- Name: _lock_ids_name; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE UNIQUE INDEX _lock_ids_name ON _lock_ids USING btree (name); -- -- Name: eventlog_action; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX eventlog_action ON eventlog USING btree (action); -- -- Name: eventlog_entityid; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX eventlog_entityid ON eventlog USING btree (entityid); -- -- Name: eventlog_entitytype; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX eventlog_entitytype ON eventlog USING btree (entitytype); -- -- Name: i_annotation_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_annotation_group ON annotation USING btree (group_id); -- -- Name: i_annotation_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_annotation_owner ON annotation USING btree (owner_id); -- -- Name: i_annotationannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_annotationannotationlink_child ON annotationannotationlink USING btree (child); -- -- Name: i_annotationannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_annotationannotationlink_group ON annotationannotationlink USING btree (group_id); -- -- Name: i_annotationannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_annotationannotationlink_owner ON annotationannotationlink USING btree (owner_id); -- -- Name: i_annotationannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_annotationannotationlink_parent ON annotationannotationlink USING btree (parent); -- -- Name: i_arc_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_arc_type ON arc USING btree (type); -- -- Name: i_channel_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channel_group ON channel USING btree (group_id); -- -- Name: i_channel_logicalchannel; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channel_logicalchannel ON channel USING btree (logicalchannel); -- -- Name: i_channel_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channel_owner ON channel USING btree (owner_id); -- -- Name: i_channel_pixels; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channel_pixels ON channel USING btree (pixels); -- -- Name: i_channel_statsinfo; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channel_statsinfo ON channel USING btree (statsinfo); -- -- Name: i_channelannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelannotationlink_child ON channelannotationlink USING btree (child); -- -- Name: i_channelannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelannotationlink_group ON channelannotationlink USING btree (group_id); -- -- Name: i_channelannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelannotationlink_owner ON channelannotationlink USING btree (owner_id); -- -- Name: i_channelannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelannotationlink_parent ON channelannotationlink USING btree (parent); -- -- Name: i_channelbinding_family; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelbinding_family ON channelbinding USING btree (family); -- -- Name: i_channelbinding_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelbinding_group ON channelbinding USING btree (group_id); -- -- Name: i_channelbinding_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelbinding_owner ON channelbinding USING btree (owner_id); -- -- Name: i_channelbinding_renderingdef; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_channelbinding_renderingdef ON channelbinding USING btree (renderingdef); -- -- Name: i_codomainmapcontext_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_codomainmapcontext_group ON codomainmapcontext USING btree (group_id); -- -- Name: i_codomainmapcontext_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_codomainmapcontext_owner ON codomainmapcontext USING btree (owner_id); -- -- Name: i_codomainmapcontext_renderingdef; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_codomainmapcontext_renderingdef ON codomainmapcontext USING btree (renderingdef); -- -- Name: i_dataset_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_dataset_group ON dataset USING btree (group_id); -- -- Name: i_dataset_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_dataset_owner ON dataset USING btree (owner_id); -- -- Name: i_datasetannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetannotationlink_child ON datasetannotationlink USING btree (child); -- -- Name: i_datasetannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetannotationlink_group ON datasetannotationlink USING btree (group_id); -- -- Name: i_datasetannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetannotationlink_owner ON datasetannotationlink USING btree (owner_id); -- -- Name: i_datasetannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetannotationlink_parent ON datasetannotationlink USING btree (parent); -- -- Name: i_datasetimagelink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetimagelink_child ON datasetimagelink USING btree (child); -- -- Name: i_datasetimagelink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetimagelink_group ON datasetimagelink USING btree (group_id); -- -- Name: i_datasetimagelink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetimagelink_owner ON datasetimagelink USING btree (owner_id); -- -- Name: i_datasetimagelink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_datasetimagelink_parent ON datasetimagelink USING btree (parent); -- -- Name: i_detector_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detector_group ON detector USING btree (group_id); -- -- Name: i_detector_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detector_instrument ON detector USING btree (instrument); -- -- Name: i_detector_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detector_owner ON detector USING btree (owner_id); -- -- Name: i_detector_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detector_type ON detector USING btree (type); -- -- Name: i_detectorsettings_binning; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detectorsettings_binning ON detectorsettings USING btree (binning); -- -- Name: i_detectorsettings_detector; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detectorsettings_detector ON detectorsettings USING btree (detector); -- -- Name: i_detectorsettings_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detectorsettings_group ON detectorsettings USING btree (group_id); -- -- Name: i_detectorsettings_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_detectorsettings_owner ON detectorsettings USING btree (owner_id); -- -- Name: i_dichroic_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_dichroic_group ON dichroic USING btree (group_id); -- -- Name: i_dichroic_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_dichroic_instrument ON dichroic USING btree (instrument); -- -- Name: i_dichroic_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_dichroic_owner ON dichroic USING btree (owner_id); -- -- Name: i_event_containingevent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_event_containingevent ON event USING btree (containingevent); -- -- Name: i_event_experimenter; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_event_experimenter ON event USING btree (experimenter); -- -- Name: i_event_experimentergroup; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_event_experimentergroup ON event USING btree (experimentergroup); -- -- Name: i_event_session; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_event_session ON event USING btree (session); -- -- Name: i_event_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_event_type ON event USING btree (type); -- -- Name: i_eventlog_event; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_eventlog_event ON eventlog USING btree (event); -- -- Name: i_experiment_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experiment_group ON experiment USING btree (group_id); -- -- Name: i_experiment_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experiment_owner ON experiment USING btree (owner_id); -- -- Name: i_experiment_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experiment_type ON experiment USING btree (type); -- -- Name: i_experimenterannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimenterannotationlink_child ON experimenterannotationlink USING btree (child); -- -- Name: i_experimenterannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimenterannotationlink_group ON experimenterannotationlink USING btree (group_id); -- -- Name: i_experimenterannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimenterannotationlink_owner ON experimenterannotationlink USING btree (owner_id); -- -- Name: i_experimenterannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimenterannotationlink_parent ON experimenterannotationlink USING btree (parent); -- -- Name: i_experimentergroupannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimentergroupannotationlink_child ON experimentergroupannotationlink USING btree (child); -- -- Name: i_experimentergroupannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimentergroupannotationlink_group ON experimentergroupannotationlink USING btree (group_id); -- -- Name: i_experimentergroupannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimentergroupannotationlink_owner ON experimentergroupannotationlink USING btree (owner_id); -- -- Name: i_experimentergroupannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_experimentergroupannotationlink_parent ON experimentergroupannotationlink USING btree (parent); -- -- Name: i_externalinfo_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_externalinfo_group ON externalinfo USING btree (group_id); -- -- Name: i_externalinfo_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_externalinfo_owner ON externalinfo USING btree (owner_id); -- -- Name: i_filament_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filament_type ON filament USING btree (type); -- -- Name: i_fileannotation_file; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_fileannotation_file ON annotation USING btree (file); -- -- Name: i_filter_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filter_group ON filter USING btree (group_id); -- -- Name: i_filter_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filter_instrument ON filter USING btree (instrument); -- -- Name: i_filter_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filter_owner ON filter USING btree (owner_id); -- -- Name: i_filter_transmittancerange; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filter_transmittancerange ON filter USING btree (transmittancerange); -- -- Name: i_filter_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filter_type ON filter USING btree (type); -- -- Name: i_filterset_dichroic; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filterset_dichroic ON filterset USING btree (dichroic); -- -- Name: i_filterset_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filterset_group ON filterset USING btree (group_id); -- -- Name: i_filterset_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filterset_instrument ON filterset USING btree (instrument); -- -- Name: i_filterset_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filterset_owner ON filterset USING btree (owner_id); -- -- Name: i_filtersetemissionfilterlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetemissionfilterlink_child ON filtersetemissionfilterlink USING btree (child); -- -- Name: i_filtersetemissionfilterlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetemissionfilterlink_group ON filtersetemissionfilterlink USING btree (group_id); -- -- Name: i_filtersetemissionfilterlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetemissionfilterlink_owner ON filtersetemissionfilterlink USING btree (owner_id); -- -- Name: i_filtersetemissionfilterlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetemissionfilterlink_parent ON filtersetemissionfilterlink USING btree (parent); -- -- Name: i_filtersetexcitationfilterlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetexcitationfilterlink_child ON filtersetexcitationfilterlink USING btree (child); -- -- Name: i_filtersetexcitationfilterlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetexcitationfilterlink_group ON filtersetexcitationfilterlink USING btree (group_id); -- -- Name: i_filtersetexcitationfilterlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetexcitationfilterlink_owner ON filtersetexcitationfilterlink USING btree (owner_id); -- -- Name: i_filtersetexcitationfilterlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_filtersetexcitationfilterlink_parent ON filtersetexcitationfilterlink USING btree (parent); -- -- Name: i_groupexperimentermap_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_groupexperimentermap_child ON groupexperimentermap USING btree (child); -- -- Name: i_groupexperimentermap_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_groupexperimentermap_parent ON groupexperimentermap USING btree (parent); -- -- Name: i_image_experiment; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_experiment ON image USING btree (experiment); -- -- Name: i_image_format; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_format ON image USING btree (format); -- -- Name: i_image_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_group ON image USING btree (group_id); -- -- Name: i_image_imagingenvironment; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_imagingenvironment ON image USING btree (imagingenvironment); -- -- Name: i_image_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_instrument ON image USING btree (instrument); -- -- Name: i_image_objectivesettings; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_objectivesettings ON image USING btree (objectivesettings); -- -- Name: i_image_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_owner ON image USING btree (owner_id); -- -- Name: i_image_stagelabel; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_image_stagelabel ON image USING btree (stagelabel); -- -- Name: i_imageannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_imageannotationlink_child ON imageannotationlink USING btree (child); -- -- Name: i_imageannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_imageannotationlink_group ON imageannotationlink USING btree (group_id); -- -- Name: i_imageannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_imageannotationlink_owner ON imageannotationlink USING btree (owner_id); -- -- Name: i_imageannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_imageannotationlink_parent ON imageannotationlink USING btree (parent); -- -- Name: i_imagingenvironment_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_imagingenvironment_group ON imagingenvironment USING btree (group_id); -- -- Name: i_imagingenvironment_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_imagingenvironment_owner ON imagingenvironment USING btree (owner_id); -- -- Name: i_instrument_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_instrument_group ON instrument USING btree (group_id); -- -- Name: i_instrument_microscope; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_instrument_microscope ON instrument USING btree (microscope); -- -- Name: i_instrument_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_instrument_owner ON instrument USING btree (owner_id); -- -- Name: i_job_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_job_group ON job USING btree (group_id); -- -- Name: i_job_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_job_owner ON job USING btree (owner_id); -- -- Name: i_job_status; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_job_status ON job USING btree (status); -- -- Name: i_joboriginalfilelink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_joboriginalfilelink_child ON joboriginalfilelink USING btree (child); -- -- Name: i_joboriginalfilelink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_joboriginalfilelink_group ON joboriginalfilelink USING btree (group_id); -- -- Name: i_joboriginalfilelink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_joboriginalfilelink_owner ON joboriginalfilelink USING btree (owner_id); -- -- Name: i_joboriginalfilelink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_joboriginalfilelink_parent ON joboriginalfilelink USING btree (parent); -- -- Name: i_laser_lasermedium; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_laser_lasermedium ON laser USING btree (lasermedium); -- -- Name: i_laser_pulse; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_laser_pulse ON laser USING btree (pulse); -- -- Name: i_laser_pump; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_laser_pump ON laser USING btree (pump); -- -- Name: i_laser_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_laser_type ON laser USING btree (type); -- -- Name: i_lightpath_dichroic; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpath_dichroic ON lightpath USING btree (dichroic); -- -- Name: i_lightpath_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpath_group ON lightpath USING btree (group_id); -- -- Name: i_lightpath_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpath_owner ON lightpath USING btree (owner_id); -- -- Name: i_lightpathemissionfilterlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathemissionfilterlink_child ON lightpathemissionfilterlink USING btree (child); -- -- Name: i_lightpathemissionfilterlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathemissionfilterlink_group ON lightpathemissionfilterlink USING btree (group_id); -- -- Name: i_lightpathemissionfilterlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathemissionfilterlink_owner ON lightpathemissionfilterlink USING btree (owner_id); -- -- Name: i_lightpathemissionfilterlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathemissionfilterlink_parent ON lightpathemissionfilterlink USING btree (parent); -- -- Name: i_lightpathexcitationfilterlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathexcitationfilterlink_child ON lightpathexcitationfilterlink USING btree (child); -- -- Name: i_lightpathexcitationfilterlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathexcitationfilterlink_group ON lightpathexcitationfilterlink USING btree (group_id); -- -- Name: i_lightpathexcitationfilterlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathexcitationfilterlink_owner ON lightpathexcitationfilterlink USING btree (owner_id); -- -- Name: i_lightpathexcitationfilterlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightpathexcitationfilterlink_parent ON lightpathexcitationfilterlink USING btree (parent); -- -- Name: i_lightsettings_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsettings_group ON lightsettings USING btree (group_id); -- -- Name: i_lightsettings_lightsource; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsettings_lightsource ON lightsettings USING btree (lightsource); -- -- Name: i_lightsettings_microbeammanipulation; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsettings_microbeammanipulation ON lightsettings USING btree (microbeammanipulation); -- -- Name: i_lightsettings_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsettings_owner ON lightsettings USING btree (owner_id); -- -- Name: i_lightsource_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsource_group ON lightsource USING btree (group_id); -- -- Name: i_lightsource_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsource_instrument ON lightsource USING btree (instrument); -- -- Name: i_lightsource_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_lightsource_owner ON lightsource USING btree (owner_id); -- -- Name: i_link_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_link_group ON link USING btree (group_id); -- -- Name: i_link_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_link_owner ON link USING btree (owner_id); -- -- Name: i_logicalchannel_contrastmethod; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_contrastmethod ON logicalchannel USING btree (contrastmethod); -- -- Name: i_logicalchannel_detectorsettings; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_detectorsettings ON logicalchannel USING btree (detectorsettings); -- -- Name: i_logicalchannel_filterset; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_filterset ON logicalchannel USING btree (filterset); -- -- Name: i_logicalchannel_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_group ON logicalchannel USING btree (group_id); -- -- Name: i_logicalchannel_illumination; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_illumination ON logicalchannel USING btree (illumination); -- -- Name: i_logicalchannel_lightpath; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_lightpath ON logicalchannel USING btree (lightpath); -- -- Name: i_logicalchannel_lightsourcesettings; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_lightsourcesettings ON logicalchannel USING btree (lightsourcesettings); -- -- Name: i_logicalchannel_mode; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_mode ON logicalchannel USING btree (mode); -- -- Name: i_logicalchannel_otf; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_otf ON logicalchannel USING btree (otf); -- -- Name: i_logicalchannel_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_owner ON logicalchannel USING btree (owner_id); -- -- Name: i_logicalchannel_photometricinterpretation; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_logicalchannel_photometricinterpretation ON logicalchannel USING btree (photometricinterpretation); -- -- Name: i_mask_pixels; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_mask_pixels ON shape USING btree (pixels); -- -- Name: i_microbeammanipulation_experiment; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microbeammanipulation_experiment ON microbeammanipulation USING btree (experiment); -- -- Name: i_microbeammanipulation_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microbeammanipulation_group ON microbeammanipulation USING btree (group_id); -- -- Name: i_microbeammanipulation_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microbeammanipulation_owner ON microbeammanipulation USING btree (owner_id); -- -- Name: i_microbeammanipulation_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microbeammanipulation_type ON microbeammanipulation USING btree (type); -- -- Name: i_microscope_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microscope_group ON microscope USING btree (group_id); -- -- Name: i_microscope_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microscope_owner ON microscope USING btree (owner_id); -- -- Name: i_microscope_type; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_microscope_type ON microscope USING btree (type); -- -- Name: i_namespace_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_namespace_group ON namespace USING btree (group_id); -- -- Name: i_namespace_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_namespace_owner ON namespace USING btree (owner_id); -- -- Name: i_namespaceannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_namespaceannotationlink_child ON namespaceannotationlink USING btree (child); -- -- Name: i_namespaceannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_namespaceannotationlink_group ON namespaceannotationlink USING btree (group_id); -- -- Name: i_namespaceannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_namespaceannotationlink_owner ON namespaceannotationlink USING btree (owner_id); -- -- Name: i_namespaceannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_namespaceannotationlink_parent ON namespaceannotationlink USING btree (parent); -- -- Name: i_nodeannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_nodeannotationlink_child ON nodeannotationlink USING btree (child); -- -- Name: i_nodeannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_nodeannotationlink_group ON nodeannotationlink USING btree (group_id); -- -- Name: i_nodeannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_nodeannotationlink_owner ON nodeannotationlink USING btree (owner_id); -- -- Name: i_nodeannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_nodeannotationlink_parent ON nodeannotationlink USING btree (parent); -- -- Name: i_objective_correction; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objective_correction ON objective USING btree (correction); -- -- Name: i_objective_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objective_group ON objective USING btree (group_id); -- -- Name: i_objective_immersion; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objective_immersion ON objective USING btree (immersion); -- -- Name: i_objective_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objective_instrument ON objective USING btree (instrument); -- -- Name: i_objective_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objective_owner ON objective USING btree (owner_id); -- -- Name: i_objectivesettings_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objectivesettings_group ON objectivesettings USING btree (group_id); -- -- Name: i_objectivesettings_medium; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objectivesettings_medium ON objectivesettings USING btree (medium); -- -- Name: i_objectivesettings_objective; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objectivesettings_objective ON objectivesettings USING btree (objective); -- -- Name: i_objectivesettings_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_objectivesettings_owner ON objectivesettings USING btree (owner_id); -- -- Name: i_originalfile_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_originalfile_group ON originalfile USING btree (group_id); -- -- Name: i_originalfile_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_originalfile_owner ON originalfile USING btree (owner_id); -- -- Name: i_originalfileannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_originalfileannotationlink_child ON originalfileannotationlink USING btree (child); -- -- Name: i_originalfileannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_originalfileannotationlink_group ON originalfileannotationlink USING btree (group_id); -- -- Name: i_originalfileannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_originalfileannotationlink_owner ON originalfileannotationlink USING btree (owner_id); -- -- Name: i_originalfileannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_originalfileannotationlink_parent ON originalfileannotationlink USING btree (parent); -- -- Name: i_otf_filterset; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_otf_filterset ON otf USING btree (filterset); -- -- Name: i_otf_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_otf_group ON otf USING btree (group_id); -- -- Name: i_otf_instrument; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_otf_instrument ON otf USING btree (instrument); -- -- Name: i_otf_objective; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_otf_objective ON otf USING btree (objective); -- -- Name: i_otf_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_otf_owner ON otf USING btree (owner_id); -- -- Name: i_otf_pixelstype; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_otf_pixelstype ON otf USING btree (pixelstype); -- -- Name: i_pixels_dimensionorder; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixels_dimensionorder ON pixels USING btree (dimensionorder); -- -- Name: i_pixels_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixels_group ON pixels USING btree (group_id); -- -- Name: i_pixels_image; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixels_image ON pixels USING btree (image); -- -- Name: i_pixels_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixels_owner ON pixels USING btree (owner_id); -- -- Name: i_pixels_pixelstype; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixels_pixelstype ON pixels USING btree (pixelstype); -- -- Name: i_pixels_relatedto; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixels_relatedto ON pixels USING btree (relatedto); -- -- Name: i_pixelsannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsannotationlink_child ON pixelsannotationlink USING btree (child); -- -- Name: i_pixelsannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsannotationlink_group ON pixelsannotationlink USING btree (group_id); -- -- Name: i_pixelsannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsannotationlink_owner ON pixelsannotationlink USING btree (owner_id); -- -- Name: i_pixelsannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsannotationlink_parent ON pixelsannotationlink USING btree (parent); -- -- Name: i_pixelsoriginalfilemap_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsoriginalfilemap_child ON pixelsoriginalfilemap USING btree (child); -- -- Name: i_pixelsoriginalfilemap_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsoriginalfilemap_group ON pixelsoriginalfilemap USING btree (group_id); -- -- Name: i_pixelsoriginalfilemap_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsoriginalfilemap_owner ON pixelsoriginalfilemap USING btree (owner_id); -- -- Name: i_pixelsoriginalfilemap_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_pixelsoriginalfilemap_parent ON pixelsoriginalfilemap USING btree (parent); -- -- Name: i_planeinfo_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfo_group ON planeinfo USING btree (group_id); -- -- Name: i_planeinfo_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfo_owner ON planeinfo USING btree (owner_id); -- -- Name: i_planeinfo_pixels; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfo_pixels ON planeinfo USING btree (pixels); -- -- Name: i_planeinfoannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfoannotationlink_child ON planeinfoannotationlink USING btree (child); -- -- Name: i_planeinfoannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfoannotationlink_group ON planeinfoannotationlink USING btree (group_id); -- -- Name: i_planeinfoannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfoannotationlink_owner ON planeinfoannotationlink USING btree (owner_id); -- -- Name: i_planeinfoannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_planeinfoannotationlink_parent ON planeinfoannotationlink USING btree (parent); -- -- Name: i_plate_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plate_group ON plate USING btree (group_id); -- -- Name: i_plate_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plate_owner ON plate USING btree (owner_id); -- -- Name: i_plateacquisition_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisition_group ON plateacquisition USING btree (group_id); -- -- Name: i_plateacquisition_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisition_owner ON plateacquisition USING btree (owner_id); -- -- Name: i_plateacquisition_plate; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisition_plate ON plateacquisition USING btree (plate); -- -- Name: i_plateacquisitionannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisitionannotationlink_child ON plateacquisitionannotationlink USING btree (child); -- -- Name: i_plateacquisitionannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisitionannotationlink_group ON plateacquisitionannotationlink USING btree (group_id); -- -- Name: i_plateacquisitionannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisitionannotationlink_owner ON plateacquisitionannotationlink USING btree (owner_id); -- -- Name: i_plateacquisitionannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateacquisitionannotationlink_parent ON plateacquisitionannotationlink USING btree (parent); -- -- Name: i_plateannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateannotationlink_child ON plateannotationlink USING btree (child); -- -- Name: i_plateannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateannotationlink_group ON plateannotationlink USING btree (group_id); -- -- Name: i_plateannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateannotationlink_owner ON plateannotationlink USING btree (owner_id); -- -- Name: i_plateannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_plateannotationlink_parent ON plateannotationlink USING btree (parent); -- -- Name: i_project_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_project_group ON project USING btree (group_id); -- -- Name: i_project_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_project_owner ON project USING btree (owner_id); -- -- Name: i_projectannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectannotationlink_child ON projectannotationlink USING btree (child); -- -- Name: i_projectannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectannotationlink_group ON projectannotationlink USING btree (group_id); -- -- Name: i_projectannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectannotationlink_owner ON projectannotationlink USING btree (owner_id); -- -- Name: i_projectannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectannotationlink_parent ON projectannotationlink USING btree (parent); -- -- Name: i_projectdatasetlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectdatasetlink_child ON projectdatasetlink USING btree (child); -- -- Name: i_projectdatasetlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectdatasetlink_group ON projectdatasetlink USING btree (group_id); -- -- Name: i_projectdatasetlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectdatasetlink_owner ON projectdatasetlink USING btree (owner_id); -- -- Name: i_projectdatasetlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_projectdatasetlink_parent ON projectdatasetlink USING btree (parent); -- -- Name: i_quantumdef_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_quantumdef_group ON quantumdef USING btree (group_id); -- -- Name: i_quantumdef_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_quantumdef_owner ON quantumdef USING btree (owner_id); -- -- Name: i_reagent_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagent_group ON reagent USING btree (group_id); -- -- Name: i_reagent_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagent_owner ON reagent USING btree (owner_id); -- -- Name: i_reagent_screen; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagent_screen ON reagent USING btree (screen); -- -- Name: i_reagentannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagentannotationlink_child ON reagentannotationlink USING btree (child); -- -- Name: i_reagentannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagentannotationlink_group ON reagentannotationlink USING btree (group_id); -- -- Name: i_reagentannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagentannotationlink_owner ON reagentannotationlink USING btree (owner_id); -- -- Name: i_reagentannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_reagentannotationlink_parent ON reagentannotationlink USING btree (parent); -- -- Name: i_renderingdef_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_renderingdef_group ON renderingdef USING btree (group_id); -- -- Name: i_renderingdef_model; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_renderingdef_model ON renderingdef USING btree (model); -- -- Name: i_renderingdef_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_renderingdef_owner ON renderingdef USING btree (owner_id); -- -- Name: i_renderingdef_pixels; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_renderingdef_pixels ON renderingdef USING btree (pixels); -- -- Name: i_renderingdef_quantization; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_renderingdef_quantization ON renderingdef USING btree (quantization); -- -- Name: i_roi_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roi_group ON roi USING btree (group_id); -- -- Name: i_roi_image; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roi_image ON roi USING btree (image); -- -- Name: i_roi_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roi_owner ON roi USING btree (owner_id); -- -- Name: i_roi_source; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roi_source ON roi USING btree (source); -- -- Name: i_roiannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roiannotationlink_child ON roiannotationlink USING btree (child); -- -- Name: i_roiannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roiannotationlink_group ON roiannotationlink USING btree (group_id); -- -- Name: i_roiannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roiannotationlink_owner ON roiannotationlink USING btree (owner_id); -- -- Name: i_roiannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_roiannotationlink_parent ON roiannotationlink USING btree (parent); -- -- Name: i_screen_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screen_group ON screen USING btree (group_id); -- -- Name: i_screen_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screen_owner ON screen USING btree (owner_id); -- -- Name: i_screenannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenannotationlink_child ON screenannotationlink USING btree (child); -- -- Name: i_screenannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenannotationlink_group ON screenannotationlink USING btree (group_id); -- -- Name: i_screenannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenannotationlink_owner ON screenannotationlink USING btree (owner_id); -- -- Name: i_screenannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenannotationlink_parent ON screenannotationlink USING btree (parent); -- -- Name: i_screenplatelink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenplatelink_child ON screenplatelink USING btree (child); -- -- Name: i_screenplatelink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenplatelink_group ON screenplatelink USING btree (group_id); -- -- Name: i_screenplatelink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenplatelink_owner ON screenplatelink USING btree (owner_id); -- -- Name: i_screenplatelink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_screenplatelink_parent ON screenplatelink USING btree (parent); -- -- Name: i_session_node; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_session_node ON session USING btree (node); -- -- Name: i_session_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_session_owner ON session USING btree (owner); -- -- Name: i_sessionannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_sessionannotationlink_child ON sessionannotationlink USING btree (child); -- -- Name: i_sessionannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_sessionannotationlink_group ON sessionannotationlink USING btree (group_id); -- -- Name: i_sessionannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_sessionannotationlink_owner ON sessionannotationlink USING btree (owner_id); -- -- Name: i_sessionannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_sessionannotationlink_parent ON sessionannotationlink USING btree (parent); -- -- Name: i_shape_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_shape_group ON shape USING btree (group_id); -- -- Name: i_shape_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_shape_owner ON shape USING btree (owner_id); -- -- Name: i_shape_roi; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_shape_roi ON shape USING btree (roi); -- -- Name: i_share_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_share_group ON share USING btree ("group"); -- -- Name: i_sharemember_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_sharemember_child ON sharemember USING btree (child); -- -- Name: i_sharemember_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_sharemember_parent ON sharemember USING btree (parent); -- -- Name: i_stagelabel_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_stagelabel_group ON stagelabel USING btree (group_id); -- -- Name: i_stagelabel_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_stagelabel_owner ON stagelabel USING btree (owner_id); -- -- Name: i_statsinfo_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_statsinfo_group ON statsinfo USING btree (group_id); -- -- Name: i_statsinfo_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_statsinfo_owner ON statsinfo USING btree (owner_id); -- -- Name: i_thumbnail_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_thumbnail_group ON thumbnail USING btree (group_id); -- -- Name: i_thumbnail_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_thumbnail_owner ON thumbnail USING btree (owner_id); -- -- Name: i_thumbnail_pixels; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_thumbnail_pixels ON thumbnail USING btree (pixels); -- -- Name: i_transmittancerange_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_transmittancerange_group ON transmittancerange USING btree (group_id); -- -- Name: i_transmittancerange_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_transmittancerange_owner ON transmittancerange USING btree (owner_id); -- -- Name: i_well_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_well_group ON well USING btree (group_id); -- -- Name: i_well_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_well_owner ON well USING btree (owner_id); -- -- Name: i_well_plate; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_well_plate ON well USING btree (plate); -- -- Name: i_wellannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellannotationlink_child ON wellannotationlink USING btree (child); -- -- Name: i_wellannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellannotationlink_group ON wellannotationlink USING btree (group_id); -- -- Name: i_wellannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellannotationlink_owner ON wellannotationlink USING btree (owner_id); -- -- Name: i_wellannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellannotationlink_parent ON wellannotationlink USING btree (parent); -- -- Name: i_wellreagentlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellreagentlink_child ON wellreagentlink USING btree (child); -- -- Name: i_wellreagentlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellreagentlink_group ON wellreagentlink USING btree (group_id); -- -- Name: i_wellreagentlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellreagentlink_owner ON wellreagentlink USING btree (owner_id); -- -- Name: i_wellreagentlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellreagentlink_parent ON wellreagentlink USING btree (parent); -- -- Name: i_wellsample_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsample_group ON wellsample USING btree (group_id); -- -- Name: i_wellsample_image; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsample_image ON wellsample USING btree (image); -- -- Name: i_wellsample_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsample_owner ON wellsample USING btree (owner_id); -- -- Name: i_wellsample_plateacquisition; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsample_plateacquisition ON wellsample USING btree (plateacquisition); -- -- Name: i_wellsample_well; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsample_well ON wellsample USING btree (well); -- -- Name: i_wellsampleannotationlink_child; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsampleannotationlink_child ON wellsampleannotationlink USING btree (child); -- -- Name: i_wellsampleannotationlink_group; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsampleannotationlink_group ON wellsampleannotationlink USING btree (group_id); -- -- Name: i_wellsampleannotationlink_owner; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsampleannotationlink_owner ON wellsampleannotationlink USING btree (owner_id); -- -- Name: i_wellsampleannotationlink_parent; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX i_wellsampleannotationlink_parent ON wellsampleannotationlink USING btree (parent); -- -- Name: namespace_name; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE UNIQUE INDEX namespace_name ON namespace USING btree (name); -- -- Name: originalfile_mime_index; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX originalfile_mime_index ON originalfile USING btree (mimetype); -- -- Name: originalfile_repo_index; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX originalfile_repo_index ON originalfile USING btree (repo); -- -- Name: originalfile_repo_path_index; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE UNIQUE INDEX originalfile_repo_path_index ON originalfile USING btree (repo, path, name) WHERE (repo IS NOT NULL); -- -- Name: pixels_repo_index; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE INDEX pixels_repo_index ON pixels USING btree (repo); -- -- Name: well_col_row; Type: INDEX; Schema: public; Owner: db_user; Tablespace: -- CREATE UNIQUE INDEX well_col_row ON well USING btree (plate, "column", "row"); -- -- Name: annotation_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER annotation_annotation_link_delete_trigger BEFORE DELETE ON annotationannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.annotations.Annotation'); -- -- Name: annotation_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER annotation_annotation_link_event_trigger AFTER UPDATE ON annotationannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.annotations.Annotation'); -- -- Name: annotation_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER annotation_trigger AFTER UPDATE ON annotation FOR EACH ROW EXECUTE PROCEDURE annotation_update_event_trigger(); -- -- Name: channel_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER channel_annotation_link_delete_trigger BEFORE DELETE ON channelannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.core.Channel'); -- -- Name: channel_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER channel_annotation_link_event_trigger AFTER UPDATE ON channelannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.core.Channel'); -- -- Name: channel_pixels_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER channel_pixels_index_trigger BEFORE UPDATE ON channel FOR EACH ROW EXECUTE PROCEDURE channel_pixels_index_move(); -- -- Name: channelbinding_renderingdef_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER channelbinding_renderingdef_index_trigger BEFORE UPDATE ON channelbinding FOR EACH ROW EXECUTE PROCEDURE channelbinding_renderingdef_index_move(); -- -- Name: codomainmapcontext_renderingdef_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER codomainmapcontext_renderingdef_index_trigger BEFORE UPDATE ON codomainmapcontext FOR EACH ROW EXECUTE PROCEDURE codomainmapcontext_renderingdef_index_move(); -- -- Name: dataset_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER dataset_annotation_link_delete_trigger BEFORE DELETE ON datasetannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.containers.Dataset'); -- -- Name: dataset_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER dataset_annotation_link_event_trigger AFTER UPDATE ON datasetannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.containers.Dataset'); -- -- Name: experimenter_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER experimenter_annotation_link_delete_trigger BEFORE DELETE ON experimenterannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.meta.Experimenter'); -- -- Name: experimenter_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER experimenter_annotation_link_event_trigger AFTER UPDATE ON experimenterannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.meta.Experimenter'); -- -- Name: experimentergroup_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER experimentergroup_annotation_link_delete_trigger BEFORE DELETE ON experimentergroupannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.meta.ExperimenterGroup'); -- -- Name: experimentergroup_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER experimentergroup_annotation_link_event_trigger AFTER UPDATE ON experimentergroupannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.meta.ExperimenterGroup'); -- -- Name: groupexperimentermap_child_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER groupexperimentermap_child_index_trigger BEFORE UPDATE ON groupexperimentermap FOR EACH ROW EXECUTE PROCEDURE groupexperimentermap_child_index_move(); -- -- Name: image_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER image_annotation_link_delete_trigger BEFORE DELETE ON imageannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.core.Image'); -- -- Name: image_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER image_annotation_link_event_trigger AFTER UPDATE ON imageannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.core.Image'); -- -- Name: lightpathexcitationfilterlink_parent_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER lightpathexcitationfilterlink_parent_index_trigger BEFORE UPDATE ON lightpathexcitationfilterlink FOR EACH ROW EXECUTE PROCEDURE lightpathexcitationfilterlink_parent_index_move(); -- -- Name: namespace_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER namespace_annotation_link_delete_trigger BEFORE DELETE ON namespaceannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.meta.Namespace'); -- -- Name: namespace_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER namespace_annotation_link_event_trigger AFTER UPDATE ON namespaceannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.meta.Namespace'); -- -- Name: node_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER node_annotation_link_delete_trigger BEFORE DELETE ON nodeannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.meta.Node'); -- -- Name: node_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER node_annotation_link_event_trigger AFTER UPDATE ON nodeannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.meta.Node'); -- -- Name: originalfile_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER originalfile_annotation_link_delete_trigger BEFORE DELETE ON originalfileannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.core.OriginalFile'); -- -- Name: originalfile_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER originalfile_annotation_link_event_trigger AFTER UPDATE ON originalfileannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.core.OriginalFile'); -- -- Name: pixels_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER pixels_annotation_link_delete_trigger BEFORE DELETE ON pixelsannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.core.Pixels'); -- -- Name: pixels_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER pixels_annotation_link_event_trigger AFTER UPDATE ON pixelsannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.core.Pixels'); -- -- Name: pixels_image_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER pixels_image_index_trigger BEFORE UPDATE ON pixels FOR EACH ROW EXECUTE PROCEDURE pixels_image_index_move(); -- -- Name: planeinfo_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER planeinfo_annotation_link_delete_trigger BEFORE DELETE ON planeinfoannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.core.PlaneInfo'); -- -- Name: planeinfo_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER planeinfo_annotation_link_event_trigger AFTER UPDATE ON planeinfoannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.core.PlaneInfo'); -- -- Name: plate_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER plate_annotation_link_delete_trigger BEFORE DELETE ON plateannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.screen.Plate'); -- -- Name: plate_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER plate_annotation_link_event_trigger AFTER UPDATE ON plateannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.screen.Plate'); -- -- Name: plateacquisition_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER plateacquisition_annotation_link_delete_trigger BEFORE DELETE ON plateacquisitionannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.screen.PlateAcquisition'); -- -- Name: plateacquisition_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER plateacquisition_annotation_link_event_trigger AFTER UPDATE ON plateacquisitionannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.screen.PlateAcquisition'); -- -- Name: project_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER project_annotation_link_delete_trigger BEFORE DELETE ON projectannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.containers.Project'); -- -- Name: project_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER project_annotation_link_event_trigger AFTER UPDATE ON projectannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.containers.Project'); -- -- Name: reagent_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER reagent_annotation_link_delete_trigger BEFORE DELETE ON reagentannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.screen.Reagent'); -- -- Name: reagent_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER reagent_annotation_link_event_trigger AFTER UPDATE ON reagentannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.screen.Reagent'); -- -- Name: roi_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER roi_annotation_link_delete_trigger BEFORE DELETE ON roiannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.roi.Roi'); -- -- Name: roi_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER roi_annotation_link_event_trigger AFTER UPDATE ON roiannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.roi.Roi'); -- -- Name: screen_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER screen_annotation_link_delete_trigger BEFORE DELETE ON screenannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.screen.Screen'); -- -- Name: screen_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER screen_annotation_link_event_trigger AFTER UPDATE ON screenannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.screen.Screen'); -- -- Name: session_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER session_annotation_link_delete_trigger BEFORE DELETE ON sessionannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.meta.Session'); -- -- Name: session_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER session_annotation_link_event_trigger AFTER UPDATE ON sessionannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.meta.Session'); -- -- Name: shape_roi_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER shape_roi_index_trigger BEFORE UPDATE ON shape FOR EACH ROW EXECUTE PROCEDURE shape_roi_index_move(); -- -- Name: well_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER well_annotation_link_delete_trigger BEFORE DELETE ON wellannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.screen.Well'); -- -- Name: well_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER well_annotation_link_event_trigger AFTER UPDATE ON wellannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.screen.Well'); -- -- Name: wellsample_annotation_link_delete_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER wellsample_annotation_link_delete_trigger BEFORE DELETE ON wellsampleannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_delete_trigger('ome.model.screen.WellSample'); -- -- Name: wellsample_annotation_link_event_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER wellsample_annotation_link_event_trigger AFTER UPDATE ON wellsampleannotationlink FOR EACH ROW EXECUTE PROCEDURE annotation_link_event_trigger('ome.model.screen.WellSample'); -- -- Name: wellsample_well_index_trigger; Type: TRIGGER; Schema: public; Owner: db_user -- CREATE TRIGGER wellsample_well_index_trigger BEFORE UPDATE ON wellsample FOR EACH ROW EXECUTE PROCEDURE wellsample_well_index_move(); -- -- Name: fk_count_to_experimenter_annotationlinks; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY count_experimenter_annotationlinks_by_owner ADD CONSTRAINT fk_count_to_experimenter_annotationlinks FOREIGN KEY (experimenter_id) REFERENCES experimenter(id); -- -- Name: fk_count_to_experimentergroup_annotationlinks; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY count_experimentergroup_annotationlinks_by_owner ADD CONSTRAINT fk_count_to_experimentergroup_annotationlinks FOREIGN KEY (experimentergroup_id) REFERENCES experimentergroup(id); -- -- Name: fk_count_to_node_annotationlinks; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY count_node_annotationlinks_by_owner ADD CONSTRAINT fk_count_to_node_annotationlinks FOREIGN KEY (node_id) REFERENCES node(id); -- -- Name: fk_count_to_session_annotationlinks; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY count_session_annotationlinks_by_owner ADD CONSTRAINT fk_count_to_session_annotationlinks FOREIGN KEY (session_id) REFERENCES session(id); -- -- Name: fkacquisitionmode_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY acquisitionmode ADD CONSTRAINT fkacquisitionmode_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkannotation_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotation ADD CONSTRAINT fkannotation_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkannotation_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotation ADD CONSTRAINT fkannotation_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkannotation_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotation ADD CONSTRAINT fkannotation_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkannotation_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotation ADD CONSTRAINT fkannotation_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkannotation_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotation ADD CONSTRAINT fkannotation_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkannotationannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkannotationannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkannotationannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkannotationannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkannotationannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkannotationannotationlink_parent_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_parent_annotation FOREIGN KEY (parent) REFERENCES annotation(id); -- -- Name: fkannotationannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotationannotationlink ADD CONSTRAINT fkannotationannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkarc_lightsource_id_lightsource; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY arc ADD CONSTRAINT fkarc_lightsource_id_lightsource FOREIGN KEY (lightsource_id) REFERENCES lightsource(id); -- -- Name: fkarc_type_arctype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY arc ADD CONSTRAINT fkarc_type_arctype FOREIGN KEY (type) REFERENCES arctype(id); -- -- Name: fkarctype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY arctype ADD CONSTRAINT fkarctype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkbinning_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY binning ADD CONSTRAINT fkbinning_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkchannel_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkchannel_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkchannel_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkchannel_logicalchannel_logicalchannel; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_logicalchannel_logicalchannel FOREIGN KEY (logicalchannel) REFERENCES logicalchannel(id); -- -- Name: fkchannel_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkchannel_pixels_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_pixels_pixels FOREIGN KEY (pixels) REFERENCES pixels(id); -- -- Name: fkchannel_statsinfo_statsinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_statsinfo_statsinfo FOREIGN KEY (statsinfo) REFERENCES statsinfo(id); -- -- Name: fkchannel_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channel ADD CONSTRAINT fkchannel_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkchannelannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkchannelannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkchannelannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkchannelannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkchannelannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkchannelannotationlink_parent_channel; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_parent_channel FOREIGN KEY (parent) REFERENCES channel(id); -- -- Name: fkchannelannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelannotationlink ADD CONSTRAINT fkchannelannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkchannelbinding_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkchannelbinding_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkchannelbinding_family_family; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_family_family FOREIGN KEY (family) REFERENCES family(id); -- -- Name: fkchannelbinding_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkchannelbinding_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkchannelbinding_renderingdef_renderingdef; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_renderingdef_renderingdef FOREIGN KEY (renderingdef) REFERENCES renderingdef(id); -- -- Name: fkchannelbinding_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY channelbinding ADD CONSTRAINT fkchannelbinding_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkcodomainmapcontext_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT fkcodomainmapcontext_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkcodomainmapcontext_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT fkcodomainmapcontext_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkcodomainmapcontext_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT fkcodomainmapcontext_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkcodomainmapcontext_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT fkcodomainmapcontext_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkcodomainmapcontext_renderingdef_renderingdef; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT fkcodomainmapcontext_renderingdef_renderingdef FOREIGN KEY (renderingdef) REFERENCES renderingdef(id); -- -- Name: fkcodomainmapcontext_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY codomainmapcontext ADD CONSTRAINT fkcodomainmapcontext_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkcontrastmethod_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY contrastmethod ADD CONSTRAINT fkcontrastmethod_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkcontraststretchingcontext_codomainmapcontext_id_codomainmapco; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY contraststretchingcontext ADD CONSTRAINT fkcontraststretchingcontext_codomainmapcontext_id_codomainmapco FOREIGN KEY (codomainmapcontext_id) REFERENCES codomainmapcontext(id); -- -- Name: fkcorrection_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY correction ADD CONSTRAINT fkcorrection_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdataset_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dataset ADD CONSTRAINT fkdataset_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkdataset_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dataset ADD CONSTRAINT fkdataset_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdataset_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dataset ADD CONSTRAINT fkdataset_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkdataset_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dataset ADD CONSTRAINT fkdataset_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkdataset_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dataset ADD CONSTRAINT fkdataset_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkdatasetannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkdatasetannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkdatasetannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdatasetannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkdatasetannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkdatasetannotationlink_parent_dataset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_parent_dataset FOREIGN KEY (parent) REFERENCES dataset(id); -- -- Name: fkdatasetannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetannotationlink ADD CONSTRAINT fkdatasetannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkdatasetimagelink_child_image; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_child_image FOREIGN KEY (child) REFERENCES image(id); -- -- Name: fkdatasetimagelink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkdatasetimagelink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdatasetimagelink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkdatasetimagelink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkdatasetimagelink_parent_dataset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_parent_dataset FOREIGN KEY (parent) REFERENCES dataset(id); -- -- Name: fkdatasetimagelink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY datasetimagelink ADD CONSTRAINT fkdatasetimagelink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkdbpatch_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dbpatch ADD CONSTRAINT fkdbpatch_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdetector_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkdetector_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdetector_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkdetector_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkdetector_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkdetector_type_detectortype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_type_detectortype FOREIGN KEY (type) REFERENCES detectortype(id); -- -- Name: fkdetector_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detector ADD CONSTRAINT fkdetector_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkdetectorsettings_binning_binning; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_binning_binning FOREIGN KEY (binning) REFERENCES binning(id); -- -- Name: fkdetectorsettings_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkdetectorsettings_detector_detector; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_detector_detector FOREIGN KEY (detector) REFERENCES detector(id); -- -- Name: fkdetectorsettings_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdetectorsettings_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkdetectorsettings_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkdetectorsettings_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectorsettings ADD CONSTRAINT fkdetectorsettings_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkdetectortype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY detectortype ADD CONSTRAINT fkdetectortype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdichroic_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dichroic ADD CONSTRAINT fkdichroic_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkdichroic_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dichroic ADD CONSTRAINT fkdichroic_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkdichroic_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dichroic ADD CONSTRAINT fkdichroic_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkdichroic_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dichroic ADD CONSTRAINT fkdichroic_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkdichroic_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dichroic ADD CONSTRAINT fkdichroic_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkdichroic_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dichroic ADD CONSTRAINT fkdichroic_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkdimensionorder_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY dimensionorder ADD CONSTRAINT fkdimensionorder_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkevent_containingevent_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY event ADD CONSTRAINT fkevent_containingevent_event FOREIGN KEY (containingevent) REFERENCES event(id); -- -- Name: fkevent_experimenter_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY event ADD CONSTRAINT fkevent_experimenter_experimenter FOREIGN KEY (experimenter) REFERENCES experimenter(id); -- -- Name: fkevent_experimentergroup_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY event ADD CONSTRAINT fkevent_experimentergroup_experimentergroup FOREIGN KEY (experimentergroup) REFERENCES experimentergroup(id); -- -- Name: fkevent_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY event ADD CONSTRAINT fkevent_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkevent_session_session; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY event ADD CONSTRAINT fkevent_session_session FOREIGN KEY (session) REFERENCES session(id); -- -- Name: fkevent_type_eventtype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY event ADD CONSTRAINT fkevent_type_eventtype FOREIGN KEY (type) REFERENCES eventtype(id); -- -- Name: fkeventlog_event_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY eventlog ADD CONSTRAINT fkeventlog_event_event FOREIGN KEY (event) REFERENCES event(id); -- -- Name: fkeventlog_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY eventlog ADD CONSTRAINT fkeventlog_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkeventtype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY eventtype ADD CONSTRAINT fkeventtype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexperiment_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experiment ADD CONSTRAINT fkexperiment_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkexperiment_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experiment ADD CONSTRAINT fkexperiment_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexperiment_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experiment ADD CONSTRAINT fkexperiment_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkexperiment_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experiment ADD CONSTRAINT fkexperiment_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkexperiment_type_experimenttype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experiment ADD CONSTRAINT fkexperiment_type_experimenttype FOREIGN KEY (type) REFERENCES experimenttype(id); -- -- Name: fkexperiment_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experiment ADD CONSTRAINT fkexperiment_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkexperimenter_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenter ADD CONSTRAINT fkexperimenter_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexperimenterannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkexperimenterannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkexperimenterannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexperimenterannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkexperimenterannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkexperimenterannotationlink_parent_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_parent_experimenter FOREIGN KEY (parent) REFERENCES experimenter(id); -- -- Name: fkexperimenterannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenterannotationlink ADD CONSTRAINT fkexperimenterannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkexperimentergroup_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroup ADD CONSTRAINT fkexperimentergroup_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexperimentergroupannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkexperimentergroupannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkexperimentergroupannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexperimentergroupannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkexperimentergroupannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkexperimentergroupannotationlink_parent_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_parent_experimentergroup FOREIGN KEY (parent) REFERENCES experimentergroup(id); -- -- Name: fkexperimentergroupannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimentergroupannotationlink ADD CONSTRAINT fkexperimentergroupannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkexperimenttype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY experimenttype ADD CONSTRAINT fkexperimenttype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexternalinfo_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY externalinfo ADD CONSTRAINT fkexternalinfo_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkexternalinfo_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY externalinfo ADD CONSTRAINT fkexternalinfo_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkexternalinfo_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY externalinfo ADD CONSTRAINT fkexternalinfo_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkexternalinfo_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY externalinfo ADD CONSTRAINT fkexternalinfo_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkfamily_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY family ADD CONSTRAINT fkfamily_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkfilament_lightsource_id_lightsource; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filament ADD CONSTRAINT fkfilament_lightsource_id_lightsource FOREIGN KEY (lightsource_id) REFERENCES lightsource(id); -- -- Name: fkfilament_type_filamenttype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filament ADD CONSTRAINT fkfilament_type_filamenttype FOREIGN KEY (type) REFERENCES filamenttype(id); -- -- Name: fkfilamenttype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filamenttype ADD CONSTRAINT fkfilamenttype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkfileannotation_file_originalfile; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY annotation ADD CONSTRAINT fkfileannotation_file_originalfile FOREIGN KEY (file) REFERENCES originalfile(id); -- -- Name: fkfilter_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkfilter_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkfilter_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkfilter_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkfilter_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkfilter_transmittancerange_transmittancerange; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_transmittancerange_transmittancerange FOREIGN KEY (transmittancerange) REFERENCES transmittancerange(id); -- -- Name: fkfilter_type_filtertype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_type_filtertype FOREIGN KEY (type) REFERENCES filtertype(id); -- -- Name: fkfilter_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filter ADD CONSTRAINT fkfilter_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkfilterset_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkfilterset_dichroic_dichroic; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_dichroic_dichroic FOREIGN KEY (dichroic) REFERENCES dichroic(id); -- -- Name: fkfilterset_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkfilterset_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkfilterset_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkfilterset_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkfilterset_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filterset ADD CONSTRAINT fkfilterset_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkfiltersetemissionfilterlink_child_filter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_child_filter FOREIGN KEY (child) REFERENCES filter(id); -- -- Name: fkfiltersetemissionfilterlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkfiltersetemissionfilterlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkfiltersetemissionfilterlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkfiltersetemissionfilterlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkfiltersetemissionfilterlink_parent_filterset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_parent_filterset FOREIGN KEY (parent) REFERENCES filterset(id); -- -- Name: fkfiltersetemissionfilterlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetemissionfilterlink ADD CONSTRAINT fkfiltersetemissionfilterlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkfiltersetexcitationfilterlink_child_filter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_child_filter FOREIGN KEY (child) REFERENCES filter(id); -- -- Name: fkfiltersetexcitationfilterlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkfiltersetexcitationfilterlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkfiltersetexcitationfilterlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkfiltersetexcitationfilterlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkfiltersetexcitationfilterlink_parent_filterset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_parent_filterset FOREIGN KEY (parent) REFERENCES filterset(id); -- -- Name: fkfiltersetexcitationfilterlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtersetexcitationfilterlink ADD CONSTRAINT fkfiltersetexcitationfilterlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkfiltertype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY filtertype ADD CONSTRAINT fkfiltertype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkformat_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY format ADD CONSTRAINT fkformat_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkgroupexperimentermap_child_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT fkgroupexperimentermap_child_experimenter FOREIGN KEY (child) REFERENCES experimenter(id); -- -- Name: fkgroupexperimentermap_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT fkgroupexperimentermap_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkgroupexperimentermap_parent_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY groupexperimentermap ADD CONSTRAINT fkgroupexperimentermap_parent_experimentergroup FOREIGN KEY (parent) REFERENCES experimentergroup(id); -- -- Name: fkillumination_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY illumination ADD CONSTRAINT fkillumination_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkimage_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkimage_experiment_experiment; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_experiment_experiment FOREIGN KEY (experiment) REFERENCES experiment(id); -- -- Name: fkimage_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkimage_format_format; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_format_format FOREIGN KEY (format) REFERENCES format(id); -- -- Name: fkimage_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkimage_imagingenvironment_imagingenvironment; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_imagingenvironment_imagingenvironment FOREIGN KEY (imagingenvironment) REFERENCES imagingenvironment(id); -- -- Name: fkimage_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkimage_objectivesettings_objectivesettings; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_objectivesettings_objectivesettings FOREIGN KEY (objectivesettings) REFERENCES objectivesettings(id); -- -- Name: fkimage_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkimage_stagelabel_stagelabel; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_stagelabel_stagelabel FOREIGN KEY (stagelabel) REFERENCES stagelabel(id); -- -- Name: fkimage_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY image ADD CONSTRAINT fkimage_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkimageannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkimageannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkimageannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkimageannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkimageannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkimageannotationlink_parent_image; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_parent_image FOREIGN KEY (parent) REFERENCES image(id); -- -- Name: fkimageannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imageannotationlink ADD CONSTRAINT fkimageannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkimagingenvironment_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT fkimagingenvironment_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkimagingenvironment_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT fkimagingenvironment_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkimagingenvironment_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT fkimagingenvironment_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkimagingenvironment_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT fkimagingenvironment_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkimagingenvironment_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY imagingenvironment ADD CONSTRAINT fkimagingenvironment_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkimmersion_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY immersion ADD CONSTRAINT fkimmersion_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkimportjob_job_id_job; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY importjob ADD CONSTRAINT fkimportjob_job_id_job FOREIGN KEY (job_id) REFERENCES job(id); -- -- Name: fkinstrument_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY instrument ADD CONSTRAINT fkinstrument_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkinstrument_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY instrument ADD CONSTRAINT fkinstrument_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkinstrument_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY instrument ADD CONSTRAINT fkinstrument_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkinstrument_microscope_microscope; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY instrument ADD CONSTRAINT fkinstrument_microscope_microscope FOREIGN KEY (microscope) REFERENCES microscope(id); -- -- Name: fkinstrument_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY instrument ADD CONSTRAINT fkinstrument_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkinstrument_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY instrument ADD CONSTRAINT fkinstrument_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkjob_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY job ADD CONSTRAINT fkjob_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkjob_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY job ADD CONSTRAINT fkjob_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkjob_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY job ADD CONSTRAINT fkjob_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkjob_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY job ADD CONSTRAINT fkjob_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkjob_status_jobstatus; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY job ADD CONSTRAINT fkjob_status_jobstatus FOREIGN KEY (status) REFERENCES jobstatus(id); -- -- Name: fkjob_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY job ADD CONSTRAINT fkjob_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkjoboriginalfilelink_child_originalfile; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_child_originalfile FOREIGN KEY (child) REFERENCES originalfile(id); -- -- Name: fkjoboriginalfilelink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkjoboriginalfilelink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkjoboriginalfilelink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkjoboriginalfilelink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkjoboriginalfilelink_parent_job; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_parent_job FOREIGN KEY (parent) REFERENCES job(id); -- -- Name: fkjoboriginalfilelink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY joboriginalfilelink ADD CONSTRAINT fkjoboriginalfilelink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkjobstatus_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY jobstatus ADD CONSTRAINT fkjobstatus_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklaser_lasermedium_lasermedium; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY laser ADD CONSTRAINT fklaser_lasermedium_lasermedium FOREIGN KEY (lasermedium) REFERENCES lasermedium(id); -- -- Name: fklaser_lightsource_id_lightsource; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY laser ADD CONSTRAINT fklaser_lightsource_id_lightsource FOREIGN KEY (lightsource_id) REFERENCES lightsource(id); -- -- Name: fklaser_pulse_pulse; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY laser ADD CONSTRAINT fklaser_pulse_pulse FOREIGN KEY (pulse) REFERENCES pulse(id); -- -- Name: fklaser_pump_lightsource; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY laser ADD CONSTRAINT fklaser_pump_lightsource FOREIGN KEY (pump) REFERENCES lightsource(id); -- -- Name: fklaser_type_lasertype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY laser ADD CONSTRAINT fklaser_type_lasertype FOREIGN KEY (type) REFERENCES lasertype(id); -- -- Name: fklasermedium_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lasermedium ADD CONSTRAINT fklasermedium_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklasertype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lasertype ADD CONSTRAINT fklasertype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklightemittingdiode_lightsource_id_lightsource; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightemittingdiode ADD CONSTRAINT fklightemittingdiode_lightsource_id_lightsource FOREIGN KEY (lightsource_id) REFERENCES lightsource(id); -- -- Name: fklightpath_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpath ADD CONSTRAINT fklightpath_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklightpath_dichroic_dichroic; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpath ADD CONSTRAINT fklightpath_dichroic_dichroic FOREIGN KEY (dichroic) REFERENCES dichroic(id); -- -- Name: fklightpath_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpath ADD CONSTRAINT fklightpath_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklightpath_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpath ADD CONSTRAINT fklightpath_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklightpath_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpath ADD CONSTRAINT fklightpath_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklightpath_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpath ADD CONSTRAINT fklightpath_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fklightpathemissionfilterlink_child_filter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_child_filter FOREIGN KEY (child) REFERENCES filter(id); -- -- Name: fklightpathemissionfilterlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklightpathemissionfilterlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklightpathemissionfilterlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklightpathemissionfilterlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklightpathemissionfilterlink_parent_lightpath; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_parent_lightpath FOREIGN KEY (parent) REFERENCES lightpath(id); -- -- Name: fklightpathemissionfilterlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathemissionfilterlink ADD CONSTRAINT fklightpathemissionfilterlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fklightpathexcitationfilterlink_child_filter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_child_filter FOREIGN KEY (child) REFERENCES filter(id); -- -- Name: fklightpathexcitationfilterlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklightpathexcitationfilterlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklightpathexcitationfilterlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklightpathexcitationfilterlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklightpathexcitationfilterlink_parent_lightpath; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_parent_lightpath FOREIGN KEY (parent) REFERENCES lightpath(id); -- -- Name: fklightpathexcitationfilterlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightpathexcitationfilterlink ADD CONSTRAINT fklightpathexcitationfilterlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fklightsettings_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklightsettings_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklightsettings_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklightsettings_lightsource_lightsource; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_lightsource_lightsource FOREIGN KEY (lightsource) REFERENCES lightsource(id); -- -- Name: fklightsettings_microbeammanipulation_microbeammanipulation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_microbeammanipulation_microbeammanipulation FOREIGN KEY (microbeammanipulation) REFERENCES microbeammanipulation(id); -- -- Name: fklightsettings_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklightsettings_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsettings ADD CONSTRAINT fklightsettings_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fklightsource_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsource ADD CONSTRAINT fklightsource_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklightsource_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsource ADD CONSTRAINT fklightsource_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklightsource_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsource ADD CONSTRAINT fklightsource_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklightsource_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsource ADD CONSTRAINT fklightsource_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fklightsource_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsource ADD CONSTRAINT fklightsource_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklightsource_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY lightsource ADD CONSTRAINT fklightsource_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fklink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY link ADD CONSTRAINT fklink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY link ADD CONSTRAINT fklink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY link ADD CONSTRAINT fklink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY link ADD CONSTRAINT fklink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY link ADD CONSTRAINT fklink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fklogicalchannel_contrastmethod_contrastmethod; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_contrastmethod_contrastmethod FOREIGN KEY (contrastmethod) REFERENCES contrastmethod(id); -- -- Name: fklogicalchannel_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fklogicalchannel_detectorsettings_detectorsettings; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_detectorsettings_detectorsettings FOREIGN KEY (detectorsettings) REFERENCES detectorsettings(id); -- -- Name: fklogicalchannel_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fklogicalchannel_filterset_filterset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_filterset_filterset FOREIGN KEY (filterset) REFERENCES filterset(id); -- -- Name: fklogicalchannel_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fklogicalchannel_illumination_illumination; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_illumination_illumination FOREIGN KEY (illumination) REFERENCES illumination(id); -- -- Name: fklogicalchannel_lightpath_lightpath; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_lightpath_lightpath FOREIGN KEY (lightpath) REFERENCES lightpath(id); -- -- Name: fklogicalchannel_lightsourcesettings_lightsettings; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_lightsourcesettings_lightsettings FOREIGN KEY (lightsourcesettings) REFERENCES lightsettings(id); -- -- Name: fklogicalchannel_mode_acquisitionmode; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_mode_acquisitionmode FOREIGN KEY (mode) REFERENCES acquisitionmode(id); -- -- Name: fklogicalchannel_otf_otf; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_otf_otf FOREIGN KEY (otf) REFERENCES otf(id); -- -- Name: fklogicalchannel_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fklogicalchannel_photometricinterpretation_photometricinterpret; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_photometricinterpretation_photometricinterpret FOREIGN KEY (photometricinterpretation) REFERENCES photometricinterpretation(id); -- -- Name: fklogicalchannel_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY logicalchannel ADD CONSTRAINT fklogicalchannel_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkmask_pixels_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkmask_pixels_pixels FOREIGN KEY (pixels) REFERENCES pixels(id); -- -- Name: fkmedium_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY medium ADD CONSTRAINT fkmedium_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkmicrobeammanipulation_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkmicrobeammanipulation_experiment_experiment; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_experiment_experiment FOREIGN KEY (experiment) REFERENCES experiment(id); -- -- Name: fkmicrobeammanipulation_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkmicrobeammanipulation_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkmicrobeammanipulation_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkmicrobeammanipulation_type_microbeammanipulationtype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_type_microbeammanipulationtype FOREIGN KEY (type) REFERENCES microbeammanipulationtype(id); -- -- Name: fkmicrobeammanipulation_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulation ADD CONSTRAINT fkmicrobeammanipulation_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkmicrobeammanipulationtype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microbeammanipulationtype ADD CONSTRAINT fkmicrobeammanipulationtype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkmicroscope_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscope ADD CONSTRAINT fkmicroscope_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkmicroscope_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscope ADD CONSTRAINT fkmicroscope_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkmicroscope_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscope ADD CONSTRAINT fkmicroscope_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkmicroscope_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscope ADD CONSTRAINT fkmicroscope_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkmicroscope_type_microscopetype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscope ADD CONSTRAINT fkmicroscope_type_microscopetype FOREIGN KEY (type) REFERENCES microscopetype(id); -- -- Name: fkmicroscope_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscope ADD CONSTRAINT fkmicroscope_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkmicroscopetype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY microscopetype ADD CONSTRAINT fkmicroscopetype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fknamespace_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespace ADD CONSTRAINT fknamespace_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fknamespace_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespace ADD CONSTRAINT fknamespace_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fknamespace_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespace ADD CONSTRAINT fknamespace_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fknamespace_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespace ADD CONSTRAINT fknamespace_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fknamespace_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespace ADD CONSTRAINT fknamespace_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fknamespaceannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fknamespaceannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fknamespaceannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fknamespaceannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fknamespaceannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fknamespaceannotationlink_parent_namespace; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_parent_namespace FOREIGN KEY (parent) REFERENCES namespace(id); -- -- Name: fknamespaceannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY namespaceannotationlink ADD CONSTRAINT fknamespaceannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fknode_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY node ADD CONSTRAINT fknode_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fknodeannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fknodeannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fknodeannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fknodeannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fknodeannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fknodeannotationlink_parent_node; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_parent_node FOREIGN KEY (parent) REFERENCES node(id); -- -- Name: fknodeannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY nodeannotationlink ADD CONSTRAINT fknodeannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkobjective_correction_correction; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_correction_correction FOREIGN KEY (correction) REFERENCES correction(id); -- -- Name: fkobjective_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkobjective_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkobjective_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkobjective_immersion_immersion; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_immersion_immersion FOREIGN KEY (immersion) REFERENCES immersion(id); -- -- Name: fkobjective_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkobjective_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkobjective_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objective ADD CONSTRAINT fkobjective_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkobjectivesettings_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkobjectivesettings_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkobjectivesettings_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkobjectivesettings_medium_medium; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_medium_medium FOREIGN KEY (medium) REFERENCES medium(id); -- -- Name: fkobjectivesettings_objective_objective; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_objective_objective FOREIGN KEY (objective) REFERENCES objective(id); -- -- Name: fkobjectivesettings_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkobjectivesettings_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY objectivesettings ADD CONSTRAINT fkobjectivesettings_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkoriginalfile_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfile ADD CONSTRAINT fkoriginalfile_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkoriginalfile_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfile ADD CONSTRAINT fkoriginalfile_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkoriginalfile_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfile ADD CONSTRAINT fkoriginalfile_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkoriginalfile_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfile ADD CONSTRAINT fkoriginalfile_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkoriginalfile_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfile ADD CONSTRAINT fkoriginalfile_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkoriginalfileannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkoriginalfileannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkoriginalfileannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkoriginalfileannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkoriginalfileannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkoriginalfileannotationlink_parent_originalfile; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_parent_originalfile FOREIGN KEY (parent) REFERENCES originalfile(id); -- -- Name: fkoriginalfileannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY originalfileannotationlink ADD CONSTRAINT fkoriginalfileannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkotf_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkotf_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkotf_filterset_filterset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_filterset_filterset FOREIGN KEY (filterset) REFERENCES filterset(id); -- -- Name: fkotf_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkotf_instrument_instrument; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_instrument_instrument FOREIGN KEY (instrument) REFERENCES instrument(id); -- -- Name: fkotf_objective_objective; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_objective_objective FOREIGN KEY (objective) REFERENCES objective(id); -- -- Name: fkotf_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkotf_pixelstype_pixelstype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_pixelstype_pixelstype FOREIGN KEY (pixelstype) REFERENCES pixelstype(id); -- -- Name: fkotf_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY otf ADD CONSTRAINT fkotf_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkparsejob_job_id_job; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY parsejob ADD CONSTRAINT fkparsejob_job_id_job FOREIGN KEY (job_id) REFERENCES job(id); -- -- Name: fkphotometricinterpretation_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY photometricinterpretation ADD CONSTRAINT fkphotometricinterpretation_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkpixels_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkpixels_dimensionorder_dimensionorder; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_dimensionorder_dimensionorder FOREIGN KEY (dimensionorder) REFERENCES dimensionorder(id); -- -- Name: fkpixels_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkpixels_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkpixels_image_image; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_image_image FOREIGN KEY (image) REFERENCES image(id); -- -- Name: fkpixels_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkpixels_pixelstype_pixelstype; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_pixelstype_pixelstype FOREIGN KEY (pixelstype) REFERENCES pixelstype(id); -- -- Name: fkpixels_relatedto_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_relatedto_pixels FOREIGN KEY (relatedto) REFERENCES pixels(id); -- -- Name: fkpixels_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixels ADD CONSTRAINT fkpixels_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkpixelsannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkpixelsannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkpixelsannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkpixelsannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkpixelsannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkpixelsannotationlink_parent_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_parent_pixels FOREIGN KEY (parent) REFERENCES pixels(id); -- -- Name: fkpixelsannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsannotationlink ADD CONSTRAINT fkpixelsannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkpixelsoriginalfilemap_child_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_child_pixels FOREIGN KEY (child) REFERENCES pixels(id); -- -- Name: fkpixelsoriginalfilemap_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkpixelsoriginalfilemap_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkpixelsoriginalfilemap_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkpixelsoriginalfilemap_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkpixelsoriginalfilemap_parent_originalfile; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_parent_originalfile FOREIGN KEY (parent) REFERENCES originalfile(id); -- -- Name: fkpixelsoriginalfilemap_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelsoriginalfilemap ADD CONSTRAINT fkpixelsoriginalfilemap_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkpixelstype_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pixelstype ADD CONSTRAINT fkpixelstype_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplaneinfo_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT fkplaneinfo_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkplaneinfo_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT fkplaneinfo_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplaneinfo_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT fkplaneinfo_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkplaneinfo_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT fkplaneinfo_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkplaneinfo_pixels_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT fkplaneinfo_pixels_pixels FOREIGN KEY (pixels) REFERENCES pixels(id); -- -- Name: fkplaneinfo_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfo ADD CONSTRAINT fkplaneinfo_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkplaneinfoannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkplaneinfoannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkplaneinfoannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplaneinfoannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkplaneinfoannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkplaneinfoannotationlink_parent_planeinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_parent_planeinfo FOREIGN KEY (parent) REFERENCES planeinfo(id); -- -- Name: fkplaneinfoannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeinfoannotationlink ADD CONSTRAINT fkplaneinfoannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkplaneslicingcontext_codomainmapcontext_id_codomainmapcontext; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY planeslicingcontext ADD CONSTRAINT fkplaneslicingcontext_codomainmapcontext_id_codomainmapcontext FOREIGN KEY (codomainmapcontext_id) REFERENCES codomainmapcontext(id); -- -- Name: fkplate_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plate ADD CONSTRAINT fkplate_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkplate_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plate ADD CONSTRAINT fkplate_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplate_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plate ADD CONSTRAINT fkplate_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkplate_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plate ADD CONSTRAINT fkplate_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkplate_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plate ADD CONSTRAINT fkplate_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkplateacquisition_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT fkplateacquisition_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkplateacquisition_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT fkplateacquisition_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplateacquisition_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT fkplateacquisition_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkplateacquisition_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT fkplateacquisition_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkplateacquisition_plate_plate; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT fkplateacquisition_plate_plate FOREIGN KEY (plate) REFERENCES plate(id); -- -- Name: fkplateacquisition_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisition ADD CONSTRAINT fkplateacquisition_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkplateacquisitionannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkplateacquisitionannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkplateacquisitionannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplateacquisitionannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkplateacquisitionannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkplateacquisitionannotationlink_parent_plateacquisition; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_parent_plateacquisition FOREIGN KEY (parent) REFERENCES plateacquisition(id); -- -- Name: fkplateacquisitionannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateacquisitionannotationlink ADD CONSTRAINT fkplateacquisitionannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkplateannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkplateannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkplateannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkplateannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkplateannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkplateannotationlink_parent_plate; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_parent_plate FOREIGN KEY (parent) REFERENCES plate(id); -- -- Name: fkplateannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY plateannotationlink ADD CONSTRAINT fkplateannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkproject_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY project ADD CONSTRAINT fkproject_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkproject_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY project ADD CONSTRAINT fkproject_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkproject_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY project ADD CONSTRAINT fkproject_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkproject_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY project ADD CONSTRAINT fkproject_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkproject_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY project ADD CONSTRAINT fkproject_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkprojectannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkprojectannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkprojectannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkprojectannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkprojectannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkprojectannotationlink_parent_project; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_parent_project FOREIGN KEY (parent) REFERENCES project(id); -- -- Name: fkprojectannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectannotationlink ADD CONSTRAINT fkprojectannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkprojectdatasetlink_child_dataset; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_child_dataset FOREIGN KEY (child) REFERENCES dataset(id); -- -- Name: fkprojectdatasetlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkprojectdatasetlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkprojectdatasetlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkprojectdatasetlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkprojectdatasetlink_parent_project; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_parent_project FOREIGN KEY (parent) REFERENCES project(id); -- -- Name: fkprojectdatasetlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY projectdatasetlink ADD CONSTRAINT fkprojectdatasetlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkpulse_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY pulse ADD CONSTRAINT fkpulse_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkquantumdef_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT fkquantumdef_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkquantumdef_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT fkquantumdef_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkquantumdef_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT fkquantumdef_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkquantumdef_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT fkquantumdef_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkquantumdef_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY quantumdef ADD CONSTRAINT fkquantumdef_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkreagent_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagent ADD CONSTRAINT fkreagent_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkreagent_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagent ADD CONSTRAINT fkreagent_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkreagent_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagent ADD CONSTRAINT fkreagent_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkreagent_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagent ADD CONSTRAINT fkreagent_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkreagent_screen_screen; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagent ADD CONSTRAINT fkreagent_screen_screen FOREIGN KEY (screen) REFERENCES screen(id); -- -- Name: fkreagent_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagent ADD CONSTRAINT fkreagent_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkreagentannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkreagentannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkreagentannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkreagentannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkreagentannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkreagentannotationlink_parent_reagent; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_parent_reagent FOREIGN KEY (parent) REFERENCES reagent(id); -- -- Name: fkreagentannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reagentannotationlink ADD CONSTRAINT fkreagentannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkrenderingdef_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkrenderingdef_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkrenderingdef_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkrenderingdef_model_renderingmodel; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_model_renderingmodel FOREIGN KEY (model) REFERENCES renderingmodel(id); -- -- Name: fkrenderingdef_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkrenderingdef_pixels_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_pixels_pixels FOREIGN KEY (pixels) REFERENCES pixels(id); -- -- Name: fkrenderingdef_quantization_quantumdef; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_quantization_quantumdef FOREIGN KEY (quantization) REFERENCES quantumdef(id); -- -- Name: fkrenderingdef_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingdef ADD CONSTRAINT fkrenderingdef_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkrenderingmodel_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY renderingmodel ADD CONSTRAINT fkrenderingmodel_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkreverseintensitycontext_codomainmapcontext_id_codomainmapcont; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY reverseintensitycontext ADD CONSTRAINT fkreverseintensitycontext_codomainmapcontext_id_codomainmapcont FOREIGN KEY (codomainmapcontext_id) REFERENCES codomainmapcontext(id); -- -- Name: fkroi_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkroi_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkroi_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkroi_image_image; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_image_image FOREIGN KEY (image) REFERENCES image(id); -- -- Name: fkroi_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkroi_source_originalfile; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_source_originalfile FOREIGN KEY (source) REFERENCES originalfile(id); -- -- Name: fkroi_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roi ADD CONSTRAINT fkroi_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkroiannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkroiannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkroiannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkroiannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkroiannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkroiannotationlink_parent_roi; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_parent_roi FOREIGN KEY (parent) REFERENCES roi(id); -- -- Name: fkroiannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY roiannotationlink ADD CONSTRAINT fkroiannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkscreen_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screen ADD CONSTRAINT fkscreen_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkscreen_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screen ADD CONSTRAINT fkscreen_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkscreen_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screen ADD CONSTRAINT fkscreen_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkscreen_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screen ADD CONSTRAINT fkscreen_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkscreen_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screen ADD CONSTRAINT fkscreen_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkscreenannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkscreenannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkscreenannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkscreenannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkscreenannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkscreenannotationlink_parent_screen; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_parent_screen FOREIGN KEY (parent) REFERENCES screen(id); -- -- Name: fkscreenannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenannotationlink ADD CONSTRAINT fkscreenannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkscreenplatelink_child_plate; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_child_plate FOREIGN KEY (child) REFERENCES plate(id); -- -- Name: fkscreenplatelink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkscreenplatelink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkscreenplatelink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkscreenplatelink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkscreenplatelink_parent_screen; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_parent_screen FOREIGN KEY (parent) REFERENCES screen(id); -- -- Name: fkscreenplatelink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY screenplatelink ADD CONSTRAINT fkscreenplatelink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkscriptjob_job_id_job; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY scriptjob ADD CONSTRAINT fkscriptjob_job_id_job FOREIGN KEY (job_id) REFERENCES job(id); -- -- Name: fksession_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY session ADD CONSTRAINT fksession_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fksession_node_node; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY session ADD CONSTRAINT fksession_node_node FOREIGN KEY (node) REFERENCES node(id); -- -- Name: fksession_owner_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY session ADD CONSTRAINT fksession_owner_experimenter FOREIGN KEY (owner) REFERENCES experimenter(id); -- -- Name: fksessionannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fksessionannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fksessionannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fksessionannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fksessionannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fksessionannotationlink_parent_session; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_parent_session FOREIGN KEY (parent) REFERENCES session(id); -- -- Name: fksessionannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sessionannotationlink ADD CONSTRAINT fksessionannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkshape_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkshape_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkshape_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkshape_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkshape_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkshape_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkshape_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkshape_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkshape_roi_roi; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkshape_roi_roi FOREIGN KEY (roi) REFERENCES roi(id); -- -- Name: fkshape_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY shape ADD CONSTRAINT fkshape_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkshare_group_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY share ADD CONSTRAINT fkshare_group_experimentergroup FOREIGN KEY ("group") REFERENCES experimentergroup(id); -- -- Name: fkshare_session_id_session; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY share ADD CONSTRAINT fkshare_session_id_session FOREIGN KEY (session_id) REFERENCES session(id); -- -- Name: fksharemember_child_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sharemember ADD CONSTRAINT fksharemember_child_experimenter FOREIGN KEY (child) REFERENCES experimenter(id); -- -- Name: fksharemember_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sharemember ADD CONSTRAINT fksharemember_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fksharemember_parent_share; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY sharemember ADD CONSTRAINT fksharemember_parent_share FOREIGN KEY (parent) REFERENCES share(session_id); -- -- Name: fkstagelabel_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT fkstagelabel_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkstagelabel_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT fkstagelabel_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkstagelabel_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT fkstagelabel_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkstagelabel_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT fkstagelabel_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkstagelabel_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY stagelabel ADD CONSTRAINT fkstagelabel_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkstatsinfo_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT fkstatsinfo_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkstatsinfo_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT fkstatsinfo_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkstatsinfo_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT fkstatsinfo_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkstatsinfo_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT fkstatsinfo_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkstatsinfo_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY statsinfo ADD CONSTRAINT fkstatsinfo_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkthumbnail_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT fkthumbnail_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkthumbnail_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT fkthumbnail_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkthumbnail_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT fkthumbnail_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkthumbnail_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT fkthumbnail_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkthumbnail_pixels_pixels; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT fkthumbnail_pixels_pixels FOREIGN KEY (pixels) REFERENCES pixels(id); -- -- Name: fkthumbnail_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY thumbnail ADD CONSTRAINT fkthumbnail_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fktransmittancerange_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT fktransmittancerange_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fktransmittancerange_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT fktransmittancerange_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fktransmittancerange_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT fktransmittancerange_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fktransmittancerange_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT fktransmittancerange_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fktransmittancerange_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY transmittancerange ADD CONSTRAINT fktransmittancerange_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkwell_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY well ADD CONSTRAINT fkwell_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkwell_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY well ADD CONSTRAINT fkwell_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkwell_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY well ADD CONSTRAINT fkwell_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkwell_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY well ADD CONSTRAINT fkwell_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkwell_plate_plate; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY well ADD CONSTRAINT fkwell_plate_plate FOREIGN KEY (plate) REFERENCES plate(id); -- -- Name: fkwell_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY well ADD CONSTRAINT fkwell_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkwellannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkwellannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkwellannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkwellannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkwellannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkwellannotationlink_parent_well; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_parent_well FOREIGN KEY (parent) REFERENCES well(id); -- -- Name: fkwellannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellannotationlink ADD CONSTRAINT fkwellannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkwellreagentlink_child_reagent; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_child_reagent FOREIGN KEY (child) REFERENCES reagent(id); -- -- Name: fkwellreagentlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkwellreagentlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkwellreagentlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkwellreagentlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkwellreagentlink_parent_well; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_parent_well FOREIGN KEY (parent) REFERENCES well(id); -- -- Name: fkwellreagentlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellreagentlink ADD CONSTRAINT fkwellreagentlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkwellsample_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkwellsample_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkwellsample_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkwellsample_image_image; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_image_image FOREIGN KEY (image) REFERENCES image(id); -- -- Name: fkwellsample_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkwellsample_plateacquisition_plateacquisition; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_plateacquisition_plateacquisition FOREIGN KEY (plateacquisition) REFERENCES plateacquisition(id); -- -- Name: fkwellsample_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: fkwellsample_well_well; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsample ADD CONSTRAINT fkwellsample_well_well FOREIGN KEY (well) REFERENCES well(id); -- -- Name: fkwellsampleannotationlink_child_annotation; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_child_annotation FOREIGN KEY (child) REFERENCES annotation(id); -- -- Name: fkwellsampleannotationlink_creation_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_creation_id_event FOREIGN KEY (creation_id) REFERENCES event(id); -- -- Name: fkwellsampleannotationlink_external_id_externalinfo; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_external_id_externalinfo FOREIGN KEY (external_id) REFERENCES externalinfo(id); -- -- Name: fkwellsampleannotationlink_group_id_experimentergroup; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_group_id_experimentergroup FOREIGN KEY (group_id) REFERENCES experimentergroup(id); -- -- Name: fkwellsampleannotationlink_owner_id_experimenter; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_owner_id_experimenter FOREIGN KEY (owner_id) REFERENCES experimenter(id); -- -- Name: fkwellsampleannotationlink_parent_wellsample; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_parent_wellsample FOREIGN KEY (parent) REFERENCES wellsample(id); -- -- Name: fkwellsampleannotationlink_update_id_event; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY wellsampleannotationlink ADD CONSTRAINT fkwellsampleannotationlink_update_id_event FOREIGN KEY (update_id) REFERENCES event(id); -- -- Name: password_experimenter_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: db_user -- ALTER TABLE ONLY password ADD CONSTRAINT password_experimenter_id_fkey FOREIGN KEY (experimenter_id) REFERENCES experimenter(id); -- -- Name: public; Type: ACL; Schema: -; Owner: postgres -- REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; GRANT ALL ON SCHEMA public TO db_user; GRANT USAGE ON SCHEMA public TO backuper; -- -- Name: _lock_seq; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE _lock_seq FROM PUBLIC; REVOKE ALL ON SEQUENCE _lock_seq FROM db_user; GRANT ALL ON SEQUENCE _lock_seq TO db_user; GRANT SELECT ON SEQUENCE _lock_seq TO backuper; -- -- Name: _lock_ids; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE _lock_ids FROM PUBLIC; REVOKE ALL ON TABLE _lock_ids FROM db_user; GRANT ALL ON TABLE _lock_ids TO db_user; GRANT SELECT ON TABLE _lock_ids TO backuper; -- -- Name: acquisitionmode; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE acquisitionmode FROM PUBLIC; REVOKE ALL ON TABLE acquisitionmode FROM db_user; GRANT ALL ON TABLE acquisitionmode TO db_user; GRANT SELECT ON TABLE acquisitionmode TO backuper; -- -- Name: annotation; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE annotation FROM PUBLIC; REVOKE ALL ON TABLE annotation FROM db_user; GRANT ALL ON TABLE annotation TO db_user; GRANT SELECT ON TABLE annotation TO backuper; -- -- Name: annotationannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE annotationannotationlink FROM PUBLIC; REVOKE ALL ON TABLE annotationannotationlink FROM db_user; GRANT ALL ON TABLE annotationannotationlink TO db_user; GRANT SELECT ON TABLE annotationannotationlink TO backuper; -- -- Name: arc; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE arc FROM PUBLIC; REVOKE ALL ON TABLE arc FROM db_user; GRANT ALL ON TABLE arc TO db_user; GRANT SELECT ON TABLE arc TO backuper; -- -- Name: arctype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE arctype FROM PUBLIC; REVOKE ALL ON TABLE arctype FROM db_user; GRANT ALL ON TABLE arctype TO db_user; GRANT SELECT ON TABLE arctype TO backuper; -- -- Name: binning; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE binning FROM PUBLIC; REVOKE ALL ON TABLE binning FROM db_user; GRANT ALL ON TABLE binning TO db_user; GRANT SELECT ON TABLE binning TO backuper; -- -- Name: channel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE channel FROM PUBLIC; REVOKE ALL ON TABLE channel FROM db_user; GRANT ALL ON TABLE channel TO db_user; GRANT SELECT ON TABLE channel TO backuper; -- -- Name: channelannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE channelannotationlink FROM PUBLIC; REVOKE ALL ON TABLE channelannotationlink FROM db_user; GRANT ALL ON TABLE channelannotationlink TO db_user; GRANT SELECT ON TABLE channelannotationlink TO backuper; -- -- Name: channelbinding; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE channelbinding FROM PUBLIC; REVOKE ALL ON TABLE channelbinding FROM db_user; GRANT ALL ON TABLE channelbinding TO db_user; GRANT SELECT ON TABLE channelbinding TO backuper; -- -- Name: codomainmapcontext; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE codomainmapcontext FROM PUBLIC; REVOKE ALL ON TABLE codomainmapcontext FROM db_user; GRANT ALL ON TABLE codomainmapcontext TO db_user; GRANT SELECT ON TABLE codomainmapcontext TO backuper; -- -- Name: configuration; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE configuration FROM PUBLIC; REVOKE ALL ON TABLE configuration FROM db_user; GRANT ALL ON TABLE configuration TO db_user; GRANT SELECT ON TABLE configuration TO backuper; -- -- Name: contrastmethod; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE contrastmethod FROM PUBLIC; REVOKE ALL ON TABLE contrastmethod FROM db_user; GRANT ALL ON TABLE contrastmethod TO db_user; GRANT SELECT ON TABLE contrastmethod TO backuper; -- -- Name: contraststretchingcontext; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE contraststretchingcontext FROM PUBLIC; REVOKE ALL ON TABLE contraststretchingcontext FROM db_user; GRANT ALL ON TABLE contraststretchingcontext TO db_user; GRANT SELECT ON TABLE contraststretchingcontext TO backuper; -- -- Name: correction; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE correction FROM PUBLIC; REVOKE ALL ON TABLE correction FROM db_user; GRANT ALL ON TABLE correction TO db_user; GRANT SELECT ON TABLE correction TO backuper; -- -- Name: datasetannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE datasetannotationlink FROM PUBLIC; REVOKE ALL ON TABLE datasetannotationlink FROM db_user; GRANT ALL ON TABLE datasetannotationlink TO db_user; GRANT SELECT ON TABLE datasetannotationlink TO backuper; -- -- Name: datasetimagelink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE datasetimagelink FROM PUBLIC; REVOKE ALL ON TABLE datasetimagelink FROM db_user; GRANT ALL ON TABLE datasetimagelink TO db_user; GRANT SELECT ON TABLE datasetimagelink TO backuper; -- -- Name: projectdatasetlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE projectdatasetlink FROM PUBLIC; REVOKE ALL ON TABLE projectdatasetlink FROM db_user; GRANT ALL ON TABLE projectdatasetlink TO db_user; GRANT SELECT ON TABLE projectdatasetlink TO backuper; -- -- Name: count_experimenter_annotationlinks_by_owner; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE count_experimenter_annotationlinks_by_owner FROM PUBLIC; REVOKE ALL ON TABLE count_experimenter_annotationlinks_by_owner FROM db_user; GRANT ALL ON TABLE count_experimenter_annotationlinks_by_owner TO db_user; GRANT SELECT ON TABLE count_experimenter_annotationlinks_by_owner TO backuper; -- -- Name: count_experimentergroup_annotationlinks_by_owner; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE count_experimentergroup_annotationlinks_by_owner FROM PUBLIC; REVOKE ALL ON TABLE count_experimentergroup_annotationlinks_by_owner FROM db_user; GRANT ALL ON TABLE count_experimentergroup_annotationlinks_by_owner TO db_user; GRANT SELECT ON TABLE count_experimentergroup_annotationlinks_by_owner TO backuper; -- -- Name: filtersetemissionfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filtersetemissionfilterlink FROM PUBLIC; REVOKE ALL ON TABLE filtersetemissionfilterlink FROM db_user; GRANT ALL ON TABLE filtersetemissionfilterlink TO db_user; GRANT SELECT ON TABLE filtersetemissionfilterlink TO backuper; -- -- Name: filtersetexcitationfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filtersetexcitationfilterlink FROM PUBLIC; REVOKE ALL ON TABLE filtersetexcitationfilterlink FROM db_user; GRANT ALL ON TABLE filtersetexcitationfilterlink TO db_user; GRANT SELECT ON TABLE filtersetexcitationfilterlink TO backuper; -- -- Name: imageannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE imageannotationlink FROM PUBLIC; REVOKE ALL ON TABLE imageannotationlink FROM db_user; GRANT ALL ON TABLE imageannotationlink TO db_user; GRANT SELECT ON TABLE imageannotationlink TO backuper; -- -- Name: joboriginalfilelink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE joboriginalfilelink FROM PUBLIC; REVOKE ALL ON TABLE joboriginalfilelink FROM db_user; GRANT ALL ON TABLE joboriginalfilelink TO db_user; GRANT SELECT ON TABLE joboriginalfilelink TO backuper; -- -- Name: lightpathemissionfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lightpathemissionfilterlink FROM PUBLIC; REVOKE ALL ON TABLE lightpathemissionfilterlink FROM db_user; GRANT ALL ON TABLE lightpathemissionfilterlink TO db_user; GRANT SELECT ON TABLE lightpathemissionfilterlink TO backuper; -- -- Name: lightpathexcitationfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lightpathexcitationfilterlink FROM PUBLIC; REVOKE ALL ON TABLE lightpathexcitationfilterlink FROM db_user; GRANT ALL ON TABLE lightpathexcitationfilterlink TO db_user; GRANT SELECT ON TABLE lightpathexcitationfilterlink TO backuper; -- -- Name: namespaceannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE namespaceannotationlink FROM PUBLIC; REVOKE ALL ON TABLE namespaceannotationlink FROM db_user; GRANT ALL ON TABLE namespaceannotationlink TO db_user; GRANT SELECT ON TABLE namespaceannotationlink TO backuper; -- -- Name: count_node_annotationlinks_by_owner; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE count_node_annotationlinks_by_owner FROM PUBLIC; REVOKE ALL ON TABLE count_node_annotationlinks_by_owner FROM db_user; GRANT ALL ON TABLE count_node_annotationlinks_by_owner TO db_user; GRANT SELECT ON TABLE count_node_annotationlinks_by_owner TO backuper; -- -- Name: originalfileannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE originalfileannotationlink FROM PUBLIC; REVOKE ALL ON TABLE originalfileannotationlink FROM db_user; GRANT ALL ON TABLE originalfileannotationlink TO db_user; GRANT SELECT ON TABLE originalfileannotationlink TO backuper; -- -- Name: pixelsoriginalfilemap; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE pixelsoriginalfilemap FROM PUBLIC; REVOKE ALL ON TABLE pixelsoriginalfilemap FROM db_user; GRANT ALL ON TABLE pixelsoriginalfilemap TO db_user; GRANT SELECT ON TABLE pixelsoriginalfilemap TO backuper; -- -- Name: pixelsannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE pixelsannotationlink FROM PUBLIC; REVOKE ALL ON TABLE pixelsannotationlink FROM db_user; GRANT ALL ON TABLE pixelsannotationlink TO db_user; GRANT SELECT ON TABLE pixelsannotationlink TO backuper; -- -- Name: planeinfoannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE planeinfoannotationlink FROM PUBLIC; REVOKE ALL ON TABLE planeinfoannotationlink FROM db_user; GRANT ALL ON TABLE planeinfoannotationlink TO db_user; GRANT SELECT ON TABLE planeinfoannotationlink TO backuper; -- -- Name: plateannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE plateannotationlink FROM PUBLIC; REVOKE ALL ON TABLE plateannotationlink FROM db_user; GRANT ALL ON TABLE plateannotationlink TO db_user; GRANT SELECT ON TABLE plateannotationlink TO backuper; -- -- Name: screenplatelink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE screenplatelink FROM PUBLIC; REVOKE ALL ON TABLE screenplatelink FROM db_user; GRANT ALL ON TABLE screenplatelink TO db_user; GRANT SELECT ON TABLE screenplatelink TO backuper; -- -- Name: plateacquisitionannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE plateacquisitionannotationlink FROM PUBLIC; REVOKE ALL ON TABLE plateacquisitionannotationlink FROM db_user; GRANT ALL ON TABLE plateacquisitionannotationlink TO db_user; GRANT SELECT ON TABLE plateacquisitionannotationlink TO backuper; -- -- Name: projectannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE projectannotationlink FROM PUBLIC; REVOKE ALL ON TABLE projectannotationlink FROM db_user; GRANT ALL ON TABLE projectannotationlink TO db_user; GRANT SELECT ON TABLE projectannotationlink TO backuper; -- -- Name: reagentannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE reagentannotationlink FROM PUBLIC; REVOKE ALL ON TABLE reagentannotationlink FROM db_user; GRANT ALL ON TABLE reagentannotationlink TO db_user; GRANT SELECT ON TABLE reagentannotationlink TO backuper; -- -- Name: wellreagentlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE wellreagentlink FROM PUBLIC; REVOKE ALL ON TABLE wellreagentlink FROM db_user; GRANT ALL ON TABLE wellreagentlink TO db_user; GRANT SELECT ON TABLE wellreagentlink TO backuper; -- -- Name: roiannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE roiannotationlink FROM PUBLIC; REVOKE ALL ON TABLE roiannotationlink FROM db_user; GRANT ALL ON TABLE roiannotationlink TO db_user; GRANT SELECT ON TABLE roiannotationlink TO backuper; -- -- Name: screenannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE screenannotationlink FROM PUBLIC; REVOKE ALL ON TABLE screenannotationlink FROM db_user; GRANT ALL ON TABLE screenannotationlink TO db_user; GRANT SELECT ON TABLE screenannotationlink TO backuper; -- -- Name: count_session_annotationlinks_by_owner; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE count_session_annotationlinks_by_owner FROM PUBLIC; REVOKE ALL ON TABLE count_session_annotationlinks_by_owner FROM db_user; GRANT ALL ON TABLE count_session_annotationlinks_by_owner TO db_user; GRANT SELECT ON TABLE count_session_annotationlinks_by_owner TO backuper; -- -- Name: wellannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE wellannotationlink FROM PUBLIC; REVOKE ALL ON TABLE wellannotationlink FROM db_user; GRANT ALL ON TABLE wellannotationlink TO db_user; GRANT SELECT ON TABLE wellannotationlink TO backuper; -- -- Name: wellsampleannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE wellsampleannotationlink FROM PUBLIC; REVOKE ALL ON TABLE wellsampleannotationlink FROM db_user; GRANT ALL ON TABLE wellsampleannotationlink TO db_user; GRANT SELECT ON TABLE wellsampleannotationlink TO backuper; -- -- Name: dataset; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE dataset FROM PUBLIC; REVOKE ALL ON TABLE dataset FROM db_user; GRANT ALL ON TABLE dataset TO db_user; GRANT SELECT ON TABLE dataset TO backuper; -- -- Name: dbpatch; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE dbpatch FROM PUBLIC; REVOKE ALL ON TABLE dbpatch FROM db_user; GRANT ALL ON TABLE dbpatch TO db_user; GRANT SELECT ON TABLE dbpatch TO backuper; -- -- Name: detector; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE detector FROM PUBLIC; REVOKE ALL ON TABLE detector FROM db_user; GRANT ALL ON TABLE detector TO db_user; GRANT SELECT ON TABLE detector TO backuper; -- -- Name: detectorsettings; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE detectorsettings FROM PUBLIC; REVOKE ALL ON TABLE detectorsettings FROM db_user; GRANT ALL ON TABLE detectorsettings TO db_user; GRANT SELECT ON TABLE detectorsettings TO backuper; -- -- Name: detectortype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE detectortype FROM PUBLIC; REVOKE ALL ON TABLE detectortype FROM db_user; GRANT ALL ON TABLE detectortype TO db_user; GRANT SELECT ON TABLE detectortype TO backuper; -- -- Name: dichroic; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE dichroic FROM PUBLIC; REVOKE ALL ON TABLE dichroic FROM db_user; GRANT ALL ON TABLE dichroic TO db_user; GRANT SELECT ON TABLE dichroic TO backuper; -- -- Name: dimensionorder; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE dimensionorder FROM PUBLIC; REVOKE ALL ON TABLE dimensionorder FROM db_user; GRANT ALL ON TABLE dimensionorder TO db_user; GRANT SELECT ON TABLE dimensionorder TO backuper; -- -- Name: event; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE event FROM PUBLIC; REVOKE ALL ON TABLE event FROM db_user; GRANT ALL ON TABLE event TO db_user; GRANT SELECT ON TABLE event TO backuper; -- -- Name: eventlog; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE eventlog FROM PUBLIC; REVOKE ALL ON TABLE eventlog FROM db_user; GRANT ALL ON TABLE eventlog TO db_user; GRANT SELECT ON TABLE eventlog TO backuper; -- -- Name: eventtype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE eventtype FROM PUBLIC; REVOKE ALL ON TABLE eventtype FROM db_user; GRANT ALL ON TABLE eventtype TO db_user; GRANT SELECT ON TABLE eventtype TO backuper; -- -- Name: experiment; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE experiment FROM PUBLIC; REVOKE ALL ON TABLE experiment FROM db_user; GRANT ALL ON TABLE experiment TO db_user; GRANT SELECT ON TABLE experiment TO backuper; -- -- Name: experimenter; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE experimenter FROM PUBLIC; REVOKE ALL ON TABLE experimenter FROM db_user; GRANT ALL ON TABLE experimenter TO db_user; GRANT SELECT ON TABLE experimenter TO backuper; -- -- Name: experimenterannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE experimenterannotationlink FROM PUBLIC; REVOKE ALL ON TABLE experimenterannotationlink FROM db_user; GRANT ALL ON TABLE experimenterannotationlink TO db_user; GRANT SELECT ON TABLE experimenterannotationlink TO backuper; -- -- Name: experimentergroup; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE experimentergroup FROM PUBLIC; REVOKE ALL ON TABLE experimentergroup FROM db_user; GRANT ALL ON TABLE experimentergroup TO db_user; GRANT SELECT ON TABLE experimentergroup TO backuper; -- -- Name: experimentergroupannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE experimentergroupannotationlink FROM PUBLIC; REVOKE ALL ON TABLE experimentergroupannotationlink FROM db_user; GRANT ALL ON TABLE experimentergroupannotationlink TO db_user; GRANT SELECT ON TABLE experimentergroupannotationlink TO backuper; -- -- Name: experimenttype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE experimenttype FROM PUBLIC; REVOKE ALL ON TABLE experimenttype FROM db_user; GRANT ALL ON TABLE experimenttype TO db_user; GRANT SELECT ON TABLE experimenttype TO backuper; -- -- Name: externalinfo; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE externalinfo FROM PUBLIC; REVOKE ALL ON TABLE externalinfo FROM db_user; GRANT ALL ON TABLE externalinfo TO db_user; GRANT SELECT ON TABLE externalinfo TO backuper; -- -- Name: family; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE family FROM PUBLIC; REVOKE ALL ON TABLE family FROM db_user; GRANT ALL ON TABLE family TO db_user; GRANT SELECT ON TABLE family TO backuper; -- -- Name: filament; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filament FROM PUBLIC; REVOKE ALL ON TABLE filament FROM db_user; GRANT ALL ON TABLE filament TO db_user; GRANT SELECT ON TABLE filament TO backuper; -- -- Name: filamenttype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filamenttype FROM PUBLIC; REVOKE ALL ON TABLE filamenttype FROM db_user; GRANT ALL ON TABLE filamenttype TO db_user; GRANT SELECT ON TABLE filamenttype TO backuper; -- -- Name: filter; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filter FROM PUBLIC; REVOKE ALL ON TABLE filter FROM db_user; GRANT ALL ON TABLE filter TO db_user; GRANT SELECT ON TABLE filter TO backuper; -- -- Name: filterset; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filterset FROM PUBLIC; REVOKE ALL ON TABLE filterset FROM db_user; GRANT ALL ON TABLE filterset TO db_user; GRANT SELECT ON TABLE filterset TO backuper; -- -- Name: filtertype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE filtertype FROM PUBLIC; REVOKE ALL ON TABLE filtertype FROM db_user; GRANT ALL ON TABLE filtertype TO db_user; GRANT SELECT ON TABLE filtertype TO backuper; -- -- Name: format; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE format FROM PUBLIC; REVOKE ALL ON TABLE format FROM db_user; GRANT ALL ON TABLE format TO db_user; GRANT SELECT ON TABLE format TO backuper; -- -- Name: groupexperimentermap; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE groupexperimentermap FROM PUBLIC; REVOKE ALL ON TABLE groupexperimentermap FROM db_user; GRANT ALL ON TABLE groupexperimentermap TO db_user; GRANT SELECT ON TABLE groupexperimentermap TO backuper; -- -- Name: illumination; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE illumination FROM PUBLIC; REVOKE ALL ON TABLE illumination FROM db_user; GRANT ALL ON TABLE illumination TO db_user; GRANT SELECT ON TABLE illumination TO backuper; -- -- Name: image; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE image FROM PUBLIC; REVOKE ALL ON TABLE image FROM db_user; GRANT ALL ON TABLE image TO db_user; GRANT SELECT ON TABLE image TO backuper; -- -- Name: imagingenvironment; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE imagingenvironment FROM PUBLIC; REVOKE ALL ON TABLE imagingenvironment FROM db_user; GRANT ALL ON TABLE imagingenvironment TO db_user; GRANT SELECT ON TABLE imagingenvironment TO backuper; -- -- Name: immersion; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE immersion FROM PUBLIC; REVOKE ALL ON TABLE immersion FROM db_user; GRANT ALL ON TABLE immersion TO db_user; GRANT SELECT ON TABLE immersion TO backuper; -- -- Name: importjob; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE importjob FROM PUBLIC; REVOKE ALL ON TABLE importjob FROM db_user; GRANT ALL ON TABLE importjob TO db_user; GRANT SELECT ON TABLE importjob TO backuper; -- -- Name: instrument; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE instrument FROM PUBLIC; REVOKE ALL ON TABLE instrument FROM db_user; GRANT ALL ON TABLE instrument TO db_user; GRANT SELECT ON TABLE instrument TO backuper; -- -- Name: job; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE job FROM PUBLIC; REVOKE ALL ON TABLE job FROM db_user; GRANT ALL ON TABLE job TO db_user; GRANT SELECT ON TABLE job TO backuper; -- -- Name: jobstatus; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE jobstatus FROM PUBLIC; REVOKE ALL ON TABLE jobstatus FROM db_user; GRANT ALL ON TABLE jobstatus TO db_user; GRANT SELECT ON TABLE jobstatus TO backuper; -- -- Name: laser; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE laser FROM PUBLIC; REVOKE ALL ON TABLE laser FROM db_user; GRANT ALL ON TABLE laser TO db_user; GRANT SELECT ON TABLE laser TO backuper; -- -- Name: lasermedium; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lasermedium FROM PUBLIC; REVOKE ALL ON TABLE lasermedium FROM db_user; GRANT ALL ON TABLE lasermedium TO db_user; GRANT SELECT ON TABLE lasermedium TO backuper; -- -- Name: lasertype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lasertype FROM PUBLIC; REVOKE ALL ON TABLE lasertype FROM db_user; GRANT ALL ON TABLE lasertype TO db_user; GRANT SELECT ON TABLE lasertype TO backuper; -- -- Name: lightemittingdiode; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lightemittingdiode FROM PUBLIC; REVOKE ALL ON TABLE lightemittingdiode FROM db_user; GRANT ALL ON TABLE lightemittingdiode TO db_user; GRANT SELECT ON TABLE lightemittingdiode TO backuper; -- -- Name: lightpath; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lightpath FROM PUBLIC; REVOKE ALL ON TABLE lightpath FROM db_user; GRANT ALL ON TABLE lightpath TO db_user; GRANT SELECT ON TABLE lightpath TO backuper; -- -- Name: lightsettings; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lightsettings FROM PUBLIC; REVOKE ALL ON TABLE lightsettings FROM db_user; GRANT ALL ON TABLE lightsettings TO db_user; GRANT SELECT ON TABLE lightsettings TO backuper; -- -- Name: lightsource; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE lightsource FROM PUBLIC; REVOKE ALL ON TABLE lightsource FROM db_user; GRANT ALL ON TABLE lightsource TO db_user; GRANT SELECT ON TABLE lightsource TO backuper; -- -- Name: link; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE link FROM PUBLIC; REVOKE ALL ON TABLE link FROM db_user; GRANT ALL ON TABLE link TO db_user; GRANT SELECT ON TABLE link TO backuper; -- -- Name: logicalchannel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE logicalchannel FROM PUBLIC; REVOKE ALL ON TABLE logicalchannel FROM db_user; GRANT ALL ON TABLE logicalchannel TO db_user; GRANT SELECT ON TABLE logicalchannel TO backuper; -- -- Name: medium; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE medium FROM PUBLIC; REVOKE ALL ON TABLE medium FROM db_user; GRANT ALL ON TABLE medium TO db_user; GRANT SELECT ON TABLE medium TO backuper; -- -- Name: microbeammanipulation; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE microbeammanipulation FROM PUBLIC; REVOKE ALL ON TABLE microbeammanipulation FROM db_user; GRANT ALL ON TABLE microbeammanipulation TO db_user; GRANT SELECT ON TABLE microbeammanipulation TO backuper; -- -- Name: microbeammanipulationtype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE microbeammanipulationtype FROM PUBLIC; REVOKE ALL ON TABLE microbeammanipulationtype FROM db_user; GRANT ALL ON TABLE microbeammanipulationtype TO db_user; GRANT SELECT ON TABLE microbeammanipulationtype TO backuper; -- -- Name: microscope; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE microscope FROM PUBLIC; REVOKE ALL ON TABLE microscope FROM db_user; GRANT ALL ON TABLE microscope TO db_user; GRANT SELECT ON TABLE microscope TO backuper; -- -- Name: microscopetype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE microscopetype FROM PUBLIC; REVOKE ALL ON TABLE microscopetype FROM db_user; GRANT ALL ON TABLE microscopetype TO db_user; GRANT SELECT ON TABLE microscopetype TO backuper; -- -- Name: namespace; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE namespace FROM PUBLIC; REVOKE ALL ON TABLE namespace FROM db_user; GRANT ALL ON TABLE namespace TO db_user; GRANT SELECT ON TABLE namespace TO backuper; -- -- Name: node; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE node FROM PUBLIC; REVOKE ALL ON TABLE node FROM db_user; GRANT ALL ON TABLE node TO db_user; GRANT SELECT ON TABLE node TO backuper; -- -- Name: nodeannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE nodeannotationlink FROM PUBLIC; REVOKE ALL ON TABLE nodeannotationlink FROM db_user; GRANT ALL ON TABLE nodeannotationlink TO db_user; GRANT SELECT ON TABLE nodeannotationlink TO backuper; -- -- Name: objective; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE objective FROM PUBLIC; REVOKE ALL ON TABLE objective FROM db_user; GRANT ALL ON TABLE objective TO db_user; GRANT SELECT ON TABLE objective TO backuper; -- -- Name: objectivesettings; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE objectivesettings FROM PUBLIC; REVOKE ALL ON TABLE objectivesettings FROM db_user; GRANT ALL ON TABLE objectivesettings TO db_user; GRANT SELECT ON TABLE objectivesettings TO backuper; -- -- Name: originalfile; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE originalfile FROM PUBLIC; REVOKE ALL ON TABLE originalfile FROM db_user; GRANT ALL ON TABLE originalfile TO db_user; GRANT SELECT ON TABLE originalfile TO backuper; -- -- Name: otf; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE otf FROM PUBLIC; REVOKE ALL ON TABLE otf FROM db_user; GRANT ALL ON TABLE otf TO db_user; GRANT SELECT ON TABLE otf TO backuper; -- -- Name: parsejob; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE parsejob FROM PUBLIC; REVOKE ALL ON TABLE parsejob FROM db_user; GRANT ALL ON TABLE parsejob TO db_user; GRANT SELECT ON TABLE parsejob TO backuper; -- -- Name: password; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE password FROM PUBLIC; REVOKE ALL ON TABLE password FROM db_user; GRANT ALL ON TABLE password TO db_user; GRANT SELECT ON TABLE password TO backuper; -- -- Name: photometricinterpretation; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE photometricinterpretation FROM PUBLIC; REVOKE ALL ON TABLE photometricinterpretation FROM db_user; GRANT ALL ON TABLE photometricinterpretation TO db_user; GRANT SELECT ON TABLE photometricinterpretation TO backuper; -- -- Name: pixels; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE pixels FROM PUBLIC; REVOKE ALL ON TABLE pixels FROM db_user; GRANT ALL ON TABLE pixels TO db_user; GRANT SELECT ON TABLE pixels TO backuper; -- -- Name: pixelstype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE pixelstype FROM PUBLIC; REVOKE ALL ON TABLE pixelstype FROM db_user; GRANT ALL ON TABLE pixelstype TO db_user; GRANT SELECT ON TABLE pixelstype TO backuper; -- -- Name: planeinfo; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE planeinfo FROM PUBLIC; REVOKE ALL ON TABLE planeinfo FROM db_user; GRANT ALL ON TABLE planeinfo TO db_user; GRANT SELECT ON TABLE planeinfo TO backuper; -- -- Name: planeslicingcontext; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE planeslicingcontext FROM PUBLIC; REVOKE ALL ON TABLE planeslicingcontext FROM db_user; GRANT ALL ON TABLE planeslicingcontext TO db_user; GRANT SELECT ON TABLE planeslicingcontext TO backuper; -- -- Name: plate; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE plate FROM PUBLIC; REVOKE ALL ON TABLE plate FROM db_user; GRANT ALL ON TABLE plate TO db_user; GRANT SELECT ON TABLE plate TO backuper; -- -- Name: plateacquisition; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE plateacquisition FROM PUBLIC; REVOKE ALL ON TABLE plateacquisition FROM db_user; GRANT ALL ON TABLE plateacquisition TO db_user; GRANT SELECT ON TABLE plateacquisition TO backuper; -- -- Name: project; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE project FROM PUBLIC; REVOKE ALL ON TABLE project FROM db_user; GRANT ALL ON TABLE project TO db_user; GRANT SELECT ON TABLE project TO backuper; -- -- Name: pulse; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE pulse FROM PUBLIC; REVOKE ALL ON TABLE pulse FROM db_user; GRANT ALL ON TABLE pulse TO db_user; GRANT SELECT ON TABLE pulse TO backuper; -- -- Name: quantumdef; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE quantumdef FROM PUBLIC; REVOKE ALL ON TABLE quantumdef FROM db_user; GRANT ALL ON TABLE quantumdef TO db_user; GRANT SELECT ON TABLE quantumdef TO backuper; -- -- Name: reagent; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE reagent FROM PUBLIC; REVOKE ALL ON TABLE reagent FROM db_user; GRANT ALL ON TABLE reagent TO db_user; GRANT SELECT ON TABLE reagent TO backuper; -- -- Name: renderingdef; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE renderingdef FROM PUBLIC; REVOKE ALL ON TABLE renderingdef FROM db_user; GRANT ALL ON TABLE renderingdef TO db_user; GRANT SELECT ON TABLE renderingdef TO backuper; -- -- Name: renderingmodel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE renderingmodel FROM PUBLIC; REVOKE ALL ON TABLE renderingmodel FROM db_user; GRANT ALL ON TABLE renderingmodel TO db_user; GRANT SELECT ON TABLE renderingmodel TO backuper; -- -- Name: reverseintensitycontext; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE reverseintensitycontext FROM PUBLIC; REVOKE ALL ON TABLE reverseintensitycontext FROM db_user; GRANT ALL ON TABLE reverseintensitycontext TO db_user; GRANT SELECT ON TABLE reverseintensitycontext TO backuper; -- -- Name: roi; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE roi FROM PUBLIC; REVOKE ALL ON TABLE roi FROM db_user; GRANT ALL ON TABLE roi TO db_user; GRANT SELECT ON TABLE roi TO backuper; -- -- Name: screen; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE screen FROM PUBLIC; REVOKE ALL ON TABLE screen FROM db_user; GRANT ALL ON TABLE screen TO db_user; GRANT SELECT ON TABLE screen TO backuper; -- -- Name: scriptjob; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE scriptjob FROM PUBLIC; REVOKE ALL ON TABLE scriptjob FROM db_user; GRANT ALL ON TABLE scriptjob TO db_user; GRANT SELECT ON TABLE scriptjob TO backuper; -- -- Name: seq_acquisitionmode; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_acquisitionmode FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_acquisitionmode FROM db_user; GRANT ALL ON SEQUENCE seq_acquisitionmode TO db_user; GRANT SELECT ON SEQUENCE seq_acquisitionmode TO backuper; -- -- Name: seq_annotation; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_annotation FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_annotation FROM db_user; GRANT ALL ON SEQUENCE seq_annotation TO db_user; GRANT SELECT ON SEQUENCE seq_annotation TO backuper; -- -- Name: seq_annotationannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_annotationannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_annotationannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_annotationannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_annotationannotationlink TO backuper; -- -- Name: seq_arctype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_arctype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_arctype FROM db_user; GRANT ALL ON SEQUENCE seq_arctype TO db_user; GRANT SELECT ON SEQUENCE seq_arctype TO backuper; -- -- Name: seq_binning; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_binning FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_binning FROM db_user; GRANT ALL ON SEQUENCE seq_binning TO db_user; GRANT SELECT ON SEQUENCE seq_binning TO backuper; -- -- Name: seq_channel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_channel FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_channel FROM db_user; GRANT ALL ON SEQUENCE seq_channel TO db_user; GRANT SELECT ON SEQUENCE seq_channel TO backuper; -- -- Name: seq_channelannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_channelannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_channelannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_channelannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_channelannotationlink TO backuper; -- -- Name: seq_channelbinding; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_channelbinding FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_channelbinding FROM db_user; GRANT ALL ON SEQUENCE seq_channelbinding TO db_user; GRANT SELECT ON SEQUENCE seq_channelbinding TO backuper; -- -- Name: seq_codomainmapcontext; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_codomainmapcontext FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_codomainmapcontext FROM db_user; GRANT ALL ON SEQUENCE seq_codomainmapcontext TO db_user; GRANT SELECT ON SEQUENCE seq_codomainmapcontext TO backuper; -- -- Name: seq_contrastmethod; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_contrastmethod FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_contrastmethod FROM db_user; GRANT ALL ON SEQUENCE seq_contrastmethod TO db_user; GRANT SELECT ON SEQUENCE seq_contrastmethod TO backuper; -- -- Name: seq_correction; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_correction FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_correction FROM db_user; GRANT ALL ON SEQUENCE seq_correction TO db_user; GRANT SELECT ON SEQUENCE seq_correction TO backuper; -- -- Name: seq_dataset; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_dataset FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_dataset FROM db_user; GRANT ALL ON SEQUENCE seq_dataset TO db_user; GRANT SELECT ON SEQUENCE seq_dataset TO backuper; -- -- Name: seq_datasetannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_datasetannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_datasetannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_datasetannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_datasetannotationlink TO backuper; -- -- Name: seq_datasetimagelink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_datasetimagelink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_datasetimagelink FROM db_user; GRANT ALL ON SEQUENCE seq_datasetimagelink TO db_user; GRANT SELECT ON SEQUENCE seq_datasetimagelink TO backuper; -- -- Name: seq_dbpatch; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_dbpatch FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_dbpatch FROM db_user; GRANT ALL ON SEQUENCE seq_dbpatch TO db_user; GRANT SELECT ON SEQUENCE seq_dbpatch TO backuper; -- -- Name: seq_detector; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_detector FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_detector FROM db_user; GRANT ALL ON SEQUENCE seq_detector TO db_user; GRANT SELECT ON SEQUENCE seq_detector TO backuper; -- -- Name: seq_detectorsettings; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_detectorsettings FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_detectorsettings FROM db_user; GRANT ALL ON SEQUENCE seq_detectorsettings TO db_user; GRANT SELECT ON SEQUENCE seq_detectorsettings TO backuper; -- -- Name: seq_detectortype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_detectortype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_detectortype FROM db_user; GRANT ALL ON SEQUENCE seq_detectortype TO db_user; GRANT SELECT ON SEQUENCE seq_detectortype TO backuper; -- -- Name: seq_dichroic; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_dichroic FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_dichroic FROM db_user; GRANT ALL ON SEQUENCE seq_dichroic TO db_user; GRANT SELECT ON SEQUENCE seq_dichroic TO backuper; -- -- Name: seq_dimensionorder; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_dimensionorder FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_dimensionorder FROM db_user; GRANT ALL ON SEQUENCE seq_dimensionorder TO db_user; GRANT SELECT ON SEQUENCE seq_dimensionorder TO backuper; -- -- Name: seq_event; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_event FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_event FROM db_user; GRANT ALL ON SEQUENCE seq_event TO db_user; GRANT SELECT ON SEQUENCE seq_event TO backuper; -- -- Name: seq_eventlog; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_eventlog FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_eventlog FROM db_user; GRANT ALL ON SEQUENCE seq_eventlog TO db_user; GRANT SELECT ON SEQUENCE seq_eventlog TO backuper; -- -- Name: seq_eventtype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_eventtype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_eventtype FROM db_user; GRANT ALL ON SEQUENCE seq_eventtype TO db_user; GRANT SELECT ON SEQUENCE seq_eventtype TO backuper; -- -- Name: seq_experiment; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_experiment FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_experiment FROM db_user; GRANT ALL ON SEQUENCE seq_experiment TO db_user; GRANT SELECT ON SEQUENCE seq_experiment TO backuper; -- -- Name: seq_experimenter; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_experimenter FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_experimenter FROM db_user; GRANT ALL ON SEQUENCE seq_experimenter TO db_user; GRANT SELECT ON SEQUENCE seq_experimenter TO backuper; -- -- Name: seq_experimenterannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_experimenterannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_experimenterannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_experimenterannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_experimenterannotationlink TO backuper; -- -- Name: seq_experimentergroup; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_experimentergroup FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_experimentergroup FROM db_user; GRANT ALL ON SEQUENCE seq_experimentergroup TO db_user; GRANT SELECT ON SEQUENCE seq_experimentergroup TO backuper; -- -- Name: seq_experimentergroupannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_experimentergroupannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_experimentergroupannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_experimentergroupannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_experimentergroupannotationlink TO backuper; -- -- Name: seq_experimenttype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_experimenttype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_experimenttype FROM db_user; GRANT ALL ON SEQUENCE seq_experimenttype TO db_user; GRANT SELECT ON SEQUENCE seq_experimenttype TO backuper; -- -- Name: seq_externalinfo; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_externalinfo FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_externalinfo FROM db_user; GRANT ALL ON SEQUENCE seq_externalinfo TO db_user; GRANT SELECT ON SEQUENCE seq_externalinfo TO backuper; -- -- Name: seq_family; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_family FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_family FROM db_user; GRANT ALL ON SEQUENCE seq_family TO db_user; GRANT SELECT ON SEQUENCE seq_family TO backuper; -- -- Name: seq_filamenttype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_filamenttype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_filamenttype FROM db_user; GRANT ALL ON SEQUENCE seq_filamenttype TO db_user; GRANT SELECT ON SEQUENCE seq_filamenttype TO backuper; -- -- Name: seq_filter; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_filter FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_filter FROM db_user; GRANT ALL ON SEQUENCE seq_filter TO db_user; GRANT SELECT ON SEQUENCE seq_filter TO backuper; -- -- Name: seq_filterset; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_filterset FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_filterset FROM db_user; GRANT ALL ON SEQUENCE seq_filterset TO db_user; GRANT SELECT ON SEQUENCE seq_filterset TO backuper; -- -- Name: seq_filtersetemissionfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_filtersetemissionfilterlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_filtersetemissionfilterlink FROM db_user; GRANT ALL ON SEQUENCE seq_filtersetemissionfilterlink TO db_user; GRANT SELECT ON SEQUENCE seq_filtersetemissionfilterlink TO backuper; -- -- Name: seq_filtersetexcitationfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_filtersetexcitationfilterlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_filtersetexcitationfilterlink FROM db_user; GRANT ALL ON SEQUENCE seq_filtersetexcitationfilterlink TO db_user; GRANT SELECT ON SEQUENCE seq_filtersetexcitationfilterlink TO backuper; -- -- Name: seq_filtertype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_filtertype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_filtertype FROM db_user; GRANT ALL ON SEQUENCE seq_filtertype TO db_user; GRANT SELECT ON SEQUENCE seq_filtertype TO backuper; -- -- Name: seq_format; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_format FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_format FROM db_user; GRANT ALL ON SEQUENCE seq_format TO db_user; GRANT SELECT ON SEQUENCE seq_format TO backuper; -- -- Name: seq_groupexperimentermap; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_groupexperimentermap FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_groupexperimentermap FROM db_user; GRANT ALL ON SEQUENCE seq_groupexperimentermap TO db_user; GRANT SELECT ON SEQUENCE seq_groupexperimentermap TO backuper; -- -- Name: seq_illumination; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_illumination FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_illumination FROM db_user; GRANT ALL ON SEQUENCE seq_illumination TO db_user; GRANT SELECT ON SEQUENCE seq_illumination TO backuper; -- -- Name: seq_image; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_image FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_image FROM db_user; GRANT ALL ON SEQUENCE seq_image TO db_user; GRANT SELECT ON SEQUENCE seq_image TO backuper; -- -- Name: seq_imageannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_imageannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_imageannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_imageannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_imageannotationlink TO backuper; -- -- Name: seq_imagingenvironment; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_imagingenvironment FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_imagingenvironment FROM db_user; GRANT ALL ON SEQUENCE seq_imagingenvironment TO db_user; GRANT SELECT ON SEQUENCE seq_imagingenvironment TO backuper; -- -- Name: seq_immersion; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_immersion FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_immersion FROM db_user; GRANT ALL ON SEQUENCE seq_immersion TO db_user; GRANT SELECT ON SEQUENCE seq_immersion TO backuper; -- -- Name: seq_instrument; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_instrument FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_instrument FROM db_user; GRANT ALL ON SEQUENCE seq_instrument TO db_user; GRANT SELECT ON SEQUENCE seq_instrument TO backuper; -- -- Name: seq_job; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_job FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_job FROM db_user; GRANT ALL ON SEQUENCE seq_job TO db_user; GRANT SELECT ON SEQUENCE seq_job TO backuper; -- -- Name: seq_joboriginalfilelink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_joboriginalfilelink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_joboriginalfilelink FROM db_user; GRANT ALL ON SEQUENCE seq_joboriginalfilelink TO db_user; GRANT SELECT ON SEQUENCE seq_joboriginalfilelink TO backuper; -- -- Name: seq_jobstatus; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_jobstatus FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_jobstatus FROM db_user; GRANT ALL ON SEQUENCE seq_jobstatus TO db_user; GRANT SELECT ON SEQUENCE seq_jobstatus TO backuper; -- -- Name: seq_lasermedium; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lasermedium FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lasermedium FROM db_user; GRANT ALL ON SEQUENCE seq_lasermedium TO db_user; GRANT SELECT ON SEQUENCE seq_lasermedium TO backuper; -- -- Name: seq_lasertype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lasertype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lasertype FROM db_user; GRANT ALL ON SEQUENCE seq_lasertype TO db_user; GRANT SELECT ON SEQUENCE seq_lasertype TO backuper; -- -- Name: seq_lightpath; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lightpath FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lightpath FROM db_user; GRANT ALL ON SEQUENCE seq_lightpath TO db_user; GRANT SELECT ON SEQUENCE seq_lightpath TO backuper; -- -- Name: seq_lightpathemissionfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lightpathemissionfilterlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lightpathemissionfilterlink FROM db_user; GRANT ALL ON SEQUENCE seq_lightpathemissionfilterlink TO db_user; GRANT SELECT ON SEQUENCE seq_lightpathemissionfilterlink TO backuper; -- -- Name: seq_lightpathexcitationfilterlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lightpathexcitationfilterlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lightpathexcitationfilterlink FROM db_user; GRANT ALL ON SEQUENCE seq_lightpathexcitationfilterlink TO db_user; GRANT SELECT ON SEQUENCE seq_lightpathexcitationfilterlink TO backuper; -- -- Name: seq_lightsettings; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lightsettings FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lightsettings FROM db_user; GRANT ALL ON SEQUENCE seq_lightsettings TO db_user; GRANT SELECT ON SEQUENCE seq_lightsettings TO backuper; -- -- Name: seq_lightsource; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_lightsource FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_lightsource FROM db_user; GRANT ALL ON SEQUENCE seq_lightsource TO db_user; GRANT SELECT ON SEQUENCE seq_lightsource TO backuper; -- -- Name: seq_link; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_link FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_link FROM db_user; GRANT ALL ON SEQUENCE seq_link TO db_user; GRANT SELECT ON SEQUENCE seq_link TO backuper; -- -- Name: seq_logicalchannel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_logicalchannel FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_logicalchannel FROM db_user; GRANT ALL ON SEQUENCE seq_logicalchannel TO db_user; GRANT SELECT ON SEQUENCE seq_logicalchannel TO backuper; -- -- Name: seq_medium; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_medium FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_medium FROM db_user; GRANT ALL ON SEQUENCE seq_medium TO db_user; GRANT SELECT ON SEQUENCE seq_medium TO backuper; -- -- Name: seq_microbeammanipulation; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_microbeammanipulation FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_microbeammanipulation FROM db_user; GRANT ALL ON SEQUENCE seq_microbeammanipulation TO db_user; GRANT SELECT ON SEQUENCE seq_microbeammanipulation TO backuper; -- -- Name: seq_microbeammanipulationtype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_microbeammanipulationtype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_microbeammanipulationtype FROM db_user; GRANT ALL ON SEQUENCE seq_microbeammanipulationtype TO db_user; GRANT SELECT ON SEQUENCE seq_microbeammanipulationtype TO backuper; -- -- Name: seq_microscope; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_microscope FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_microscope FROM db_user; GRANT ALL ON SEQUENCE seq_microscope TO db_user; GRANT SELECT ON SEQUENCE seq_microscope TO backuper; -- -- Name: seq_microscopetype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_microscopetype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_microscopetype FROM db_user; GRANT ALL ON SEQUENCE seq_microscopetype TO db_user; GRANT SELECT ON SEQUENCE seq_microscopetype TO backuper; -- -- Name: seq_namespace; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_namespace FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_namespace FROM db_user; GRANT ALL ON SEQUENCE seq_namespace TO db_user; GRANT SELECT ON SEQUENCE seq_namespace TO backuper; -- -- Name: seq_namespaceannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_namespaceannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_namespaceannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_namespaceannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_namespaceannotationlink TO backuper; -- -- Name: seq_node; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_node FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_node FROM db_user; GRANT ALL ON SEQUENCE seq_node TO db_user; GRANT SELECT ON SEQUENCE seq_node TO backuper; -- -- Name: seq_nodeannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_nodeannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_nodeannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_nodeannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_nodeannotationlink TO backuper; -- -- Name: seq_objective; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_objective FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_objective FROM db_user; GRANT ALL ON SEQUENCE seq_objective TO db_user; GRANT SELECT ON SEQUENCE seq_objective TO backuper; -- -- Name: seq_objectivesettings; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_objectivesettings FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_objectivesettings FROM db_user; GRANT ALL ON SEQUENCE seq_objectivesettings TO db_user; GRANT SELECT ON SEQUENCE seq_objectivesettings TO backuper; -- -- Name: seq_originalfile; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_originalfile FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_originalfile FROM db_user; GRANT ALL ON SEQUENCE seq_originalfile TO db_user; GRANT SELECT ON SEQUENCE seq_originalfile TO backuper; -- -- Name: seq_originalfileannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_originalfileannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_originalfileannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_originalfileannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_originalfileannotationlink TO backuper; -- -- Name: seq_otf; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_otf FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_otf FROM db_user; GRANT ALL ON SEQUENCE seq_otf TO db_user; GRANT SELECT ON SEQUENCE seq_otf TO backuper; -- -- Name: seq_photometricinterpretation; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_photometricinterpretation FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_photometricinterpretation FROM db_user; GRANT ALL ON SEQUENCE seq_photometricinterpretation TO db_user; GRANT SELECT ON SEQUENCE seq_photometricinterpretation TO backuper; -- -- Name: seq_pixels; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_pixels FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_pixels FROM db_user; GRANT ALL ON SEQUENCE seq_pixels TO db_user; GRANT SELECT ON SEQUENCE seq_pixels TO backuper; -- -- Name: seq_pixelsannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_pixelsannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_pixelsannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_pixelsannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_pixelsannotationlink TO backuper; -- -- Name: seq_pixelsoriginalfilemap; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_pixelsoriginalfilemap FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_pixelsoriginalfilemap FROM db_user; GRANT ALL ON SEQUENCE seq_pixelsoriginalfilemap TO db_user; GRANT SELECT ON SEQUENCE seq_pixelsoriginalfilemap TO backuper; -- -- Name: seq_pixelstype; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_pixelstype FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_pixelstype FROM db_user; GRANT ALL ON SEQUENCE seq_pixelstype TO db_user; GRANT SELECT ON SEQUENCE seq_pixelstype TO backuper; -- -- Name: seq_planeinfo; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_planeinfo FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_planeinfo FROM db_user; GRANT ALL ON SEQUENCE seq_planeinfo TO db_user; GRANT SELECT ON SEQUENCE seq_planeinfo TO backuper; -- -- Name: seq_planeinfoannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_planeinfoannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_planeinfoannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_planeinfoannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_planeinfoannotationlink TO backuper; -- -- Name: seq_plate; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_plate FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_plate FROM db_user; GRANT ALL ON SEQUENCE seq_plate TO db_user; GRANT SELECT ON SEQUENCE seq_plate TO backuper; -- -- Name: seq_plateacquisition; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_plateacquisition FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_plateacquisition FROM db_user; GRANT ALL ON SEQUENCE seq_plateacquisition TO db_user; GRANT SELECT ON SEQUENCE seq_plateacquisition TO backuper; -- -- Name: seq_plateacquisitionannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_plateacquisitionannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_plateacquisitionannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_plateacquisitionannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_plateacquisitionannotationlink TO backuper; -- -- Name: seq_plateannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_plateannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_plateannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_plateannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_plateannotationlink TO backuper; -- -- Name: seq_project; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_project FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_project FROM db_user; GRANT ALL ON SEQUENCE seq_project TO db_user; GRANT SELECT ON SEQUENCE seq_project TO backuper; -- -- Name: seq_projectannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_projectannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_projectannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_projectannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_projectannotationlink TO backuper; -- -- Name: seq_projectdatasetlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_projectdatasetlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_projectdatasetlink FROM db_user; GRANT ALL ON SEQUENCE seq_projectdatasetlink TO db_user; GRANT SELECT ON SEQUENCE seq_projectdatasetlink TO backuper; -- -- Name: seq_pulse; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_pulse FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_pulse FROM db_user; GRANT ALL ON SEQUENCE seq_pulse TO db_user; GRANT SELECT ON SEQUENCE seq_pulse TO backuper; -- -- Name: seq_quantumdef; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_quantumdef FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_quantumdef FROM db_user; GRANT ALL ON SEQUENCE seq_quantumdef TO db_user; GRANT SELECT ON SEQUENCE seq_quantumdef TO backuper; -- -- Name: seq_reagent; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_reagent FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_reagent FROM db_user; GRANT ALL ON SEQUENCE seq_reagent TO db_user; GRANT SELECT ON SEQUENCE seq_reagent TO backuper; -- -- Name: seq_reagentannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_reagentannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_reagentannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_reagentannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_reagentannotationlink TO backuper; -- -- Name: seq_renderingdef; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_renderingdef FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_renderingdef FROM db_user; GRANT ALL ON SEQUENCE seq_renderingdef TO db_user; GRANT SELECT ON SEQUENCE seq_renderingdef TO backuper; -- -- Name: seq_renderingmodel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_renderingmodel FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_renderingmodel FROM db_user; GRANT ALL ON SEQUENCE seq_renderingmodel TO db_user; GRANT SELECT ON SEQUENCE seq_renderingmodel TO backuper; -- -- Name: seq_roi; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_roi FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_roi FROM db_user; GRANT ALL ON SEQUENCE seq_roi TO db_user; GRANT SELECT ON SEQUENCE seq_roi TO backuper; -- -- Name: seq_roiannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_roiannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_roiannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_roiannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_roiannotationlink TO backuper; -- -- Name: seq_screen; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_screen FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_screen FROM db_user; GRANT ALL ON SEQUENCE seq_screen TO db_user; GRANT SELECT ON SEQUENCE seq_screen TO backuper; -- -- Name: seq_screenannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_screenannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_screenannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_screenannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_screenannotationlink TO backuper; -- -- Name: seq_screenplatelink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_screenplatelink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_screenplatelink FROM db_user; GRANT ALL ON SEQUENCE seq_screenplatelink TO db_user; GRANT SELECT ON SEQUENCE seq_screenplatelink TO backuper; -- -- Name: seq_session; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_session FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_session FROM db_user; GRANT ALL ON SEQUENCE seq_session TO db_user; GRANT SELECT ON SEQUENCE seq_session TO backuper; -- -- Name: seq_sessionannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_sessionannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_sessionannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_sessionannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_sessionannotationlink TO backuper; -- -- Name: seq_shape; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_shape FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_shape FROM db_user; GRANT ALL ON SEQUENCE seq_shape TO db_user; GRANT SELECT ON SEQUENCE seq_shape TO backuper; -- -- Name: seq_sharemember; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_sharemember FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_sharemember FROM db_user; GRANT ALL ON SEQUENCE seq_sharemember TO db_user; GRANT SELECT ON SEQUENCE seq_sharemember TO backuper; -- -- Name: seq_stagelabel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_stagelabel FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_stagelabel FROM db_user; GRANT ALL ON SEQUENCE seq_stagelabel TO db_user; GRANT SELECT ON SEQUENCE seq_stagelabel TO backuper; -- -- Name: seq_statsinfo; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_statsinfo FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_statsinfo FROM db_user; GRANT ALL ON SEQUENCE seq_statsinfo TO db_user; GRANT SELECT ON SEQUENCE seq_statsinfo TO backuper; -- -- Name: seq_thumbnail; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_thumbnail FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_thumbnail FROM db_user; GRANT ALL ON SEQUENCE seq_thumbnail TO db_user; GRANT SELECT ON SEQUENCE seq_thumbnail TO backuper; -- -- Name: seq_transmittancerange; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_transmittancerange FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_transmittancerange FROM db_user; GRANT ALL ON SEQUENCE seq_transmittancerange TO db_user; GRANT SELECT ON SEQUENCE seq_transmittancerange TO backuper; -- -- Name: seq_well; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_well FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_well FROM db_user; GRANT ALL ON SEQUENCE seq_well TO db_user; GRANT SELECT ON SEQUENCE seq_well TO backuper; -- -- Name: seq_wellannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_wellannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_wellannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_wellannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_wellannotationlink TO backuper; -- -- Name: seq_wellreagentlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_wellreagentlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_wellreagentlink FROM db_user; GRANT ALL ON SEQUENCE seq_wellreagentlink TO db_user; GRANT SELECT ON SEQUENCE seq_wellreagentlink TO backuper; -- -- Name: seq_wellsample; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_wellsample FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_wellsample FROM db_user; GRANT ALL ON SEQUENCE seq_wellsample TO db_user; GRANT SELECT ON SEQUENCE seq_wellsample TO backuper; -- -- Name: seq_wellsampleannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON SEQUENCE seq_wellsampleannotationlink FROM PUBLIC; REVOKE ALL ON SEQUENCE seq_wellsampleannotationlink FROM db_user; GRANT ALL ON SEQUENCE seq_wellsampleannotationlink TO db_user; GRANT SELECT ON SEQUENCE seq_wellsampleannotationlink TO backuper; -- -- Name: session; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE session FROM PUBLIC; REVOKE ALL ON TABLE session FROM db_user; GRANT ALL ON TABLE session TO db_user; GRANT SELECT ON TABLE session TO backuper; -- -- Name: sessionannotationlink; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE sessionannotationlink FROM PUBLIC; REVOKE ALL ON TABLE sessionannotationlink FROM db_user; GRANT ALL ON TABLE sessionannotationlink TO db_user; GRANT SELECT ON TABLE sessionannotationlink TO backuper; -- -- Name: shape; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE shape FROM PUBLIC; REVOKE ALL ON TABLE shape FROM db_user; GRANT ALL ON TABLE shape TO db_user; GRANT SELECT ON TABLE shape TO backuper; -- -- Name: share; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE share FROM PUBLIC; REVOKE ALL ON TABLE share FROM db_user; GRANT ALL ON TABLE share TO db_user; GRANT SELECT ON TABLE share TO backuper; -- -- Name: sharemember; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE sharemember FROM PUBLIC; REVOKE ALL ON TABLE sharemember FROM db_user; GRANT ALL ON TABLE sharemember TO db_user; GRANT SELECT ON TABLE sharemember TO backuper; -- -- Name: stagelabel; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE stagelabel FROM PUBLIC; REVOKE ALL ON TABLE stagelabel FROM db_user; GRANT ALL ON TABLE stagelabel TO db_user; GRANT SELECT ON TABLE stagelabel TO backuper; -- -- Name: statsinfo; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE statsinfo FROM PUBLIC; REVOKE ALL ON TABLE statsinfo FROM db_user; GRANT ALL ON TABLE statsinfo TO db_user; GRANT SELECT ON TABLE statsinfo TO backuper; -- -- Name: thumbnail; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE thumbnail FROM PUBLIC; REVOKE ALL ON TABLE thumbnail FROM db_user; GRANT ALL ON TABLE thumbnail TO db_user; GRANT SELECT ON TABLE thumbnail TO backuper; -- -- Name: transmittancerange; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE transmittancerange FROM PUBLIC; REVOKE ALL ON TABLE transmittancerange FROM db_user; GRANT ALL ON TABLE transmittancerange TO db_user; GRANT SELECT ON TABLE transmittancerange TO backuper; -- -- Name: well; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE well FROM PUBLIC; REVOKE ALL ON TABLE well FROM db_user; GRANT ALL ON TABLE well TO db_user; GRANT SELECT ON TABLE well TO backuper; -- -- Name: wellsample; Type: ACL; Schema: public; Owner: db_user -- REVOKE ALL ON TABLE wellsample FROM PUBLIC; REVOKE ALL ON TABLE wellsample FROM db_user; GRANT ALL ON TABLE wellsample TO db_user; GRANT SELECT ON TABLE wellsample TO backuper; -- -- PostgreSQL database dump complete --