--
-- PostgreSQL database dump
--

-- Dumped from database version 14.1
-- Dumped by pg_dump version 14.1

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: test-schema; Type: SCHEMA; Schema: -; Owner: test
--

CREATE SCHEMA "test-schema";


ALTER SCHEMA "test-schema" OWNER TO test;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: alembic_version; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.alembic_version (
    version_num character varying(32) NOT NULL
);


ALTER TABLE public.alembic_version OWNER TO test;

--
-- Name: asset_keys; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.asset_keys (
    id integer NOT NULL,
    asset_key character varying(512),
    last_materialization text,
    last_run_id character varying(255),
    asset_details text,
    wipe_timestamp timestamp without time zone,
    last_materialization_timestamp timestamp without time zone,
    tags text,
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.asset_keys OWNER TO test;

--
-- Name: asset_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.asset_keys_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.asset_keys_id_seq OWNER TO test;

--
-- Name: asset_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.asset_keys_id_seq OWNED BY public.asset_keys.id;


--
-- Name: bulk_actions; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.bulk_actions (
    id integer NOT NULL,
    key character varying(32) NOT NULL,
    status character varying(255) NOT NULL,
    "timestamp" timestamp without time zone NOT NULL,
    body text
);


ALTER TABLE public.bulk_actions OWNER TO test;

--
-- Name: bulk_actions_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.bulk_actions_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.bulk_actions_id_seq OWNER TO test;

--
-- Name: bulk_actions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.bulk_actions_id_seq OWNED BY public.bulk_actions.id;


--
-- Name: daemon_heartbeats; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.daemon_heartbeats (
    daemon_type character varying(255) NOT NULL,
    daemon_id character varying(255),
    "timestamp" timestamp without time zone NOT NULL,
    body text
);


ALTER TABLE public.daemon_heartbeats OWNER TO test;

--
-- Name: event_logs; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.event_logs (
    id integer NOT NULL,
    run_id character varying(255),
    event text NOT NULL,
    dagster_event_type text,
    "timestamp" timestamp without time zone,
    step_key text,
    asset_key text,
    partition text
);


ALTER TABLE public.event_logs OWNER TO test;

--
-- Name: event_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.event_logs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.event_logs_id_seq OWNER TO test;

--
-- Name: event_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.event_logs_id_seq OWNED BY public.event_logs.id;


--
-- Name: instance_info; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.instance_info (
    run_storage_id text
);


ALTER TABLE public.instance_info OWNER TO test;

--
-- Name: instigators; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.instigators (
    id integer NOT NULL,
    selector_id character varying(255),
    repository_selector_id character varying(255),
    status character varying(63),
    instigator_type character varying(63),
    instigator_body text,
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    update_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.instigators OWNER TO test;

--
-- Name: instigators_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.instigators_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.instigators_id_seq OWNER TO test;

--
-- Name: instigators_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.instigators_id_seq OWNED BY public.instigators.id;


--
-- Name: job_ticks; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.job_ticks (
    id integer NOT NULL,
    job_origin_id character varying(255),
    status character varying(63),
    type character varying(63),
    "timestamp" timestamp without time zone,
    tick_body text,
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    update_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    selector_id character varying(255)
);


ALTER TABLE public.job_ticks OWNER TO test;

--
-- Name: job_ticks_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.job_ticks_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.job_ticks_id_seq OWNER TO test;

--
-- Name: job_ticks_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.job_ticks_id_seq OWNED BY public.job_ticks.id;


--
-- Name: jobs; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.jobs (
    id integer NOT NULL,
    job_origin_id character varying(255),
    repository_origin_id character varying(255),
    status character varying(63),
    job_type character varying(63),
    job_body text,
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    update_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    selector_id character varying(255)
);


ALTER TABLE public.jobs OWNER TO test;

--
-- Name: jobs_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.jobs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.jobs_id_seq OWNER TO test;

--
-- Name: jobs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.jobs_id_seq OWNED BY public.jobs.id;


--
-- Name: run_tags; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.run_tags (
    id integer NOT NULL,
    run_id character varying(255),
    key text,
    value text
);


ALTER TABLE public.run_tags OWNER TO test;

--
-- Name: run_tags_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.run_tags_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.run_tags_id_seq OWNER TO test;

--
-- Name: run_tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.run_tags_id_seq OWNED BY public.run_tags.id;


--
-- Name: runs; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.runs (
    id integer NOT NULL,
    run_id character varying(255),
    snapshot_id character varying(255),
    pipeline_name text,
    mode text,
    status character varying(63),
    run_body text,
    partition text,
    partition_set text,
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    update_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    start_time double precision,
    end_time double precision
);


ALTER TABLE public.runs OWNER TO test;

--
-- Name: runs_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.runs_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.runs_id_seq OWNER TO test;

--
-- Name: runs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.runs_id_seq OWNED BY public.runs.id;


--
-- Name: secondary_indexes; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.secondary_indexes (
    id integer NOT NULL,
    name character varying(512),
    create_timestamp timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
    migration_completed timestamp without time zone
);


ALTER TABLE public.secondary_indexes OWNER TO test;

--
-- Name: secondary_indexes_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.secondary_indexes_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.secondary_indexes_id_seq OWNER TO test;

--
-- Name: secondary_indexes_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.secondary_indexes_id_seq OWNED BY public.secondary_indexes.id;


--
-- Name: snapshots; Type: TABLE; Schema: public; Owner: test
--

CREATE TABLE public.snapshots (
    id integer NOT NULL,
    snapshot_id character varying(255) NOT NULL,
    snapshot_body bytea NOT NULL,
    snapshot_type character varying(63) NOT NULL
);


ALTER TABLE public.snapshots OWNER TO test;

--
-- Name: snapshots_id_seq; Type: SEQUENCE; Schema: public; Owner: test
--

CREATE SEQUENCE public.snapshots_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.snapshots_id_seq OWNER TO test;

--
-- Name: snapshots_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: test
--

ALTER SEQUENCE public.snapshots_id_seq OWNED BY public.snapshots.id;


--
-- Name: cereals; Type: TABLE; Schema: test-schema; Owner: test
--

CREATE TABLE "test-schema".cereals (
    name text,
    mfr text,
    type text,
    calories integer,
    protein integer,
    fat integer,
    sodium integer,
    fiber double precision,
    carbo double precision,
    sugars integer,
    potass integer,
    vitamins integer,
    shelf integer,
    weight double precision,
    cups double precision,
    rating double precision
);


ALTER TABLE "test-schema".cereals OWNER TO test;

--
-- Name: sort_by_calories; Type: VIEW; Schema: test-schema; Owner: test
--

CREATE VIEW "test-schema".sort_by_calories AS
 SELECT cereals.name,
    cereals.mfr,
    cereals.type,
    cereals.calories,
    cereals.protein,
    cereals.fat,
    cereals.sodium,
    cereals.fiber,
    cereals.carbo,
    cereals.sugars,
    cereals.potass,
    cereals.vitamins,
    cereals.shelf,
    cereals.weight,
    cereals.cups,
    cereals.rating
   FROM "test-schema".cereals
  ORDER BY cereals.calories;


ALTER TABLE "test-schema".sort_by_calories OWNER TO test;

--
-- Name: least_caloric; Type: VIEW; Schema: test-schema; Owner: test
--

CREATE VIEW "test-schema".least_caloric AS
 SELECT sort_by_calories.name,
    sort_by_calories.mfr,
    sort_by_calories.type,
    sort_by_calories.calories,
    sort_by_calories.protein,
    sort_by_calories.fat,
    sort_by_calories.sodium,
    sort_by_calories.fiber,
    sort_by_calories.carbo,
    sort_by_calories.sugars,
    sort_by_calories.potass,
    sort_by_calories.vitamins,
    sort_by_calories.shelf,
    sort_by_calories.weight,
    sort_by_calories.cups,
    sort_by_calories.rating
   FROM "test-schema".sort_by_calories
 LIMIT 1;


ALTER TABLE "test-schema".least_caloric OWNER TO test;

--
-- Name: sort_cold_cereals_by_calories; Type: VIEW; Schema: test-schema; Owner: test
--

CREATE VIEW "test-schema".sort_cold_cereals_by_calories AS
 SELECT sort_by_calories.name,
    sort_by_calories.mfr,
    sort_by_calories.type,
    sort_by_calories.calories,
    sort_by_calories.protein,
    sort_by_calories.fat,
    sort_by_calories.sodium,
    sort_by_calories.fiber,
    sort_by_calories.carbo,
    sort_by_calories.sugars,
    sort_by_calories.potass,
    sort_by_calories.vitamins,
    sort_by_calories.shelf,
    sort_by_calories.weight,
    sort_by_calories.cups,
    sort_by_calories.rating
   FROM "test-schema".sort_by_calories
  WHERE (sort_by_calories.type = 'C'::text);


ALTER TABLE "test-schema".sort_cold_cereals_by_calories OWNER TO test;

--
-- Name: sort_hot_cereals_by_calories; Type: VIEW; Schema: test-schema; Owner: test
--

CREATE VIEW "test-schema".sort_hot_cereals_by_calories AS
 SELECT sort_by_calories.name,
    sort_by_calories.mfr,
    sort_by_calories.type,
    sort_by_calories.calories,
    sort_by_calories.protein,
    sort_by_calories.fat,
    sort_by_calories.sodium,
    sort_by_calories.fiber,
    sort_by_calories.carbo,
    sort_by_calories.sugars,
    sort_by_calories.potass,
    sort_by_calories.vitamins,
    sort_by_calories.shelf,
    sort_by_calories.weight,
    sort_by_calories.cups,
    sort_by_calories.rating
   FROM "test-schema".sort_by_calories
  WHERE (sort_by_calories.type = 'H'::text);


ALTER TABLE "test-schema".sort_hot_cereals_by_calories OWNER TO test;

--
-- Name: asset_keys id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.asset_keys ALTER COLUMN id SET DEFAULT nextval('public.asset_keys_id_seq'::regclass);


--
-- Name: bulk_actions id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.bulk_actions ALTER COLUMN id SET DEFAULT nextval('public.bulk_actions_id_seq'::regclass);


--
-- Name: event_logs id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.event_logs ALTER COLUMN id SET DEFAULT nextval('public.event_logs_id_seq'::regclass);


--
-- Name: instigators id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.instigators ALTER COLUMN id SET DEFAULT nextval('public.instigators_id_seq'::regclass);


--
-- Name: job_ticks id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.job_ticks ALTER COLUMN id SET DEFAULT nextval('public.job_ticks_id_seq'::regclass);


--
-- Name: jobs id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.jobs ALTER COLUMN id SET DEFAULT nextval('public.jobs_id_seq'::regclass);


--
-- Name: run_tags id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.run_tags ALTER COLUMN id SET DEFAULT nextval('public.run_tags_id_seq'::regclass);


--
-- Name: runs id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs ALTER COLUMN id SET DEFAULT nextval('public.runs_id_seq'::regclass);


--
-- Name: secondary_indexes id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.secondary_indexes ALTER COLUMN id SET DEFAULT nextval('public.secondary_indexes_id_seq'::regclass);


--
-- Name: snapshots id; Type: DEFAULT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.snapshots ALTER COLUMN id SET DEFAULT nextval('public.snapshots_id_seq'::regclass);


--
-- Data for Name: alembic_version; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.alembic_version (version_num) FROM stdin;
16e3115a602a
\.


--
-- Data for Name: asset_keys; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.asset_keys (id, asset_key, last_materialization, last_run_id, asset_details, wipe_timestamp, last_materialization_timestamp, tags, create_timestamp) FROM stdin;
1	["log_file", "bx_new_run_3"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run_3"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run_3"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1609955736.963252, "mtime": 1609955736.963252, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	5957b6fc-9d66-4796-9657-26a6011c846a	\N	\N	2022-03-24 14:36:01.8651	\N	2022-03-24 14:36:01.888901
2	["raw_users"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["raw_users"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 158.2786476664057}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}	05c741a7-30be-45b4-8e76-cab4a81f0c67	\N	\N	2022-03-24 14:36:02.223956	\N	2022-03-24 14:36:02.244724
3	["log_file", "bx_new_run_4"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run_4"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run_4"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1610388763.2417717, "mtime": 1610388763.2417717, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	0fad30dd-aad6-47fa-9dcd-6469853b997e	\N	\N	2022-03-24 14:36:03.625464	\N	2022-03-24 14:36:03.651057
4	["log_file", "bx_new_run"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1608060793.3515544, "mtime": 1608060793.3515544, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	a840bf6c-1673-44d0-a2b0-691b44b081a9	\N	\N	2022-03-24 14:36:05.448155	\N	2022-03-24 14:36:05.468358
5	["log_file", "bx_new_run_2"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run_2"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run_2"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1608060796.9405777, "mtime": 1608060796.9405777, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	29455cbf-9168-4c9b-9d6e-4c0965912580	\N	\N	2022-03-24 14:36:07.151572	\N	2022-03-24 14:36:07.171645
6	["raw_video_views"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["raw_video_views"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 5254.939658845346}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}	05c741a7-30be-45b4-8e76-cab4a81f0c67	\N	\N	2022-03-24 14:36:07.595316	\N	2022-03-24 14:36:07.607967
7	["users"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["users"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 158.2786476664057}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}	05c741a7-30be-45b4-8e76-cab4a81f0c67	\N	\N	2022-03-24 14:36:07.87461	\N	2022-03-24 14:36:07.887348
8	["log_file", "foooawoiefj"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "foooawoiefj"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/foooawoiefj"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1645197413.2837281, "mtime": 1645197413.2837281, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	af921bac-0b18-4a9a-a016-35dfd637cfda	\N	\N	2022-03-24 14:36:08.848211	\N	2022-03-24 14:36:08.869095
9	["log_file", "demo.1"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "demo.1"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/demo.1"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606341124.944769, "mtime": 1606341124.944769, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	\N	\N	2022-03-24 14:36:10.469054	\N	2022-03-24 14:36:10.488933
10	["log_file", "boopppp"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boopppp"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boopppp"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607487853.6962564, "mtime": 1607487853.6962564, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	\N	\N	2022-03-24 14:36:12.133801	\N	2022-03-24 14:36:12.156566
11	["video_views"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["video_views"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 5254.939658845346}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}	05c741a7-30be-45b4-8e76-cab4a81f0c67	\N	\N	2022-03-24 14:36:13.231198	\N	2022-03-24 14:36:13.242491
12	["log_file", "blawiejfoj"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "blawiejfoj"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/blawiejfoj"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1647625969.2538514, "mtime": 1647625969.2538514, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	\N	\N	2022-03-24 14:36:13.837879	\N	2022-03-24 14:36:13.859334
13	["log_file", "b.out"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "b.out"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/b.out"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1605834003.3638573, "mtime": 1605834003.363826, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	\N	\N	2022-03-24 14:36:15.493622	\N	2022-03-24 14:36:15.514793
14	["log_file", "show_run_key_3"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "show_run_key_3"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/show_run_key_3"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606942458.8674397, "mtime": 1606942458.8674, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	a7a404ed-9c84-476b-b55e-ecbff0d2f019	\N	\N	2022-03-24 14:36:17.113744	\N	2022-03-24 14:36:17.135754
15	["log_file", "show_run_key_2"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "show_run_key_2"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/show_run_key_2"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606840685.1579385, "mtime": 1606840685.1579385, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	2c5beeba-84cc-493c-a306-784585dba96b	\N	\N	2022-03-24 14:36:18.770129	\N	2022-03-24 14:36:18.797126
16	["log_file", "a.out"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "a.out"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/a.out"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1605833207.4776378, "mtime": 1605833207.4776378, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	d7252513-c700-4a9f-9df2-c33632d65882	\N	\N	2022-03-24 14:36:20.373298	\N	2022-03-24 14:36:20.399408
17	["log_file", "boop"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boop"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boop"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607484774.6155019, "mtime": 1607484774.6155019, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	b2a21899-8713-4ae4-9bdf-c180dc95ca82	\N	\N	2022-03-24 14:36:22.021144	\N	2022-03-24 14:36:22.054772
18	["log_file", "bxxxxffff"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bxxxxffff"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bxxxxffff"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607996899.666524, "mtime": 1607996899.666524, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	e4d94f86-5510-42dd-8460-8828fbaabbc4	\N	\N	2022-03-24 14:36:23.672661	\N	2022-03-24 14:36:23.704251
19	["log_file", "blahfjfjf"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "blahfjfjf"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/blahfjfjf"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606840555.9826365, "mtime": 1606840555.9826365, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	e987996d-6f32-415c-97ea-56125087b43b	\N	\N	2022-03-24 14:36:25.372383	\N	2022-03-24 14:36:25.406888
20	["log_file", "boop3"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boop3"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boop3"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607484790.7801318, "mtime": 1607484790.7801318, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	9dcab6b5-5e62-4228-a274-7602ebcb7231	\N	\N	2022-03-24 14:36:26.982056	\N	2022-03-24 14:36:27.019172
21	["log_file", "booppppppp"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "booppppppp"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/booppppppp"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607487856.5426033, "mtime": 1607487856.5426033, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	aaaa992a-c6c5-44d1-85c0-043567df20d5	\N	\N	2022-03-24 14:36:28.677704	\N	2022-03-24 14:36:28.71437
22	["log_file", "bxxxxf"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bxxxxf"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bxxxxf"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607635587.0286214, "mtime": 1607635587.0286214, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	851b169d-2742-4b92-a035-7fca78d0f3d0	\N	\N	2022-03-24 14:36:30.37983	\N	2022-03-24 14:36:30.415806
23	["log_file", "boop2"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boop2"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boop2"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607484775.9602463, "mtime": 1607484775.9602463, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	4e3a6874-d806-486a-a4b7-aa8cc8674aba	\N	\N	2022-03-24 14:36:32.077789	\N	2022-03-24 14:36:32.114034
24	["log_file", "show_run_key"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "show_run_key"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/show_run_key"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606840644.290511, "mtime": 1606840644.290511, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	7e319969-b129-4ada-8efc-ff8cc00fc6c7	\N	\N	2022-03-24 14:36:33.779036	\N	2022-03-24 14:36:33.816624
25	["log_file", "bxxx"]	{"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bxxx"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bxxx"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607635580.3826091, "mtime": 1607635580.3826091, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	\N	\N	2022-03-24 14:36:35.474165	\N	2022-03-24 14:36:35.51141
\.


--
-- Data for Name: bulk_actions; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.bulk_actions (id, key, status, "timestamp", body) FROM stdin;
\.


--
-- Data for Name: daemon_heartbeats; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.daemon_heartbeats (daemon_type, daemon_id, "timestamp", body) FROM stdin;
BACKFILL	31d45ce1-f594-43fc-99a6-9b712e211ebb	2022-03-24 14:36:24.338913	{"__class__": "DaemonHeartbeat", "daemon_id": "31d45ce1-f594-43fc-99a6-9b712e211ebb", "daemon_type": "BACKFILL", "errors": [], "timestamp": 1648157784.338913}
SENSOR	31d45ce1-f594-43fc-99a6-9b712e211ebb	2022-03-24 14:36:28.672862	{"__class__": "DaemonHeartbeat", "daemon_id": "31d45ce1-f594-43fc-99a6-9b712e211ebb", "daemon_type": "SENSOR", "errors": [], "timestamp": 1648157788.672862}
SCHEDULER	31d45ce1-f594-43fc-99a6-9b712e211ebb	2022-03-24 14:36:30.3189	{"__class__": "DaemonHeartbeat", "daemon_id": "31d45ce1-f594-43fc-99a6-9b712e211ebb", "daemon_type": "SCHEDULER", "errors": [], "timestamp": 1648157790.3189}
\.


--
-- Data for Name: event_logs; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.event_logs (id, run_id, event, dagster_event_type, "timestamp", step_key, asset_key, partition) FROM stdin;
1	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157758.6588612, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:35:58.658861	\N	\N	\N
2	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157758.877513, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:35:58.877513	\N	\N	\N
3	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13725"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 13725).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157760.045239, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:00.045239	\N	\N	\N
4	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157760.1778848, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:00.177885	\N	\N	\N
5	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13749"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 13749).", "pid": null, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157760.249486, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:00.249486	\N	\N	\N
6	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157760.5029209, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:00.502921	\N	\N	\N
7	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13791"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 13791).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157761.717361, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:01.717361	\N	\N	\N
8	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157761.7344031, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:01.734403	\N	\N	\N
9	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13725"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 13725)", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157761.76914, "user_message": "Executing steps in process (pid: 13725)"}	ENGINE_EVENT	2022-03-24 21:36:01.76914	\N	\N	\N
57	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157763.941078, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:03.941078	\N	\N	\N
10	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.781832, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:01.781832	read_file	\N	\N
11	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.23ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.792025, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:01.792025	read_file	\N	\N
12	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_3:1609955736.963252', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.8310652, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:01.831065	read_file	\N	\N
13	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_3:1609955736.963252', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.845257, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:01.845257	read_file	\N	\N
14	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.8556821, "user_message": "Found file bx_new_run_3"}	\N	2022-03-24 21:36:01.855682	read_file	\N	\N
15	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run_3"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run_3"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1609955736.963252, "mtime": 1609955736.963252, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_3:1609955736.963252', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bx_new_run_3.", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.8651001, "user_message": "Materialized value log_file bx_new_run_3."}	ASSET_MATERIALIZATION	2022-03-24 21:36:01.8651	read_file	["log_file", "bx_new_run_3"]	\N
16	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157761.891401, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:01.891401	\N	\N	\N
149	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157768.7690449, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:08.769045	\N	\N	\N
17	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_3:1609955736.963252', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.8936582, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:01.893658	read_file	\N	\N
18	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_3:1609955736.963252', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.901936, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:01.901936	read_file	\N	\N
19	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 54.46821999999996}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_3:1609955736.963252', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 54ms.", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": "read_file", "timestamp": 1648157761.90974, "user_message": "Finished execution of step \\"read_file\\" in 54ms."}	STEP_SUCCESS	2022-03-24 21:36:01.90974	read_file	\N	\N
20	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13725"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 13725) in 146ms", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157761.923359, "user_message": "Finished steps in process (pid: 13725) in 146ms"}	ENGINE_EVENT	2022-03-24 21:36:01.923359	\N	\N	\N
21	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 13725, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157761.930795, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:01.930795	\N	\N	\N
22	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"longitudinal_pipeline\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157761.943617, "user_message": "Started execution of run for \\"longitudinal_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:01.943617	\N	\N	\N
23	5957b6fc-9d66-4796-9657-26a6011c846a	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 13725).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "step_key": null, "timestamp": 1648157761.9664361, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:01.966436	\N	\N	\N
24	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13749"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['ingest_raw_users', 'ingest_raw_video_views', 'update_users_table', 'update_video_views_table', 'train_video_recommender_model']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 13749)", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157761.9779782, "user_message": "Executing steps in process (pid: 13749)"}	ENGINE_EVENT	2022-03-24 21:36:01.977978	\N	\N	\N
25	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157761.990444, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:01.990444	\N	\N	\N
26	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.fs_io_manager", "name": "PickledObjectFilesystemIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.14ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157761.9994712, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:01.999471	\N	\N	\N
27	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "ingest_raw_users", "step_keys": ["ingest_raw_users"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_users", "step_key": "ingest_raw_users"}, "message": "Started capturing logs for step: ingest_raw_users.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_users", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}}, "step_key": "ingest_raw_users", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.039537, "user_message": "Started capturing logs for step: ingest_raw_users."}	LOGS_CAPTURED	2022-03-24 21:36:02.039537	ingest_raw_users	\N	\N
28	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_users", "step_key": "ingest_raw_users"}, "message": "Started execution of step \\"ingest_raw_users\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_users", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}}, "step_key": "ingest_raw_users", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.051336, "user_message": "Started execution of step \\"ingest_raw_users\\"."}	STEP_START	2022-03-24 21:36:02.051336	ingest_raw_users	\N	\N
29	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13828"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 13828).", "pid": null, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157762.097218, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:02.097218	\N	\N	\N
186	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.1249611, "user_message": "Found file boopppp"}	\N	2022-03-24 21:36:12.124961	read_file	\N	\N
30	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["raw_users"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 158.2786476664057}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_users", "step_key": "ingest_raw_users"}, "message": "Materialized value raw_users.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_users", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}}, "step_key": "ingest_raw_users", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.2239559, "user_message": "Materialized value raw_users."}	ASSET_MATERIALIZATION	2022-03-24 21:36:02.223956	ingest_raw_users	["raw_users"]	2020-01-01
31	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.2470028, "user_message": "Solid ingest_raw_users did not fire outputs {'result'}"}	\N	2022-03-24 21:36:02.247003	ingest_raw_users	\N	\N
32	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.2533991, "user_message": "Emitting implicit Nothing for output \\"result\\" on solid \\"ingest_raw_users\\""}	\N	2022-03-24 21:36:02.253399	ingest_raw_users	\N	\N
33	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "ingest_raw_users"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_users", "step_key": "ingest_raw_users"}, "message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed).", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_users", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}}, "step_key": "ingest_raw_users", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.260869, "user_message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:02.260869	ingest_raw_users	\N	\N
34	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.2686012, "user_message": "Writing file at: /Users/prha/dagster/storage/05c741a7-30be-45b4-8e76-cab4a81f0c67/ingest_raw_users/result"}	\N	2022-03-24 21:36:02.268601	ingest_raw_users	\N	\N
35	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_users", "step_key": "ingest_raw_users"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_users", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}}, "step_key": "ingest_raw_users", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.277089, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:02.277089	ingest_raw_users	\N	\N
42	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.535745, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:03.535745	read_file	\N	\N
36	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 225.32477800000007}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_users", "step_key": "ingest_raw_users"}, "message": "Finished execution of step \\"ingest_raw_users\\" in 225ms.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_users", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_users", "parent": null}}, "step_key": "ingest_raw_users", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_users", "timestamp": 1648157762.2856572, "user_message": "Finished execution of step \\"ingest_raw_users\\" in 225ms."}	STEP_SUCCESS	2022-03-24 21:36:02.285657	ingest_raw_users	\N	\N
37	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "ingest_raw_video_views", "step_keys": ["ingest_raw_video_views"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_video_views", "step_key": "ingest_raw_video_views"}, "message": "Started capturing logs for step: ingest_raw_video_views.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_video_views", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}}, "step_key": "ingest_raw_video_views", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157762.3199549, "user_message": "Started capturing logs for step: ingest_raw_video_views."}	LOGS_CAPTURED	2022-03-24 21:36:02.319955	ingest_raw_video_views	\N	\N
38	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_video_views", "step_key": "ingest_raw_video_views"}, "message": "Started execution of step \\"ingest_raw_video_views\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_video_views", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}}, "step_key": "ingest_raw_video_views", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157762.331272, "user_message": "Started execution of step \\"ingest_raw_video_views\\"."}	STEP_START	2022-03-24 21:36:02.331272	ingest_raw_video_views	\N	\N
39	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13901"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 13901).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157763.463876, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:03.463876	\N	\N	\N
40	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157763.4752388, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:03.475239	\N	\N	\N
41	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13791"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 13791)", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157763.521125, "user_message": "Executing steps in process (pid: 13791)"}	ENGINE_EVENT	2022-03-24 21:36:03.521125	\N	\N	\N
43	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.4ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.5475252, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:03.547525	read_file	\N	\N
44	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_4:1610388763.2417717', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.594512, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:03.594512	read_file	\N	\N
45	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_4:1610388763.2417717', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.606046, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:03.606046	read_file	\N	\N
46	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.616579, "user_message": "Found file bx_new_run_4"}	\N	2022-03-24 21:36:03.616579	read_file	\N	\N
47	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run_4"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run_4"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1610388763.2417717, "mtime": 1610388763.2417717, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_4:1610388763.2417717', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bx_new_run_4.", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.625464, "user_message": "Materialized value log_file bx_new_run_4."}	ASSET_MATERIALIZATION	2022-03-24 21:36:03.625464	read_file	["log_file", "bx_new_run_4"]	\N
48	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157763.6312199, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:03.63122	\N	\N	\N
49	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_4:1610388763.2417717', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.653978, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:03.653978	read_file	\N	\N
50	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_4:1610388763.2417717', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.6618612, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:03.661861	read_file	\N	\N
51	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 52.479949999999945}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_4:1610388763.2417717', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 52ms.", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": "read_file", "timestamp": 1648157763.668722, "user_message": "Finished execution of step \\"read_file\\" in 52ms."}	STEP_SUCCESS	2022-03-24 21:36:03.668722	read_file	\N	\N
52	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13791"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 13791) in 153ms", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157763.682629, "user_message": "Finished steps in process (pid: 13791) in 153ms"}	ENGINE_EVENT	2022-03-24 21:36:03.682629	\N	\N	\N
53	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 13791, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157763.689413, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:03.689413	\N	\N	\N
54	0fad30dd-aad6-47fa-9dcd-6469853b997e	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 13791).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "step_key": null, "timestamp": 1648157763.721788, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:03.721788	\N	\N	\N
55	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"unreliable_pipeline\\".", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157763.892523, "user_message": "Started execution of run for \\"unreliable_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:03.892523	\N	\N	\N
56	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13828"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['unreliable_start', 'one', 'two', 'three', 'four', 'five', 'six', 'seven']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 13828)", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157763.9261901, "user_message": "Executing steps in process (pid: 13828)"}	ENGINE_EVENT	2022-03-24 21:36:03.92619	\N	\N	\N
58	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.fs_io_manager", "name": "PickledObjectFilesystemIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.07ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157763.949866, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:03.949866	\N	\N	\N
59	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "unreliable_start", "step_keys": ["unreliable_start"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "unreliable_start", "step_key": "unreliable_start"}, "message": "Started capturing logs for step: unreliable_start.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "unreliable_start", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}}, "step_key": "unreliable_start", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "unreliable_start", "timestamp": 1648157763.987424, "user_message": "Started capturing logs for step: unreliable_start."}	LOGS_CAPTURED	2022-03-24 21:36:03.987424	unreliable_start	\N	\N
60	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "unreliable_start", "step_key": "unreliable_start"}, "message": "Started execution of step \\"unreliable_start\\".", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "unreliable_start", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}}, "step_key": "unreliable_start", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "unreliable_start", "timestamp": 1648157764.0011442, "user_message": "Started execution of step \\"unreliable_start\\"."}	STEP_START	2022-03-24 21:36:04.001144	unreliable_start	\N	\N
61	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "unreliable_start"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "unreliable_start", "step_key": "unreliable_start"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "unreliable_start", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}}, "step_key": "unreliable_start", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "unreliable_start", "timestamp": 1648157764.013331, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:04.013331	unreliable_start	\N	\N
62	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "unreliable_start", "timestamp": 1648157764.0235038, "user_message": "Writing file at: /Users/prha/dagster/storage/985a9b0c-8896-44a7-a2fa-c5d824612d87/unreliable_start/result"}	\N	2022-03-24 21:36:04.023504	unreliable_start	\N	\N
98	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13901"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 13901)", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157765.3634439, "user_message": "Executing steps in process (pid: 13901)"}	ENGINE_EVENT	2022-03-24 21:36:05.363444	\N	\N	\N
63	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "unreliable_start", "step_key": "unreliable_start"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "unreliable_start", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}}, "step_key": "unreliable_start", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "unreliable_start", "timestamp": 1648157764.034102, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:04.034102	unreliable_start	\N	\N
64	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 31.746349000000063}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "unreliable_start", "step_key": "unreliable_start"}, "message": "Finished execution of step \\"unreliable_start\\" in 31ms.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "unreliable_start", "solid_handle": {"__class__": "SolidHandle", "name": "unreliable_start", "parent": null}}, "step_key": "unreliable_start", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "unreliable_start", "timestamp": 1648157764.042947, "user_message": "Finished execution of step \\"unreliable_start\\" in 31ms."}	STEP_SUCCESS	2022-03-24 21:36:04.042947	unreliable_start	\N	\N
65	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "one", "step_keys": ["one"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Started capturing logs for step: one.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.0816078, "user_message": "Started capturing logs for step: one."}	LOGS_CAPTURED	2022-03-24 21:36:04.081608	one	\N	\N
66	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Started execution of step \\"one\\".", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.092381, "user_message": "Started execution of step \\"one\\"."}	STEP_START	2022-03-24 21:36:04.092381	one	\N	\N
67	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.1004689, "user_message": "Loading file from: /Users/prha/dagster/storage/985a9b0c-8896-44a7-a2fa-c5d824612d87/unreliable_start/result"}	\N	2022-03-24 21:36:04.100469	one	\N	\N
99	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.3735838, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:05.373584	read_file	\N	\N
68	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "LoadedInputData", "input_name": "num", "manager_key": "io_manager", "upstream_output_name": "result", "upstream_step_key": "unreliable_start"}, "event_type_value": "LOADED_INPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Loaded input \\"num\\" using input manager \\"io_manager\\", from output \\"result\\" of step \\"unreliable_start\\"", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.108695, "user_message": "Loaded input \\"num\\" using input manager \\"io_manager\\", from output \\"result\\" of step \\"unreliable_start\\""}	LOADED_INPUT	2022-03-24 21:36:04.108695	one	\N	\N
69	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "num", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "num", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Got input \\"num\\" of type \\"Any\\". (Type check passed).", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.119039, "user_message": "Got input \\"num\\" of type \\"Any\\". (Type check passed)."}	STEP_INPUT	2022-03-24 21:36:04.119039	one	\N	\N
70	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "one"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.1282828, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:04.128283	one	\N	\N
71	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.1362, "user_message": "Writing file at: /Users/prha/dagster/storage/985a9b0c-8896-44a7-a2fa-c5d824612d87/one/result"}	\N	2022-03-24 21:36:04.1362	one	\N	\N
72	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.142886, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:04.142886	one	\N	\N
177	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14324).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157770.557342, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:10.557342	\N	\N	\N
73	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 22.33169299999993}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "one", "step_key": "one"}, "message": "Finished execution of step \\"one\\" in 22ms.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "one", "solid_handle": {"__class__": "SolidHandle", "name": "one", "parent": null}}, "step_key": "one", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "one", "timestamp": 1648157764.1498098, "user_message": "Finished execution of step \\"one\\" in 22ms."}	STEP_SUCCESS	2022-03-24 21:36:04.14981	one	\N	\N
74	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "two", "step_keys": ["two"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Started capturing logs for step: two.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.182501, "user_message": "Started capturing logs for step: two."}	LOGS_CAPTURED	2022-03-24 21:36:04.182501	two	\N	\N
75	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Started execution of step \\"two\\".", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.192034, "user_message": "Started execution of step \\"two\\"."}	STEP_START	2022-03-24 21:36:04.192034	two	\N	\N
76	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.200435, "user_message": "Loading file from: /Users/prha/dagster/storage/985a9b0c-8896-44a7-a2fa-c5d824612d87/one/result"}	\N	2022-03-24 21:36:04.200435	two	\N	\N
77	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "LoadedInputData", "input_name": "num", "manager_key": "io_manager", "upstream_output_name": "result", "upstream_step_key": "one"}, "event_type_value": "LOADED_INPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Loaded input \\"num\\" using input manager \\"io_manager\\", from output \\"result\\" of step \\"one\\"", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.2076852, "user_message": "Loaded input \\"num\\" using input manager \\"io_manager\\", from output \\"result\\" of step \\"one\\""}	LOADED_INPUT	2022-03-24 21:36:04.207685	two	\N	\N
100	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.24ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.381972, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:05.381972	read_file	\N	\N
78	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "num", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "num", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Got input \\"num\\" of type \\"Any\\". (Type check passed).", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.215007, "user_message": "Got input \\"num\\" of type \\"Any\\". (Type check passed)."}	STEP_INPUT	2022-03-24 21:36:04.215007	two	\N	\N
79	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "two"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.2229838, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:04.222984	two	\N	\N
80	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.230998, "user_message": "Writing file at: /Users/prha/dagster/storage/985a9b0c-8896-44a7-a2fa-c5d824612d87/two/result"}	\N	2022-03-24 21:36:04.230998	two	\N	\N
81	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.238425, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:04.238425	two	\N	\N
82	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 24.027215000000268}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "two", "step_key": "two"}, "message": "Finished execution of step \\"two\\" in 24ms.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "two", "solid_handle": {"__class__": "SolidHandle", "name": "two", "parent": null}}, "step_key": "two", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "two", "timestamp": 1648157764.246248, "user_message": "Finished execution of step \\"two\\" in 24ms."}	STEP_SUCCESS	2022-03-24 21:36:04.246248	two	\N	\N
116	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.0788422, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:07.078842	read_file	\N	\N
83	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "three", "step_keys": ["three"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "three", "step_key": "three"}, "message": "Started capturing logs for step: three.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "three", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}}, "step_key": "three", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "three", "timestamp": 1648157764.282314, "user_message": "Started capturing logs for step: three."}	LOGS_CAPTURED	2022-03-24 21:36:04.282314	three	\N	\N
84	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "three", "step_key": "three"}, "message": "Started execution of step \\"three\\".", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "three", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}}, "step_key": "three", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "three", "timestamp": 1648157764.293105, "user_message": "Started execution of step \\"three\\"."}	STEP_START	2022-03-24 21:36:04.293105	three	\N	\N
85	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "three", "timestamp": 1648157764.301753, "user_message": "Loading file from: /Users/prha/dagster/storage/985a9b0c-8896-44a7-a2fa-c5d824612d87/two/result"}	\N	2022-03-24 21:36:04.301753	three	\N	\N
86	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "LoadedInputData", "input_name": "num", "manager_key": "io_manager", "upstream_output_name": "result", "upstream_step_key": "two"}, "event_type_value": "LOADED_INPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "three", "step_key": "three"}, "message": "Loaded input \\"num\\" using input manager \\"io_manager\\", from output \\"result\\" of step \\"two\\"", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "three", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}}, "step_key": "three", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "three", "timestamp": 1648157764.3094761, "user_message": "Loaded input \\"num\\" using input manager \\"io_manager\\", from output \\"result\\" of step \\"two\\""}	LOADED_INPUT	2022-03-24 21:36:04.309476	three	\N	\N
87	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepInputData", "input_name": "num", "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "num", "metadata_entries": [], "success": true}}, "event_type_value": "STEP_INPUT", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "three", "step_key": "three"}, "message": "Got input \\"num\\" of type \\"Any\\". (Type check passed).", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "three", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}}, "step_key": "three", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "three", "timestamp": 1648157764.318121, "user_message": "Got input \\"num\\" of type \\"Any\\". (Type check passed)."}	STEP_INPUT	2022-03-24 21:36:04.318121	three	\N	\N
147	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157768.7330828, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:08.733083	\N	\N	\N
88	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepFailureData", "error": {"__class__": "SerializableErrorInfo", "cause": {"__class__": "SerializableErrorInfo", "cause": null, "cls_name": "Exception", "message": "Exception: blah\\n", "stack": ["  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/utils.py\\", line 47, in solid_execution_error_boundary\\n    yield\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/utils/__init__.py\\", line 398, in iterate_with_context\\n    next_output = next(iterator)\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/compute_generator.py\\", line 65, in _coerce_solid_compute_fn_to_iterator\\n    result = fn(context, **kwargs) if context_arg_provided else fn(**kwargs)\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster-test/dagster_test/toys/unreliable.py\\", line 18, in unreliable\\n    raise Exception(\\"blah\\")\\n"]}, "cls_name": "DagsterExecutionStepExecutionError", "message": "dagster.core.errors.DagsterExecutionStepExecutionError: Error occurred while executing solid \\"three\\":\\n", "stack": ["  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/execute_plan.py\\", line 232, in dagster_event_sequence_for_step\\n    for step_event in check.generator(step_events):\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/execute_step.py\\", line 342, in core_dagster_event_sequence_for_step\\n    for user_event in check.generator(\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/execute_step.py\\", line 69, in _step_output_error_checked_user_event_sequence\\n    for user_event in user_event_sequence:\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/compute.py\\", line 169, in execute_core_compute\\n    for step_output in _yield_compute_results(step_context, inputs, compute_fn):\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/compute.py\\", line 137, in _yield_compute_results\\n    for event in iterate_with_context(\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/utils/__init__.py\\", line 400, in iterate_with_context\\n    return\\n", "  File \\"/Users/prha/.pyenv/versions/3.8.7/lib/python3.8/contextlib.py\\", line 131, in __exit__\\n    self.gen.throw(type, value, traceback)\\n", "  File \\"/Users/prha/code/dagster/python_modules/dagster/dagster/core/execution/plan/utils.py\\", line 73, in solid_execution_error_boundary\\n    raise error_cls(\\n"]}, "error_source": {"__enum__": "ErrorSource.USER_CODE_ERROR"}, "user_failure_data": null}, "event_type_value": "STEP_FAILURE", "logging_tags": {"pipeline_name": "unreliable_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:36:00+00:00', 'dagster/partition': '2020-01-05', 'dagster/partition_set': 'unreliable_weekly', 'dagster/run_key': '2020-01-05', 'dagster/schedule_name': 'backfill_unreliable_weekly'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_name": "three", "step_key": "three"}, "message": "Execution of step \\"three\\" failed.", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "three", "solid_handle": {"__class__": "SolidHandle", "name": "three", "parent": null}}, "step_key": "three", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 40, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "three", "timestamp": 1648157764.32866, "user_message": "Execution of step \\"three\\" failed."}	STEP_FAILURE	2022-03-24 21:36:04.32866	three	\N	\N
89	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 40, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "four", "timestamp": 1648157764.371053, "user_message": "Dependencies for step four failed: ['three']. Not executing."}	\N	2022-03-24 21:36:04.371053	four	\N	\N
90	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 40, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "five", "timestamp": 1648157764.37869, "user_message": "Dependencies for step five were not executed: ['four']. Not executing."}	\N	2022-03-24 21:36:04.37869	five	\N	\N
91	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 40, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "six", "timestamp": 1648157764.384863, "user_message": "Dependencies for step six were not executed: ['five']. Not executing."}	\N	2022-03-24 21:36:04.384863	six	\N	\N
92	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 40, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": "seven", "timestamp": 1648157764.391007, "user_message": "Dependencies for step seven were not executed: ['six']. Not executing."}	\N	2022-03-24 21:36:04.391007	seven	\N	\N
93	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13828"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['unreliable_start', 'one', 'two', 'three', 'four', 'five', 'six', 'seven']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 13828) in 464ms", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157764.3977349, "user_message": "Finished steps in process (pid: 13828) in 464ms"}	ENGINE_EVENT	2022-03-24 21:36:04.397735	\N	\N	\N
94	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "PipelineFailureData", "error": null}, "event_type_value": "PIPELINE_FAILURE", "logging_tags": {}, "message": "Execution of run for \\"unreliable_pipeline\\" failed. Steps failed: ['three'].", "pid": 13828, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 40, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157764.403834, "user_message": "Execution of run for \\"unreliable_pipeline\\" failed. Steps failed: ['three']."}	PIPELINE_FAILURE	2022-03-24 21:36:04.403834	\N	\N	\N
95	985a9b0c-8896-44a7-a2fa-c5d824612d87	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 13828).", "pid": null, "pipeline_name": "unreliable_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "unreliable_pipeline", "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "step_key": null, "timestamp": 1648157764.4363992, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:04.436399	\N	\N	\N
96	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14010"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14010).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157765.319075, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:05.319075	\N	\N	\N
97	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157765.332142, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:05.332142	\N	\N	\N
101	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run:1608060793.3515544', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.418748, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:05.418748	read_file	\N	\N
102	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run:1608060793.3515544', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.431732, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:05.431732	read_file	\N	\N
103	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.440515, "user_message": "Found file bx_new_run"}	\N	2022-03-24 21:36:05.440515	read_file	\N	\N
104	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1608060793.3515544, "mtime": 1608060793.3515544, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run:1608060793.3515544', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bx_new_run.", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.448155, "user_message": "Materialized value log_file bx_new_run."}	ASSET_MATERIALIZATION	2022-03-24 21:36:05.448155	read_file	["log_file", "bx_new_run"]	\N
105	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157765.452312, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:05.452312	\N	\N	\N
106	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run:1608060793.3515544', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.471804, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:05.471804	read_file	\N	\N
107	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run:1608060793.3515544', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.479861, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:05.479861	read_file	\N	\N
108	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 46.719704999999664}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run:1608060793.3515544', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 46ms.", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": "read_file", "timestamp": 1648157765.4868329, "user_message": "Finished execution of step \\"read_file\\" in 46ms."}	STEP_SUCCESS	2022-03-24 21:36:05.486833	read_file	\N	\N
109	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13901"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 13901) in 130ms", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157765.500732, "user_message": "Finished steps in process (pid: 13901) in 130ms"}	ENGINE_EVENT	2022-03-24 21:36:05.500732	\N	\N	\N
110	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 13901, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157765.507304, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:05.507304	\N	\N	\N
111	a840bf6c-1673-44d0-a2b0-691b44b081a9	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 13901).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "step_key": null, "timestamp": 1648157765.5372329, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:05.537233	\N	\N	\N
112	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14150"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14150).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157766.989059, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:06.989059	\N	\N	\N
113	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157767.031994, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:07.031994	\N	\N	\N
114	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157767.058887, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:07.058887	\N	\N	\N
115	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14010"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14010)", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157767.066865, "user_message": "Executing steps in process (pid: 14010)"}	ENGINE_EVENT	2022-03-24 21:36:07.066865	\N	\N	\N
117	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.28ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.0872278, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:07.087228	read_file	\N	\N
118	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_2:1608060796.9405777', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.126457, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:07.126457	read_file	\N	\N
119	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_2:1608060796.9405777', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.136837, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:07.136837	read_file	\N	\N
120	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.1445818, "user_message": "Found file bx_new_run_2"}	\N	2022-03-24 21:36:07.144582	read_file	\N	\N
121	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bx_new_run_2"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bx_new_run_2"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1608060796.9405777, "mtime": 1608060796.9405777, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_2:1608060796.9405777', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bx_new_run_2.", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.151572, "user_message": "Materialized value log_file bx_new_run_2."}	ASSET_MATERIALIZATION	2022-03-24 21:36:07.151572	read_file	["log_file", "bx_new_run_2"]	\N
122	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_2:1608060796.9405777', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.17503, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:07.17503	read_file	\N	\N
178	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157772.008217, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:12.008217	\N	\N	\N
123	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_2:1608060796.9405777', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.1824908, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:07.182491	read_file	\N	\N
124	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 45.389029000000306}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bx_new_run_2:1608060796.9405777', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 45ms.", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": "read_file", "timestamp": 1648157767.1894772, "user_message": "Finished execution of step \\"read_file\\" in 45ms."}	STEP_SUCCESS	2022-03-24 21:36:07.189477	read_file	\N	\N
125	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14010"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14010) in 128ms", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157767.202715, "user_message": "Finished steps in process (pid: 14010) in 128ms"}	ENGINE_EVENT	2022-03-24 21:36:07.202715	\N	\N	\N
126	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14010, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157767.2099662, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:07.209966	\N	\N	\N
127	29455cbf-9168-4c9b-9d6e-4c0965912580	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14010).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "step_key": null, "timestamp": 1648157767.24097, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:07.24097	\N	\N	\N
128	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["raw_video_views"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 5254.939658845346}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_video_views", "step_key": "ingest_raw_video_views"}, "message": "Materialized value raw_video_views.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_video_views", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}}, "step_key": "ingest_raw_video_views", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.595316, "user_message": "Materialized value raw_video_views."}	ASSET_MATERIALIZATION	2022-03-24 21:36:07.595316	ingest_raw_video_views	["raw_video_views"]	2020-01-01
129	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.610253, "user_message": "Solid ingest_raw_video_views did not fire outputs {'result'}"}	\N	2022-03-24 21:36:07.610253	ingest_raw_video_views	\N	\N
130	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.621291, "user_message": "Emitting implicit Nothing for output \\"result\\" on solid \\"ingest_raw_video_views\\""}	\N	2022-03-24 21:36:07.621291	ingest_raw_video_views	\N	\N
220	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157774.172241, "user_message": "Emitting implicit Nothing for output \\"result\\" on solid \\"train_video_recommender_model\\""}	\N	2022-03-24 21:36:14.172241	train_video_recommender_model	\N	\N
131	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "ingest_raw_video_views"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_video_views", "step_key": "ingest_raw_video_views"}, "message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed).", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_video_views", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}}, "step_key": "ingest_raw_video_views", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.629955, "user_message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:07.629955	ingest_raw_video_views	\N	\N
132	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.638123, "user_message": "Writing file at: /Users/prha/dagster/storage/05c741a7-30be-45b4-8e76-cab4a81f0c67/ingest_raw_video_views/result"}	\N	2022-03-24 21:36:07.638123	ingest_raw_video_views	\N	\N
133	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_video_views", "step_key": "ingest_raw_video_views"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_video_views", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}}, "step_key": "ingest_raw_video_views", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.644969, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:07.644969	ingest_raw_video_views	\N	\N
134	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 5313.7669829999995}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "ingest_raw_video_views", "step_key": "ingest_raw_video_views"}, "message": "Finished execution of step \\"ingest_raw_video_views\\" in 5.31s.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "ingest_raw_video_views", "solid_handle": {"__class__": "SolidHandle", "name": "ingest_raw_video_views", "parent": null}}, "step_key": "ingest_raw_video_views", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "ingest_raw_video_views", "timestamp": 1648157767.65228, "user_message": "Finished execution of step \\"ingest_raw_video_views\\" in 5.31s."}	STEP_SUCCESS	2022-03-24 21:36:07.65228	ingest_raw_video_views	\N	\N
135	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "update_users_table", "step_keys": ["update_users_table"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_users_table", "step_key": "update_users_table"}, "message": "Started capturing logs for step: update_users_table.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_users_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}}, "step_key": "update_users_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.686412, "user_message": "Started capturing logs for step: update_users_table."}	LOGS_CAPTURED	2022-03-24 21:36:07.686412	update_users_table	\N	\N
136	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_users_table", "step_key": "update_users_table"}, "message": "Started execution of step \\"update_users_table\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_users_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}}, "step_key": "update_users_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.698588, "user_message": "Started execution of step \\"update_users_table\\"."}	STEP_START	2022-03-24 21:36:07.698588	update_users_table	\N	\N
137	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["users"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 158.2786476664057}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_users_table", "step_key": "update_users_table"}, "message": "Materialized value users.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_users_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}}, "step_key": "update_users_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.87461, "user_message": "Materialized value users."}	ASSET_MATERIALIZATION	2022-03-24 21:36:07.87461	update_users_table	["users"]	2020-01-01
138	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.889517, "user_message": "Solid update_users_table did not fire outputs {'result'}"}	\N	2022-03-24 21:36:07.889517	update_users_table	\N	\N
139	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.896814, "user_message": "Emitting implicit Nothing for output \\"result\\" on solid \\"update_users_table\\""}	\N	2022-03-24 21:36:07.896814	update_users_table	\N	\N
140	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "update_users_table"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_users_table", "step_key": "update_users_table"}, "message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed).", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_users_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}}, "step_key": "update_users_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.903475, "user_message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:07.903475	update_users_table	\N	\N
141	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.9105542, "user_message": "Writing file at: /Users/prha/dagster/storage/05c741a7-30be-45b4-8e76-cab4a81f0c67/update_users_table/result"}	\N	2022-03-24 21:36:07.910554	update_users_table	\N	\N
148	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14150"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14150)", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157768.768353, "user_message": "Executing steps in process (pid: 14150)"}	ENGINE_EVENT	2022-03-24 21:36:08.768353	\N	\N	\N
142	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_users_table", "step_key": "update_users_table"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_users_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}}, "step_key": "update_users_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.9178529, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:07.917853	update_users_table	\N	\N
143	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 214.01563100000055}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_users_table", "step_key": "update_users_table"}, "message": "Finished execution of step \\"update_users_table\\" in 214ms.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_users_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_users_table", "parent": null}}, "step_key": "update_users_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_users_table", "timestamp": 1648157767.9240289, "user_message": "Finished execution of step \\"update_users_table\\" in 214ms."}	STEP_SUCCESS	2022-03-24 21:36:07.924029	update_users_table	\N	\N
144	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "update_video_views_table", "step_keys": ["update_video_views_table"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_video_views_table", "step_key": "update_video_views_table"}, "message": "Started capturing logs for step: update_video_views_table.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_video_views_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}}, "step_key": "update_video_views_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157767.95596, "user_message": "Started capturing logs for step: update_video_views_table."}	LOGS_CAPTURED	2022-03-24 21:36:07.95596	update_video_views_table	\N	\N
145	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_video_views_table", "step_key": "update_video_views_table"}, "message": "Started execution of step \\"update_video_views_table\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_video_views_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}}, "step_key": "update_video_views_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157767.9667451, "user_message": "Started execution of step \\"update_video_views_table\\"."}	STEP_START	2022-03-24 21:36:07.966745	update_video_views_table	\N	\N
146	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14324"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14324).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157768.651555, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:08.651555	\N	\N	\N
150	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.78069, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:08.78069	read_file	\N	\N
151	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.2ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.789545, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:08.789545	read_file	\N	\N
152	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'foooawoiefj:1645197413.2837281', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.823246, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:08.823246	read_file	\N	\N
153	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'foooawoiefj:1645197413.2837281', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.8332438, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:08.833244	read_file	\N	\N
154	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.840499, "user_message": "Found file foooawoiefj"}	\N	2022-03-24 21:36:08.840499	read_file	\N	\N
155	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "foooawoiefj"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/foooawoiefj"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1645197413.2837281, "mtime": 1645197413.2837281, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'foooawoiefj:1645197413.2837281', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file foooawoiefj.", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.848211, "user_message": "Materialized value log_file foooawoiefj."}	ASSET_MATERIALIZATION	2022-03-24 21:36:08.848211	read_file	["log_file", "foooawoiefj"]	\N
162	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14534"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14534).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157770.3196821, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:10.319682	\N	\N	\N
156	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'foooawoiefj:1645197413.2837281', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.872381, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:08.872381	read_file	\N	\N
157	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'foooawoiefj:1645197413.2837281', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.880206, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:08.880206	read_file	\N	\N
158	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 46.856141999999764}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'foooawoiefj:1645197413.2837281', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 46ms.", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": "read_file", "timestamp": 1648157768.88705, "user_message": "Finished execution of step \\"read_file\\" in 46ms."}	STEP_SUCCESS	2022-03-24 21:36:08.88705	read_file	\N	\N
159	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14150"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14150) in 124ms", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157768.9007308, "user_message": "Finished steps in process (pid: 14150) in 124ms"}	ENGINE_EVENT	2022-03-24 21:36:08.900731	\N	\N	\N
160	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14150, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157768.907712, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:08.907712	\N	\N	\N
161	af921bac-0b18-4a9a-a016-35dfd637cfda	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14150).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "step_key": null, "timestamp": 1648157768.938102, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:08.938102	\N	\N	\N
163	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157770.352556, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:10.352556	\N	\N	\N
164	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14324"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14324)", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157770.384526, "user_message": "Executing steps in process (pid: 14324)"}	ENGINE_EVENT	2022-03-24 21:36:10.384526	\N	\N	\N
165	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.396527, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:10.396527	read_file	\N	\N
166	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.21ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.404598, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:10.404598	read_file	\N	\N
167	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'demo.1:1606341124.944769', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.443168, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:10.443168	read_file	\N	\N
168	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'demo.1:1606341124.944769', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.454567, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:10.454567	read_file	\N	\N
169	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.462232, "user_message": "Found file demo.1"}	\N	2022-03-24 21:36:10.462232	read_file	\N	\N
175	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14324"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14324) in 127ms", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157770.519485, "user_message": "Finished steps in process (pid: 14324) in 127ms"}	ENGINE_EVENT	2022-03-24 21:36:10.519485	\N	\N	\N
170	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "demo.1"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/demo.1"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606341124.944769, "mtime": 1606341124.944769, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'demo.1:1606341124.944769', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file demo.1.", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.469054, "user_message": "Materialized value log_file demo.1."}	ASSET_MATERIALIZATION	2022-03-24 21:36:10.469054	read_file	["log_file", "demo.1"]	\N
171	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157770.472886, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:10.472886	\N	\N	\N
172	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'demo.1:1606341124.944769', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.492396, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:10.492396	read_file	\N	\N
173	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'demo.1:1606341124.944769', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.499794, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:10.499794	read_file	\N	\N
174	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 44.5175739999999}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'demo.1:1606341124.944769', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 44ms.", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": "read_file", "timestamp": 1648157770.506541, "user_message": "Finished execution of step \\"read_file\\" in 44ms."}	STEP_SUCCESS	2022-03-24 21:36:10.506541	read_file	\N	\N
176	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14324, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "step_key": null, "timestamp": 1648157770.525541, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:10.525541	\N	\N	\N
179	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14611"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14611).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157772.013088, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:12.013088	\N	\N	\N
180	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14534"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14534)", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157772.042279, "user_message": "Executing steps in process (pid: 14534)"}	ENGINE_EVENT	2022-03-24 21:36:12.042279	\N	\N	\N
181	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.054647, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:12.054647	read_file	\N	\N
182	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.3ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.062767, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:12.062767	read_file	\N	\N
183	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157772.0870981, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:12.087098	\N	\N	\N
184	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boopppp:1607487853.6962564', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.102458, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:12.102458	read_file	\N	\N
185	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boopppp:1607487853.6962564', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.115457, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:12.115457	read_file	\N	\N
187	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boopppp"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boopppp"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607487853.6962564, "mtime": 1607487853.6962564, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boopppp:1607487853.6962564', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file boopppp.", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.133801, "user_message": "Materialized value log_file boopppp."}	ASSET_MATERIALIZATION	2022-03-24 21:36:12.133801	read_file	["log_file", "boopppp"]	\N
188	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boopppp:1607487853.6962564', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.159613, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:12.159613	read_file	\N	\N
189	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boopppp:1607487853.6962564', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.1663811, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:12.166381	read_file	\N	\N
190	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 48.62707199999994}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boopppp:1607487853.6962564', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 48ms.", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": "read_file", "timestamp": 1648157772.173014, "user_message": "Finished execution of step \\"read_file\\" in 48ms."}	STEP_SUCCESS	2022-03-24 21:36:12.173014	read_file	\N	\N
191	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14534"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14534) in 136ms", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157772.18657, "user_message": "Finished steps in process (pid: 14534) in 136ms"}	ENGINE_EVENT	2022-03-24 21:36:12.18657	\N	\N	\N
192	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14534, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157772.192847, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:12.192847	\N	\N	\N
193	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14534).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "step_key": null, "timestamp": 1648157772.223941, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:12.223941	\N	\N	\N
194	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["video_views"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "FloatMetadataEntryData", "value": 5254.939658845346}, "label": "Data size (bytes)"}], "partition": "2020-01-01", "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_video_views_table", "step_key": "update_video_views_table"}, "message": "Materialized value video_views.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_video_views_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}}, "step_key": "update_video_views_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.2311978, "user_message": "Materialized value video_views."}	ASSET_MATERIALIZATION	2022-03-24 21:36:13.231198	update_video_views_table	["video_views"]	2020-01-01
195	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.2446568, "user_message": "Solid update_video_views_table did not fire outputs {'result'}"}	\N	2022-03-24 21:36:13.244657	update_video_views_table	\N	\N
196	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.250658, "user_message": "Emitting implicit Nothing for output \\"result\\" on solid \\"update_video_views_table\\""}	\N	2022-03-24 21:36:13.250658	update_video_views_table	\N	\N
197	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "update_video_views_table"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_video_views_table", "step_key": "update_video_views_table"}, "message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed).", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_video_views_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}}, "step_key": "update_video_views_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.257292, "user_message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:13.257292	update_video_views_table	\N	\N
198	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.26475, "user_message": "Writing file at: /Users/prha/dagster/storage/05c741a7-30be-45b4-8e76-cab4a81f0c67/update_video_views_table/result"}	\N	2022-03-24 21:36:13.26475	update_video_views_table	\N	\N
199	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_video_views_table", "step_key": "update_video_views_table"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_video_views_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}}, "step_key": "update_video_views_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.271678, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:13.271678	update_video_views_table	\N	\N
228	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14744"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14744).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157775.290698, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:15.290698	\N	\N	\N
200	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 5304.680719}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "update_video_views_table", "step_key": "update_video_views_table"}, "message": "Finished execution of step \\"update_video_views_table\\" in 5.3s.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "update_video_views_table", "solid_handle": {"__class__": "SolidHandle", "name": "update_video_views_table", "parent": null}}, "step_key": "update_video_views_table", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "update_video_views_table", "timestamp": 1648157773.278943, "user_message": "Finished execution of step \\"update_video_views_table\\" in 5.3s."}	STEP_SUCCESS	2022-03-24 21:36:13.278943	update_video_views_table	\N	\N
201	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "train_video_recommender_model", "step_keys": ["train_video_recommender_model"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "train_video_recommender_model", "step_key": "train_video_recommender_model"}, "message": "Started capturing logs for step: train_video_recommender_model.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "train_video_recommender_model", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}}, "step_key": "train_video_recommender_model", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157773.312686, "user_message": "Started capturing logs for step: train_video_recommender_model."}	LOGS_CAPTURED	2022-03-24 21:36:13.312686	train_video_recommender_model	\N	\N
202	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "train_video_recommender_model", "step_key": "train_video_recommender_model"}, "message": "Started execution of step \\"train_video_recommender_model\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "train_video_recommender_model", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}}, "step_key": "train_video_recommender_model", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157773.322762, "user_message": "Started execution of step \\"train_video_recommender_model\\"."}	STEP_START	2022-03-24 21:36:13.322762	train_video_recommender_model	\N	\N
203	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14673"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14673).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157773.629486, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:13.629486	\N	\N	\N
204	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157773.7083251, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:13.708325	\N	\N	\N
205	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157773.7279701, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:13.72797	\N	\N	\N
299	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157782.013986, "user_message": "Found file boop"}	\N	2022-03-24 21:36:22.013986	read_file	\N	\N
206	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14611"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14611)", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157773.761285, "user_message": "Executing steps in process (pid: 14611)"}	ENGINE_EVENT	2022-03-24 21:36:13.761285	\N	\N	\N
207	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.771738, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:13.771738	read_file	\N	\N
208	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.21ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.778809, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:13.778809	read_file	\N	\N
209	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blawiejfoj:1647625969.2538514', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.8111439, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:13.811144	read_file	\N	\N
210	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blawiejfoj:1647625969.2538514', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.8225942, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:13.822594	read_file	\N	\N
211	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.8305411, "user_message": "Found file blawiejfoj"}	\N	2022-03-24 21:36:13.830541	read_file	\N	\N
212	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "blawiejfoj"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/blawiejfoj"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1647625969.2538514, "mtime": 1647625969.2538514, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blawiejfoj:1647625969.2538514', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file blawiejfoj.", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.837879, "user_message": "Materialized value log_file blawiejfoj."}	ASSET_MATERIALIZATION	2022-03-24 21:36:13.837879	read_file	["log_file", "blawiejfoj"]	\N
213	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blawiejfoj:1647625969.2538514', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.8626509, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:13.862651	read_file	\N	\N
214	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blawiejfoj:1647625969.2538514', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.870322, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:13.870322	read_file	\N	\N
215	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 46.66363400000017}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blawiejfoj:1647625969.2538514', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 46ms.", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": "read_file", "timestamp": 1648157773.876876, "user_message": "Finished execution of step \\"read_file\\" in 46ms."}	STEP_SUCCESS	2022-03-24 21:36:13.876876	read_file	\N	\N
216	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14611"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14611) in 121ms", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157773.890225, "user_message": "Finished steps in process (pid: 14611) in 121ms"}	ENGINE_EVENT	2022-03-24 21:36:13.890225	\N	\N	\N
217	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14611, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157773.897022, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:13.897022	\N	\N	\N
218	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14611).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "step_key": null, "timestamp": 1648157773.928598, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:13.928598	\N	\N	\N
219	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157774.1642811, "user_message": "Solid train_video_recommender_model did not fire outputs {'result'}"}	\N	2022-03-24 21:36:14.164281	train_video_recommender_model	\N	\N
221	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "train_video_recommender_model"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "train_video_recommender_model", "step_key": "train_video_recommender_model"}, "message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed).", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "train_video_recommender_model", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}}, "step_key": "train_video_recommender_model", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157774.180983, "user_message": "Yielded output \\"result\\" of type \\"Nothing\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:14.180983	train_video_recommender_model	\N	\N
222	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157774.191314, "user_message": "Writing file at: /Users/prha/dagster/storage/05c741a7-30be-45b4-8e76-cab4a81f0c67/train_video_recommender_model/result"}	\N	2022-03-24 21:36:14.191314	train_video_recommender_model	\N	\N
223	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "train_video_recommender_model", "step_key": "train_video_recommender_model"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "train_video_recommender_model", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}}, "step_key": "train_video_recommender_model", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157774.2001011, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:14.200101	train_video_recommender_model	\N	\N
224	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 876.8436899999994}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "longitudinal_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', '.dagster/scheduled_execution_time': '2022-03-24T21:35:00+00:00', 'dagster/partition': '2020-01-01', 'dagster/partition_set': 'ingest_and_train', 'dagster/run_key': '2020-01-01', 'dagster/schedule_name': 'longitudinal_demo'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_name": "train_video_recommender_model", "step_key": "train_video_recommender_model"}, "message": "Finished execution of step \\"train_video_recommender_model\\" in 876ms.", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "train_video_recommender_model", "solid_handle": {"__class__": "SolidHandle", "name": "train_video_recommender_model", "parent": null}}, "step_key": "train_video_recommender_model", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": "train_video_recommender_model", "timestamp": 1648157774.207563, "user_message": "Finished execution of step \\"train_video_recommender_model\\" in 876ms."}	STEP_SUCCESS	2022-03-24 21:36:14.207563	train_video_recommender_model	\N	\N
225	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "13749"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['ingest_raw_users', 'ingest_raw_video_views', 'update_users_table', 'update_video_views_table', 'train_video_recommender_model']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 13749) in 12.24s", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157774.2219672, "user_message": "Finished steps in process (pid: 13749) in 12.24s"}	ENGINE_EVENT	2022-03-24 21:36:14.221967	\N	\N	\N
226	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"longitudinal_pipeline\\".", "pid": 13749, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157774.22942, "user_message": "Finished execution of run for \\"longitudinal_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:14.22942	\N	\N	\N
227	05c741a7-30be-45b4-8e76-cab4a81f0c67	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 13749).", "pid": null, "pipeline_name": "longitudinal_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "longitudinal_pipeline", "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "step_key": null, "timestamp": 1648157774.264825, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:14.264825	\N	\N	\N
229	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157775.380199, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:15.380199	\N	\N	\N
230	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14673"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14673)", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157775.416933, "user_message": "Executing steps in process (pid: 14673)"}	ENGINE_EVENT	2022-03-24 21:36:15.416933	\N	\N	\N
231	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157775.4176571, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:15.417657	\N	\N	\N
232	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.4277189, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:15.427719	read_file	\N	\N
233	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.23ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.434895, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:15.434895	read_file	\N	\N
234	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'b.out:1605834003.363826', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.467015, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:15.467015	read_file	\N	\N
235	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'b.out:1605834003.363826', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.478289, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:15.478289	read_file	\N	\N
236	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.4860349, "user_message": "Found file b.out"}	\N	2022-03-24 21:36:15.486035	read_file	\N	\N
237	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "b.out"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/b.out"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1605834003.3638573, "mtime": 1605834003.363826, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'b.out:1605834003.363826', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file b.out.", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.493622, "user_message": "Materialized value log_file b.out."}	ASSET_MATERIALIZATION	2022-03-24 21:36:15.493622	read_file	["log_file", "b.out"]	\N
238	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'b.out:1605834003.363826', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.5196118, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:15.519612	read_file	\N	\N
239	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'b.out:1605834003.363826', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.5266938, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:15.526694	read_file	\N	\N
240	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 47.42712299999985}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'b.out:1605834003.363826', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 47ms.", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": "read_file", "timestamp": 1648157775.533132, "user_message": "Finished execution of step \\"read_file\\" in 47ms."}	STEP_SUCCESS	2022-03-24 21:36:15.533132	read_file	\N	\N
241	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14673"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14673) in 122ms", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157775.5465431, "user_message": "Finished steps in process (pid: 14673) in 122ms"}	ENGINE_EVENT	2022-03-24 21:36:15.546543	\N	\N	\N
242	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14673, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157775.553449, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:15.553449	\N	\N	\N
243	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14673).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "step_key": null, "timestamp": 1648157775.5892942, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:15.589294	\N	\N	\N
244	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14841"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 14841).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157776.964811, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:16.964811	\N	\N	\N
245	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157776.990659, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:16.990659	\N	\N	\N
246	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14744"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14744)", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157777.023564, "user_message": "Executing steps in process (pid: 14744)"}	ENGINE_EVENT	2022-03-24 21:36:17.023564	\N	\N	\N
247	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.0359669, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:17.035967	read_file	\N	\N
248	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.2ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.044481, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:17.044481	read_file	\N	\N
249	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_3:1606942458.8674', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.0859468, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:17.085947	read_file	\N	\N
250	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_3:1606942458.8674', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.097108, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:17.097108	read_file	\N	\N
251	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.106459, "user_message": "Found file show_run_key_3"}	\N	2022-03-24 21:36:17.106459	read_file	\N	\N
252	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "show_run_key_3"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/show_run_key_3"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606942458.8674397, "mtime": 1606942458.8674, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_3:1606942458.8674', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file show_run_key_3.", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.1137438, "user_message": "Materialized value log_file show_run_key_3."}	ASSET_MATERIALIZATION	2022-03-24 21:36:17.113744	read_file	["log_file", "show_run_key_3"]	\N
253	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157777.1180701, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:17.11807	\N	\N	\N
254	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_3:1606942458.8674', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.139026, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:17.139026	read_file	\N	\N
255	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_3:1606942458.8674', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.1460311, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:17.146031	read_file	\N	\N
256	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 46.40508499999996}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_3:1606942458.8674', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 46ms.", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": "read_file", "timestamp": 1648157777.15245, "user_message": "Finished execution of step \\"read_file\\" in 46ms."}	STEP_SUCCESS	2022-03-24 21:36:17.15245	read_file	\N	\N
257	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14744"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14744) in 134ms", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157777.1649432, "user_message": "Finished steps in process (pid: 14744) in 134ms"}	ENGINE_EVENT	2022-03-24 21:36:17.164943	\N	\N	\N
258	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14744, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157777.171253, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:17.171253	\N	\N	\N
259	a7a404ed-9c84-476b-b55e-ecbff0d2f019	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14744).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "step_key": null, "timestamp": 1648157777.2027898, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:17.20279	\N	\N	\N
260	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157778.655339, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:18.655339	\N	\N	\N
261	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15024"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15024).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157778.662737, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:18.662737	\N	\N	\N
262	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14841"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 14841)", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157778.68532, "user_message": "Executing steps in process (pid: 14841)"}	ENGINE_EVENT	2022-03-24 21:36:18.68532	\N	\N	\N
263	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.699666, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:18.699666	read_file	\N	\N
264	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.22ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.707572, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:18.707572	read_file	\N	\N
265	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_2:1606840685.1579385', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.742173, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:18.742173	read_file	\N	\N
266	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_2:1606840685.1579385', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.75314, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:18.75314	read_file	\N	\N
267	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.761526, "user_message": "Found file show_run_key_2"}	\N	2022-03-24 21:36:18.761526	read_file	\N	\N
268	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "show_run_key_2"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/show_run_key_2"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606840685.1579385, "mtime": 1606840685.1579385, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_2:1606840685.1579385', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file show_run_key_2.", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.770129, "user_message": "Materialized value log_file show_run_key_2."}	ASSET_MATERIALIZATION	2022-03-24 21:36:18.770129	read_file	["log_file", "show_run_key_2"]	\N
269	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_2:1606840685.1579385', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.801375, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:18.801375	read_file	\N	\N
270	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_2:1606840685.1579385', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.8078442, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:18.807844	read_file	\N	\N
271	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 52.881039999999935}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key_2:1606840685.1579385', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 52ms.", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": "read_file", "timestamp": 1648157778.814037, "user_message": "Finished execution of step \\"read_file\\" in 52ms."}	STEP_SUCCESS	2022-03-24 21:36:18.814037	read_file	\N	\N
272	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157778.822452, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:18.822452	\N	\N	\N
273	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "14841"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 14841) in 131ms", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157778.827296, "user_message": "Finished steps in process (pid: 14841) in 131ms"}	ENGINE_EVENT	2022-03-24 21:36:18.827296	\N	\N	\N
274	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 14841, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157778.834025, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:18.834025	\N	\N	\N
275	2c5beeba-84cc-493c-a306-784585dba96b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 14841).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "step_key": null, "timestamp": 1648157778.867122, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:18.867122	\N	\N	\N
276	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157780.256861, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:20.256861	\N	\N	\N
277	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15195"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15195).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157780.2751842, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:20.275184	\N	\N	\N
278	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15024"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15024)", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157780.290711, "user_message": "Executing steps in process (pid: 15024)"}	ENGINE_EVENT	2022-03-24 21:36:20.290711	\N	\N	\N
279	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.300578, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:20.300578	read_file	\N	\N
280	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.26ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.3091068, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:20.309107	read_file	\N	\N
281	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'a.out:1605833207.4776378', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.3436859, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:20.343686	read_file	\N	\N
282	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'a.out:1605833207.4776378', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.355923, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:20.355923	read_file	\N	\N
283	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.3649962, "user_message": "Found file a.out"}	\N	2022-03-24 21:36:20.364996	read_file	\N	\N
284	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "a.out"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/a.out"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1605833207.4776378, "mtime": 1605833207.4776378, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'a.out:1605833207.4776378', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file a.out.", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.373298, "user_message": "Materialized value log_file a.out."}	ASSET_MATERIALIZATION	2022-03-24 21:36:20.373298	read_file	["log_file", "a.out"]	\N
285	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'a.out:1605833207.4776378', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.402795, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:20.402795	read_file	\N	\N
286	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'a.out:1605833207.4776378', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.4114938, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:20.411494	read_file	\N	\N
287	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 54.983365000000006}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'a.out:1605833207.4776378', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 54ms.", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": "read_file", "timestamp": 1648157780.4195561, "user_message": "Finished execution of step \\"read_file\\" in 54ms."}	STEP_SUCCESS	2022-03-24 21:36:20.419556	read_file	\N	\N
288	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157780.4301498, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:20.43015	\N	\N	\N
289	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15024"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15024) in 135ms", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157780.432241, "user_message": "Finished steps in process (pid: 15024) in 135ms"}	ENGINE_EVENT	2022-03-24 21:36:20.432241	\N	\N	\N
290	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15024, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157780.441946, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:20.441946	\N	\N	\N
291	d7252513-c700-4a9f-9df2-c33632d65882	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15024).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "step_key": null, "timestamp": 1648157780.4718878, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:20.471888	\N	\N	\N
292	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157781.8777332, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:21.877733	\N	\N	\N
293	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15268"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15268).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157781.885449, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:21.885449	\N	\N	\N
294	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15195"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15195)", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157781.922037, "user_message": "Executing steps in process (pid: 15195)"}	ENGINE_EVENT	2022-03-24 21:36:21.922037	\N	\N	\N
295	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157781.932343, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:21.932343	read_file	\N	\N
296	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.23ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157781.950067, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:21.950067	read_file	\N	\N
297	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop:1607484774.6155019', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157781.9843001, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:21.9843	read_file	\N	\N
298	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop:1607484774.6155019', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157782.00528, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:22.00528	read_file	\N	\N
300	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boop"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boop"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607484774.6155019, "mtime": 1607484774.6155019, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop:1607484774.6155019', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file boop.", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157782.0211442, "user_message": "Materialized value log_file boop."}	ASSET_MATERIALIZATION	2022-03-24 21:36:22.021144	read_file	["log_file", "boop"]	\N
301	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157782.0535738, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:22.053574	\N	\N	\N
302	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop:1607484774.6155019', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157782.058399, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:22.058399	read_file	\N	\N
303	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop:1607484774.6155019', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157782.065228, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:22.065228	read_file	\N	\N
304	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 58.32741900000027}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop:1607484774.6155019', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 58ms.", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": "read_file", "timestamp": 1648157782.072054, "user_message": "Finished execution of step \\"read_file\\" in 58ms."}	STEP_SUCCESS	2022-03-24 21:36:22.072054	read_file	\N	\N
355	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15400).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157787.1272562, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:27.127256	\N	\N	\N
305	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15195"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15195) in 155ms", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157782.084739, "user_message": "Finished steps in process (pid: 15195) in 155ms"}	ENGINE_EVENT	2022-03-24 21:36:22.084739	\N	\N	\N
306	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15195, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157782.101364, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:22.101364	\N	\N	\N
307	b2a21899-8713-4ae4-9bdf-c180dc95ca82	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15195).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "step_key": null, "timestamp": 1648157782.1308029, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:22.130803	\N	\N	\N
308	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157783.535491, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:23.535491	\N	\N	\N
309	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15334"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15334).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157783.5572312, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:23.557231	\N	\N	\N
310	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15268"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15268)", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157783.579222, "user_message": "Executing steps in process (pid: 15268)"}	ENGINE_EVENT	2022-03-24 21:36:23.579222	\N	\N	\N
311	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.589503, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:23.589503	read_file	\N	\N
312	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.2ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.602688, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:23.602688	read_file	\N	\N
313	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxffff:1607996899.666524', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.638289, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:23.638289	read_file	\N	\N
314	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxffff:1607996899.666524', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.6551301, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:23.65513	read_file	\N	\N
315	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.6643, "user_message": "Found file bxxxxffff"}	\N	2022-03-24 21:36:23.6643	read_file	\N	\N
316	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bxxxxffff"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bxxxxffff"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607996899.666524, "mtime": 1607996899.666524, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxffff:1607996899.666524', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bxxxxffff.", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.672661, "user_message": "Materialized value log_file bxxxxffff."}	ASSET_MATERIALIZATION	2022-03-24 21:36:23.672661	read_file	["log_file", "bxxxxffff"]	\N
317	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157783.698768, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:23.698768	\N	\N	\N
318	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxffff:1607996899.666524', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.7083771, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:23.708377	read_file	\N	\N
319	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxffff:1607996899.666524', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.717545, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:23.717545	read_file	\N	\N
320	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 63.27277600000025}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxffff:1607996899.666524', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 63ms.", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": "read_file", "timestamp": 1648157783.727078, "user_message": "Finished execution of step \\"read_file\\" in 63ms."}	STEP_SUCCESS	2022-03-24 21:36:23.727078	read_file	\N	\N
321	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15268"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15268) in 154ms", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157783.740492, "user_message": "Finished steps in process (pid: 15268) in 154ms"}	ENGINE_EVENT	2022-03-24 21:36:23.740492	\N	\N	\N
322	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15268, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157783.756504, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:23.756504	\N	\N	\N
323	e4d94f86-5510-42dd-8460-8828fbaabbc4	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15268).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "step_key": null, "timestamp": 1648157783.800171, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:23.800171	\N	\N	\N
324	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157785.193677, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:25.193677	\N	\N	\N
325	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15400"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15400).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157785.1849139, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:25.184914	\N	\N	\N
326	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15334"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15334)", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157785.236334, "user_message": "Executing steps in process (pid: 15334)"}	ENGINE_EVENT	2022-03-24 21:36:25.236334	\N	\N	\N
327	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.262499, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:25.262499	read_file	\N	\N
328	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.25ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.2703302, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:25.27033	read_file	\N	\N
329	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blahfjfjf:1606840555.9826365', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.326645, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:25.326645	read_file	\N	\N
330	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blahfjfjf:1606840555.9826365', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.354833, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:25.354833	read_file	\N	\N
331	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157785.364537, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:25.364537	\N	\N	\N
332	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.364773, "user_message": "Found file blahfjfjf"}	\N	2022-03-24 21:36:25.364773	read_file	\N	\N
333	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "blahfjfjf"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/blahfjfjf"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606840555.9826365, "mtime": 1606840555.9826365, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blahfjfjf:1606840555.9826365', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file blahfjfjf.", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.3723829, "user_message": "Materialized value log_file blahfjfjf."}	ASSET_MATERIALIZATION	2022-03-24 21:36:25.372383	read_file	["log_file", "blahfjfjf"]	\N
334	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blahfjfjf:1606840555.9826365', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.409873, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:25.409873	read_file	\N	\N
335	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blahfjfjf:1606840555.9826365', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.416617, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:25.416617	read_file	\N	\N
336	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 59.364641999999805}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'blahfjfjf:1606840555.9826365', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 59ms.", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": "read_file", "timestamp": 1648157785.423626, "user_message": "Finished execution of step \\"read_file\\" in 59ms."}	STEP_SUCCESS	2022-03-24 21:36:25.423626	read_file	\N	\N
337	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15334"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15334) in 177ms", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157785.43588, "user_message": "Finished steps in process (pid: 15334) in 177ms"}	ENGINE_EVENT	2022-03-24 21:36:25.43588	\N	\N	\N
338	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15334, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157785.457994, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:25.457994	\N	\N	\N
339	e987996d-6f32-415c-97ea-56125087b43b	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15334).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "step_key": null, "timestamp": 1648157785.505014, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:25.505014	\N	\N	\N
340	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157786.821525, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:26.821525	\N	\N	\N
341	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15400"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15400)", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157786.868874, "user_message": "Executing steps in process (pid: 15400)"}	ENGINE_EVENT	2022-03-24 21:36:26.868874	\N	\N	\N
356	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157788.5240588, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:28.524059	\N	\N	\N
342	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157786.8783638, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:26.878364	read_file	\N	\N
343	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15472"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15472).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157786.8821938, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:26.882194	\N	\N	\N
344	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.21ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157786.88513, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:26.88513	read_file	\N	\N
345	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop3:1607484790.7801318', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157786.9348018, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:26.934802	read_file	\N	\N
346	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop3:1607484790.7801318', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157786.963277, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:26.963277	read_file	\N	\N
347	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157786.9733608, "user_message": "Found file boop3"}	\N	2022-03-24 21:36:26.973361	read_file	\N	\N
353	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15400"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15400) in 197ms", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157787.072001, "user_message": "Finished steps in process (pid: 15400) in 197ms"}	ENGINE_EVENT	2022-03-24 21:36:27.072001	\N	\N	\N
348	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boop3"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boop3"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607484790.7801318, "mtime": 1607484790.7801318, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop3:1607484790.7801318', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file boop3.", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157786.982056, "user_message": "Materialized value log_file boop3."}	ASSET_MATERIALIZATION	2022-03-24 21:36:26.982056	read_file	["log_file", "boop3"]	\N
349	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop3:1607484790.7801318', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157787.0232809, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:27.023281	read_file	\N	\N
350	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop3:1607484790.7801318', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157787.0314791, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:27.031479	read_file	\N	\N
351	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 83.81772999999981}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop3:1607484790.7801318', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 83ms.", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": "read_file", "timestamp": 1648157787.056632, "user_message": "Finished execution of step \\"read_file\\" in 83ms."}	STEP_SUCCESS	2022-03-24 21:36:27.056632	read_file	\N	\N
352	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157787.0682602, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:27.06826	\N	\N	\N
354	9dcab6b5-5e62-4228-a274-7602ebcb7231	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15400, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "step_key": null, "timestamp": 1648157787.078441, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:27.078441	\N	\N	\N
357	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15472"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15472)", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157788.574255, "user_message": "Executing steps in process (pid: 15472)"}	ENGINE_EVENT	2022-03-24 21:36:28.574255	\N	\N	\N
358	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.5882938, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:28.588294	read_file	\N	\N
359	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.26ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.61158, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:28.61158	read_file	\N	\N
360	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15642"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15642).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157788.611619, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:28.611619	\N	\N	\N
361	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'booppppppp:1607487856.5426033', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.644445, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:28.644445	read_file	\N	\N
362	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'booppppppp:1607487856.5426033', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.660821, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:28.660821	read_file	\N	\N
363	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.66939, "user_message": "Found file booppppppp"}	\N	2022-03-24 21:36:28.66939	read_file	\N	\N
364	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "booppppppp"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/booppppppp"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607487856.5426033, "mtime": 1607487856.5426033, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'booppppppp:1607487856.5426033', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file booppppppp.", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.6777039, "user_message": "Materialized value log_file booppppppp."}	ASSET_MATERIALIZATION	2022-03-24 21:36:28.677704	read_file	["log_file", "booppppppp"]	\N
365	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'booppppppp:1607487856.5426033', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.7174442, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:28.717444	read_file	\N	\N
366	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'booppppppp:1607487856.5426033', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.725429, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:28.725429	read_file	\N	\N
367	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 63.7739500000003}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'booppppppp:1607487856.5426033', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 63ms.", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": "read_file", "timestamp": 1648157788.732831, "user_message": "Finished execution of step \\"read_file\\" in 63ms."}	STEP_SUCCESS	2022-03-24 21:36:28.732831	read_file	\N	\N
368	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15472"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15472) in 179ms", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157788.7642932, "user_message": "Finished steps in process (pid: 15472) in 179ms"}	ENGINE_EVENT	2022-03-24 21:36:28.764293	\N	\N	\N
369	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157788.770786, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:28.770786	\N	\N	\N
370	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15472, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157788.77312, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:28.77312	\N	\N	\N
371	aaaa992a-c6c5-44d1-85c0-043567df20d5	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15472).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "step_key": null, "timestamp": 1648157788.819415, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:28.819415	\N	\N	\N
372	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157790.221673, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:30.221673	\N	\N	\N
373	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15642"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15642)", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157790.2695549, "user_message": "Executing steps in process (pid: 15642)"}	ENGINE_EVENT	2022-03-24 21:36:30.269555	\N	\N	\N
374	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.27907, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:30.27907	read_file	\N	\N
375	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.21ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.286088, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:30.286088	read_file	\N	\N
376	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15838"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15838).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157790.304645, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:30.304645	\N	\N	\N
377	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxf:1607635587.0286214', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.3360288, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:30.336029	read_file	\N	\N
378	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxf:1607635587.0286214', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.361631, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:30.361631	read_file	\N	\N
379	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.371092, "user_message": "Found file bxxxxf"}	\N	2022-03-24 21:36:30.371092	read_file	\N	\N
380	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bxxxxf"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bxxxxf"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607635587.0286214, "mtime": 1607635587.0286214, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxf:1607635587.0286214', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bxxxxf.", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.3798301, "user_message": "Materialized value log_file bxxxxf."}	ASSET_MATERIALIZATION	2022-03-24 21:36:30.37983	read_file	["log_file", "bxxxxf"]	\N
381	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxf:1607635587.0286214', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.418746, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:30.418746	read_file	\N	\N
382	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxf:1607635587.0286214', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.426121, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:30.426121	read_file	\N	\N
383	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 61.76728799999998}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxxxf:1607635587.0286214', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 61ms.", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": "read_file", "timestamp": 1648157790.4324841, "user_message": "Finished execution of step \\"read_file\\" in 61ms."}	STEP_SUCCESS	2022-03-24 21:36:30.432484	read_file	\N	\N
384	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15642"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15642) in 187ms", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157790.462929, "user_message": "Finished steps in process (pid: 15642) in 187ms"}	ENGINE_EVENT	2022-03-24 21:36:30.462929	\N	\N	\N
385	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157790.46359, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:30.46359	\N	\N	\N
386	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15642, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157790.4707541, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:30.470754	\N	\N	\N
387	851b169d-2742-4b92-a035-7fca78d0f3d0	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15642).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "step_key": null, "timestamp": 1648157790.520975, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:30.520975	\N	\N	\N
388	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157791.9217448, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:31.921745	\N	\N	\N
389	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15838"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15838)", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157791.970968, "user_message": "Executing steps in process (pid: 15838)"}	ENGINE_EVENT	2022-03-24 21:36:31.970968	\N	\N	\N
390	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157791.9811149, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:31.981115	read_file	\N	\N
391	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.26ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.006031, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:32.006031	read_file	\N	\N
392	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15909"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15909).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157792.011605, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:32.011605	\N	\N	\N
393	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop2:1607484775.9602463', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.038375, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:32.038375	read_file	\N	\N
394	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop2:1607484775.9602463', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.061055, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:32.061055	read_file	\N	\N
395	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.069655, "user_message": "Found file boop2"}	\N	2022-03-24 21:36:32.069655	read_file	\N	\N
396	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "boop2"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/boop2"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607484775.9602463, "mtime": 1607484775.9602463, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop2:1607484775.9602463', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file boop2.", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.0777888, "user_message": "Materialized value log_file boop2."}	ASSET_MATERIALIZATION	2022-03-24 21:36:32.077789	read_file	["log_file", "boop2"]	\N
397	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop2:1607484775.9602463', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.117158, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:32.117158	read_file	\N	\N
398	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop2:1607484775.9602463', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.1244018, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:32.124402	read_file	\N	\N
399	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 63.14719499999999}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'boop2:1607484775.9602463', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 63ms.", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": "read_file", "timestamp": 1648157792.132432, "user_message": "Finished execution of step \\"read_file\\" in 63ms."}	STEP_SUCCESS	2022-03-24 21:36:32.132432	read_file	\N	\N
400	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_STARTING", "logging_tags": {}, "message": null, "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157792.157542, "user_message": ""}	PIPELINE_STARTING	2022-03-24 21:36:32.157542	\N	\N	\N
401	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15838"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15838) in 185ms", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157792.162984, "user_message": "Finished steps in process (pid: 15838) in 185ms"}	ENGINE_EVENT	2022-03-24 21:36:32.162984	\N	\N	\N
402	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15838, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157792.173494, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:32.173494	\N	\N	\N
403	4e3a6874-d806-486a-a4b7-aa8cc8674aba	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15838).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "step_key": null, "timestamp": 1648157792.221524, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:32.221524	\N	\N	\N
404	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157793.63193, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:33.63193	\N	\N	\N
405	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15909"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15909)", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157793.679847, "user_message": "Executing steps in process (pid: 15909)"}	ENGINE_EVENT	2022-03-24 21:36:33.679847	\N	\N	\N
406	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.689687, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:33.689687	read_file	\N	\N
407	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "cli_api_subprocess_init", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15976"}, "label": "pid"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Started process for run (pid: 15976).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157793.707149, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:33.707149	\N	\N	\N
408	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.23ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.71192, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:33.71192	read_file	\N	\N
409	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key:1606840644.290511', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.746548, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:33.746548	read_file	\N	\N
410	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key:1606840644.290511', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.761427, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:33.761427	read_file	\N	\N
411	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.770405, "user_message": "Found file show_run_key"}	\N	2022-03-24 21:36:33.770405	read_file	\N	\N
412	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "show_run_key"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/show_run_key"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1606840644.290511, "mtime": 1606840644.290511, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key:1606840644.290511', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file show_run_key.", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.7790358, "user_message": "Materialized value log_file show_run_key."}	ASSET_MATERIALIZATION	2022-03-24 21:36:33.779036	read_file	["log_file", "show_run_key"]	\N
413	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key:1606840644.290511', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.8197498, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:33.81975	read_file	\N	\N
414	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key:1606840644.290511', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.828115, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:33.828115	read_file	\N	\N
415	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 65.73812599999984}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'show_run_key:1606840644.290511', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 65ms.", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": "read_file", "timestamp": 1648157793.835676, "user_message": "Finished execution of step \\"read_file\\" in 65ms."}	STEP_SUCCESS	2022-03-24 21:36:33.835676	read_file	\N	\N
416	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15909"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15909) in 180ms", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157793.866557, "user_message": "Finished steps in process (pid: 15909) in 180ms"}	ENGINE_EVENT	2022-03-24 21:36:33.866557	\N	\N	\N
417	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15909, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157793.876122, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:33.876122	\N	\N	\N
418	7e319969-b129-4ada-8efc-ff8cc00fc6c7	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15909).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "step_key": null, "timestamp": 1648157793.924424, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:33.924424	\N	\N	\N
419	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_START", "logging_tags": {}, "message": "Started execution of run for \\"log_file_pipeline\\".", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157795.3226418, "user_message": "Started execution of run for \\"log_file_pipeline\\"."}	PIPELINE_START	2022-03-24 21:36:35.322642	\N	\N	\N
420	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15976"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Executing steps in process (pid: 15976)", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157795.377653, "user_message": "Executing steps in process (pid: 15976)"}	ENGINE_EVENT	2022-03-24 21:36:35.377653	\N	\N	\N
421	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": "resources", "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Starting initialization of resources [io_manager].", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.388426, "user_message": "Starting initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:35.388426	read_file	\N	\N
422	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": "resources", "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PythonArtifactMetadataEntryData", "module": "dagster.core.storage.mem_io_manager", "name": "InMemoryIOManager"}, "label": "io_manager"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "0.26ms"}, "label": "io_manager:init_time"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished initialization of resources [io_manager].", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.41202, "user_message": "Finished initialization of resources [io_manager]."}	ENGINE_EVENT	2022-03-24 21:36:35.41202	read_file	\N	\N
423	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "ComputeLogsCaptureData", "log_key": "read_file", "step_keys": ["read_file"]}, "event_type_value": "LOGS_CAPTURED", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxx:1607635580.3826091', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started capturing logs for step: read_file.", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.4426491, "user_message": "Started capturing logs for step: read_file."}	LOGS_CAPTURED	2022-03-24 21:36:35.442649	read_file	\N	\N
424	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "STEP_START", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxx:1607635580.3826091', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_name": "read_file", "step_key": "read_file"}, "message": "Started execution of step \\"read_file\\".", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.4598742, "user_message": "Started execution of step \\"read_file\\"."}	STEP_START	2022-03-24 21:36:35.459874	read_file	\N	\N
425	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": null, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.467275, "user_message": "Found file bxxx"}	\N	2022-03-24 21:36:35.467275	read_file	\N	\N
431	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": null, "event_type_value": "PIPELINE_SUCCESS", "logging_tags": {}, "message": "Finished execution of run for \\"log_file_pipeline\\".", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157795.5678651, "user_message": "Finished execution of run for \\"log_file_pipeline\\"."}	PIPELINE_SUCCESS	2022-03-24 21:36:35.567865	\N	\N	\N
432	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": []}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Process for run exited (pid: 15976).", "pid": null, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 20, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157795.6197288, "user_message": ""}	ENGINE_EVENT	2022-03-24 21:36:35.619729	\N	\N	\N
426	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepMaterializationData", "asset_lineage": [], "materialization": {"__class__": "AssetMaterialization", "asset_key": {"__class__": "AssetKey", "path": ["log_file", "bxxx"]}, "description": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "PathMetadataEntryData", "path": "/Users/prha/dagster_sensor_data/bxxx"}, "label": "path"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "JsonMetadataEntryData", "data": {"ctime": 1607635580.3826091, "mtime": 1607635580.3826091, "size": 0}}, "label": "File status"}], "partition": null, "tags": {}}}, "event_type_value": "ASSET_MATERIALIZATION", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxx:1607635580.3826091', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_name": "read_file", "step_key": "read_file"}, "message": "Materialized value log_file bxxx.", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.474165, "user_message": "Materialized value log_file bxxx."}	ASSET_MATERIALIZATION	2022-03-24 21:36:35.474165	read_file	["log_file", "bxxx"]	\N
427	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepOutputData", "metadata_entries": [], "step_output_handle": {"__class__": "StepOutputHandle", "mapping_key": null, "output_name": "result", "step_key": "read_file"}, "type_check_data": {"__class__": "TypeCheckData", "description": null, "label": "result", "metadata_entries": [], "success": true}, "version": null}, "event_type_value": "STEP_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxx:1607635580.3826091', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_name": "read_file", "step_key": "read_file"}, "message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed).", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.515071, "user_message": "Yielded output \\"result\\" of type \\"Any\\". (Type check passed)."}	STEP_OUTPUT	2022-03-24 21:36:35.515071	read_file	\N	\N
428	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "HandledOutputData", "manager_key": "io_manager", "metadata_entries": [], "output_name": "result"}, "event_type_value": "HANDLED_OUTPUT", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxx:1607635580.3826091', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_name": "read_file", "step_key": "read_file"}, "message": "Handled output \\"result\\" using IO manager \\"io_manager\\"", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.524215, "user_message": "Handled output \\"result\\" using IO manager \\"io_manager\\""}	HANDLED_OUTPUT	2022-03-24 21:36:35.524215	read_file	\N	\N
429	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "StepSuccessData", "duration_ms": 65.24575500000029}, "event_type_value": "STEP_SUCCESS", "logging_tags": {"pipeline_name": "log_file_pipeline", "pipeline_tags": "{'.dagster/grpc_info': '{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}', 'dagster/run_key': 'bxxx:1607635580.3826091', 'dagster/sensor_name': 'toy_file_sensor'}", "resource_fn_name": "None", "resource_name": "None", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_name": "read_file", "step_key": "read_file"}, "message": "Finished execution of step \\"read_file\\" in 65ms.", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}, "step_handle": {"__class__": "StepHandle", "key": "read_file", "solid_handle": {"__class__": "SolidHandle", "name": "read_file", "parent": null}}, "step_key": "read_file", "step_kind_value": "COMPUTE"}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": "read_file", "timestamp": 1648157795.532191, "user_message": "Finished execution of step \\"read_file\\" in 65ms."}	STEP_SUCCESS	2022-03-24 21:36:35.532191	read_file	\N	\N
430	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	{"__class__": "EventLogEntry", "dagster_event": {"__class__": "DagsterEvent", "event_specific_data": {"__class__": "EngineEventData", "error": null, "marker_end": null, "marker_start": null, "metadata_entries": [{"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "15976"}, "label": "pid"}, {"__class__": "EventMetadataEntry", "description": null, "entry_data": {"__class__": "TextMetadataEntryData", "text": "['read_file']"}, "label": "step_keys"}]}, "event_type_value": "ENGINE_EVENT", "logging_tags": {}, "message": "Finished steps in process (pid: 15976) in 177ms", "pid": 15976, "pipeline_name": "log_file_pipeline", "solid_handle": null, "step_handle": null, "step_key": null, "step_kind_value": null}, "error_info": null, "level": 10, "message": "", "pipeline_name": "log_file_pipeline", "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "step_key": null, "timestamp": 1648157795.561594, "user_message": "Finished steps in process (pid: 15976) in 177ms"}	ENGINE_EVENT	2022-03-24 21:36:35.561594	\N	\N	\N
\.


--
-- Data for Name: instance_info; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.instance_info (run_storage_id) FROM stdin;
ddaf9769-277f-41cd-a055-b8d3fbf3ef22
\.


--
-- Data for Name: instigators; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.instigators (id, selector_id, status, instigator_type, instigator_body, create_timestamp, update_timestamp) FROM stdin;
\.


--
-- Data for Name: job_ticks; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.job_ticks (id, job_origin_id, status, type, "timestamp", tick_body, create_timestamp, update_timestamp, selector_id) FROM stdin;
2	4b7b8511ef4d115c6222eb9845793f6ce1a01b86	SUCCESS	SCHEDULE	2022-03-24 14:35:00	{"__class__": "TickData", "cursor": null, "error": null, "failure_count": 0, "job_name": "longitudinal_demo", "job_origin_id": "4b7b8511ef4d115c6222eb9845793f6ce1a01b86", "job_type": {"__enum__": "InstigatorType.SCHEDULE"}, "origin_run_ids": [], "run_ids": ["05c741a7-30be-45b4-8e76-cab4a81f0c67"], "run_keys": ["2020-01-01"], "skip_reason": null, "status": {"__enum__": "TickStatus.SUCCESS"}, "timestamp": 1648157700.0}	2022-03-24 14:35:58.622673	2022-03-24 14:35:58.622673	\N
3	9f5c5a983fd26b908acfd25fa78a21d078c45992	SUCCESS	SCHEDULE	2022-03-24 14:36:00	{"__class__": "TickData", "cursor": null, "error": null, "failure_count": 0, "job_name": "backfill_unreliable_weekly", "job_origin_id": "9f5c5a983fd26b908acfd25fa78a21d078c45992", "job_type": {"__enum__": "InstigatorType.SCHEDULE"}, "origin_run_ids": [], "run_ids": ["985a9b0c-8896-44a7-a2fa-c5d824612d87"], "run_keys": ["2020-01-05"], "skip_reason": null, "status": {"__enum__": "TickStatus.SUCCESS"}, "timestamp": 1648157760.0}	2022-03-24 14:36:00.32808	2022-03-24 14:36:00.32808	\N
1	4ba36b86479c292cebefc94beb49c115c6b70a6b	SUCCESS	SENSOR	2022-03-24 14:35:58.534048	{"__class__": "TickData", "cursor": null, "error": null, "failure_count": 0, "job_name": "toy_file_sensor", "job_origin_id": "4ba36b86479c292cebefc94beb49c115c6b70a6b", "job_type": {"__enum__": "InstigatorType.SENSOR"}, "origin_run_ids": [], "run_ids": ["5957b6fc-9d66-4796-9657-26a6011c846a", "0fad30dd-aad6-47fa-9dcd-6469853b997e", "a840bf6c-1673-44d0-a2b0-691b44b081a9", "29455cbf-9168-4c9b-9d6e-4c0965912580", "af921bac-0b18-4a9a-a016-35dfd637cfda", "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "2c5beeba-84cc-493c-a306-784585dba96b", "d7252513-c700-4a9f-9df2-c33632d65882", "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "e4d94f86-5510-42dd-8460-8828fbaabbc4", "e987996d-6f32-415c-97ea-56125087b43b", "9dcab6b5-5e62-4228-a274-7602ebcb7231", "aaaa992a-c6c5-44d1-85c0-043567df20d5", "851b169d-2742-4b92-a035-7fca78d0f3d0", "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "fbcac7d2-0065-43e6-b2bb-b7b3142e3519"], "run_keys": ["bx_new_run_3:1609955736.963252", "bx_new_run_4:1610388763.2417717", "bx_new_run:1608060793.3515544", "bx_new_run_2:1608060796.9405777", "foooawoiefj:1645197413.2837281", "demo.1:1606341124.944769", "boopppp:1607487853.6962564", "blawiejfoj:1647625969.2538514", "b.out:1605834003.363826", "show_run_key_3:1606942458.8674", "show_run_key_2:1606840685.1579385", "a.out:1605833207.4776378", "boop:1607484774.6155019", "bxxxxffff:1607996899.666524", "blahfjfjf:1606840555.9826365", "boop3:1607484790.7801318", "booppppppp:1607487856.5426033", "bxxxxf:1607635587.0286214", "boop2:1607484775.9602463", "show_run_key:1606840644.290511", "bxxx:1607635580.3826091"], "skip_reason": null, "status": {"__enum__": "TickStatus.SUCCESS"}, "timestamp": 1648157758.534048}	2022-03-24 14:35:58.541858	2022-03-24 14:35:58.541858	\N
4	4ba36b86479c292cebefc94beb49c115c6b70a6b	SKIPPED	SENSOR	2022-03-24 14:36:33.813774	{"__class__": "TickData", "cursor": null, "error": null, "failure_count": 0, "job_name": "toy_file_sensor", "job_origin_id": "4ba36b86479c292cebefc94beb49c115c6b70a6b", "job_type": {"__enum__": "InstigatorType.SENSOR"}, "origin_run_ids": [], "run_ids": [], "run_keys": ["bx_new_run_3:1609955736.963252", "bx_new_run_4:1610388763.2417717", "bx_new_run:1608060793.3515544", "bx_new_run_2:1608060796.9405777", "foooawoiefj:1645197413.2837281", "demo.1:1606341124.944769", "boopppp:1607487853.6962564", "blawiejfoj:1647625969.2538514", "b.out:1605834003.363826", "show_run_key_3:1606942458.8674", "show_run_key_2:1606840685.1579385", "a.out:1605833207.4776378", "boop:1607484774.6155019", "bxxxxffff:1607996899.666524", "blahfjfjf:1606840555.9826365", "boop3:1607484790.7801318", "booppppppp:1607487856.5426033", "bxxxxf:1607635587.0286214", "boop2:1607484775.9602463", "show_run_key:1606840644.290511", "bxxx:1607635580.3826091"], "skip_reason": null, "status": {"__enum__": "TickStatus.SKIPPED"}, "timestamp": 1648157793.813774}	2022-03-24 14:36:33.817945	2022-03-24 14:36:33.817945	\N
\.


--
-- Data for Name: jobs; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.jobs (id, job_origin_id, repository_origin_id, status, job_type, job_body, create_timestamp, update_timestamp, selector_id) FROM stdin;
1	4b7b8511ef4d115c6222eb9845793f6ce1a01b86	759314fb52acb7177eeb83563754efc24eca7950	RUNNING	SCHEDULE	{"__class__": "InstigatorState", "job_specific_data": {"__class__": "ScheduleInstigatorData", "cron_schedule": "*/5 * * * *", "start_timestamp": 1648157695.60551}, "job_type": {"__enum__": "InstigatorType.SCHEDULE"}, "origin": {"__class__": "ExternalJobOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "job_name": "longitudinal_demo"}, "status": {"__enum__": "InstigatorStatus.RUNNING"}}	2022-03-24 14:34:55.606867	2022-03-24 14:34:55.606867	\N
3	9f5c5a983fd26b908acfd25fa78a21d078c45992	759314fb52acb7177eeb83563754efc24eca7950	RUNNING	SCHEDULE	{"__class__": "InstigatorState", "job_specific_data": {"__class__": "ScheduleInstigatorData", "cron_schedule": "* * * * *", "start_timestamp": 1648157702.468556}, "job_type": {"__enum__": "InstigatorType.SCHEDULE"}, "origin": {"__class__": "ExternalJobOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "job_name": "backfill_unreliable_weekly"}, "status": {"__enum__": "InstigatorStatus.RUNNING"}}	2022-03-24 14:35:02.469261	2022-03-24 14:35:02.469261	\N
2	4ba36b86479c292cebefc94beb49c115c6b70a6b	759314fb52acb7177eeb83563754efc24eca7950	RUNNING	SENSOR	{"__class__": "InstigatorState", "job_specific_data": {"__class__": "SensorInstigatorData", "cursor": null, "last_run_key": "bxxx:1607635580.3826091", "last_tick_timestamp": 1648157793.813774, "min_interval": 30}, "job_type": {"__enum__": "InstigatorType.SENSOR"}, "origin": {"__class__": "ExternalJobOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "job_name": "toy_file_sensor"}, "status": {"__enum__": "InstigatorStatus.RUNNING"}}	2022-03-24 14:34:59.953482	2022-03-24 14:34:59.953482	\N
\.


--
-- Data for Name: run_tags; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.run_tags (id, run_id, key, value) FROM stdin;
1	5957b6fc-9d66-4796-9657-26a6011c846a	dagster/sensor_name	toy_file_sensor
2	5957b6fc-9d66-4796-9657-26a6011c846a	dagster/run_key	bx_new_run_3:1609955736.963252
3	5957b6fc-9d66-4796-9657-26a6011c846a	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
4	05c741a7-30be-45b4-8e76-cab4a81f0c67	dagster/partition	2020-01-01
5	05c741a7-30be-45b4-8e76-cab4a81f0c67	dagster/partition_set	ingest_and_train
6	05c741a7-30be-45b4-8e76-cab4a81f0c67	dagster/schedule_name	longitudinal_demo
7	05c741a7-30be-45b4-8e76-cab4a81f0c67	.dagster/scheduled_execution_time	2022-03-24T21:35:00+00:00
8	05c741a7-30be-45b4-8e76-cab4a81f0c67	dagster/run_key	2020-01-01
9	05c741a7-30be-45b4-8e76-cab4a81f0c67	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
10	0fad30dd-aad6-47fa-9dcd-6469853b997e	dagster/sensor_name	toy_file_sensor
11	0fad30dd-aad6-47fa-9dcd-6469853b997e	dagster/run_key	bx_new_run_4:1610388763.2417717
12	0fad30dd-aad6-47fa-9dcd-6469853b997e	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
13	985a9b0c-8896-44a7-a2fa-c5d824612d87	dagster/partition	2020-01-05
14	985a9b0c-8896-44a7-a2fa-c5d824612d87	dagster/partition_set	unreliable_weekly
15	985a9b0c-8896-44a7-a2fa-c5d824612d87	dagster/schedule_name	backfill_unreliable_weekly
16	985a9b0c-8896-44a7-a2fa-c5d824612d87	.dagster/scheduled_execution_time	2022-03-24T21:36:00+00:00
17	985a9b0c-8896-44a7-a2fa-c5d824612d87	dagster/run_key	2020-01-05
18	985a9b0c-8896-44a7-a2fa-c5d824612d87	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
19	a840bf6c-1673-44d0-a2b0-691b44b081a9	dagster/sensor_name	toy_file_sensor
20	a840bf6c-1673-44d0-a2b0-691b44b081a9	dagster/run_key	bx_new_run:1608060793.3515544
21	a840bf6c-1673-44d0-a2b0-691b44b081a9	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
22	29455cbf-9168-4c9b-9d6e-4c0965912580	dagster/sensor_name	toy_file_sensor
23	29455cbf-9168-4c9b-9d6e-4c0965912580	dagster/run_key	bx_new_run_2:1608060796.9405777
24	29455cbf-9168-4c9b-9d6e-4c0965912580	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
25	af921bac-0b18-4a9a-a016-35dfd637cfda	dagster/sensor_name	toy_file_sensor
26	af921bac-0b18-4a9a-a016-35dfd637cfda	dagster/run_key	foooawoiefj:1645197413.2837281
27	af921bac-0b18-4a9a-a016-35dfd637cfda	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
28	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	dagster/sensor_name	toy_file_sensor
29	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	dagster/run_key	demo.1:1606341124.944769
30	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
31	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	dagster/sensor_name	toy_file_sensor
32	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	dagster/run_key	boopppp:1607487853.6962564
33	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
34	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	dagster/sensor_name	toy_file_sensor
35	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	dagster/run_key	blawiejfoj:1647625969.2538514
36	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
37	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	dagster/sensor_name	toy_file_sensor
38	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	dagster/run_key	b.out:1605834003.363826
39	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
40	a7a404ed-9c84-476b-b55e-ecbff0d2f019	dagster/sensor_name	toy_file_sensor
41	a7a404ed-9c84-476b-b55e-ecbff0d2f019	dagster/run_key	show_run_key_3:1606942458.8674
42	a7a404ed-9c84-476b-b55e-ecbff0d2f019	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
43	2c5beeba-84cc-493c-a306-784585dba96b	dagster/sensor_name	toy_file_sensor
44	2c5beeba-84cc-493c-a306-784585dba96b	dagster/run_key	show_run_key_2:1606840685.1579385
45	2c5beeba-84cc-493c-a306-784585dba96b	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
46	d7252513-c700-4a9f-9df2-c33632d65882	dagster/sensor_name	toy_file_sensor
47	d7252513-c700-4a9f-9df2-c33632d65882	dagster/run_key	a.out:1605833207.4776378
48	d7252513-c700-4a9f-9df2-c33632d65882	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
49	b2a21899-8713-4ae4-9bdf-c180dc95ca82	dagster/sensor_name	toy_file_sensor
50	b2a21899-8713-4ae4-9bdf-c180dc95ca82	dagster/run_key	boop:1607484774.6155019
51	b2a21899-8713-4ae4-9bdf-c180dc95ca82	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
52	e4d94f86-5510-42dd-8460-8828fbaabbc4	dagster/sensor_name	toy_file_sensor
53	e4d94f86-5510-42dd-8460-8828fbaabbc4	dagster/run_key	bxxxxffff:1607996899.666524
54	e4d94f86-5510-42dd-8460-8828fbaabbc4	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
55	e987996d-6f32-415c-97ea-56125087b43b	dagster/sensor_name	toy_file_sensor
56	e987996d-6f32-415c-97ea-56125087b43b	dagster/run_key	blahfjfjf:1606840555.9826365
57	e987996d-6f32-415c-97ea-56125087b43b	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
58	9dcab6b5-5e62-4228-a274-7602ebcb7231	dagster/sensor_name	toy_file_sensor
59	9dcab6b5-5e62-4228-a274-7602ebcb7231	dagster/run_key	boop3:1607484790.7801318
60	9dcab6b5-5e62-4228-a274-7602ebcb7231	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
61	aaaa992a-c6c5-44d1-85c0-043567df20d5	dagster/sensor_name	toy_file_sensor
62	aaaa992a-c6c5-44d1-85c0-043567df20d5	dagster/run_key	booppppppp:1607487856.5426033
63	aaaa992a-c6c5-44d1-85c0-043567df20d5	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
64	851b169d-2742-4b92-a035-7fca78d0f3d0	dagster/sensor_name	toy_file_sensor
65	851b169d-2742-4b92-a035-7fca78d0f3d0	dagster/run_key	bxxxxf:1607635587.0286214
66	851b169d-2742-4b92-a035-7fca78d0f3d0	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
67	4e3a6874-d806-486a-a4b7-aa8cc8674aba	dagster/sensor_name	toy_file_sensor
68	4e3a6874-d806-486a-a4b7-aa8cc8674aba	dagster/run_key	boop2:1607484775.9602463
69	4e3a6874-d806-486a-a4b7-aa8cc8674aba	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
70	7e319969-b129-4ada-8efc-ff8cc00fc6c7	dagster/sensor_name	toy_file_sensor
71	7e319969-b129-4ada-8efc-ff8cc00fc6c7	dagster/run_key	show_run_key:1606840644.290511
72	7e319969-b129-4ada-8efc-ff8cc00fc6c7	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
73	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	dagster/sensor_name	toy_file_sensor
74	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	dagster/run_key	bxxx:1607635580.3826091
75	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	.dagster/grpc_info	{"host": "localhost", "socket": "/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od"}
\.


--
-- Data for Name: runs; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.runs (id, run_id, snapshot_id, pipeline_name, mode, status, run_body, partition, partition_set, create_timestamp, update_timestamp, start_time, end_time) FROM stdin;
3	0fad30dd-aad6-47fa-9dcd-6469853b997e	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bx_new_run_4"}}}}, "run_id": "0fad30dd-aad6-47fa-9dcd-6469853b997e", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bx_new_run_4:1610388763.2417717", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:00.158102	2022-03-24 14:36:03.715049	1648157763.506446	1648157763.715049
4	985a9b0c-8896-44a7-a2fa-c5d824612d87	98186006cacd1a0524d01ea9e57d7d6e8d8f647f	unreliable_pipeline	\N	FAILURE	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "efeedead55de984ed179dce0ddad72ccb7fa0102", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "unreliable_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "unreliable_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "unreliable_pipeline", "pipeline_snapshot_id": "98186006cacd1a0524d01ea9e57d7d6e8d8f647f", "root_run_id": null, "run_config": {}, "run_id": "985a9b0c-8896-44a7-a2fa-c5d824612d87", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.FAILURE"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", ".dagster/scheduled_execution_time": "2022-03-24T21:36:00+00:00", "dagster/partition": "2020-01-05", "dagster/partition_set": "unreliable_weekly", "dagster/run_key": "2020-01-05", "dagster/schedule_name": "backfill_unreliable_weekly"}}	2020-01-05	unreliable_weekly	2022-03-24 14:36:00.488523	2022-03-24 14:36:04.428343	1648157763.918213	1648157764.428343
2	05c741a7-30be-45b4-8e76-cab4a81f0c67	0511736ffdf5e6f8f6b7b7df0f33c96549945286	longitudinal_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "1a43d1893ac10ac0b3f64d7b090ca56078a6c654", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "longitudinal_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "longitudinal_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "longitudinal_pipeline", "pipeline_snapshot_id": "0511736ffdf5e6f8f6b7b7df0f33c96549945286", "root_run_id": null, "run_config": {"solids": {"ingest_raw_users": {"config": {"partition": "2020-01-01"}}, "ingest_raw_video_views": {"config": {"partition": "2020-01-01"}}, "train_video_recommender_model": {"config": {"partition": "2020-01-01"}}, "update_users_table": {"config": {"partition": "2020-01-01"}}, "update_video_views_table": {"config": {"partition": "2020-01-01"}}}}, "run_id": "05c741a7-30be-45b4-8e76-cab4a81f0c67", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", ".dagster/scheduled_execution_time": "2022-03-24T21:35:00+00:00", "dagster/partition": "2020-01-01", "dagster/partition_set": "ingest_and_train", "dagster/run_key": "2020-01-01", "dagster/schedule_name": "longitudinal_demo"}}	2020-01-01	ingest_and_train	2022-03-24 14:35:58.863734	2022-03-24 14:36:14.256851	1648157761.969267	1648157774.256851
1	5957b6fc-9d66-4796-9657-26a6011c846a	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bx_new_run_3"}}}}, "run_id": "5957b6fc-9d66-4796-9657-26a6011c846a", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bx_new_run_3:1609955736.963252", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:35:58.637207	2022-03-24 14:36:01.95924	1648157761.760726	1648157761.95924
5	a840bf6c-1673-44d0-a2b0-691b44b081a9	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bx_new_run"}}}}, "run_id": "a840bf6c-1673-44d0-a2b0-691b44b081a9", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bx_new_run:1608060793.3515544", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:01.866695	2022-03-24 14:36:05.530534	1648157765.355311	1648157765.530534
7	af921bac-0b18-4a9a-a016-35dfd637cfda	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "foooawoiefj"}}}}, "run_id": "af921bac-0b18-4a9a-a016-35dfd637cfda", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "foooawoiefj:1645197413.2837281", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:05.43216	2022-03-24 14:36:08.930813	1648157768.759553	1648157768.930813
14	d7252513-c700-4a9f-9df2-c33632d65882	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "a.out"}}}}, "run_id": "d7252513-c700-4a9f-9df2-c33632d65882", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "a.out:1605833207.4776378", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:17.10068	2022-03-24 14:36:20.464801	1648157780.279676	1648157780.464801
6	29455cbf-9168-4c9b-9d6e-4c0965912580	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bx_new_run_2"}}}}, "run_id": "29455cbf-9168-4c9b-9d6e-4c0965912580", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bx_new_run_2:1608060796.9405777", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:03.609196	2022-03-24 14:36:07.233694	1648157767.057814	1648157767.233694
8	d1586a5f-6ef4-433c-93bd-0dfc791c2eeb	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "demo.1"}}}}, "run_id": "d1586a5f-6ef4-433c-93bd-0dfc791c2eeb", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "demo.1:1606341124.944769", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:07.042175	2022-03-24 14:36:10.549828	1648157770.376353	1648157770.549828
9	5f16f06d-f9f7-42e1-aac3-fb0d8bd07977	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "boopppp"}}}}, "run_id": "5f16f06d-f9f7-42e1-aac3-fb0d8bd07977", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "boopppp:1607487853.6962564", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:08.751187	2022-03-24 14:36:12.216715	1648157772.032331	1648157772.216715
22	7e319969-b129-4ada-8efc-ff8cc00fc6c7	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "show_run_key"}}}}, "run_id": "7e319969-b129-4ada-8efc-ff8cc00fc6c7", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "show_run_key:1606840644.290511", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:30.428949	2022-03-24 14:36:33.915583	1648157793.672495	1648157793.915583
10	c1a1a6c7-3930-4c61-8ecb-b7c937d365b7	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "blawiejfoj"}}}}, "run_id": "c1a1a6c7-3930-4c61-8ecb-b7c937d365b7", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "blawiejfoj:1647625969.2538514", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:10.456374	2022-03-24 14:36:13.921112	1648157773.753162	1648157773.921112
11	8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "b.out"}}}}, "run_id": "8c4ba7f7-ebf6-4e46-9d28-70d03f5d20cd", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "b.out:1605834003.363826", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:12.068516	2022-03-24 14:36:15.580854	1648157775.408584	1648157775.580854
13	2c5beeba-84cc-493c-a306-784585dba96b	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "show_run_key_2"}}}}, "run_id": "2c5beeba-84cc-493c-a306-784585dba96b", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "show_run_key_2:1606840685.1579385", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:15.400354	2022-03-24 14:36:18.859833	1648157778.677548	1648157778.859833
12	a7a404ed-9c84-476b-b55e-ecbff0d2f019	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "show_run_key_3"}}}}, "run_id": "a7a404ed-9c84-476b-b55e-ecbff0d2f019", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "show_run_key_3:1606942458.8674", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:13.690238	2022-03-24 14:36:17.194858	1648157777.015557	1648157777.194858
15	b2a21899-8713-4ae4-9bdf-c180dc95ca82	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "boop"}}}}, "run_id": "b2a21899-8713-4ae4-9bdf-c180dc95ca82", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "boop:1607484774.6155019", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:18.807174	2022-03-24 14:36:22.123932	1648157781.914741	1648157782.123932
16	e4d94f86-5510-42dd-8460-8828fbaabbc4	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bxxxxffff"}}}}, "run_id": "e4d94f86-5510-42dd-8460-8828fbaabbc4", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bxxxxffff:1607996899.666524", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:20.411958	2022-03-24 14:36:23.779701	1648157783.571745	1648157783.779701
17	e987996d-6f32-415c-97ea-56125087b43b	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "blahfjfjf"}}}}, "run_id": "e987996d-6f32-415c-97ea-56125087b43b", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "blahfjfjf:1606840555.9826365", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:22.024304	2022-03-24 14:36:25.480893	1648157785.227791	1648157785.480893
18	9dcab6b5-5e62-4228-a274-7602ebcb7231	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "boop3"}}}}, "run_id": "9dcab6b5-5e62-4228-a274-7602ebcb7231", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "boop3:1607484790.7801318", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:23.669279	2022-03-24 14:36:27.11929	1648157786.861561	1648157787.11929
19	aaaa992a-c6c5-44d1-85c0-043567df20d5	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "booppppppp"}}}}, "run_id": "aaaa992a-c6c5-44d1-85c0-043567df20d5", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "booppppppp:1607487856.5426033", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:25.327485	2022-03-24 14:36:28.812516	1648157788.565619	1648157788.812516
21	4e3a6874-d806-486a-a4b7-aa8cc8674aba	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "boop2"}}}}, "run_id": "4e3a6874-d806-486a-a4b7-aa8cc8674aba", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "boop2:1607484775.9602463", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:28.732966	2022-03-24 14:36:32.214194	1648157791.962374	1648157792.214194
20	851b169d-2742-4b92-a035-7fca78d0f3d0	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bxxxxf"}}}}, "run_id": "851b169d-2742-4b92-a035-7fca78d0f3d0", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bxxxxf:1607635587.0286214", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:27.030667	2022-03-24 14:36:30.512649	1648157790.262074	1648157790.512649
23	fbcac7d2-0065-43e6-b2bb-b7b3142e3519	259222410d3088da9661ed088b7444ecd910032f	log_file_pipeline	\N	SUCCESS	{"__class__": "PipelineRun", "execution_plan_snapshot_id": "9261c860c16bbeaae35488be2e0485bba78bc653", "external_pipeline_origin": {"__class__": "ExternalPipelineOrigin", "external_repository_origin": {"__class__": "ExternalRepositoryOrigin", "repository_location_origin": {"__class__": "ManagedGrpcPythonEnvRepositoryLocationOrigin", "loadable_target_origin": {"__class__": "LoadableTargetOrigin", "attribute": null, "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "module_name": "dagster_test.toys.repo", "package_name": null, "python_file": null, "working_directory": null}, "location_name": "dagster_test.toys.repo"}, "repository_name": "toys_repository"}, "pipeline_name": "log_file_pipeline"}, "mode": "default", "parent_run_id": null, "pipeline_code_origin": {"__class__": "PipelinePythonOrigin", "pipeline_name": "log_file_pipeline", "repository_origin": {"__class__": "RepositoryPythonOrigin", "code_pointer": {"__class__": "ModuleCodePointer", "fn_name": "toys_repository", "module": "dagster_test.toys.repo", "working_directory": "/Users/prha/code/dagster"}, "container_image": null, "entry_point": ["/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8", "-m", "dagster"], "executable_path": "/Users/prha/.pyenv/versions/3.8.7/envs/dagster-3.8.7/bin/python3.8"}}, "pipeline_name": "log_file_pipeline", "pipeline_snapshot_id": "259222410d3088da9661ed088b7444ecd910032f", "root_run_id": null, "run_config": {"solids": {"read_file": {"config": {"directory": "/Users/prha/dagster_sensor_data/", "filename": "bxxx"}}}}, "run_id": "fbcac7d2-0065-43e6-b2bb-b7b3142e3519", "solid_selection": null, "solids_to_execute": null, "status": {"__enum__": "PipelineRunStatus.SUCCESS"}, "step_keys_to_execute": null, "tags": {".dagster/grpc_info": "{\\"host\\": \\"localhost\\", \\"socket\\": \\"/var/folders/ls/p35278613w573s8j1fn7_c4m0000gn/T/tmpvll1e8od\\"}", "dagster/run_key": "bxxx:1607635580.3826091", "dagster/sensor_name": "toy_file_sensor"}}	\N	\N	2022-03-24 14:36:32.123911	2022-03-24 14:36:35.609901	1648157795.369412	1648157795.609901
\.


--
-- Data for Name: secondary_indexes; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.secondary_indexes (id, name, create_timestamp, migration_completed) FROM stdin;
1	run_partitions	2022-03-23 19:49:42.829118	2022-03-23 19:49:42.824609
2	run_start_end_overwritten	2022-03-23 19:49:42.854449	2022-03-23 19:49:42.851213
3	asset_key_table	2022-03-23 19:49:42.937728	2022-03-23 19:49:42.934182
4	asset_key_index_columns	2022-03-23 19:49:42.95131	2022-03-23 19:49:42.947981
\.


--
-- Data for Name: snapshots; Type: TABLE DATA; Schema: public; Owner: test
--

COPY public.snapshots (id, snapshot_id, snapshot_body, snapshot_type) FROM stdin;
1	259222410d3088da9661ed088b7444ecd910032f	\\x789ced5deb73dbb811ff5738eab74ee210244110f9e6cba39736b56f62df743ae70c078f85c5862255924ae266f2bf17e0430f5b92215a94959c3d635b2481c562f7b78b5d0084be8de258a4ac2ce378f4d219fd964c214d32b8c8d8b41ce7d5e899331279a692ebb8146398b0b8ec9ebc74beadd67d5597bba88b2dd767691a7734cced98dfc49fe0a626709add6c22747933add930242494a248a6559267ba40364b537d13b2d924feccd219948b9b2a81542e5d5f279f218b33360143d934a76f36adcfaf924cb64cd4246ff1f00ffdf8e4f4ecdfa3efba6c2958ca8ab8add2b651e952f194156c62fad5356e8a9f1605bb39b918b3299c0448820b9e249c60ec0518b90863e972c978443c5f840a04489fef2e8fd1fba4ac9c5c39bd9aeb25c9f65e27c89eed5a49fec387d39d64ffc76847463e2e69aa2a92ecfae11a68c8ec4fb2737a4349ac69a096c42f799ef69040bfde36ad2dfa3bbfb4e8e7c5abd3f7a71fd674745dad8bba445def97f3f3f775adcd76fb36cdd9460fb77f2134cd2da4b0b81e500c6fdf9f9f5ede238777d901a5601a5bc8a0bb1a5002efceeeeb7f53f8f74c77ecc440f3f905a420aabc38e180254611f72944210b7c8195072098c27e24900a052108714c0f38baad7a8e3db0be93f8e3dfcfde9d9fede6763a6bdf9db58fb7b5539bcca28fd275994fc08f5c227d22a80aa910a147291101c32a60888480857f14eae9cbfbe0fa99fba1dd79bba3206dcf8b2e324a28e59420893c2680b8cc9351e4fa228af46fe80788489778f828d4d38ff3c195d33ac8dd39bba39a66f45ff411dcc0044854526a74cdb8873c370c7ccc3dcf0b8850da4c232f3c0edfd69bf9c115b488da7667aed15157cd5538208849e13119a140226d789206e029467ca195aa550b2c200329e48fb544df9ac70baa8acdd22a9e16f9e74482914c55cc60e9494d3d6665fc9f32cfe2b22a0ca56fdf37b294947101ff9d25454d4cb1b434d4ba5841e5c5a7128acf508c3ae977d868827fcc2285948724273e08ae18e601b884530652a0c8c702140265347a7cbd2ba7ec4bb6be6392f994f90018421e7057fa1ec65c81a2387451445da6a4f6cd2e1d7dff788f0ded0c2e5b8379f3fecdabcbf375f1d8bdf9f29c29c415472161c0a84b2297b190504cf5275710c46524420c3a97f3fe3c889749c978aa1f3d1016c78877c8f6d2355bc45b83eb90887fe490a81fe23b456e8345db92052c5a8c75a830343678778e7dedd7a5f203cf8f9074a58b75aae087dab14b41a9e034d471a8d71bed83f66b9a884f29fc8c3dab89ddee988953ad4d73efe1f53e4cf39173fd27d37c32cd614cb39e7fb1b6cdbdcf1bedc3361f79a2e7c9369f6c7318db6ce6deac8d73ef9386fb30ce479e487a32ce27e31cc638dba93d6bebdcfba4e45eac137b8af9ccb4ed2349b1a72fc1f0a57c06547a41440826c171cdb13c59e7a359a735d86d717548b02b4f41289514a1cb100d088b540444e8b1923017793c206e88b9089ec0fe04f663edd9daa1c86c62b3364d6b2b38a8694acfe384d328e44c87ad34623a9d0c21f481442a08a4c4e02bfdf1a84cd36a3efcaadd3b796558bf1a15a0c30628dbab76d2bbbefaae7f7ace9d2799614b4059ae87bc6098baa1a4ccd54af674fa1e0010490397498c2926cc2cf348c4875d19b8258909fb6ab6848a59514056999bee336720014d3457c95611e9608c101aba32c2a0872d8c0995842157ff21084310040233a4c80e76660be943d859dd4797f380e2c05588b891140afb66bd830a8d00049c514ab1eb013aae546cd045a7248f272c63d79b969049e04340a88b228c05f702ac03762943df070f11ae849627438859a0623705d842e2f2c3bb5797f1c5afa7bfbde90f0b6be8ff70b0e8e7647a62a9716eeb71043ae015fac7d33ec10db90a3c02940b5adf887c5f790c7828034b1c596becb0380a101341449562581114491e6a4e38d3fe2ea08a47210b3dcd1bfae17074357a77f6f6fc6ad41318697e1da7f019d24d3308030eba5723c9aecb0a8adedcd7ff7b4e7dec068bc38255ea4434083c9da1fa7ec8284480038a180bb11b519db132c05c82382ab00e9a59487ddb042e377b86e9a04cab24858723d4160b0745a8cf19e32844a18e1f85624ae7653842087404e2e310214f49e2fba2c7bb428f3f2ccf5da219733bf76a0666a3a5e6dedc6f0d311e5bfb243b0059abeab00002e209a9bb8599a4e00b7029c7111582e95041a7223e854012778865d198a5092bebdbdf46659e2635a446f9b4acbb7318902db2e236b2ebbb33ed2b88595de13696764ef58e72e79d36469d006dc88b81eb0833c0d8159eebea5053272f3a43513a62453ade04b3532e409888a1a70e1699dac394594099cf0a0d8af5ddb5ced08e72346c2d6d6dcf38f5118f02e446be0c222402cfa342121c4541a87b1c12934a68af67ebf26c9dcb415dde70efd7fe3051dd1ac06ba21b5d97f5428d1d2cf6fde6ef9e6061fb26c04f018bd19bafd3341149e54c72394ba174aadc991690e64c3a49e654637016ef4e9c8cee85505b376ec9dd597d587e3fd91226b60a392c4c6c57867e0a9858ada3b16afca0d4ca5aa407553476031c794ae851d075a380b108b8429c020f91f659a14ba51fd1688889f06123e341c1b035a1b24da18f236ebaede1f259359d559b3cdb6e239b9d615843f0a08661bddef1f37a40bb6904ab15f7dd447a50455342b92f3d83d940f9c0a907d46476822a1e880883020a0cffccd39f77d68859f1098ab8ca356379b9714671d834777529aa778e5baf6e6d8cf9addf7db343b835960e8a70eb7cf7698c5f818e8ef3cda4fafa61de7ad4b2438eb58e0e8a1cebdd32c7e41b2dfdcba117bead7d831d60ac557350c058bf9d3c1060ac4467cde4414567bd31e247b335b7ef4eb5950d2bb78daa7e8ff64f15811c3a5d6c7974c6f917a79cf17601094a8715e0083d3c56204f9cd70dd97a66ad3ea8e3e42afbd718b2a5793527299db2a605f299fe54c58b6771371bf7254953876bc22cd532d797d5d801fd078a9757d95feb99ba5b936f4e6a4e194c94d375d6e1374ebbafb2add19434372b96643a68adeffe3de7a65a52395f98a6a249eabaaac8270e6b6b98faddaa6b36aeaa69f9f2c50b998bf2647a538df3ec242fae5ff82fd28417acb879b1bca752377232ae26e95f4ca3f0b52a9fb34c3e2f2b5654cf27a02b37ab12f79c78628ac74df18dc8b13ea9c46e40b1f63f87f58ab68b6ec7e415074fc37524bd212cb55e7fb70485adf80f058abe27928eee55757bbd7a08e3d251a32bb9af6d777b1ec568c474f6b76da7317e37cf5a1715d7650ccbda010bd87226f1eba682e1efac2b7efb6ce215a27627142f91dd6a6b3229a729bbb97dfeb0863b9f25da85668bb1d9e24ce2a556570e25ae1d7ad11dd0fc90773e267a882b129dc2fe6f33bd5d5eefbad5efbbaafd63cb91b37d85dc9d2ab945ca5b8f99bd2de6254caf97f45e4eda1c4af45d5737c97ec351b77d853f3f32728bf4b71f6ffb10f13fe024cda1e43fefec2605ac3d63b7aff8db4321b7087fdbb9ba0f117def53328712fcbb6cabd8cff26abc7664ed2bfa8ee076f12f95b252c1d9f9e5afddc8b84e072d339b85d81658c3e526c96c0a39fa0a6611416c91cb3d61c64390f99013428702e7a2bb6bb5d0043b3035a1f34c54b3626b8c0353c82464e2e6a22bbd1ce2d493d071927dce05338a6a28ad09f52f4cc177f3729d8e936c3aabe29a99aee2c74697f246772711f1844da72b817bd3a44e06e2b573cbcde3f5d3ce5acfa37af6e1e3f7bb31ed6b98e4ceb4fd8a0a9dd9b24a67e0894ec5f399fe944fc031749c2453f933a78e6b7582dbed63b82ed874bcc294d9896c2ac41d4953ccfc67d72bf2ee6c2c9750d7df24c07fea02af416d358e66c3e55632efeb224b849a143f6ed6174cad4de9c09f6e87f65d885c8ec169fbe7883ccd75eb4e9b3f3a8dec4f46cfeea6967572387f1ba2a96fca755b46b72aec435b6808953dda02f726826b5e9fac8557e479d57dcd4bbfdda22b3a586b9b73bf926489e1aadce2156b6ff67a5174f51b6d26d3bc4c2a6de5734fb5e2dcd6dcde40fec8153ed0369e0d4db723c52d61ae75f4cdae9bad223eaf8b2c3bd4e5447d355fde248a76885a92eb3d4ba0f586d906d06da978ee03e6e3f3dd816a71f97f3d985a8f	PIPELINE
2	9261c860c16bbeaae35488be2e0485bba78bc653	\\x789cad525d4f1b3110fc2bc8cfa84a8ef011de508554a9aa88047daad0ca9c376585cf36f61a9aa2fc7776ef2e2441d0a7be59bb33b3b39e7d3100adb7a50098f30373f907dbca14c3c2db701d6c2af791cde181b19969695b2e9030172a8c4ef09c2b4a137b56cc106c872a4301528e2d96a25c0ac4643d3c84f81ca0b0650585eabd341325f41410ca380d48954d733c6f9a66369db8a3c9d999b3f39393293a79de9dce66336cdd7c3a991c354b1df0467d526f31087faa65c6040fb82ac011068f3af897c9681d2cc9a3b91d6145eb2f9ffcc5b500f42f865d52e51ead541157e4564f6b14740115c350bb414b25be4be3cbd7ab1f8b9f3797662dc80ed93acb1688b17bd38c953723fe65e8aa876d6c39fb5bd6c8c0ab8430baba082b6d6d32c958aaefb394682444262ca3cf9d195be9c516a57b17100cb26096d6171c4a6e25ead4ee17333e56cabbf721d954efa093e0b31c02fdc50d43bfa1444f0eee6d701e3f30a4dd6f43736f9b9d2f4f3663e0f1a6d6ebdb77a2e345ed51fadbf874a634b7233f0af9bf7b960a4b86aa250bac5f0124553407	EXECUTION_PLAN
3	0511736ffdf5e6f8f6b7b7df0f33c96549945286	\\x789ced5d5b73dbba11fe2b1cf5ad9338bc000491379f5c1ab7a97d26ce994ee7d8c3018185c586225592b2e366fcdf0b90d45d94215a92154799891352c002bbfbed627701c13f7a61c813561461d87b6bf57e8f8790c4295ca66c58f4b3b2f7caeaf12c95f14d58f03e0c58588c3f796bfd98effbae6a7759359bedcf92241cd3d0afc3e83efc06f71581d3f4be8dd0d7fb61350d4d4240c1f37858c659aa1aa4a324512f211d0dc25b968ca098be94312462e6f926be85344cd90034653d9c7a598f3e798a53d14ca222b930877fa88f4f4ecfffdd7b506d0bce1296874d97668c52b50a872c6703cdd77870ddfc34cfd9fdc96599c7e9cde67cf63ec7456965d29a23d389f3e6dd98f1057a4612f8f2e5742319fcd96b06b8d69d7ecbb2a48304ba715b8f36e577f268c0e7e5bbd3cfa75f5630baaad765d5a2eaf7dbc5c5e7aa573b1a3e26196bb59bed0ba11e6e2a85e9f30ec5f0f1f3c5e9d747e47096ee510a7ab0a90cc64f3b94c0d9f963fcd78dff481563271a9aaf2f21015e66f94904586027883c0a81cf90c7b174013893d80bb8237d4e88e34498eed167ce7b8e2d4c7d23f1877f9c9f5d9c6fe676c6d6bef9d4ae17b55399cc944761dbcc23e00536111ee154fa9473dfa59470c4b044cc213e60ee1d847abace7de7fa99f8a1cde7b6a42065cf5316192594469438c27119076233570481edf120507f7d0f3944d8c4c507a19e6e33dfb9721a07b9f9cc965453affe531ec146c4f53815946a5db3c8755cdb471e8e5cd745844b65a681eb1f866feb3cf99d2b681ab56d3eb95a47e36eb6c488384c709789c041c251862728025732e271a554a55a6088ec48217fae24fa517f3ca52ad92829c3619eddc602b464ca7c04339f54d4435684ff29b2342cca5c53faf1d03aa5b80873f8ef28ce2b62922585a6368e1564967f2b20bf85bc3796fe181b7d3684138459201de93a22221ef048321c21b049441908ee041ee6201d905aa387c75d316477e96ac604f328f30030f8118a6ce1b918471224c5beed04d4665228df6cd3dec3f52336b431b84c0de6c3e70fefbe5eac8ac71ecdc22693722219393e61c0a84d029b319f504cd5ff6c4e9c4804dcc720ecc8fd75102fe2824589fae889b03844bc43ba15d64c116f0cae7d22dec5c4b11d2a1d865dc517f684e3d89eeb284fc63dc01eb27da2fc193a28c48f15b90e16cd4806b068303645c5ed1222ea25d558d3c642dda7a69f39f83d404d6b1a2deb78843db5820be921d70b1c610b1baba4d0f3d5122e38a53ca2beca38dcce7e6da77c0d63fe2d8197c859456c91319d91189be6d613a96d98e63357758ea67934cddd9866556933b6cdad5708b7619bcf5cd23bdae6d13677639b7595d5d838b75e1ede86713e73c9f0689c47e3dc8d716e9a716ebdfcbc15ebc4ae641ed3637b8ea0d8558fa0e7253d0654b8282004137458d5b4a3753e9b751a83dd1457fb04bb7425f8420aeedbcca188b0400640b85a2b09b31d3742c4f671c47fa142da11ec3f1b672b97227d08ced8348dad60afa6295c3722110dfc88a9b095064ca5933ef81e9040222404064faaff1e94691aed7c5c35672faff4d4af7a39a8b0018ae6a9d9dea89e1ed49f8ebb2471aaa7c5a12856439e334c6d5f50662b25bb2a7d4700445064338131c584e90d3de144bbdd035a90c4807dd7474af928cf212df54bfb95b523010dd4ace2b52252c11821d4b74580412d5b18132a08736cf583381810421c3347920deccc14d2fbb0b38a47a578b50c33bdbb2db08d3d8224912e963cf21d10984602471060e7a08c6cbbde741118112b2014f1f259812ab8bfcc463907cdf6e36adf4cc2a63afffae5ecddd7f0f2d3e9ef1fbaebdd18db87a4774397d2c58b747422b5f75aed3e4045b45cfd7195d1db7e24914b80469c562f02cf932e83c817c81047c61adb2f8e90c3380aa8940c4be20422f2d54c22a61c1aa2320a7ce6bb6a6e87e53f4c7074d53b3bff7871d5eb088c24bb0913b885a4ad44b0c355f5aa27d84d5142de79f6d5bf1d6b1b9bc162af60f522c622c7777cb5fc72c9a40a6b71e038e023e161df715c2988e7f1e8a703abf26713c0698f3606af767b5a4bf5bb092a76e1ed8c356e06206355ed15400829a74d1ccf27d8262054781ca81949e251d77539f254aae4f9d4f90901b40b4818473e66903016fe7e21617a76f49020d13980ee7df83e4c621e97d62013a3040aabccac610e49c68415a756d9076b7adaf6a4f7287e9abe61436ea98a31fb8d364398982a64bf3031ad30bd089818d5e358d97f528c612cd2bd2a1a13975047702402825d1e050879c8a65428afe7712e7d15f2e35fea64a612561957ed9fa26d63b9ee55db94d0c813ae040e487a105117a82d5de02ae4415c656a122830cc5fb0b697ea6a2cff067958666a6259d19a46ecb6aa389fdd778c6d9a82c112071b9f0c3743b83196f68a7016e8a3231c510f09e4d3c046cc45b63e664f5c0e426226390d769233852c895951bdfed12bb224ae30dfcb8645c5ce7ef2aa691dfd696082efc0472bbde0c6c5e183fc5686ca3f6f206fa9a443042a85c3d8e6ae6dcb08238d6b477a2a4a736c01da56908309dfb55b88b370c05276a393e0aa0a38b3fbd0bd089843511585db765a5c8e0921ca3f307d48d267145c11d9c47739a78470e62160226087b9b9d8d8dd4ace98826c14301a20c2b14ad7b9ab74eb3b1e751820a6fe8dd4670e12860ed0d8d5ecd7019a32f9b339c09dc246adf1509461ceeec251d1ea1722c254048f998711c24a986ab9b431f65d6adb4ee0521f5346a9cfbb6f42ee8b473d5ea67ec2dd8be4b4cc995a076b2673e0d96000a950419ecada5754b85f00c3a3a16025d4d00d4b1d4bbe602e67c0bb1d5ecdbcbda95fddabb73766f2e8ed5f9955818d137733d8182b68afb0318ef10ea90eb0f9099deea791268177cb013cd3dabe19488cd5b15f90981eb9fa0941b2efc315c6c51243c098aa66af8031becc60478031129df124f72a3ae3c3373f9badd95d8f3bce1d8a5a34aaeacbd8bf544976dff1783347ab9fdd59c5286a6a8a50582c078be7a002717162bdafc956dbaad5bd3e2757e9bffa90ce6caa5a716115152d10afd4ffca70fa5938de8abd8b93c48a1461962899abc7b26f81fa01f9dbabf4afd536edc2ceab95e84b4963698d99b5a27bab59fa9b1e754bfdb254e9a0ca7eabb77fcf22dd2d2ead3ba6a82892aaafccb381c59a1ebafff8ec49da2fcb61f1f6cd1b91f1e264785ff6b3f424cb6fde786f9238ca597eff66f660ae1ae4a45f0e92bfe841e17b59bc66a9785d942c2f5f0f4075ae4b538f5c90a49b8775f356e4185f6c64b6a018fb9ffd7a45d33aec2179c5dd6e572960a95cab25e5353e8564080a53f1ef0b145d2f30ee3daaeae679feced6999b89e736034dd9ed7873ab16d3f9df1ebbbc75f174f7b35d57b838918da4b3a5ab078daf42ba56e1bd9644eddec38abc664b2d5e1cd65c2afebeeea0677f3e6ebe78b9f81c51b32bc667c8ae5592888b61c2ee172f1057ae221ac56af949a7718dc1a5e233a3cedd2a5e2d86f9f886f5a77ce96aa0c2833c6649fcbf767a9b7cbf7281ef15a85873bb7757218f2ff05d23e5b5377a2f8a79c61fac96f4562e35de95e8c7acb6c9bee556f1aec29fdccebb46faeb6f127f8af89f7069f1aee43f61b64d012baf33ef2afee6fedd35c25f7785f95344dff942e25d09fe2c5d2bf6f3acecaf8c4aba8a7e4c70bdf8675a19a9e0fce2eba77154b14a07cd64da85d8345831cb36c9b4856b5d05335df7d7c8e59110ed29c87cca65ccbb02e794dd955aa8831d18eab463c4cb51be36c681a1de264df9fde5b8f56c88536df184717a9b71a61555535a91265dea86679376631dc7e9705486d564c61daf6b5d8a7bc54eccc3011b0ee7929e7a4895484d30b06a9fbe6eb576275f69bd57d57196ca287b9aecc2867beb941737e6b731f1858e67bac58caee73a4e76d0fb10566f7af35cf32cd1689d617b3454d80285ba6c546a0a6dc35e541f7f62a9482666df74993998a412e665f9b4eefb2e4be5e9a3cceea13f5c3f6caef5470f1fcc0ffbf85985230656997527ddac3e27f1280e8e5a58efa99ea28b95a7390ced7f4e2fd70fcb859ff730c8ac61f3cbc4acb2cf4aab8807a344912bac8a6c5516d6c40afd1bae2aa55b4a32563598550d563d5766aa1bb3e6a389ad564ab72a733db1bef6c1bac9b3bbb2afc94d0ed1be2ee30154745473f6baece7d9e8a6af246e49a5c6ecae606a5e37832c162cb1f828bf85eabb4837391bf6e7849664e94d5c8e449cb2241c33a69bea7fd9cddcf23e0ee9d4cc2a1a6d78f8a76af01ee4da58ac3e2ebb96cce7aac90ca1ba1a1fd6874574afe590e317fd4ae93250356e1afe2c65d9991add6a4abd562dfb93deabe52a706576934bf4ebfebaddf888ef5a857d691a3d9bca9ef74b9c6d63af3803528939cfb272fc0b04bb9d039ed356ab254f3ca5f2377a66c59a90bd5a7ade4f9bcec6ebca3d0db322568e73ea7be782d915af5bc86f1d1e3fc1e9aed6a19b657d4198ebd28f66715d27e97a4d9ef5c2b3c5e4e59cbf4d2acdfa3b23e2b5a26ad6f91adf4dab70e23c2679a441fc73444947942c647c47ac1cb1d296283c49e1cbf9c4dc72f4681a7a04e61198cf01ccd5e9f8118d47343e231a5796225e1626ab72caf4f1ff8d2f52bd	PIPELINE
4	1a43d1893ac10ac0b3f64d7b090ca56078a6c654	\\x789ced58514fdb3010fe2b28cfd30483b6b0d78969d3c4a8c4f6345596492ed4c2b13ddb813194ffbebb246dd2d66929d0d2497d41c277f7f9bbf397cf491f23c662c99d632cfa78109dff8138f742aba1e4ea4a71e3c6da47ef0e226ebd4879ec1d33609d701e12ccf736070c4259a52d533c0382118a19ab63708e6a85125e70c96e95be57cc79ee2949e55262d00803522860aede8d09428e0e7b474783e37e9a26690ffae969dabf1e5c0f92f4303d3e8ecffabd93b3b393de87d33e6d302dbd236e5a61fd112d7b30ec161e1cf39a551c69e35f48e8069c6796dfb3dc61494572ba762712d0f817eecb486e12645c6532cfaf25b4565bb94dcc5b8e13a84216629d65a012b02cd309c868545373c4e5b163fe579840f3afa899dc97d9548a0d55235eece156289a1d6182cab30a9290be61e0fda7cb8be1cf1fe751819919788efc39131eb229b4cefd64a765bc2ecbb409bb84df603796f90703ac26f75dfb3112a4f04412165c2e4b29a13250435e80abb9b6f669e0874d168dc031cc018f3929970eaaa5e401d1453cbb68e1772e6c5b9e288d5c262cc3f3b2a843f1172615340aa7a548d898ab4442801045bf54c15637a1e91b6e41f95ad945319ac3ae751daa2c85dac900830d8125a7bfa94648d078c60449ffbc8662e79eb0bd6edf40b77367b0b67ae7ea5fa4e179ac8db6f6223d2fcbfeaad697971fe368a9aeea3bb771a0e3cf566717a84261245c95396eca8a75203d6382cbafad85414e09870643949b87828a53ae905fa3ee1d604f92adbc63a972ab1e9a1d336e0c1e637daaf57b4c8db3681b93b7105aed7c690808713fc125136cbf8ca15915e50b99f3167836cb27a4cd6d9de9c2916e7e14a3a275e1ae3ccffdbdbbad7b77cd47abebfa5d09b3fe2dbc1a721bfdfe9f7772873d4fc5f5cafe1cfe10dd01535ef88828ded29017d9ccb862788a7b2bdc96153e45c55dfe17ae5ddff43a7036d6cedede9e3ec9e02f6abb6572edefcb5db1ba194e21c30bce756f7b5bb6bd27a87b85f905119e6d8161b40d37386387a3e21f250b7518	EXECUTION_PLAN
5	98186006cacd1a0524d01ea9e57d7d6e8d8f647f	\\x789ced5d5973dbba15fe2b1cf5ad932804491044de7cb3346e53fb4e9c3b9dce758683d56243912a49397133feef05b868a70cd1a2ac44f64c628bc27296ef1c1c0087c08f4118b298e479180e5e5b83dfa38988a3445c2564928fd262f0c21ab03491d14d98b3911893306fbe796dfd58aefba62c7755165bac4fe2386cdad08f437a177e1577650367c95d5b439fef262519ba092e72964593224a13552099c6b17a2892e938bc25f154e4f3873212315ff87c13dd8a244cc858e8967577ea61d5fbec5394f09a88b2c9151afea1be1e9e5dfc7b70afcae68cc4240beb2a751f852a154e4846c69aafa6735dfc2ccbc8ddf06a442662e8012e6ce1704411848e07810d20e436e58406c871992f0513dca5bbcb63f031ca0b2b9556a7ee3a49b27ed608b263bf4692fff4e96c27d9ff39d891902f0b9a2ab228b979bc06aa66f627d9597b7d49aceaa094c46f691a779040376eabdee6fcce3e1af079f5e6ece3d9a70d8c6eaa75559628ebfd7679f9b1acd56eb7efe394b47ab8fd0ba1ea6e2e85f9e71ec5f0fee3e5d9e707e4709e1c500abab3b90c9a4f3d4ae0fce221feabc27f248ab1a186e6cb2b110b56a4d9900ac82108a88b45e013cf65503a423022a11b30207d86100014e2038e6ecb9e630fa4ef24fef08f8bf3cb8bdddc4e63edbb93f665553ba5c9cc79e4b64d5c24dcc046dc450c4b1f33e63b1823e611283d02902f20738f423d5d69ef5d3f333fb43b6d6b0a52f63c6791608431c50870e01026904d1c1e04b6cb8240fdf35d0f206e23071e857aba51debb726a07b93b656baaa946ff398fc2f674808439c65ad7843ac0b17dcf85d4711c0f31a9cc3470fce3f06d9d89ef5d41f3a86d77e22a1d35d56c093d0408670ee101f0385086c7b1271c4990cb9452956a05f1504f0af97363a3eff5d7f3562599c64538c9d2db880b2d99229b8a856fcad6439287ffc9d324cc8b4cb7f4e3be95a4280f33f1df6994958d4912e7bab526569069f63517d9adc8068df41b6c54c13f248104d2019c2257302a09a49eb011c54470060217322181905aa3c7c75d3e21df92cd8c71e262e20a01854f3d6a73d781904a2131f46d10609b48ae7cb38d07f75f1eb0a19dc1656a30ef3ebe7bf3f972533cf6e07c794614a092021f1141b08d029b101f6188d55f364380f280f950a8b99c733a88e7514e68acbe7a242c8e11ef22d90b6ba6883706d72111ef40046c802520d0517c41970360bb0e509e8cb902ba9eed23e5cfbca3427ca3c86db0a87b3280458db1392a6ed710510da9c69a3616ea2135fdc4c1ef116a5ab7d1328e53e8aa119c4bd773dc00709bdb504d0a5d5f0de19c61cc28f6d58cc3e9ecd77ae56b12b1afb1f815392b1b5b654ccf488c4d73ef13a97d98e613afea3c9be6b369f6639ae54a9bb16dee7d85701fb6f9c44b7acfb6f96c9bfdd866b5ca6a6c9c7b5f1ede87713ef192e1b3713e1b673fc6b9eb8c73efcbcf7bb14ee848e212ddb70b38868efa28345dd2250273c70b1082c83baed5b467eb7c32eb3406bb29ae0e0976e948e173c9996f13803d44021908c4d45889880d1cea21db87949dd042da33d87f36ce360e453a5dd1d8348dade0a0a6c91d87228a039f1215b6e280a8e9a42f7c57a0407a1ee750b852fd7954a669b4f3715d67c95e6bd2af0799506183c8eb4ff5f646f9e95efd74dc2589124d161379be19f28c406cfb1c135b29d951d3774f08c4b167130e218688e80d3d0e68bf7b402b921893ef3af9974db34c24857e68bfb07a12d05851156d15910ac610c2becd0328d4b00521c21c1160abff1080c2f33c06099068073b3385f421ecace451295e0dc344ef6e73684317791249074a467d2038c494432a02088ecac8f6eb4d578141492e421eade70a94c1fd553acd98d06c3facf6dd246caaf3cf9fcedf7c0eaf3e9cfdfeaebbde8db17d4c7a3774295dbc4847275279afcdee43a88896a91f4719bded53e9394860ca70f920705de910417dee19e2c8586387c5910708f3022c2581128180535f51428972681e9634f089ef28da8ecb7f98e0e87a707ef1fef27ad01118717a13c6e256c46d4b043d8eaad7034e6ef242649da92f7f775cdbd80d160705ab4b09a1c007be1a7e99245285b5300040f81e77a10f802339725dd6e1a59aa7777a33c0698fd68057bb3dada5ead90c157d783b638d9b01c858550705507f6f65fdb4d1522672d5e81a26765ef43183c5bedf17db132c3c359623e0fa08da4870356b0a14502572b1e338cc73d50cdaf531382e58f49aa3b7cd531807c486903015fe6121619a527c4c90e8ec2906efbe4fe2884585354ef93416b955a4d62413714ab81525563112d63c097b3878103f75ddb06e6e6d716bf145474398982ae4b030315d78fc256062b44c4b8ad1a3424f63911e54d1be8f91f0b0071ddb0112fa940520d0eece95b6f6813654632305ac074587248e485e3efe31c8d3382a553f482779c9ce61c2d38c1465146a0fdd5ee6da084b1020d7c60ef1d45c5b4d93898f00653e900146b60a1ab832f9e04816f057594ba7c5645ab4b9b9dd221f332b31c6e361ad444d1f3015be0330068c21ac22020285ef23eeb98213c254c8e8ba7d2486f46b25fdc267b365943b40cf70df0d5807853b4698badcd1ac78d215143b02dbd2114c4d983d164021055664f631281c2b94c724fb2ab2b048156169deba08d5ef9ed4f2da70c7e1aa5e6e6e9d191bbf57648670632c1d16e11cd91272c15ce628e624b73d257bcd6e80999aa205aef0024cfad866388ab067799f772106eafc2aabc2c1e610c878443fe486ee5e584ea72defedfeb22ca7c9a9293917cabf9d1acfd1f713e3b81865e2d4905d7c4b8f99e3ae6c4d934ca80156c549aa2992adef00ec16771b0639a6e1c441831ce630881052211cd16f41f904ab890bb591ef30861162c4f504e10139aa307e7773e89e8a96866392909bd6e3374c57f0cd4062ac8ec382047ac416126005da0011ea28cb7708672ca0dc8680498044a0e8fc5523e1793ee2e3c024be0b362d2bb44dac8c93ec8ed2afc6e98d3294968c444105911e8436736c5b52e8e9191e90ae7400b0b9d0b3460f40d4fb2039b7e87aa05c7213dd67cc79995cd796b16a6ad73d33afa760eb6caf040b3af3424f5c8c0aaa70dfa85c19249b958cbe1b952b0332b392df52a372ab71c1e3acbdf6561bf1601c0c180e1ba60efab0c386699af64f185b1c3a21d37889cc1030a6aa3928608c0f40ea093046a23326f2a0a2334ed8fdd96ccdeefa8ac45222f5aa519507b89cd442fca137d36a1aad51facdcaa7b48e9f456e914c582c136aece543eb6dd56c9973539e0538bc4efe3512c942c68d15e5565eb625f80bf55711cebf0b9b3c9d6f511c5b54354c622573f5b1185942fd27b2d7d7c95fcb1c9e95b41c2bd6079947d26a98b5e89d558707758daaa47e58902889929bf2e9df53aaab4585f58da8565493aaaeccd2b145ea1aba7e93af9a8c8a6292bf7ef58aa72c1f4eee8a519a0cd3ece695fb2a8e6846b2bb578b2ff3a84e86a3621cff45772abe17f94b92f0976530f2722c54e52aa07820f0d0c5c3aa782b728c0f43341b508cfdcf61bda2696ac54fe715876e578fa20c6f151486e772ec26d2c32ada7472794c8aee3db142cd405a56ac8d53d40d41612afe4381a2ebed168307555d7f5e3ed07fe1da8aa5bd7e53763b1eebafc574f1b7874ef65f7df5efc9ceb25e256427e9ece95c6ae37332bfdceb3581e6bd93b06c5eb3a5a21426b6dc0df4b6aaa0a9bf688aafde11b4d4a8d94d410bcd6e55128ff2494cee56ef0152ae824e23156724f3016621d5aa4d130bbd2e5d0e54463d597351d263dec81fabe1288b481cfdafbdbd5d0edf58e17b032ab65cfdd255c8cded0e5ba4bcf5ba9755312ff883cd92decb8d177d89be61b54df62d57ce7415feecea862dd2df7ecdcc63c4ff881b2dfa92ff8cd936056cbceba6abf8ebcb19b6087fdbfd368f117de7db2afa12fc79b255ec176931da189574157dd3e076f12f943252c1c5e5e70f4d54b149073531ed42ac0b6ca0b24d326de15a57c1ccc7fd2d727920447b0c321f7353475fe09cb3bb510b55b023267ada3165c534db1ae3888948b848d8dd55537a31c429373ec228b94d19d18aaa5ada304dbad205cf67e51a1d47c9645a8425312d15cf7589052a962ace5e049f8e6b08f03bf52c62214b632dc185c9d274a2f8154a12555a776b8797e5d71f48c2e31914eb2aeb2f9356fc2fa500de7f2927520bb48cc964b2346fab6aa9b9e0ace67c3b6a43ab4d2ea582e9a05c615c5be03b09e9565959fb176f93b779e2e25dcb94dabba49b74d11317b4cea7dcbb6ce789a9272eddd25bee5fbc750eec890b572789ee5db6f36cdb1397aef68ffb976e9dd7bb0fd93e86b279faed03c3ce12b15feed726022a241da7d6a4bed35bdf4fcc4644fdc5ad2a0bc72a46a450244571b53748eaadbe69a63bd17b8094d0288e8abbf205ff9b8c4c466d3437bde882fa37b9598a959bf951ca45d9421b26fea90abc1572ebc4a64aa8dbdaccc7b2c84243156361953da96badc7ef277a78cf3a6a3e8f8455f3a70011a7aa77abde37b12ad90f072fd6b7544a6b6c1ed6f575b9260970abc23ed5859e4c654f7b2e4a5bdf1b12ae4b3167695a84b580bae5bc2d69abc58e674e2a4a224d57be65f65bbac6b7f3a28b535f968e27691e15ca23ccdcde92a7dcf0b8a5f9a7b2e7233aeda0a5ef7a0c6a17613dbecf7debe27ecbf2b6c7562cea10a0053d0b23f8364aaa81ff11a4cc47d605396f3d84a40e242ae3a94b8533cf345bf13118fefb00e1131e26608ca6167f318b447e1dbd9791d4fce3ff0107f99322	PIPELINE
6	efeedead55de984ed179dce0ddad72ccb7fa0102	\\x789ced99516fd33010c7bfca9467845ab4751d6f080d8110daa4c113aa2c2fbe6e561327d8ceb632f5bbe3739ca4591d464696f6c14f51e3bbf3df7f5f7e6ddcc7889038a14a1112bd3f8ace1f202e34cfc46542c595a0b9bacd74f4e628a252f3258db5223948c5950666e2b52cc00c82cdca241134052cc305c96516835298cb05d79c266425b27b4194a61a834491246630e739245c00516e36c2b17274369fce6793c92ca6319bd2c9c9bb633699023d83935376ca663067f3e5ecf8748913d4a977a82d13267f8ab735e464056b4574464a8d38f1cfa810d2cc49af134035d22e301380177d9fd9cbad04fb799915d25ef99dfdacf883bdc01d8868e1265158f5b1c3c92b13804e964ee4857e36fa0b4655298cde982924d1eb1c703118fd41ac71a8725b14a9d564a4c678e349ed4f324bb1ec45a14d5dbb182a08479796345150e9223bf512cec82d152cf154bdc2d1cfe5e09696caa79c4a10da6df3a6da8ccc4ae8ae59ab6c0aa734cfb9b8714b774de3ea54934a50456257566db995825bb7c1b98b5c6909346dcfefdb87d750b0d8609f54b79c3f2b2e9833008cdfcdec5fcdc0db8f17df2e7f7c3f8f507c0a9a32aa29e11a52ab7951cfff6c2b956be9d14bcd42cc036c1e75cdad4f9d365d3651d8478a9818d0dbada5085b9bea3c6edf94f0abe0729b22e6092e12465283076970c17f4395b119b61bed7e6cd773c8a99f71dcc2bff56833d1935d1d522452c8ec1796c10f012ff51375187829bf22f6ca1727a10d18e75000cc2880f1f66327605cf40b0053650e283200c6e395fb1978007cd9f991ba57d4ecaa6951c7d916a0330674bc3ddac51c17dc1f3955e2700a03703c56956f9287811c7cb9dd2b65ac8016586a7b025ac6404b473776c1a50eef8f972675489d01313eb3ca33ab03008c7dd5ddef918c55d0464c694f00cc2880f1f562275edc616b7fb8b8c4e11406b078acaa4fc90f002d7870bfdfc31814d0024b6d4f40cb1868e9e8c62eb8d4e1fdf1d2a40ea93320c66756f97fdc010006df69f70a182ba00d98d29c809751f0e2ebc44eb894c12f408b4b1c4ee17f6165abd97c7f9a87ce1ba3f37cceff5b1bfa32fbf7a4b7ca2b2da4d5ad8bcd1f06e69c78	EXECUTION_PLAN
\.


--
-- Data for Name: cereals; Type: TABLE DATA; Schema: test-schema; Owner: test
--

COPY "test-schema".cereals (name, mfr, type, calories, protein, fat, sodium, fiber, carbo, sugars, potass, vitamins, shelf, weight, cups, rating) FROM stdin;
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
100% Bran	N	C	70	4	1	130	10	5	6	280	25	3	1	0.33	68.402973
100% Natural Bran	Q	C	120	3	5	15	2	8	8	135	0	3	1	1	33.983679
All-Bran	K	C	70	4	1	260	9	7	5	320	25	3	1	0.33	59.425505
All-Bran with Extra Fiber	K	C	50	4	0	140	14	8	0	330	25	3	1	0.5	93.704912
Almond Delight	R	C	110	2	2	200	1	14	8	-1	25	3	1	0.75	34.384843
Apple Cinnamon Cheerios	G	C	110	2	2	180	1.5	10.5	10	70	25	1	1	0.75	29.509541
Apple Jacks	K	C	110	2	0	125	1	11	14	30	25	2	1	1	33.174094
Basic 4	G	C	130	3	2	210	2	18	8	100	25	3	1.33	0.75	37.038562
Bran Chex	R	C	90	2	1	200	4	15	6	125	25	1	1	0.67	49.120253
Bran Flakes	P	C	90	3	0	210	5	13	5	190	25	3	1	0.67	53.313813
Cap'n'Crunch	Q	C	120	1	2	220	0	12	12	35	25	2	1	0.75	18.042851
Cheerios	G	C	110	6	2	290	2	17	1	105	25	1	1	1.25	50.764999
Cinnamon Toast Crunch	G	C	120	1	3	210	0	13	9	45	25	2	1	0.75	19.823573
Clusters	G	C	110	3	2	140	2	13	7	105	25	3	1	0.5	40.400208
Cocoa Puffs	G	C	110	1	1	180	0	12	13	55	25	2	1	1	22.736446
Corn Chex	R	C	110	2	0	280	0	22	3	25	25	1	1	1	41.445019
Corn Flakes	K	C	100	2	0	290	1	21	2	35	25	1	1	1	45.863324
Corn Pops	K	C	110	1	0	90	1	13	12	20	25	2	1	1	35.782791
Count Chocula	G	C	110	1	1	180	0	12	13	65	25	2	1	1	22.396513
Cracklin' Oat Bran	K	C	110	3	3	140	4	10	7	160	25	3	1	0.5	40.448772
Cream of Wheat (Quick)	N	H	100	3	0	80	1	21	0	-1	0	2	1	1	64.533816
Crispix	K	C	110	2	0	220	1	21	3	30	25	3	1	1	46.895644
Crispy Wheat & Raisins	G	C	100	2	1	140	2	11	10	120	25	3	1	0.75	36.176196
Double Chex	R	C	100	2	0	190	1	18	5	80	25	3	1	0.75	44.330856
Froot Loops	K	C	110	2	1	125	1	11	13	30	25	2	1	1	32.207582
Frosted Flakes	K	C	110	1	0	200	1	14	11	25	25	1	1	0.75	31.435973
Frosted Mini-Wheats	K	C	100	3	0	0	3	14	7	100	25	2	1	0.8	58.345141
Fruit & Fibre Dates; Walnuts; and Oats	P	C	120	3	2	160	5	12	10	200	25	3	1.25	0.67	40.917047
Fruitful Bran	K	C	120	3	0	240	5	14	12	190	25	3	1.33	0.67	41.015492
Fruity Pebbles	P	C	110	1	1	135	0	13	12	25	25	2	1	0.75	28.025765
Golden Crisp	P	C	100	2	0	45	0	11	15	40	25	1	1	0.88	35.252444
Golden Grahams	G	C	110	1	1	280	0	15	9	45	25	2	1	0.75	23.804043
Grape Nuts Flakes	P	C	100	3	1	140	3	15	5	85	25	3	1	0.88	52.076897
Grape-Nuts	P	C	110	3	0	170	3	17	3	90	25	3	1	0.25	53.371007
Great Grains Pecan	P	C	120	3	3	75	3	13	4	100	25	3	1	0.33	45.811716
Honey Graham Ohs	Q	C	120	1	2	220	1	12	11	45	25	2	1	1	21.871292
Honey Nut Cheerios	G	C	110	3	1	250	1.5	11.5	10	90	25	1	1	0.75	31.072217
Honey-comb	P	C	110	1	0	180	0	14	11	35	25	1	1	1.33	28.742414
Just Right Crunchy  Nuggets	K	C	110	2	1	170	1	17	6	60	100	3	1	1	36.523683
Just Right Fruit & Nut	K	C	140	3	1	170	2	20	9	95	100	3	1.3	0.75	36.471512
Kix	G	C	110	2	1	260	0	21	3	40	25	2	1	1.5	39.241114
Life	Q	C	100	4	2	150	2	12	6	95	25	2	1	0.67	45.328074
Lucky Charms	G	C	110	2	1	180	0	12	12	55	25	2	1	1	26.734515
Maypo	A	H	100	4	1	0	0	16	3	95	25	2	1	1	54.850917
Muesli Raisins; Dates; & Almonds	R	C	150	4	3	95	3	16	11	170	25	3	1	1	37.136863
Muesli Raisins; Peaches; & Pecans	R	C	150	4	3	150	3	16	11	170	25	3	1	1	34.139765
Mueslix Crispy Blend	K	C	160	3	2	150	3	17	13	160	25	3	1.5	0.67	30.313351
Multi-Grain Cheerios	G	C	100	2	1	220	2	15	6	90	25	1	1	1	40.105965
Nut&Honey Crunch	K	C	120	2	1	190	0	15	9	40	25	2	1	0.67	29.924285
Nutri-Grain Almond-Raisin	K	C	140	3	2	220	3	21	7	130	25	3	1.33	0.67	40.69232
Nutri-grain Wheat	K	C	90	3	0	170	3	18	2	90	25	3	1	1	59.642837
Oatmeal Raisin Crisp	G	C	130	3	2	170	1.5	13.5	10	120	25	3	1.25	0.5	30.450843
Post Nat. Raisin Bran	P	C	120	3	1	200	6	11	14	260	25	3	1.33	0.67	37.840594
Product 19	K	C	100	3	0	320	1	20	3	45	100	3	1	1	41.50354
Puffed Rice	Q	C	50	1	0	0	0	13	0	15	0	3	0.5	1	60.756112
Puffed Wheat	Q	C	50	2	0	0	1	10	0	50	0	3	0.5	1	63.005645
Quaker Oat Squares	Q	C	100	4	1	135	2	14	6	110	25	3	1	0.5	49.511874
Quaker Oatmeal	Q	H	100	5	2	0	2.7	-1	-1	110	0	1	1	0.67	50.828392
Raisin Bran	K	C	120	3	1	210	5	14	12	240	25	2	1.33	0.75	39.259197
Raisin Nut Bran	G	C	100	3	2	140	2.5	10.5	8	140	25	3	1	0.5	39.7034
Raisin Squares	K	C	90	2	0	0	2	15	6	110	25	3	1	0.5	55.333142
Rice Chex	R	C	110	1	0	240	0	23	2	30	25	1	1	1.13	41.998933
Rice Krispies	K	C	110	2	0	290	0	22	3	35	25	1	1	1	40.560159
Shredded Wheat	N	C	80	2	0	0	3	16	0	95	0	1	0.83	1	68.235885
Shredded Wheat 'n'Bran	N	C	90	3	0	0	4	19	0	140	0	1	1	0.67	74.472949
Shredded Wheat spoon size	N	C	90	3	0	0	3	20	0	120	0	1	1	0.67	72.801787
Smacks	K	C	110	2	1	70	1	9	15	40	25	2	1	0.75	31.230054
Special K	K	C	110	6	0	230	1	16	3	55	25	1	1	1	53.131324
Strawberry Fruit Wheats	N	C	90	2	0	15	3	15	5	90	25	2	1	1	59.363993
Total Corn Flakes	G	C	110	2	1	200	0	21	3	35	100	3	1	1	38.839746
Total Raisin Bran	G	C	140	3	1	190	4	15	14	230	100	3	1.5	1	28.592785
Total Whole Grain	G	C	100	3	1	200	3	16	3	110	100	3	1	1	46.658844
Triples	G	C	110	2	1	250	0	21	3	60	25	3	1	0.75	39.106174
Trix	G	C	110	1	1	140	0	13	12	25	25	2	1	1	27.753301
Wheat Chex	R	C	100	3	1	230	3	17	3	115	25	1	1	0.67	49.787445
Wheaties	G	C	100	3	1	200	3	17	3	110	25	1	1	1	51.592193
Wheaties Honey Gold	G	C	110	2	1	200	1	16	8	60	25	1	1	0.75	36.187559
\.


--
-- Name: asset_keys_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.asset_keys_id_seq', 25, true);


--
-- Name: bulk_actions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.bulk_actions_id_seq', 1, false);


--
-- Name: event_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.event_logs_id_seq', 432, true);


--
-- Name: instigators_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.instigators_id_seq', 1, false);


--
-- Name: job_ticks_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.job_ticks_id_seq', 4, true);


--
-- Name: jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.jobs_id_seq', 3, true);


--
-- Name: run_tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.run_tags_id_seq', 75, true);


--
-- Name: runs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.runs_id_seq', 23, true);


--
-- Name: secondary_indexes_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.secondary_indexes_id_seq', 5, true);


--
-- Name: snapshots_id_seq; Type: SEQUENCE SET; Schema: public; Owner: test
--

SELECT pg_catalog.setval('public.snapshots_id_seq', 6, true);


--
-- Name: alembic_version alembic_version_pkc; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.alembic_version
    ADD CONSTRAINT alembic_version_pkc PRIMARY KEY (version_num);


--
-- Name: asset_keys asset_keys_asset_key_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.asset_keys
    ADD CONSTRAINT asset_keys_asset_key_key UNIQUE (asset_key);


--
-- Name: asset_keys asset_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.asset_keys
    ADD CONSTRAINT asset_keys_pkey PRIMARY KEY (id);


--
-- Name: bulk_actions bulk_actions_key_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.bulk_actions
    ADD CONSTRAINT bulk_actions_key_key UNIQUE (key);


--
-- Name: bulk_actions bulk_actions_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.bulk_actions
    ADD CONSTRAINT bulk_actions_pkey PRIMARY KEY (id);


--
-- Name: daemon_heartbeats daemon_heartbeats_daemon_type_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.daemon_heartbeats
    ADD CONSTRAINT daemon_heartbeats_daemon_type_key UNIQUE (daemon_type);


--
-- Name: event_logs event_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.event_logs
    ADD CONSTRAINT event_logs_pkey PRIMARY KEY (id);


--
-- Name: instigators instigators_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.instigators
    ADD CONSTRAINT instigators_pkey PRIMARY KEY (id);


--
-- Name: instigators instigators_selector_id_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.instigators
    ADD CONSTRAINT instigators_selector_id_key UNIQUE (selector_id);


--
-- Name: job_ticks job_ticks_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.job_ticks
    ADD CONSTRAINT job_ticks_pkey PRIMARY KEY (id);


--
-- Name: jobs jobs_job_origin_id_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.jobs
    ADD CONSTRAINT jobs_job_origin_id_key UNIQUE (job_origin_id);


--
-- Name: jobs jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.jobs
    ADD CONSTRAINT jobs_pkey PRIMARY KEY (id);


--
-- Name: run_tags run_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.run_tags
    ADD CONSTRAINT run_tags_pkey PRIMARY KEY (id);


--
-- Name: runs runs_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs
    ADD CONSTRAINT runs_pkey PRIMARY KEY (id);


--
-- Name: runs runs_run_id_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs
    ADD CONSTRAINT runs_run_id_key UNIQUE (run_id);


--
-- Name: secondary_indexes secondary_indexes_name_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.secondary_indexes
    ADD CONSTRAINT secondary_indexes_name_key UNIQUE (name);


--
-- Name: secondary_indexes secondary_indexes_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.secondary_indexes
    ADD CONSTRAINT secondary_indexes_pkey PRIMARY KEY (id);


--
-- Name: snapshots snapshots_pkey; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.snapshots
    ADD CONSTRAINT snapshots_pkey PRIMARY KEY (id);


--
-- Name: snapshots snapshots_snapshot_id_key; Type: CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.snapshots
    ADD CONSTRAINT snapshots_snapshot_id_key UNIQUE (snapshot_id);


--
-- Name: idx_asset_key; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_asset_key ON public.event_logs USING btree (asset_key);


--
-- Name: idx_asset_partition; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_asset_partition ON public.event_logs USING btree (asset_key, partition);


--
-- Name: idx_bulk_actions; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_bulk_actions ON public.bulk_actions USING btree (key);


--
-- Name: idx_bulk_actions_status; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_bulk_actions_status ON public.bulk_actions USING btree (status);


--
-- Name: idx_event_type; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_event_type ON public.event_logs USING btree (dagster_event_type, id);


--
-- Name: idx_job_tick_status; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_job_tick_status ON public.job_ticks USING btree (job_origin_id, status);


--
-- Name: idx_job_tick_timestamp; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_job_tick_timestamp ON public.job_ticks USING btree (job_origin_id, "timestamp");


--
-- Name: idx_run_id; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_run_id ON public.event_logs USING btree (run_id);


--
-- Name: idx_run_partitions; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_run_partitions ON public.runs USING btree (partition_set, partition);


--
-- Name: idx_run_range; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_run_range ON public.runs USING btree (status, update_timestamp, create_timestamp);


--
-- Name: idx_run_status; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_run_status ON public.runs USING btree (status);


--
-- Name: idx_run_tags; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_run_tags ON public.run_tags USING btree (key, value);


--
-- Name: idx_step_key; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX idx_step_key ON public.event_logs USING btree (step_key);


--
-- Name: ix_instigators_instigator_type; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX ix_instigators_instigator_type ON public.instigators USING btree (instigator_type);


--
-- Name: ix_job_ticks_job_origin_id; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX ix_job_ticks_job_origin_id ON public.job_ticks USING btree (job_origin_id);


--
-- Name: ix_jobs_job_type; Type: INDEX; Schema: public; Owner: test
--

CREATE INDEX ix_jobs_job_type ON public.jobs USING btree (job_type);


--
-- Name: runs fk_runs_snapshot_id_snapshots_snapshot_id; Type: FK CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.runs
    ADD CONSTRAINT fk_runs_snapshot_id_snapshots_snapshot_id FOREIGN KEY (snapshot_id) REFERENCES public.snapshots(snapshot_id);


--
-- Name: run_tags run_tags_run_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: test
--

ALTER TABLE ONLY public.run_tags
    ADD CONSTRAINT run_tags_run_id_fkey FOREIGN KEY (run_id) REFERENCES public.runs(run_id) ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--
