Nutrition d3.parsets
An interactive parallel sets visualisation for D3.js using the USDA Nutrition Data.
Parallel Sets: http://www.jasondavies.com/parallel-sets/.
Nutrition Parallel Coordinates: http://bl.ocks.org/2420080/.
An interactive parallel sets visualisation for D3.js using the USDA Nutrition Data.
Parallel Sets: http://www.jasondavies.com/parallel-sets/.
Nutrition Parallel Coordinates: http://bl.ocks.org/2420080/.
.dimension { cursor: ns-resize; } | |
.category { cursor: ew-resize; } | |
.dimension tspan.name { font-size: 1.5em; fill: #333; font-weight: bold; } | |
.dimension tspan.sort { fill: #000; cursor: pointer; opacity: 0; } | |
.dimension tspan.sort:hover { fill: #333; } | |
.dimension:hover tspan.name { fill: #000; } | |
.dimension:hover tspan.sort { opacity: 1; } | |
line { stroke: #000; } | |
rect { fill: #fff; fill-opacity: 0; } | |
.dimension rect, .category rect { stroke: none; } | |
.dimension > rect { display: none; } | |
.category:hover rect { fill-opacity: .3; } | |
.dimension:hover > rect { fill-opacity: .3; } | |
path { fill-opacity: .5; } | |
.ribbon path { stroke-opacity: 0; } | |
path.active { fill-opacity: .9; } | |
.ribbon-mouse path { fill-opacity: 0; } | |
.category-0 { fill: #1f77b4; stroke: #1f77b4; } | |
.category-1 { fill: #ff7f0e; stroke: #ff7f0e; } | |
.category-2 { fill: #2ca02c; stroke: #2ca02c; } | |
.category-3 { fill: #d62728; stroke: #d62728; } | |
.category-4 { fill: #9467bd; stroke: #9467bd; } | |
.category-5 { fill: #8c564b; stroke: #8c564b; } | |
.category-6 { fill: #e377c2; stroke: #e377c2; } | |
.category-7 { fill: #7f7f7f; stroke: #7f7f7f; } | |
.category-8 { fill: #bcbd22; stroke: #bcbd22; } | |
.category-9 { fill: #17becf; stroke: #17becf; } | |
.category-10 { fill: #1f77b4; stroke: #1f77b4; } | |
.category-11 { fill: #ff7f0e; stroke: #ff7f0e; } | |
.category-12 { fill: #2ca02c; stroke: #2ca02c; } | |
.category-13 { fill: #d62728; stroke: #d62728; } | |
.category-14 { fill: #9467bd; stroke: #9467bd; } | |
.category-15 { fill: #8c564b; stroke: #8c564b; } | |
.category-16 { fill: #e377c2; stroke: #e377c2; } | |
.category-17 { fill: #7f7f7f; stroke: #7f7f7f; } | |
.category-18 { fill: #bcbd22; stroke: #bcbd22; } | |
.category-19 { fill: #17becf; stroke: #17becf; } | |
.category-20 { fill: #e377c2; stroke: #e377c2; } | |
.category-21 { fill: #7f7f7f; stroke: #7f7f7f; } | |
.category-22 { fill: #bcbd22; stroke: #bcbd22; } | |
.category-23 { fill: #17becf; stroke: #17becf; } |
// Parallel Sets by Jason Davies, http://www.jasondavies.com/ | |
// Functionality based on http://eagereyes.org/parallel-sets | |
(function() { | |
d3.parsets = function() { | |
var dimensions_ = autoDimensions, | |
dimensionFormat = String, | |
sortCategories = null, | |
value_, | |
spacing = 20, | |
width, | |
height, | |
tension = 1, | |
tension0, | |
duration = 500; | |
function parsets(selection) { | |
selection.each(function(data, i) { | |
var g = d3.select(this), | |
ordinal = d3.scale.ordinal(), | |
dragging = false, | |
dimensionNames = dimensions_.call(this, data, i), | |
dimensions = [], | |
tree = {children: {}, count: 0}, | |
nodes, | |
total, | |
ribbon; | |
d3.select(window).on("mousemove.parsets." + ++parsetsId, unhighlight); | |
if (tension0 == null) tension0 = tension; | |
g.selectAll(".ribbon") | |
.data(["ribbon", "ribbon-mouse"]) | |
.enter().append("g") | |
.attr("class", String); | |
updateDimensions(); | |
if (tension != tension0) { | |
var t = d3.transition(g); | |
if (t.tween) t.tween("ribbon", tensionTween); | |
else tensionTween()(1); | |
} | |
function tensionTween() { | |
var i = d3.interpolateNumber(tension0, tension); | |
return function(t) { | |
tension0 = i(t); | |
ribbon.attr("d", ribbonPath); | |
}; | |
} | |
function updateDimensions() { | |
// Cache existing bound dimensions to preserve sort order. | |
var dimension = g.selectAll("g.dimension"), | |
cache = {}; | |
dimension.each(function(d) { cache[d.name] = d; }); | |
dimensionNames.forEach(function(d) { | |
if (!cache.hasOwnProperty(d)) { | |
cache[d] = {name: d, categories: []}; | |
} | |
dimensions.push(cache[d]); | |
}); | |
dimensions.sort(function(a, b) { return ascendingNaN(a.y, b.y); }); | |
// Populate tree with existing nodes. | |
g.select(".ribbon").selectAll("path") | |
.each(function(d) { | |
var path = d.path.split("\0"), | |
node = tree, | |
n = path.length - 1; | |
for (var i = 0; i < n; i++) { | |
p = path[i]; | |
node = node.children.hasOwnProperty(p) ? node.children[p] | |
: node.children[p] = {children: {}, count: 0}; | |
} | |
node.children[d.name] = d; | |
}); | |
tree = buildTree(tree, data, dimensions.map(function(d) { return d.name; }), value_); | |
cache = dimensions.map(function(d) { | |
var t = {}; | |
d.categories.forEach(function(c) { | |
t[c.name] = c; | |
}); | |
return t; | |
}); | |
(function categories(d, i) { | |
if (!d.children) return; | |
var dim = dimensions[i], | |
t = cache[i]; | |
for (var k in d.children) { | |
if (!t.hasOwnProperty(k)) { | |
dim.categories.push(t[k] = {name: k}); | |
} | |
categories(d.children[k], i + 1); | |
} | |
})(tree, 0); | |
ordinal.domain([]).range(d3.range(dimensions[0].categories.length)); | |
nodes = layout(tree, dimensions, ordinal); | |
total = getTotal(dimensions); | |
dimension = dimension.data(dimensions, dimensionName); | |
var dEnter = dimension.enter().append("g") | |
.attr("class", "dimension") | |
.attr("transform", function(d) { return "translate(0," + d.y + ")"; }) | |
.on("mousedown", cancelEvent) | |
.each(function(d) { | |
d.y0 = d.y; | |
d.categories.forEach(function(d) { d.x0 = d.x; }); | |
}); | |
dEnter.append("rect") | |
.attr("width", width) | |
.attr("y", -45) | |
.attr("height", 45); | |
var textEnter = dEnter.append("text") | |
.attr("class", "dimension") | |
.attr("dy", "-25px"); | |
textEnter.append("tspan") | |
.attr("class", "name") | |
.text(dimensionFormatName); | |
textEnter.append("tspan") | |
.attr("class", "sort alpha") | |
.attr("dx", "2em") | |
.text("alpha »") | |
.on("mousedown", cancelEvent); | |
textEnter.append("tspan") | |
.attr("class", "sort size") | |
.attr("dx", "2em") | |
.text("size »") | |
.on("mousedown", cancelEvent); | |
dimension | |
.call(d3.behavior.drag() | |
.origin(identity) | |
.on("dragstart", function(d) { | |
dragging = true; | |
d.y0 = d.y; | |
}) | |
.on("drag", function(d) { | |
d.y0 = d.y = d3.event.y; | |
for (var i = 1; i < dimensions.length; i++) { | |
if (dimensions[i].y < dimensions[i - 1].y) { | |
dimensions.sort(function(a, b) { return a.y - b.y; }); | |
dimensionNames = dimensions.map(function(d) { return d.name; }); | |
ordinal.domain([]).range(d3.range(dimensions[0].categories.length)); | |
nodes = layout(tree = buildTree(tree, data, dimensionNames, value_), dimensions, ordinal); | |
total = getTotal(dimensions); | |
updateRibbons(); | |
updateCategories(dimension); | |
dimension.transition().duration(duration) | |
.attr("transform", function(d) { return "translate(0," + d.y + ")"; }) | |
.tween("ribbon", ribbonTweenY); | |
break; | |
} | |
} | |
d3.select(this) | |
.attr("transform", "translate(0," + d.y + ")") | |
.transition(); | |
ribbon.filter(function(r) { return r.source.dimension === d || r.target.dimension === d; }) | |
.attr("d", ribbonPath); | |
}) | |
.on("dragend", function(d) { | |
dragging = false; | |
unhighlight(); | |
var y0 = 45, | |
dy = (height - y0 - 2) / (dimensions.length - 1); | |
dimensions.forEach(function(d, i) { | |
d.y = y0 + i * dy; | |
}); | |
transition(d3.select(this)) | |
.attr("transform", "translate(0," + d.y + ")") | |
.tween("ribbon", ribbonTweenY); | |
})); | |
dimension.select("text").select("tspan.sort.alpha") | |
.on("click", sortBy("alpha", function(a, b) { return a.name < b.name ? 1 : -1; }, dimension)); | |
dimension.select("text").select("tspan.sort.size") | |
.on("click", sortBy("size", function(a, b) { return a.count - b.count; }, dimension)); | |
dimension.transition().duration(duration) | |
.attr("transform", function(d) { return "translate(0," + d.y + ")"; }) | |
.tween("ribbon", ribbonTweenY); | |
dimension.exit().remove(); | |
updateCategories(dimension); | |
updateRibbons(); | |
} | |
function sortBy(type, f, dimension) { | |
return function(d) { | |
var direction = this.__direction = -(this.__direction || 1); | |
d3.select(this).text(direction > 0 ? type + " »" : "« " + type); | |
d.categories.sort(function() { return direction * f.apply(this, arguments); }); | |
nodes = layout(tree, dimensions, ordinal); | |
updateCategories(dimension); | |
}; | |
} | |
function updateRibbons() { | |
ribbon = g.select(".ribbon").selectAll("path") | |
.data(nodes, function(d) { return d.path; }); | |
ribbon.enter().append("path") | |
.each(function(d) { | |
d.source.x0 = d.source.x; | |
d.target.x0 = d.target.x; | |
}) | |
.attr("class", function(d) { return "category-" + d.major; }) | |
.attr("d", ribbonPath); | |
ribbon.sort(function(a, b) { return b.count - a.count; }); | |
ribbon.exit().remove(); | |
var mouse = g.select(".ribbon-mouse").selectAll("path") | |
.data(nodes, function(d) { return d.path; }); | |
mouse.enter().append("path") | |
.on("mousemove", function(d) { | |
ribbon.classed("active", false); | |
if (dragging) return; | |
highlight(d = d.node, true); | |
var count = d.count, | |
path = [d.name]; | |
while ((d = d.parent) && d.name) path.unshift(d.name); | |
showTooltip(path.join(", ") + "<br>" + count + ", " + percent(count / total)); | |
d3.event.stopPropagation(); | |
}); | |
mouse | |
.sort(function(a, b) { return b.count - a.count; }) | |
.attr("d", ribbonPathStatic); | |
mouse.exit().remove(); | |
} | |
// Animates the x-coordinates only of the relevant ribbon paths. | |
function ribbonTweenX(d) { | |
var nodes = [d], | |
r = ribbon.filter(function(r) { | |
var s, t; | |
if (r.source.node === d) nodes.push(s = r.source); | |
if (r.target.node === d) nodes.push(t = r.target); | |
return s || t; | |
}), | |
i = nodes.map(function(d) { return d3.interpolateNumber(d.x0, d.x); }), | |
n = nodes.length; | |
return function(t) { | |
for (var j = 0; j < n; j++) nodes[j].x0 = i[j](t); | |
r.attr("d", ribbonPath); | |
}; | |
} | |
// Animates the y-coordinates only of the relevant ribbon paths. | |
function ribbonTweenY(d) { | |
var r = ribbon.filter(function(r) { return r.source.dimension.name === d.name || r.target.dimension.name === d.name; }), | |
i = d3.interpolateNumber(d.y0, d.y); | |
return function(t) { | |
d.y0 = i(t); | |
r.attr("d", ribbonPath); | |
}; | |
} | |
// Highlight a node and its descendants, and optionally its ancestors. | |
function highlight(d, ancestors) { | |
if (dragging) return; | |
var highlight = []; | |
(function recurse(d) { | |
highlight.push(d); | |
for (var k in d.children) recurse(d.children[k]); | |
})(d); | |
highlight.shift(); | |
if (ancestors) while (d) highlight.push(d), d = d.parent; | |
ribbon.filter(function(d) { | |
var active = highlight.indexOf(d.node) >= 0; | |
if (active) this.parentNode.appendChild(this); | |
return active; | |
}).classed("active", true); | |
} | |
// Unhighlight all nodes. | |
function unhighlight() { | |
if (dragging) return; | |
ribbon.classed("active", false); | |
hideTooltip(); | |
} | |
function updateCategories(g) { | |
var category = g.selectAll("g.category") | |
.data(function(d) { return d.categories; }, function(d) { return d.name; }); | |
var categoryEnter = category.enter().append("g") | |
.attr("class", "category") | |
.attr("transform", function(d) { return "translate(" + d.x + ")"; }) | |
category | |
.on("mousemove", function(d) { | |
ribbon.classed("active", false); | |
if (dragging) return; | |
d.nodes.forEach(function(d) { highlight(d); }); | |
showTooltip(d.name + "<br>" + d.count + ", " + percent(d.count / total)); | |
d3.event.stopPropagation(); | |
}) | |
.on("mouseout", unhighlight) | |
.on("mousedown", cancelEvent) | |
.call(d3.behavior.drag() | |
.origin(identity) | |
.on("dragstart", function(d) { | |
dragging = true; | |
d.x0 = d.x; | |
}) | |
.on("drag", function(d) { | |
d.x = d3.event.x; | |
var categories = d.dimension.categories; | |
for (var i = 0, c = categories[0]; ++i < categories.length;) { | |
if (c.x + c.dx / 2 > (c = categories[i]).x + c.dx / 2) { | |
categories.sort(function(a, b) { return a.x + a.dx / 2 - b.x - b.dx / 2; }); | |
nodes = layout(tree, dimensions, ordinal); | |
updateRibbons(); | |
updateCategories(g); | |
highlight(d.node); | |
break; | |
} | |
} | |
var x = 0, | |
p = spacing / (categories.length - 1); | |
categories.forEach(function(e, i) { | |
if (d === e) e.x0 = d3.event.x; | |
e.x = x; | |
x += e.count / total * (width - spacing) + p; | |
}); | |
d3.select(this) | |
.attr("transform", function(d) { return "translate(" + d.x0 + ")"; }) | |
.transition(); | |
ribbon.filter(function(r) { return r.source.node === d || r.target.node === d; }) | |
.attr("d", ribbonPath); | |
}) | |
.on("dragend", function(d) { | |
dragging = false; | |
unhighlight(); | |
updateRibbons(); | |
transition(d3.select(this)) | |
.attr("transform", "translate(" + d.x + ")") | |
.tween("ribbon", ribbonTweenX); | |
})); | |
category.transition().duration(duration) | |
.attr("transform", function(d) { return "translate(" + d.x + ")"; }) | |
.tween("ribbon", ribbonTweenX); | |
categoryEnter.append("rect") | |
.attr("width", function(d) { return d.dx; }) | |
.attr("y", -20) | |
.attr("height", 20); | |
categoryEnter.append("line") | |
.style("stroke-width", 2); | |
categoryEnter.append("text") | |
.attr("dy", "-.3em"); | |
category.select("rect") | |
.attr("class", function(d) { | |
return d.dimension === dimensions[0] ? "category-" + ordinal(d.name) : null; | |
}) | |
category.select("line") | |
.attr("x2", function(d) { return d.dx; }); | |
category.select("text") | |
.text(truncateText(function(d) { return d.name; }, function(d) { return d.dx; })); | |
} | |
}); | |
} | |
parsets.dimensionFormat = function(_) { | |
if (!arguments.length) return dimensionFormat; | |
dimensionFormat = _; | |
return parsets; | |
}; | |
parsets.dimensions = function(_) { | |
if (!arguments.length) return dimensions_; | |
dimensions_ = d3.functor(_); | |
return parsets; | |
}; | |
parsets.value = function(_) { | |
if (!arguments.length) return value_; | |
value_ = d3.functor(_); | |
return parsets; | |
}; | |
parsets.width = function(_) { | |
if (!arguments.length) return width; | |
width = +_; | |
return parsets; | |
}; | |
parsets.height = function(_) { | |
if (!arguments.length) return height; | |
height = +_; | |
return parsets; | |
}; | |
parsets.spacing = function(_) { | |
if (!arguments.length) return spacing; | |
spacing = +_; | |
return parsets; | |
}; | |
parsets.tension = function(_) { | |
if (!arguments.length) return tension; | |
tension = +_; | |
return parsets; | |
}; | |
parsets.duration = function(_) { | |
if (!arguments.length) return duration; | |
duration = +_; | |
return parsets; | |
}; | |
var body = d3.select("body"); | |
var tooltip = body.append("div") | |
.style("display", "none") | |
.style("background-color", "#eee") | |
.style("background-color", "rgba(242, 242, 242, .6)") | |
.style("padding", "5px") | |
.style("position", "absolute"); | |
return parsets.value(1).width(960).height(600); | |
function dimensionFormatName(d, i) { | |
return dimensionFormat.call(this, d.name, i); | |
} | |
function showTooltip(html) { | |
var m = d3.mouse(body.node()); | |
tooltip | |
.style("display", null) | |
.style("left", m[0] + 30 + "px") | |
.style("top", m[1] - 20 + "px") | |
.html(html); | |
} | |
function hideTooltip() { | |
tooltip.style("display", "none"); | |
} | |
function transition(g) { | |
return duration ? g.transition().duration(duration).ease(parsetsEase) : g; | |
} | |
function layout(tree, dimensions, ordinal) { | |
var nodes = [], | |
nd = dimensions.length, | |
y0 = 45, | |
dy = (height - y0 - 2) / (nd - 1); | |
dimensions.forEach(function(d, i) { | |
d.categories.forEach(function(c) { | |
c.dimension = d; | |
c.count = 0; | |
c.nodes = []; | |
}); | |
d.y = y0 + i * dy; | |
}); | |
// Compute per-category counts. | |
var total = (function rollup(d, i) { | |
if (!d.children) return d.count; | |
var dim = dimensions[i], | |
total = 0; | |
dim.categories.forEach(function(c) { | |
var child = d.children[c.name]; | |
if (!child) return; | |
c.nodes.push(child); | |
var count = rollup(child, i + 1); | |
c.count += count; | |
total += count; | |
}); | |
return total; | |
})(tree, 0); | |
// Stack the counts. | |
dimensions.forEach(function(d, i) { | |
d.categories = d.categories.filter(function(d) { return d.count; }); | |
var x = 0, | |
p = spacing / (d.categories.length - 1); | |
d.categories.forEach(function(c) { | |
c.x = x; | |
c.dx = c.count / total * (width - spacing); | |
c.in = {dx: 0}; | |
c.out = {dx: 0}; | |
x += c.dx + p; | |
}); | |
}); | |
var dim = dimensions[0]; | |
dim.categories.forEach(function(c) { | |
var k = c.name; | |
if (tree.children.hasOwnProperty(k)) { | |
recurse(c, {node: tree.children[k], path: k}, 1, ordinal(k)); | |
} | |
}); | |
function recurse(p, d, depth, major) { | |
var node = d.node, | |
dimension = dimensions[depth]; | |
dimension.categories.forEach(function(c) { | |
var k = c.name; | |
if (!node.children.hasOwnProperty(k)) return; | |
var child = node.children[k]; | |
child.path = d.path + "\0" + k; | |
var target = child.target || {node: c, dimension: dimension}; | |
target.x = c.in.dx; | |
target.dx = child.count / total * (width - spacing); | |
c.in.dx += target.dx; | |
var source = child.source || {node: p, dimension: dimensions[depth - 1]}; | |
source.x = p.out.dx; | |
source.dx = target.dx; | |
p.out.dx += source.dx; | |
child.node = child; | |
child.source = source; | |
child.target = target; | |
child.major = major; | |
nodes.push(child); | |
if (depth + 1 < dimensions.length) recurse(c, child, depth + 1, major); | |
}); | |
} | |
return nodes; | |
} | |
// Dynamic path string for transitions. | |
function ribbonPath(d) { | |
var s = d.source, | |
t = d.target; | |
return ribbonPathString(s.node.x0 + s.x0, s.dimension.y0, s.dx, t.node.x0 + t.x0, t.dimension.y0, t.dx, tension0); | |
} | |
// Static path string for mouse handlers. | |
function ribbonPathStatic(d) { | |
var s = d.source, | |
t = d.target; | |
return ribbonPathString(s.node.x + s.x, s.dimension.y, s.dx, t.node.x + t.x, t.dimension.y, t.dx, tension); | |
} | |
function ribbonPathString(sx, sy, sdx, tx, ty, tdx, tension) { | |
var m0, m1; | |
return (tension === 1 ? [ | |
"M", [sx, sy], | |
"L", [tx, ty], | |
"h", tdx, | |
"L", [sx + sdx, sy], | |
"Z"] | |
: ["M", [sx, sy], | |
"C", [sx, m0 = tension * sy + (1 - tension) * ty], " ", | |
[tx, m1 = tension * ty + (1 - tension) * sy], " ", [tx, ty], | |
"h", tdx, | |
"C", [tx + tdx, m1], " ", [sx + sdx, m0], " ", [sx + sdx, sy], | |
"Z"]).join(""); | |
} | |
}; | |
d3.parsets.tree = buildTree; | |
function autoDimensions(d) { | |
return d.length ? d3.keys(d[0]).sort() : []; | |
} | |
function cancelEvent() { | |
d3.event.stopPropagation(); | |
d3.event.preventDefault(); | |
} | |
function dimensionName(d) { return d.name; } | |
function getTotal(dimensions) { | |
return dimensions[0].categories.reduce(function(a, d) { | |
return a + d.count; | |
}, 0); | |
} | |
// Given a text function and width function, truncates the text if necessary to | |
// fit within the given width. | |
function truncateText(text, width) { | |
return function(d, i) { | |
var t = this.textContent = text(d, i), | |
w = width(d, i); | |
if (this.getComputedTextLength() < w) return t; | |
this.textContent = "…" + t; | |
var lo = 0, | |
hi = t.length + 1, | |
x; | |
while (lo < hi) { | |
var mid = lo + hi >> 1; | |
if ((x = this.getSubStringLength(0, mid)) < w) lo = mid + 1; | |
else hi = mid; | |
} | |
return lo > 1 ? t.substr(0, lo - 2) + "…" : ""; | |
}; | |
} | |
var percent = d3.format("%"), | |
ribbonRe = /([^CLMZh, ]+)/g, | |
parsetsEase = "elastic", | |
parsetsId = 0; | |
function ascendingNaN(a, b) { | |
return a < b ? -1 : a > b ? 1 : a >= b ? 0 : a >= a || a <= a ? -1 : b >= b || b <= b ? 1 : NaN; | |
} | |
// Construct tree of all category counts for a given ordered list of | |
// dimensions. Similar to d3.nest, except we also set the parent. | |
function buildTree(root, data, dimensions, value) { | |
zeroCounts(root); | |
var n = data.length, | |
nd = dimensions.length; | |
for (var i = 0; i < n; i++) { | |
var d = data[i], | |
v = value(d, i), | |
node = root; | |
for (var j = 0; j < nd; j++) { | |
var dimension = dimensions[j], | |
category = d[dimension], | |
children = node.children; | |
node.count += v; | |
node = children.hasOwnProperty(category) ? children[category] | |
: children[category] = { | |
children: j === nd - 1 ? null : {}, | |
count: 0, | |
parent: node, | |
name: category | |
}; | |
} | |
node.count += v; | |
} | |
return root; | |
} | |
function zeroCounts(d) { | |
d.count = 0; | |
if (d.children) { | |
for (var k in d.children) zeroCounts(d.children[k]); | |
} | |
} | |
function identity(d) { return d; } | |
})(); |
<!doctype html> | |
<script src="http://mbostock.github.com/d3/d3.v2.js"></script> | |
<script src="http://documentcloud.github.com/underscore/underscore.js"></script> | |
<script src="d3.parsets.js"></script> | |
<link rel="stylesheet" href="d3.parsets.css"></link> | |
<body> | |
</body> | |
<script> | |
var chart = d3.parsets() | |
.dimensions(["group", "protein (g)", "carbohydrate (g)", "water (g)", "calories", "fat (g)", "monounsat (g)"]); | |
var vis = d3.select("body").append("svg") | |
.attr("width", chart.width()) | |
.attr("height", chart.height()); | |
function band(d, interval) { | |
if (d == null || d == undefined) return "No Data"; | |
return Math.round(d/interval)*interval + "" | |
} | |
d3.csv("nutrients.csv", function(csv) { | |
_(csv).each(function(d) { | |
d["protein (g)"] = band(d["protein (g)"],20); | |
d["carbohydrate (g)"] = band(d["carbohydrate (g)"],20); | |
d["water (g)"] = band(d["water (g)"],20) | |
d["calories"] = band(d["calories"],200); | |
d["fat (g)"] = band(d["fat (g)"],20); | |
d["monounsat (g)"] = band(d["monounsat (g)"],20); | |
}); | |
vis.datum(csv).call(chart); | |
}); | |
</script> |
"name","group","protein (g)","calcium (g)","sodium (g)","fiber (g)","vitaminc (g)","potassium (g)","carbohydrate (g)","sugars (g)","fat (g)","water (g)","calories","saturated (g)","monounsat (g)","polyunsat (g)","id" | |
"Beverage, instant breakfast powder, chocolate, not reconstituted","Dairy and Egg Products",19.9,0.285,0.385,0.4,0.07690000000000001,0.947,66.2,65.8,1.4,7.4,357,0.56,0.314,0.278,27481 | |
"Beverage, instant breakfast powder, chocolate, sugar-free, not reconstituted","Dairy and Egg Products",35.8,0.5,0.717,2,0.138,1.705,41,39,5.1,7.4,358,2.162,1.189,1.027,27482 | |
"Beverage, milkshake mix, dry, not chocolate","Dairy and Egg Products",23.5,0.88,0.78,1.6,0.0012,2.2,52.9,51.3,2.6,12.8,329,2.059,0.332,0.06,27483 | |
"Butter oil, anhydrous","Dairy and Egg Products",0.28,0.004,0.002,,0,0.005,,,99.48,0.24,876,61.924,28.732,3.694,27484 | |
"Butter, salted","Dairy and Egg Products",0.85,0.024,0.714,,0,0.024,0.06,0.06,81.11,15.87,717,51.368,21.021,3.043,27485 | |
"Butter, whipped, with salt","Dairy and Egg Products",0.85,0.024,0.827,,0,0.026,0.06,0.06,81.11,15.87,717,50.489,23.426,3.012,27486 | |
"Butter, without salt","Dairy and Egg Products",0.85,0.024,0.011,,0,0.024,0.06,0.06,81.11,17.94,717,51.368,21.021,3.043,27487 | |
"Cheese fondue","Dairy and Egg Products",14.23,0.476,0.132,,0,0.105,3.77,,13.47,61.61,229,8.721,3.563,0.484,27488 | |
"Cheese food, cold pack, american","Dairy and Egg Products",19.66,0.497,0.966,,0,0.363,8.32,,24.46,43.12,331,15.355,7.165,0.719,27489 | |
"Cheese food, imitation","Dairy and Egg Products",22.4,0.552,1.239,,0,0.336,8.8,8.21,1.3,63.8,137,0.81,0.38,0.048,27490 | |
"Cheese food, pasteurized process, american, with di sodium phosphate","Dairy and Egg Products",19.61,0.574,1.596,,0,0.279,7.29,7.43,24.6,43.15,328,15.443,7.206,0.723,27491 | |
"Cheese food, pasteurized process, american, without di sodium phosphate","Dairy and Egg Products",18.4,0.57,1.265,,0,0.291,7.83,7.43,25.18,43.21,330,14.895,7.214,1.108,27492 | |
"Cheese food, pasteurized process, swiss","Dairy and Egg Products",21.92,0.723,1.552,,0,0.284,4.5,,24.14,43.67,323,15.487,6.801,0.6,27493 | |
"Cheese product, pasteurized process, american, reduced fat, fortified with vitamin D","Dairy and Egg Products",17.6,0.529,1.587,,0,0.33,10.6,8.02,14.1,51.8,240,8.85,4.13,0.41,27494 | |
"Cheese product, pasteurized process, cheddar or american, reduced fat","Dairy and Egg Products",17.6,0.529,1.587,,0,0.33,10.6,8.02,14.1,51.8,240,8.85,4.13,0.41,27495 | |
"Cheese sauce, prepared from recipe","Dairy and Egg Products",10.33,0.311,0.493,0.1,0.0006,0.142,5.48,0.19,14.92,66.86,197,8.034,4.735,1.397,27496 | |
"Cheese spread, cream cheese base","Dairy and Egg Products",7.1,0.071,0.673,,0,0.112,3.5,3.5,28.6,58.5,295,18.02,8.071,1.033,27497 | |
"Cheese spread, pasteurized process, american, with di sodium phosphate","Dairy and Egg Products",16.41,0.562,1.625,,0,0.242,8.73,,21.23,47.65,290,13.327,6.219,0.624,27498 | |
"Cheese spread, pasteurized process, american, without di sodium phosphate","Dairy and Egg Products",16.41,0.562,1.345,,0,0.242,8.73,7.32,21.23,47.65,290,13.327,6.219,0.624,27499 | |
"Cheese substitute, mozzarella","Dairy and Egg Products",11.47,0.61,0.685,,0.0001,0.455,23.67,23.67,12.22,47.36,248,3.711,6.243,1.738,27500 | |
"Cheese, Mexican, blend, reduced fat","Dairy and Egg Products",24.69,1.146,0.776,,0,0.093,3.41,0.56,19.4,48.2,282,11.58,5.02,0.75,27501 | |
"Cheese, american cheddar, imitation","Dairy and Egg Products",16.7,0.562,1.345,,0,0.242,11.6,7.74,14,53.1,239,8.79,4.102,0.409,27502 | |
"Cheese, blue","Dairy and Egg Products",21.4,0.528,1.395,,0,0.256,2.34,0.5,28.74,42.41,353,18.669,7.778,0.8,27503 | |
"Cheese, brick","Dairy and Egg Products",23.24,0.674,0.56,,0,0.136,2.79,0.51,29.68,41.11,371,18.764,8.598,0.784,27504 | |
"Cheese, brie","Dairy and Egg Products",20.75,0.184,0.629,,0,0.152,0.45,0.45,27.68,48.42,334,17.41,8.013,0.826,27505 | |
"Cheese, camembert","Dairy and Egg Products",19.8,0.388,0.842,,0,0.187,0.46,0.46,24.26,51.8,300,15.259,7.023,0.724,27506 | |
"Cheese, caraway","Dairy and Egg Products",25.18,0.673,0.69,,0,0.093,3.06,,29.2,39.28,376,18.584,8.275,0.83,27507 | |
"Cheese, cheddar","Dairy and Egg Products",24.9,0.721,0.621,,0,0.098,1.28,0.52,33.14,36.75,403,21.092,9.391,0.942,27508 | |
"Cheese, cheshire","Dairy and Egg Products",23.37,0.643,0.7,,0,0.095,4.78,,30.6,37.65,387,19.475,8.671,0.87,27509 | |
"Cheese, colby","Dairy and Egg Products",23.76,0.685,0.604,,0,0.127,2.57,0.52,32.11,38.2,394,20.218,9.28,0.953,27510 | |
"Cheese, cottage, creamed, large or small curd","Dairy and Egg Products",11.12,0.083,0.364,,0,0.104,3.38,2.67,4.3,79.79,98,1.718,0.778,0.123,27511 | |
"Cheese, cottage, creamed, with fruit","Dairy and Egg Products",10.69,0.053,0.344,0.2,0.0014,0.09,4.61,2.38,3.85,79.64,97,2.311,1.036,0.124,27512 | |
"Cheese, cottage, lowfat, 1% milkfat","Dairy and Egg Products",12.39,0.061,0.406,,0,0.086,2.72,2.72,1.02,82.48,72,0.645,0.291,0.031,27513 | |
"Cheese, cottage, lowfat, 1% milkfat, lactose reduced","Dairy and Egg Products",12.4,0.053,0.22,0.6,0,0.086,3.2,2.6,1,82.5,74,0.64,0.29,0.03,27514 | |
"Cheese, cottage, lowfat, 1% milkfat, no sodium added","Dairy and Egg Products",12.4,0.061,0.013,,0,0.086,2.7,2.7,1,83.5,72,0.632,0.284,0.031,27515 | |
"Cheese, cottage, lowfat, 1% milkfat, with vegetables","Dairy and Egg Products",10.9,0.056,0.403,,0.004,0.086,3,3,1,83.5,67,0.619,0.282,0.039,27516 | |
"Cheese, cottage, lowfat, 2% milkfat","Dairy and Egg Products",11.83,0.091,0.33,,0,0.084,3.66,3.67,2.45,80.69,86,0.979,0.443,0.07,27517 | |
"Cheese, cottage, nonfat, uncreamed, dry, large or small curd","Dairy and Egg Products",10.34,0.086,0.33,,0,0.137,6.66,1.85,0.29,81.01,72,0.169,0.079,0.003,27518 | |
"Cheese, cottage, with vegetables","Dairy and Egg Products",10.9,0.056,0.403,0.1,0.004,0.086,3,0.37,4.2,80.3,95,2.646,1.189,0.14,27519 | |
"Cheese, cream","Dairy and Egg Products",5.93,0.098,0.321,,0,0.138,4.07,3.21,34.24,54.44,342,19.292,8.62,1.437,27520 | |
"Cheese, cream, fat free","Dairy and Egg Products",15.69,0.351,0.702,,0,0.278,7.66,5.48,1,71.87,105,0.644,0.25,0.057,27521 | |
"Cheese, cream, low fat","Dairy and Egg Products",7.85,0.148,0.47,,0,0.247,8.13,5.82,15.28,66.72,201,9.098,3.996,0.658,27522 | |
"Cheese, dry white, queso seco","Dairy and Egg Products",24.51,0.661,1.808,,0,0.116,2.04,0.55,24.35,42.17,325,13.718,6.418,1.244,27523 | |
"Cheese, edam","Dairy and Egg Products",24.99,0.731,0.965,,0,0.188,1.43,1.43,27.8,41.56,357,17.572,8.125,0.665,27524 | |
"Cheese, feta","Dairy and Egg Products",14.21,0.493,1.116,,0,0.062,4.09,4.09,21.28,55.22,264,14.946,4.623,0.591,27525 | |
"Cheese, fontina","Dairy and Egg Products",25.6,0.55,0.8,,0,0.064,1.55,1.55,31.14,37.92,389,19.196,8.687,1.654,27526 | |
"Cheese, fresh, queso fresco","Dairy and Egg Products",18.09,0.566,0.751,,0,0.129,2.98,2.32,23.82,51.42,299,12.94,5.966,1.106,27527 | |
"Cheese, gjetost","Dairy and Egg Products",9.65,0.4,0.6,,0,1.409,42.65,,29.51,13.44,466,19.16,7.879,0.938,27528 | |
"Cheese, goat, hard type","Dairy and Egg Products",30.52,0.895,0.346,,0,0.048,2.17,2.17,35.59,29.01,452,24.609,8.117,0.845,27529 | |
"Cheese, goat, semisoft type","Dairy and Egg Products",21.58,0.298,0.515,,0,0.158,2.54,2.54,29.84,45.52,364,20.639,6.808,0.709,27530 | |
"Cheese, goat, soft type","Dairy and Egg Products",18.52,0.14,0.368,,0,0.026,0.89,0.89,21.08,60.75,268,14.575,4.807,0.501,27531 | |
"Cheese, gouda","Dairy and Egg Products",24.94,0.7,0.819,,0,0.121,2.22,2.22,27.44,41.46,356,17.614,7.747,0.657,27532 | |
"Cheese, gruyere","Dairy and Egg Products",29.81,1.011,0.336,,0,0.081,0.36,0.36,32.34,33.19,413,18.913,10.043,1.733,27533 | |
"Cheese, limburger","Dairy and Egg Products",20.05,0.497,0.8,,0,0.128,0.49,0.49,27.25,48.42,327,16.746,8.606,0.495,27534 | |
"Cheese, low fat, cheddar or colby","Dairy and Egg Products",24.35,0.415,0.612,,0,0.066,1.91,0.52,7,63.1,173,4.342,2.082,0.222,27535 | |
"Cheese, low-sodium, cheddar or colby","Dairy and Egg Products",24.35,0.703,0.021,,0,0.112,1.91,0.49,32.62,38.98,398,20.768,9.189,0.972,27536 | |
"Cheese, mexican, queso anejo","Dairy and Egg Products",21.44,0.68,1.131,,0,0.087,4.63,4.63,29.98,38.06,373,19.033,8.528,0.901,27537 | |
"Cheese, mexican, queso asadero","Dairy and Egg Products",22.6,0.661,0.655,,0,0.086,2.87,2.87,28.26,42.16,356,17.939,8.038,0.85,27538 | |
"Cheese, mexican, queso chihuahua","Dairy and Egg Products",21.56,0.651,0.617,,0,0.052,5.56,5.56,29.68,39.13,374,18.843,8.443,0.892,27539 | |
"Cheese, monterey","Dairy and Egg Products",24.48,0.746,0.536,,0,0.081,0.68,0.5,30.28,41.01,373,19.066,8.751,0.899,27540 | |
"Cheese, monterey, low fat","Dairy and Egg Products",28.2,0.705,0.564,,0,0.081,0.7,0.56,21.6,46,310,14.04,5.64,0.84,27541 | |
"Cheese, mozzarella, low sodium","Dairy and Egg Products",27.5,0.731,0.016,,0,0.095,3.1,1.23,17.1,49.9,280,10.867,4.844,0.509,27542 | |
"Cheese, mozzarella, nonfat","Dairy and Egg Products",31.7,0.961,0.743,1.8,0,0.106,3.5,1.48,,60.2,141,,,,27543 | |
"Cheese, mozzarella, part skim milk","Dairy and Egg Products",24.26,0.782,0.619,,0,0.084,2.77,1.13,15.92,53.78,254,10.114,4.51,0.472,27544 | |
"Cheese, mozzarella, part skim milk, low moisture","Dairy and Egg Products",25.96,0.731,0.652,,0,0.095,3.83,0.6,20.03,46.46,302,10.877,4.85,0.508,27545 | |
"Cheese, mozzarella, whole milk","Dairy and Egg Products",22.17,0.505,0.627,,0,0.076,2.19,1.03,22.35,50.01,300,13.152,6.573,0.765,27546 | |
"Cheese, mozzarella, whole milk, low moisture","Dairy and Egg Products",21.6,0.575,0.415,,0,0.075,2.47,1.01,24.64,48.38,318,15.561,7.027,0.778,27547 | |
"Cheese, muenster","Dairy and Egg Products",23.41,0.717,0.628,,0,0.134,1.12,1.12,30.04,41.77,368,19.113,8.711,0.661,27548 | |
"Cheese, muenster, low fat","Dairy and Egg Products",24.7,0.529,0.6,,0,0.134,3.5,3.5,17.6,50.5,271,10.95,5.09,0.65,27549 | |
"Cheese, neufchatel","Dairy and Egg Products",9.15,0.117,0.334,,0,0.152,3.59,3.19,22.78,63.11,253,12.79,5.784,0.97,27550 | |
"Cheese, parmesan, dry grated, reduced fat","Dairy and Egg Products",20,1.109,1.529,,0,0.125,1.37,,20,50.6,265,13.317,6.098,0.462,27551 | |
"Cheese, parmesan, grated","Dairy and Egg Products",38.46,1.109,1.529,,0,0.125,4.06,0.9,28.61,20.84,431,17.301,8.375,1.173,27552 | |
"Cheese, parmesan, hard","Dairy and Egg Products",35.75,1.184,1.602,,0,0.092,3.22,0.8,25.83,29.16,392,16.41,7.515,0.569,27553 | |
"Cheese, parmesan, low sodium","Dairy and Egg Products",41.6,1.376,0.063,,0,0.107,3.7,0.85,29.99,22.2,451,19.051,8.721,0.659,27554 | |
"Cheese, parmesan, shredded","Dairy and Egg Products",37.86,1.253,1.696,,0,0.097,3.41,0.9,27.34,25,415,17.37,8.734,0.661,27555 | |
"Cheese, pasteurized process, american, low fat","Dairy and Egg Products",24.6,0.684,1.43,,0,0.18,3.5,0.59,7,58.9,180,4.41,2.005,0.222,27556 | |
"Cheese, pasteurized process, american, with di sodium phosphate","Dairy and Egg Products",22.15,0.552,1.254,,0,0.169,1.6,0.51,31.25,39.16,375,19.694,8.951,0.99,27557 | |
"Cheese, pasteurized process, american, without di sodium phosphate","Dairy and Egg Products",22.15,0.616,0.65,,0,0.162,1.6,0.51,31.25,39.16,375,19.694,8.951,0.99,27558 | |
"Cheese, pasteurized process, cheddar or american, fat-free","Dairy and Egg Products",22.5,0.689,1.528,,0,0.288,13.4,9.95,0.8,56.9,148,0.504,0.229,0.025,27559 | |
"Cheese, pasteurized process, cheddar or american, low sodium","Dairy and Egg Products",22.2,0.616,0.007,,0,0.162,1.6,0.45,31.19,42.8,376,19.651,8.932,0.988,27560 | |
"Cheese, pasteurized process, pimento","Dairy and Egg Products",22.13,0.614,1.428,0.1,0.0023,0.162,1.73,0.62,31.2,39.08,375,19.663,8.937,0.988,27561 | |
"Cheese, pasteurized process, swiss, low fat","Dairy and Egg Products",25.5,0.684,1.43,,0,0.18,4.3,1.35,5.1,59.1,165,3.303,1.351,0.18,27562 | |
"Cheese, pasteurized process, swiss, with di sodium phosphate","Dairy and Egg Products",24.73,0.772,1.37,,0,0.216,2.1,1.23,25.01,42.31,334,16.045,7.046,0.622,27563 | |
"Cheese, pasteurized process, swiss, without di sodium phosphate","Dairy and Egg Products",24.73,0.772,0.681,,0,0.216,2.1,,25.01,42.31,334,16.045,7.046,0.622,27564 | |
"Cheese, port de salut","Dairy and Egg Products",23.78,0.65,0.534,,0,0.136,0.57,0.57,28.2,45.45,352,16.691,9.338,0.729,27565 | |
"Cheese, provolone","Dairy and Egg Products",25.58,0.756,0.876,,0,0.138,2.14,0.56,26.62,40.95,351,17.078,7.393,0.769,27566 | |
"Cheese, provolone, reduced fat","Dairy and Egg Products",24.7,0.756,0.876,,0,0.138,3.5,0.55,17.6,50.6,274,11.3,4.89,0.51,27567 | |
"Cheese, ricotta, part skim milk","Dairy and Egg Products",11.39,0.272,0.125,,0,0.125,5.14,0.31,7.91,74.41,138,4.927,2.314,0.26,27568 | |
"Cheese, ricotta, whole milk","Dairy and Egg Products",11.26,0.207,0.084,,0,0.105,3.04,0.27,12.98,71.7,174,8.295,3.627,0.385,27569 | |
"Cheese, romano","Dairy and Egg Products",31.8,1.064,1.2,,0,0.086,3.63,0.73,26.94,30.91,387,17.115,7.838,0.593,27570 | |
"Cheese, roquefort","Dairy and Egg Products",21.54,0.662,1.809,,0,0.091,2,,30.64,39.38,369,19.263,8.474,1.32,27571 | |
"Cheese, swiss","Dairy and Egg Products",26.93,0.791,0.192,,0,0.077,5.38,1.32,27.8,37.12,380,17.779,7.274,0.972,27572 | |
"Cheese, swiss, low fat","Dairy and Egg Products",28.4,0.961,0.26,,0,0.111,3.4,1.33,5.1,59.6,173,3.304,1.351,0.18,27573 | |
"Cheese, swiss, low sodium","Dairy and Egg Products",28.4,0.961,0.014,,0,0.111,3.4,1.31,27.4,37.8,374,17.744,7.256,0.968,27574 | |
"Cheese, tilsit","Dairy and Egg Products",24.41,0.7,0.753,,0,0.065,1.88,,25.98,42.86,340,16.775,7.136,0.721,27575 | |
"Cheese, white, queso blanco","Dairy and Egg Products",20.38,0.69,0.704,,0,0.126,2.53,1.76,24.31,48.7,310,13.661,6.459,1.149,27576 | |
"Cream substitute, flavored, liquid","Dairy and Egg Products",0.69,0.006,0.08,1.1,0,0.096,35.07,33.04,13.5,50.06,251,2.635,4.002,6.269,27577 | |
"Cream substitute, flavored, powdered","Dairy and Egg Products",0.68,0.005,0.196,1.2,0,0.09,75.42,58.01,21.47,1.52,498,19.463,0.618,0.229,27578 | |
"Cream substitute, liquid, light","Dairy and Egg Products",0.8,0.001,0.06,,0,0.177,9.1,9.1,3.5,86.2,71,0.896,2.03,0.42,27579 | |
"Cream substitute, liquid, with hydrogenated vegetable oil and soy protein","Dairy and Egg Products",1,0.009,0.079,,0,0.191,11.38,11.38,9.97,77.27,136,1.937,7.551,0.027,27580 | |
"Cream substitute, liquid, with lauric acid oil and sodium caseinate","Dairy and Egg Products",1,0.009,0.079,,0,0.191,11.38,,9.97,77.27,136,9.304,0.106,0.003,27581 | |
"Cream substitute, powdered","Dairy and Egg Products",4.79,0.022,0.181,,0,0.812,54.88,54.88,35.48,2.21,545,32.525,0.968,0.014,27582 | |
"Cream substitute, powdered, light","Dairy and Egg Products",1.9,0.001,0.229,,0,0.902,73.4,73.4,15.7,6.2,431,3.8,11.5,0.198,27583 | |
"Cream, fluid, half and half","Dairy and Egg Products",2.96,0.105,0.041,,0.0009,0.13,4.3,0.16,11.5,80.57,130,7.158,3.321,0.427,27584 | |
"Cream, fluid, heavy whipping","Dairy and Egg Products",2.05,0.065,0.038,,0.0006,0.075,2.79,0.11,37,57.71,345,23.032,10.686,1.374,27585 | |
"Cream, fluid, light (coffee cream or table cream)","Dairy and Egg Products",2.7,0.096,0.04,,0.0008,0.122,3.66,0.14,19.31,73.75,195,12.02,5.577,0.717,27586 | |
"Cream, fluid, light whipping","Dairy and Egg Products",2.17,0.069,0.034,,0.0006,0.097,2.96,0.11,30.91,63.5,292,19.337,9.093,0.884,27587 | |
"Cream, half and half, fat free","Dairy and Egg Products",2.6,0.096,0.144,,0.0007,0.206,9,5,1.4,86,59,0.841,0.384,0.052,27588 | |
"Cream, sour, cultured","Dairy and Egg Products",2.07,0.11,0.08,,0.0009,0.141,2.88,3.5,19.73,74.46,193,11.507,5.068,0.84,27589 | |
"Cream, sour, reduced fat, cultured","Dairy and Egg Products",2.94,0.104,0.041,,0.0009,0.129,4.26,0.16,12,80.14,135,7.47,3.466,0.446,27590 | |
"Cream, whipped, cream topping, pressurized","Dairy and Egg Products",3.2,0.101,0.13,,0,0.147,12.49,8,22.22,61.33,257,13.831,6.418,0.825,27591 | |
"Dessert topping, powdered","Dairy and Egg Products",4.9,0.017,0.122,,0,0.166,52.54,52.54,39.92,1.47,577,36.723,0.6,0.447,27592 | |
"Dessert topping, powdered, 1.5 ounce prepared with 1/2 cup milk","Dairy and Egg Products",3.61,0.09,0.066,,0.0007,0.151,17.13,17.47,12.72,65.74,194,10.684,0.843,0.201,27593 | |
"Dessert topping, pressurized","Dairy and Egg Products",0.98,0.005,0.062,,0,0.019,16.07,16.07,22.3,60.37,264,18.912,1.927,0.241,27594 | |
"Dessert topping, semi solid, frozen","Dairy and Egg Products",1.25,0.006,0.025,,0,0.018,23.05,23.05,25.31,50.21,318,21.783,1.616,0.523,27595 | |
"Dulce de Leche","Dairy and Egg Products",6.84,0.251,0.129,,0,0.35,55.35,49.74,7.35,28.71,315,4.534,2.143,0.375,27596 | |
"Egg Mix, USDA Commodity","Dairy and Egg Products",35.6,0.171,0.576,,0,0.373,23.97,2.46,34.5,2.78,555,10.305,13.745,7.555,27597 | |
"Egg substitute, liquid or frozen, fat free","Dairy and Egg Products",10,0.073,0.199,,0.0005,0.213,2,2,,87,48,,,,27598 | |
"Egg substitute, powder","Dairy and Egg Products",55.5,0.326,0.8,,0.0008,0.744,21.8,21.8,13,3.86,444,3.766,5.341,1.683,27599 | |
"Egg, duck, whole, fresh, raw","Dairy and Egg Products",12.81,0.064,0.146,,0,0.222,1.45,0.93,13.77,70.83,185,3.681,6.525,1.223,27600 | |
"Egg, goose, whole, fresh, raw","Dairy and Egg Products",13.87,0.06,0.138,,0,0.21,1.35,0.94,13.27,70.43,185,3.595,5.747,1.672,27601 | |
"Egg, quail, whole, fresh, raw","Dairy and Egg Products",13.05,0.064,0.141,,0,0.132,0.41,0.4,11.09,74.35,158,3.557,4.324,1.324,27602 | |
"Egg, turkey, whole, fresh, raw","Dairy and Egg Products",13.68,0.099,0.151,,0,0.142,1.15,,11.88,72.5,171,3.632,4.571,1.658,27603 | |
"Egg, white, dried","Dairy and Egg Products",81.1,0.062,1.28,,0,1.125,7.8,5.4,,5.8,382,,,,27604 | |
"Egg, white, dried, flakes, glucose reduced","Dairy and Egg Products",76.92,0.083,1.156,,0,1.042,4.17,4.17,0.04,14.62,351,,,,27605 | |
"Egg, white, dried, powder, glucose reduced","Dairy and Egg Products",82.4,0.089,1.238,,0,1.116,4.47,4.47,0.04,8.54,376,,,,27606 | |
"Egg, white, raw, fresh","Dairy and Egg Products",10.9,0.007,0.166,,0,0.163,0.73,0.71,0.17,87.57,52,,,,27607 | |
"Egg, white, raw, frozen","Dairy and Egg Products",9.8,0.007,0.158,,0,0.136,1.05,,,88.55,47,,,,27608 | |
"Egg, whole, cooked, fried","Dairy and Egg Products",13.61,0.062,0.207,,0,0.152,0.83,0.4,14.84,69.47,196,4.323,6.182,3.251,27609 | |
"Egg, whole, cooked, hard-boiled","Dairy and Egg Products",12.58,0.05,0.124,,0,0.126,1.12,1.12,10.61,74.62,155,3.267,4.077,1.414,27610 | |
"Egg, whole, cooked, omelet","Dairy and Egg Products",10.57,0.048,0.155,,0,0.117,0.64,0.31,11.66,76.13,154,3.319,4.843,2.712,27611 | |
"Egg, whole, cooked, poached","Dairy and Egg Products",12.51,0.056,0.297,,0,0.138,0.71,0.37,9.47,75.85,138,3.113,3.643,1.904,27612 | |
"Egg, whole, cooked, scrambled","Dairy and Egg Products",9.99,0.066,0.145,,0,0.132,1.61,1.43,10.98,76.4,149,3.331,4.441,2.429,27613 | |
"Egg, whole, dried","Dairy and Egg Products",47.35,0.231,0.523,,0,0.493,4.95,3.08,40.95,3.1,594,12.727,15.337,5.804,27614 | |
"Egg, whole, dried, stabilized, glucose reduced","Dairy and Egg Products",48.17,0.222,0.548,,0,0.515,2.38,,43.95,1.87,615,13.198,17.564,5.713,27615 | |
"Egg, whole, raw, fresh","Dairy and Egg Products",12.56,0.056,0.142,,0,0.138,0.72,0.37,9.51,76.15,143,3.126,3.658,1.911,27616 | |
"Egg, whole, raw, frozen","Dairy and Egg Products",11.95,0.059,0.133,,0,0.13,1.05,,10.2,75.85,148,3.147,3.886,1.412,27617 | |
"Egg, yolk, dried","Dairy and Egg Products",34.25,0.284,0.135,,0,0.244,3.6,3.6,55.8,2.95,666,17.154,21.129,7.895,27618 | |
"Egg, yolk, raw, fresh","Dairy and Egg Products",15.86,0.129,0.048,,0,0.109,3.59,0.56,26.54,52.31,322,9.551,11.738,4.204,27619 | |
"Egg, yolk, raw, frozen","Dairy and Egg Products",15.5,0.138,0.067,,0,0.118,1.15,0.51,25.6,56.2,303,7.82,9.747,3.628,27620 | |
"Egg, yolk, raw, frozen, salted","Dairy and Egg Products",14,0.114,3.78,,0,0.117,1.6,,23,50.8,274,7.028,8.849,3.15,27621 | |
"Egg, yolk, raw, frozen, sugared","Dairy and Egg Products",13.8,0.123,0.067,,0,0.103,10.8,,22.75,51.25,307,6.97,8.614,3.244,27622 | |
"Eggnog","Dairy and Egg Products",4.55,0.13,0.054,,0.0015,0.165,8.05,8.41,4.19,82.54,88,2.591,1.302,0.198,27623 | |
"Eggs, scrambled, frozen mixture","Dairy and Egg Products",13.1,0.017,0.162,,0,0.147,7.5,7.5,5.6,72.7,135,1.052,2.339,1.778,27624 | |
"Ensure plus, liquid nutrition","Dairy and Egg Products",5.16,0.079,0.095,,0.0119,0.175,19.88,19.88,4.52,69.84,141,0.673,1.283,3.111,27625 | |
"Imitation cheese, american or cheddar, low cholesterol","Dairy and Egg Products",25,0.705,0.67,,0,0.055,1,1,32,38,390,5.815,14.127,10.615,27626 | |
"KRAFT BREAKSTONE'S FREE Fat Free Sour Cream","Dairy and Egg Products",4.7,0.141,0.072,,0.0012,0.219,15.1,7.2,1.3,77.7,91,0.8,,,27627 | |
"KRAFT BREAKSTONE'S Reduced Fat Sour Cream","Dairy and Egg Products",4.5,0.161,0.059,0.1,0.0011,0.21,6.5,6.4,12,76.2,152,7.6,,,27628 | |
"KRAFT BREYERS LIGHT N' LIVELY Lowfat Strawberry Yogurt (1% Milkfat)","Dairy and Egg Products",3.2,0.091,0.045,0.2,0,0.151,21.9,19.6,0.8,73.3,108,0.5,,,27629 | |
"KRAFT BREYERS LIGHT Nonfat Strawberry Yogurt (with Aspartame and Fructose Sweeteners)","Dairy and Egg Products",3.4,0.095,0.045,,0.0006,0.146,9.9,7.7,0.2,86,55,0.1,,,27630 | |
"KRAFT BREYERS Lowfat Strawberry Yogurt (1% Milkfat)","Dairy and Egg Products",3.8,0.125,0.052,0.2,0,0.192,18.2,17.4,0.8,76.5,96,0.5,,,27631 | |
"KRAFT BREYERS Smooth & Creamy Lowfat Strawberry Yogurt (1% Milkfat)","Dairy and Egg Products",3.8,0.108,0.055,0.3,0,0.177,19.9,17.2,0.9,74.8,102,0.5,,,27632 | |
"KRAFT CHEEZ WHIZ LIGHT Pasteurized Process Cheese Product","Dairy and Egg Products",16.3,0.418,1.705,0.2,0.0004,0.297,16.2,8.2,9.5,51.5,215,6.4,,,27633 | |
"KRAFT CHEEZ WHIZ Pasteurized Process Cheese Sauce","Dairy and Egg Products",12,0.359,1.638,0.3,0.0004,0.24,9.2,6.7,21,51.5,276,13.1,,,27634 | |
"KRAFT FREE Singles American Nonfat Pasteurized Process Cheese Product","Dairy and Egg Products",22.7,0.712,1.298,0.2,0.0002,0.236,11.7,6.7,1,58,148,0.7,,,27635 | |
"KRAFT VELVEETA LIGHT Reduced Fat Pasteurized Process Cheese Product","Dairy and Egg Products",19.6,0.574,1.586,,0.0001,0.345,11.8,8.5,10.6,51.3,222,7.1,,,27636 | |
"KRAFT VELVEETA Pasteurized Process Cheese Spread","Dairy and Egg Products",16.3,0.466,1.499,,0.0002,0.335,9.8,8.1,22,45.8,303,14.4,,,27637 | |
"Milk shakes, thick chocolate","Dairy and Egg Products",3.05,0.132,0.111,0.3,0,0.224,21.15,20.85,2.7,72.2,119,1.681,0.78,0.1,27638 | |
"Milk shakes, thick vanilla","Dairy and Egg Products",3.86,0.146,0.095,,0,0.183,17.75,17.75,3.03,74.45,112,1.886,0.875,0.113,27639 | |
"Milk substitutes, fluid, with lauric acid oil","Dairy and Egg Products",1.75,0.033,0.078,,0,0.114,6.16,,3.41,88.18,61,3.037,0.176,0.008,27640 | |
"Milk, buttermilk, dried","Dairy and Egg Products",34.3,1.184,0.517,,0.0057,1.592,49,49,5.78,2.97,387,3.598,1.669,0.215,27641 | |
"Milk, buttermilk, fluid, cultured, lowfat","Dairy and Egg Products",3.31,0.116,0.105,,0.001,0.151,4.79,4.79,0.88,90.13,40,0.548,0.254,0.033,27642 | |
"Milk, buttermilk, fluid, cultured, reduced fat","Dairy and Egg Products",4.1,0.143,0.086,,0.0015,0.18,5.3,5.3,2,87.7,56,1.242,0.576,0.071,27643 | |
"Milk, canned, condensed, sweetened","Dairy and Egg Products",7.91,0.284,0.127,,0.0026,0.371,54.4,54.4,8.7,27.16,321,5.486,2.427,0.337,27644 | |
"Milk, canned, evaporated, nonfat, with added vitamin A and vitamin D","Dairy and Egg Products",7.55,0.29,0.115,,0.0012,0.332,11.35,11.35,0.2,79.4,78,0.121,0.062,0.006,27645 | |
"Milk, canned, evaporated, with added vitamin A","Dairy and Egg Products",6.81,0.261,0.106,,0.0019,0.303,10.04,,7.56,74.04,134,4.591,2.335,0.245,27646 | |
"Milk, canned, evaporated, with added vitamin D and without added vitamin A","Dairy and Egg Products",6.81,0.261,0.106,,0.0019,0.303,10.04,10.04,7.56,74.04,134,4.591,2.335,0.245,27647 | |
"Milk, canned, evaporated, without added vitamin A and vitamin D","Dairy and Egg Products",6.81,0.261,0.106,,0.0019,0.303,10.04,10.04,7.56,74.04,135,4.591,2.335,0.245,27648 | |
"Milk, chocolate beverage, hot cocoa, homemade","Dairy and Egg Products",3.52,0.114,0.044,1,0.0002,0.197,10.74,9.66,2.34,82.45,77,1.431,0.677,0.084,27649 | |
"Milk, chocolate, fluid, commercial, lowfat, with added vitamin A and vitamin D","Dairy and Egg Products",3.24,0.116,0.061,0.5,0.0009,0.17,10.44,9.94,1,82.34,63,0.616,0.3,0.035,27650 | |
"Milk, chocolate, fluid, commercial, reduced fat, with added calcium","Dairy and Egg Products",2.99,0.194,0.066,0.7,0,0.123,12.13,9.55,1.9,82.17,78,1.177,0.455,0.089,27651 | |
"Milk, chocolate, fluid, commercial, reduced fat, with added vitamin A and vitamin D","Dairy and Egg Products",2.99,0.109,0.066,0.7,0,0.169,12.13,9.55,1.9,82.17,76,1.177,0.455,0.089,27652 | |
"Milk, chocolate, fluid, commercial, whole, with added vitamin A and vitamin D","Dairy and Egg Products",3.17,0.112,0.06,0.8,0.0009,0.167,10.34,9.54,3.39,82.3,83,2.104,0.99,0.124,27653 | |
"Milk, dry, nonfat, calcium reduced","Dairy and Egg Products",35.5,0.28,2.28,,0.0067,0.68,51.8,,0.2,4.9,354,0.124,0.058,0.007,27654 | |
"Milk, dry, nonfat, instant, with added vitamin A and vitamin D","Dairy and Egg Products",35.1,1.231,0.549,,0.0056,1.705,52.19,52.19,0.72,3.96,358,0.467,0.187,0.028,27655 | |
"Milk, dry, nonfat, instant, without added vitamin A and vitamin D","Dairy and Egg Products",35.1,1.231,0.549,,0.0056,1.705,52.19,52.19,0.72,3.96,358,0.47,0.19,0.03,27656 | |
"Milk, dry, nonfat, regular, with added vitamin A and vitamin D","Dairy and Egg Products",36.16,1.257,0.535,,0.0068,1.794,51.98,51.98,0.77,3.16,362,0.499,0.2,0.03,27657 | |
"Milk, dry, nonfat, regular, without added vitamin A and vitamin D","Dairy and Egg Products",36.16,1.257,0.535,,0.0068,1.794,51.98,51.98,0.77,3.16,362,0.499,0.201,0.03,27658 | |
"Milk, dry, whole, with added vitamin D","Dairy and Egg Products",26.32,0.912,0.371,,0.0086,1.33,38.42,38.42,26.71,2.47,496,16.742,7.924,0.665,27659 | |
"Milk, dry, whole, without added vitamin D","Dairy and Egg Products",26.32,0.912,0.371,,0.0086,1.33,38.42,38.42,26.71,2.47,496,16.742,7.924,0.665,27660 | |
"Milk, filled, fluid, with blend of hydrogenated vegetable oils","Dairy and Egg Products",3.33,0.128,0.057,,0.0009,0.139,4.74,,3.46,87.67,63,0.768,1.783,0.75,27661 | |
"Milk, filled, fluid, with lauric acid oil","Dairy and Egg Products",3.33,0.128,0.057,,0.0009,0.139,4.74,4.74,3.4,87.73,63,3.101,0.1,0.01,27662 | |
"Milk, fluid, 1% fat, without added vitamin A and vitamin D","Dairy and Egg Products",3.37,0.125,0.044,,0,0.15,4.99,5.2,0.97,89.92,42,0.633,0.277,0.035,27663 | |
"Milk, fluid, nonfat, calcium fortified (fat free or skim)","Dairy and Egg Products",3.4,0.204,0.052,,0.001,0.166,4.85,4.85,0.18,90.8,35,0.117,0.047,0.007,27664 | |
"Milk, goat, fluid, with added vitamin D","Dairy and Egg Products",3.56,0.134,0.05,,0.0013,0.204,4.45,4.45,4.14,87.03,69,2.667,1.109,0.149,27665 | |
"Milk, human, mature, fluid","Dairy and Egg Products",1.03,0.032,0.017,,0.005,0.051,6.89,6.89,4.38,87.5,70,2.009,1.658,0.497,27666 | |
"Milk, imitation, non-soy","Dairy and Egg Products",1.6,0.082,0.055,,0,0.15,5.3,5.3,2,90,46,0.254,0.484,1.174,27667 | |
"Milk, indian buffalo, fluid","Dairy and Egg Products",3.75,0.169,0.052,,0.0023,0.178,5.18,,6.89,83.39,97,4.597,1.787,0.146,27668 | |
"Milk, low sodium, fluid","Dairy and Egg Products",3.1,0.101,0.003,,0.0009,0.253,4.46,4.46,3.46,88.2,61,2.154,0.999,0.128,27669 | |
"Milk, lowfat, fluid, 1% milkfat, protein fortified, with added vitamin A and vitamin D","Dairy and Egg Products",3.93,0.142,0.058,,0.0012,0.18,5.52,,1.17,88.74,48,0.728,0.338,0.043,27670 | |
"Milk, lowfat, fluid, 1% milkfat, with added nonfat milk solids, vitamin A and vitamin D","Dairy and Egg Products",3.48,0.128,0.052,,0.001,0.162,4.97,,0.97,89.81,43,0.604,0.28,0.036,27671 | |
"Milk, lowfat, fluid, 1% milkfat, with added vitamin A and vitamin D","Dairy and Egg Products",3.37,0.125,0.044,,0,0.15,4.99,5.2,0.97,89.92,42,0.633,0.277,0.035,27672 | |
"Milk, nonfat, fluid, protein fortified, with added vitamin A and vitamin D (fat free and skim)","Dairy and Egg Products",3.96,0.143,0.059,,0.0011,0.182,5.56,,0.25,89.36,41,0.162,0.065,0.009,27673 | |
"Milk, nonfat, fluid, with added nonfat milk solids, vitamin A and vitamin D (fat free or skim)","Dairy and Egg Products",3.57,0.129,0.053,,0.001,0.171,5.02,5.02,0.25,90.38,37,0.162,0.065,0.009,27674 | |
"Milk, nonfat, fluid, with added vitamin A and vitamin D (fat free or skim)","Dairy and Egg Products",3.37,0.122,0.042,,0,0.156,4.96,5.09,0.08,90.84,34,0.056,0.022,0.003,27675 | |
"Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)","Dairy and Egg Products",3.37,0.122,0.042,,0,0.156,4.96,5.09,0.08,90.84,34,0.051,0.021,0.003,27676 | |
"Milk, producer, fluid, 3.7% milkfat","Dairy and Egg Products",3.28,0.119,0.049,,0.0015,0.151,4.65,,3.66,87.69,64,2.278,1.057,0.136,27677 | |
"Milk, reduced fat, fluid, 2% milkfat, protein fortified, with added vitamin A and vitamin D","Dairy and Egg Products",3.95,0.143,0.059,,0.0011,0.182,5.49,5.26,1.98,87.71,56,1.232,0.572,0.074,27678 | |
"Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids and vitamin A and vitamin D","Dairy and Egg Products",3.48,0.128,0.052,,0.001,0.162,4.97,,1.92,88.86,51,1.195,0.555,0.071,27679 | |
"Milk, reduced fat, fluid, 2% milkfat, with added nonfat milk solids, without added vitamin A","Dairy and Egg Products",3.95,0.143,0.059,,0.0011,0.182,5.49,,1.98,87.71,56,1.232,0.065,0.009,27680 | |
"Milk, reduced fat, fluid, 2% milkfat, with added vitamin A and vitamin D","Dairy and Egg Products",3.3,0.12,0.047,,0.0002,0.14,4.8,5.06,1.98,89.21,50,1.257,0.56,0.073,27681 | |
"Milk, reduced fat, fluid, 2% milkfat, without added vitamin A and vitamin D","Dairy and Egg Products",3.3,0.12,0.047,,0.0002,0.14,4.8,5.06,1.98,89.21,50,1.257,0.56,0.073,27682 | |
"Milk, sheep, fluid","Dairy and Egg Products",5.98,0.193,0.044,,0.004200000000000001,0.137,5.36,,7,80.7,108,4.603,1.724,0.308,27683 | |
"Milk, whole, 3.25% milkfat, with added vitamin D","Dairy and Egg Products",3.15,0.113,0.043,,0,0.132,4.8,5.05,3.25,88.13,61,1.865,0.812,0.195,27684 | |
"Milk, whole, 3.25% milkfat, without added vitamin A and vitamin D","Dairy and Egg Products",3.15,0.113,0.043,,0,0.132,4.78,5.05,3.27,88.13,61,1.865,0.812,0.195,27685 | |
"Parmesan cheese topping, fat free","Dairy and Egg Products",40,0.8,1.15,,0,0.6,40,1.5,5,8.6,370,3.11,1.446,0.186,27686 | |
"Protein supplement, milk based, Muscle Milk Light, powder","Dairy and Egg Products",50,1.2,0.25,2,0.042,0.84,22,4,12,12,396,1.087,8.474,1.239,27687 | |
"Protein supplement, milk based, Muscle Milk, powder","Dairy and Egg Products",45.71,0.5,0.329,7.1,0.03,1.129,18.5,5.71,17.14,15,411,1.553,12.105,1.77,27688 | |
"Reddi Wip Fat Free Whipped Topping","Dairy and Egg Products",3,0.108,0.072,0.4,0,0.108,25,16,5,66.44,149,2.869,1.25,0.299,27689 | |
"Sour cream, fat free","Dairy and Egg Products",3.1,0.125,0.141,,0,0.129,15.6,0.39,,80.6,74,,,,27690 | |
"Sour cream, imitation, cultured","Dairy and Egg Products",2.4,0.003,0.102,,0,0.161,6.63,6.63,19.52,71.15,208,17.791,0.588,0.056,27691 | |
"Sour cream, light","Dairy and Egg Products",3.5,0.141,0.071,,0.0009,0.212,7.1,0.22,10.6,78.1,138,6.6,3.1,0.4,27692 | |
"Sour cream, reduced fat","Dairy and Egg Products",7,0.141,0.07,,0.0009,0.211,7,0.3,14.1,71,181,8.7,4.1,0.5,27693 | |
"Sour dressing, non-butterfat, cultured, filled cream-type","Dairy and Egg Products",3.25,0.113,0.048,,0.0009,0.162,4.68,4.68,16.57,74.79,178,13.272,1.958,0.468,27694 | |
"USDA Commodity, cheese, cheddar, reduced fat","Dairy and Egg Products",27.2,0.905,0.725,,0,0.093,2,0.58,18.3,48.2,282,11.58,5.02,0.75,27695 | |
"Whey, acid, dried","Dairy and Egg Products",11.73,2.054,0.968,,0.0009,2.289,73.45,73.45,0.54,3.51,339,0.342,0.149,0.021,27696 | |
"Whey, acid, fluid","Dairy and Egg Products",0.76,0.103,0.048,,0.0001,0.143,5.12,5.12,0.09,93.42,24,0.057,0.025,0.004,27697 | |
"Whey, sweet, dried","Dairy and Egg Products",12.93,0.796,1.079,,0.0015,2.08,74.46,74.46,1.07,3.19,353,0.684,0.297,0.034,27698 | |
"Whey, sweet, fluid","Dairy and Egg Products",0.85,0.047,0.054,,0.0001,0.161,5.14,5.14,0.36,93.12,27,0.23,0.1,0.011,27699 | |
"Whipped cream substitute, dietetic, made from powdered mix","Dairy and Egg Products",0.9,0.003,0.106,,0,0.026,10.6,10.6,6,82.3,100,3.186,1.357,1.158,27700 | |
"Whipped topping, frozen, low fat","Dairy and Egg Products",3,0.071,0.072,,0,0.101,23.6,23.6,13.1,59.7,224,11.273,0.838,0.269,27701 | |
"Yogurt, chocolate, nonfat milk","Dairy and Egg Products",3.53,0.088,0.135,1.2,0,0.339,23.53,14.97,,71.57,112,,,,27702 | |
"Yogurt, chocolate, nonfat milk, fortified with vitamin D","Dairy and Egg Products",3.53,0.088,0.135,1.2,0,0.339,23.53,14.97,,71.57,112,,,,27703 | |
"Yogurt, fruit variety, nonfat","Dairy and Egg Products",4.4,0.152,0.058,,0.0007,0.194,19,19,0.2,75.4,95,0.119,0.05,0.016,27704 | |
"Yogurt, fruit variety, nonfat, fortified with vitamin D","Dairy and Egg Products",4.4,0.152,0.058,,0.0007,0.194,19,19,0.2,75.4,95,0.119,0.05,0.016,27705 | |
"Yogurt, fruit, low fat, 10 grams protein per 8 ounce","Dairy and Egg Products",4.37,0.152,0.058,,0.0007,0.195,19.05,19.05,1.08,74.48,102,0.697,0.297,0.031,27706 | |
"Yogurt, fruit, low fat, 10 grams protein per 8 ounce, fortified with vitamin D","Dairy and Egg Products",4.37,0.152,0.058,,0.0007,0.195,19.05,19.05,1.08,74.48,102,0.697,0.297,0.031,27707 | |
"Yogurt, fruit, low fat, 11 grams protein per 8 ounce","Dairy and Egg Products",4.86,0.169,0.065,,0.0007,0.216,18.6,,1.41,74.1,105,0.909,0.387,0.04,27708 | |
"Yogurt, fruit, low fat, 9 grams protein per 8 ounce","Dairy and Egg Products",3.98,0.138,0.053,,0.0006,0.177,18.64,18.64,1.15,75.3,99,0.742,0.316,0.033,27709 | |
"Yogurt, fruit, low fat, 9 grams protein per 8 ounce, fortified with vitamin D","Dairy and Egg Products",3.98,0.138,0.053,,0.0006,0.177,18.64,18.64,1.15,75.3,99,0.742,0.316,0.033,27710 | |
"Yogurt, fruit, lowfat, with low calorie sweetener","Dairy and Egg Products",4.86,0.152,0.058,,0.0007,0.194,18.6,2.9,1.41,74.1,105,0.909,0.387,0.04,27711 | |
"Yogurt, fruit, lowfat, with low calorie sweetener, fortified with vitamin D","Dairy and Egg Products",4.86,0.152,0.058,,0.0007,0.194,18.6,2.9,1.41,74.1,105,0.909,0.387,0.04,27712 | |
"Yogurt, plain, low fat, 12 grams protein per 8 ounce","Dairy and Egg Products",5.25,0.183,0.07,,0.0008,0.234,7.04,7.04,1.55,85.07,63,1,0.426,0.044,27713 | |
"Yogurt, plain, skim milk, 13 grams protein per 8 ounce","Dairy and Egg Products",5.73,0.199,0.077,,0.0009,0.255,7.68,7.68,0.18,85.23,56,0.116,0.049,0.005,27714 | |
"Yogurt, plain, whole milk, 8 grams protein per 8 ounce","Dairy and Egg Products",3.47,0.121,0.046,,0.0005,0.155,4.66,4.66,3.25,87.9,61,2.096,0.893,0.092,27715 | |
"Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener","Dairy and Egg Products",3.86,0.143,0.059,,0.0011,0.177,7.5,7.5,0.18,87.43,43,0.116,0.049,0.005,27716 | |
"Yogurt, vanilla or lemon flavor, nonfat milk, sweetened with low-calorie sweetener, fortified with vitamin D","Dairy and Egg Products",3.86,0.143,0.059,,0.0011,0.177,7.5,7.5,0.18,87.43,43,0.116,0.049,0.005,27717 | |
"Yogurt, vanilla, low fat, 11 grams protein per 8 ounce","Dairy and Egg Products",4.93,0.171,0.066,,0.0008,0.219,13.8,13.8,1.25,79,85,0.806,0.343,0.036,27718 | |
"Yogurt, vanilla, low fat, 11 grams protein per 8 ounce, fortified with vitamin D","Dairy and Egg Products",4.93,0.171,0.066,,0.0008,0.219,13.8,13.8,1.25,79,85,0.806,0.343,0.036,27719 | |
"Basil, fresh","Spices and Herbs",3.15,0.177,0.004,1.6,0.018,0.295,2.65,0.3,0.64,92.06,23,0.041,0.088,0.389,27720 | |
"CAMPBELL Soup Company, PACE, Dry Taco Seasoning Mix","Spices and Herbs",,0,8.068,18.8,0.045,0,56.29,18.76,,5.7,188,,,,27721 | |
"Capers, canned","Spices and Herbs",2.36,0.04,2.964,3.2,0.0043,0.04,4.89,0.41,0.86,83.85,23,0.233,0.063,0.304,27722 | |
"Dill weed, fresh","Spices and Herbs",3.46,0.208,0.061,2.1,0.085,0.738,7.02,,1.12,85.95,43,0.06,0.802,0.095,27723 | |
"Horseradish, prepared","Spices and Herbs",1.18,0.056,0.314,3.3,0.0249,0.246,11.29,7.99,0.69,85.08,48,0.09,0.13,0.339,27724 | |
"Mustard, prepared, yellow","Spices and Herbs",4.37,0.058,1.135,3.3,0.0015,0.138,5.33,0.86,4.01,82.65,67,0.248,2.627,0.954,27725 | |
"Peppermint, fresh","Spices and Herbs",3.75,0.243,0.031,8,0.0318,0.569,14.89,,0.94,78.65,70,0.246,0.033,0.508,27726 | |
"Rosemary, fresh","Spices and Herbs",3.31,0.317,0.026,14.1,0.0218,0.668,20.7,,5.86,67.77,131,2.838,1.16,0.901,27727 | |
"Salt, table","Spices and Herbs",,0.024,38.758,,0,0.008,,,,0.2,,,,,27728 | |
"Spearmint, dried","Spices and Herbs",19.93,1.488,0.344,29.8,0,1.924,52.04,,6.03,11.3,285,1.577,0.21,3.257,27729 | |
"Spearmint, fresh","Spices and Herbs",3.29,0.199,0.03,6.8,0.013300000000000001,0.458,8.41,,0.73,85.55,44,0.191,0.025,0.394,27730 | |
"Spices, allspice, ground","Spices and Herbs",6.09,0.661,0.077,21.6,0.039200000000000006,1.044,72.12,,8.69,8.46,263,2.55,0.66,2.36,27731 | |
"Spices, anise seed","Spices and Herbs",17.6,0.646,0.016,14.6,0.021,1.441,50.02,,15.9,9.54,337,0.586,9.78,3.15,27732 | |
"Spices, basil, dried","Spices and Herbs",22.98,2.24,0.076,37.7,0.0008,2.63,47.75,1.71,4.07,10.35,233,2.157,1.238,0.498,27733 | |
"Spices, bay leaf","Spices and Herbs",7.61,0.834,0.023,26.3,0.0465,0.529,74.97,,8.36,5.44,313,2.28,1.64,2.29,27734 | |
"Spices, caraway seed","Spices and Herbs",19.77,0.689,0.017,38,0.021,1.351,49.9,0.64,14.59,9.87,333,0.62,7.125,3.272,27735 | |
"Spices, cardamom","Spices and Herbs",10.76,0.383,0.018,28,0.021,1.119,68.47,,6.7,8.28,311,0.68,0.87,0.43,27736 | |
"Spices, celery seed","Spices and Herbs",18.07,1.767,0.16,11.8,0.0171,1.4,41.35,0.67,25.27,6.04,392,2.19,15.93,3.72,27737 | |
"Spices, chervil, dried","Spices and Herbs",23.2,1.346,0.083,11.3,0.05,4.74,49.1,,3.9,7.2,237,0.169,1.399,1.8,27738 | |
"Spices, chili powder","Spices and Herbs",13.46,0.33,1.64,34.8,0.0007,1.95,49.7,7.19,14.28,10.75,282,2.462,3.211,8.006,27739 | |
"Spices, cinnamon, ground","Spices and Herbs",3.99,1.002,0.01,53.1,0.0038,0.431,80.59,2.17,1.24,10.58,247,0.345,0.246,0.068,27740 | |
"Spices, cloves, ground","Spices and Herbs",5.98,0.646,0.243,34.2,0.0808,1.102,61.21,2.38,20.07,6.86,323,5.438,1.471,7.088,27741 | |
"Spices, coriander leaf, dried","Spices and Herbs",21.93,1.246,0.211,10.4,0.5667000000000001,4.466,52.1,7.27,4.78,7.3,279,0.115,2.232,0.328,27742 | |
"Spices, coriander seed","Spices and Herbs",12.37,0.709,0.035,41.9,0.021,1.267,54.99,,17.77,8.86,298,0.99,13.58,1.75,27743 | |
"Spices, cumin seed","Spices and Herbs",17.81,0.931,0.168,10.5,0.0077,1.788,44.24,2.25,22.27,8.06,375,1.535,14.04,3.279,27744 | |
"Spices, curry powder","Spices and Herbs",12.66,0.478,0.052,33.2,0.0114,1.543,58.15,2.76,13.81,9.52,325,2.237,5.551,2.557,27745 | |
"Spices, dill seed","Spices and Herbs",15.98,1.516,0.02,21.1,0.021,1.186,55.17,,14.54,7.7,305,0.73,9.41,1.01,27746 | |
"Spices, dill weed, dried","Spices and Herbs",19.96,1.784,0.208,13.6,0.05,3.308,55.82,,4.36,7.3,253,0.234,,,27747 | |
"Spices, fennel seed","Spices and Herbs",15.8,1.196,0.088,39.8,0.021,1.694,52.29,,14.87,8.81,345,0.48,9.91,1.69,27748 | |
"Spices, fenugreek seed","Spices and Herbs",23,0.176,0.067,24.6,0.003,0.77,58.35,,6.41,8.84,323,1.46,,,27749 | |
"Spices, garlic powder","Spices and Herbs",16.55,0.079,0.06,9,0.0012,1.193,72.73,2.43,0.73,6.45,331,0.249,0.115,0.178,27750 | |
"Spices, ginger, ground","Spices and Herbs",8.98,0.114,0.027,14.1,0.0007,1.32,71.62,3.39,4.24,9.94,335,2.599,0.479,0.929,27751 | |
"Spices, mace, ground","Spices and Herbs",6.71,0.252,0.08,20.2,0.021,0.463,50.5,,32.38,8.17,475,9.51,11.17,4.39,27752 | |
"Spices, marjoram, dried","Spices and Herbs",12.66,1.99,0.077,40.3,0.0514,1.522,60.56,4.09,7.04,7.64,271,0.529,0.94,4.405,27753 | |
"Spices, mustard seed, ground","Spices and Herbs",26.08,0.266,0.013,12.2,0.0070999999999999995,0.738,28.09,6.79,36.24,5.27,508,1.989,22.518,10.088,27754 | |
"Spices, nutmeg, ground","Spices and Herbs",5.84,0.184,0.016,20.8,0.003,0.35,49.29,28.49,36.31,6.23,525,25.94,3.22,0.35,27755 | |
"Spices, onion powder","Spices and Herbs",10.41,0.384,0.073,15.2,0.023399999999999997,0.985,79.12,6.63,1.04,5.39,341,0.219,0.202,0.31,27756 | |
"Spices, oregano, dried","Spices and Herbs",9,1.597,0.025,42.5,0.0023,1.26,68.92,4.09,4.28,9.93,265,1.551,0.716,1.369,27757 | |
"Spices, paprika","Spices and Herbs",14.14,0.229,0.068,34.9,0.0009,2.28,53.99,10.34,12.89,11.24,282,2.14,1.695,7.766,27758 | |
"Spices, parsley, dried","Spices and Herbs",26.63,1.14,0.452,26.7,0.125,2.683,50.64,7.27,5.48,5.89,292,0.774,0.373,4.116,27759 | |
"Spices, pepper, black","Spices and Herbs",10.39,0.443,0.02,25.3,0,1.329,63.95,0.64,3.26,12.46,251,1.392,0.739,0.998,27760 | |
"Spices, pepper, red or cayenne","Spices and Herbs",12.01,0.148,0.03,27.2,0.07640000000000001,2.014,56.63,10.34,17.27,8.05,318,3.26,2.75,8.37,27761 | |
"Spices, pepper, white","Spices and Herbs",10.4,0.265,0.005,26.2,0.021,0.073,68.61,,2.12,11.42,296,0.626,0.789,0.616,27762 | |
"Spices, poppy seed","Spices and Herbs",17.99,1.438,0.026,19.5,0.001,0.719,28.13,2.99,41.56,5.95,525,4.517,5.982,28.569,27763 | |
"Spices, poultry seasoning","Spices and Herbs",9.59,0.996,0.027,11.3,0.012,0.684,65.59,3.08,7.53,9.31,307,3.29,1.206,1.936,27764 | |
"Spices, pumpkin pie spice","Spices and Herbs",5.76,0.682,0.052,14.8,0.023399999999999997,0.663,69.28,7.76,12.6,8.46,342,6.53,1.102,0.78,27765 | |
"Spices, rosemary, dried","Spices and Herbs",4.88,1.28,0.05,42.6,0.061200000000000004,0.955,64.06,,15.22,9.31,331,7.371,3.014,2.339,27766 | |
"Spices, saffron","Spices and Herbs",11.43,0.111,0.148,3.9,0.0808,1.724,65.37,,5.85,11.9,310,1.586,0.429,2.067,27767 | |
"Spices, sage, ground","Spices and Herbs",10.63,1.652,0.011,40.3,0.0324,1.07,60.73,1.71,12.75,7.96,315,7.03,1.87,1.76,27768 | |
"Spices, savory, ground","Spices and Herbs",6.73,2.132,0.024,45.7,0.05,1.051,68.73,,5.91,9,272,3.26,,,27769 | |
"Spices, tarragon, dried","Spices and Herbs",22.77,1.139,0.062,7.4,0.05,3.02,50.22,,7.24,7.74,295,1.881,0.474,3.698,27770 | |
"Spices, thyme, dried","Spices and Herbs",9.11,1.89,0.055,37,0.05,0.814,63.94,1.71,7.43,7.79,276,2.73,0.47,1.19,27771 | |
"Spices, turmeric, ground","Spices and Herbs",7.83,0.183,0.038,21.1,0.0259,2.525,64.93,3.21,9.88,11.36,354,3.12,1.66,2.18,27772 | |
"Thyme, fresh","Spices and Herbs",5.56,0.405,0.009,14,0.1601,0.609,24.45,,1.68,65.11,101,0.467,0.081,0.532,27773 | |
"Vanilla extract","Spices and Herbs",0.06,0.011,0.009,,0,0.148,12.65,12.65,0.06,52.58,288,0.01,0.01,0.004,27774 | |
"Vanilla extract, imitation, alcohol","Spices and Herbs",0.05,0,0.004,,0,0.098,2.41,,,64.46,237,,,,27775 | |
"Vanilla extract, imitation, no alcohol","Spices and Herbs",0.03,0.003,0.003,,0,0,14.4,14.4,,85.58,56,,,,27776 | |
"Vinegar, balsamic","Spices and Herbs",0.49,0.027,0.023,,0,0.112,17.03,14.95,,76.45,88,,,,27777 | |
"Vinegar, cider","Spices and Herbs",,0.007,0.005,,0,0.073,0.93,0.4,,93.81,21,,,,27778 | |
"Vinegar, distilled","Spices and Herbs",,0.006,0.002,,0,0.002,0.04,0.04,,94.78,18,,,,27779 | |
"Vinegar, red wine","Spices and Herbs",0.04,0.006,0.008,,0.0005,0.039,0.27,,,94.47,19,,,,27780 | |
"Baby food, fortified cereal bar, fruit filling","Baby Foods",5.43,1.053,0.25,1.7,0.0024,0.18,68.63,42,5.3,14,344,0.453,3.107,1.541,27781 | |
"Babyfood, apple yogurt dessert, strained","Baby Foods",0.8,0.006,0.02,0.5,0.0351,0.07,19.5,12.02,1.6,77.9,96,1.034,0.438,0.044,27782 | |
"Babyfood, apple-banana juice","Baby Foods",0.2,0.007,0.004,0.2,0.027899999999999998,0.123,12.3,11,0.1,87.1,51,0.018,0.004,0.034,27783 | |
"Babyfood, apple-cranberry juice","Baby Foods",,0.006,0.005,,0.027899999999999998,0.097,11.49,6.88,0.02,88.3,46,0.007,,0.012,27784 | |
"Babyfood, apples with ham, strained","Baby Foods",2.6,0.004,0.009,1.8,0.0001,0.12,10.9,7.98,0.9,85.3,62,0.25,0.36,0.111,27785 | |
"Babyfood, apples, dices, toddler","Baby Foods",0.2,0.01,0.006,0.9,0.0313,0.05,12.1,10.83,0.1,87.5,51,0.02,0.004,0.03,27786 | |
"Babyfood, baked product, finger snacks cereal","Baby Foods",6.4,0.4,0.324,2.3,0.01,0.114,76.68,28,9.9,3.7,421,1.646,3.13,3.638,27787 | |
"Babyfood, banana apple dessert, strained","Baby Foods",0.3,0.003,0.007,1,0.0123,0.071,16.3,14.66,0.2,83.1,68,0.058,0.018,0.047,27788 | |
"Babyfood, banana juice with low fat yogurt","Baby Foods",2.5,0.079,0.037,0.4,0.0339,0.16,17.54,13.28,0.8,78.5,89,0.517,0.219,0.022,27789 | |
"Babyfood, banana no tapioca, strained","Baby Foods",1,0.004,0.002,1.6,0.0219,0.29,21.34,11.36,0.2,76.7,91,0.072,0.028,0.041,27790 | |
"Babyfood, carrots and beef, strained","Baby Foods",3.4,0.022,0.069,2.6,0.0008,0.226,5.7,2.04,2.5,87.3,59,0.96,1.06,0.13,27791 | |
"Babyfood, carrots, toddler","Baby Foods",0.6,0.019,0.048,2.3,0.0007,0.129,5.23,2.5,0.3,93.5,26,0.052,0.012,0.148,27792 | |
"Babyfood, cereal, barley, dry","Baby Foods",11.1,0.795,0.012,8.2,0.0022,0.395,75.3,3.1,3.4,6.8,365,0.418,0.666,1.759,27793 | |
"Babyfood, cereal, barley, prepared with whole milk","Baby Foods",3.73,0.162,0.043,0.6,0.0002,0.151,9.94,5.1,3.26,82.19,84,1.76,0.802,0.309,27794 | |
"Babyfood, cereal, brown rice, dry, instant","Baby Foods",8.7,0.055,0.009,6.5,0,0.386,85.65,0.92,3,1,404,0.6,1.08,1.07,27795 | |
"Babyfood, cereal, egg yolks and bacon, junior","Baby Foods",2.5,0.028,0.048,0.9,0.0009,0.035,6.2,,5,85.9,79,1.64,2.207,0.641,27796 | |
"Babyfood, cereal, high protein, prepared with whole milk","Baby Foods",8.7,0.218,0.049,,0,0.349,11.6,,3.8,74.5,111,,,,27797 | |
"Babyfood, cereal, high protein, with apple and orange, dry","Baby Foods",25.4,0.751,0.104,7.1,0.0031,1.33,57.6,,6.5,5.3,374,0.96,1.231,3.429,27798 | |
"Babyfood, cereal, high protein, with apple and orange, prepared with whole milk","Baby Foods",6.9,0.223,0.058,,0,0.346,13.4,,3.9,74.4,112,,,,27799 | |
"Babyfood, cereal, mixed, dry","Baby Foods",12.2,0.733,0.003,7.5,0.0023,0.437,73.4,0.87,4.4,6.7,379,0.769,1.206,1.697,27800 | |
"Babyfood, cereal, mixed, prepared with whole milk","Baby Foods",4.14,0.22,0.042,0.8,0.0003,0.166,12.3,4.78,3.38,79.21,96,1.745,0.855,0.359,27801 | |
"Babyfood, cereal, mixed, with applesauce and bananas, junior","Baby Foods",1.2,0.004,0.003,1.2,0.0091,0.032,18.4,7.79,0.4,79.6,83,0.072,0.108,0.152,27802 | |
"Babyfood, cereal, mixed, with applesauce and bananas, strained","Baby Foods",1.2,0.006,0.003,1.2,0.0255,0.041,18,7.79,0.5,80,82,0.09,0.135,0.191,27803 | |
"Babyfood, cereal, mixed, with bananas, dry","Baby Foods",10.7,0.696,0,7.8,0.0036,0.668,77.1,6.68,4.6,4.5,391,0.846,1.223,1.734,27804 | |
"Babyfood, cereal, mixed, with bananas, prepared with whole milk","Baby Foods",3.82,0.153,0.048,0.4,0.0004,0.178,10,5.9,3.46,81.81,86,1.808,0.859,0.342,27805 | |
"Babyfood, cereal, mixed, with honey, prepared with whole milk","Baby Foods",5,0.294,0.048,,0,0.171,15.9,,3.6,74.2,115,,,,27806 | |
"Babyfood, cereal, oatmeal, dry","Baby Foods",13.07,0.707,0.004,9,0,0.42,69.65,3.84,8,5.9,399,1.37,2.57,2.47,27807 | |
"Babyfood, cereal, oatmeal, prepared with whole milk","Baby Foods",5,0.22,0.046,1.1,0.0013,0.204,15.3,,4.1,74.5,116,2.258,,,27808 | |
"Babyfood, cereal, oatmeal, with applesauce and bananas, junior","Baby Foods",1.3,0.006,0.003,0.8,0.0245,0.048,15.7,9.48,0.7,81.8,75,0.126,0.216,0.253,27809 | |
"Babyfood, cereal, oatmeal, with applesauce and bananas, strained","Baby Foods",1.3,0.009,0.003,0.8,0.0218,0.047,15.4,10.49,0.7,82.2,74,0.125,0.216,0.253,27810 | |
"Babyfood, cereal, oatmeal, with bananas, dry","Baby Foods",12,0.651,0.006,5.2,0.0047,0.731,73.4,13.75,6,4.7,393,1.267,1.429,2.186,27811 | |
"Babyfood, cereal, oatmeal, with bananas, prepared with whole milk","Baby Foods",3.82,0.153,0.048,0.4,0.0004,0.178,10,5.9,3.46,81.81,86,1.82,0.859,0.345,27812 | |
"Babyfood, cereal, oatmeal, with honey, dry","Baby Foods",13.5,1.154,0.047,,0,0.259,69.3,,7,5.8,391,,,,27813 | |
"Babyfood, cereal, oatmeal, with honey, prepared with whole milk","Baby Foods",5,0.289,0.049,,0,0.17,15.3,,3.9,74.5,115,,,,27814 | |
"Babyfood, cereal, rice, dry","Baby Foods",7.1,0.85,0.006,0.5,0.0024,0.385,77.7,0.12,4.9,6.7,391,0.919,1.26,2.016,27815 | |
"Babyfood, cereal, rice, prepared with whole milk","Baby Foods",3.45,0.168,0.042,,0.0002,0.151,10.31,4.87,3.38,81.96,85,1.793,0.846,0.333,27816 | |
"Babyfood, cereal, rice, with applesauce and bananas, strained","Baby Foods",1.2,0.017,0.004,1,0.0316,0.028,17.1,2.24,0.4,81,80,0.114,0.104,0.102,27817 | |
"Babyfood, cereal, rice, with bananas, dry","Baby Foods",8.7,0.691,0,1,0.002,0.769,79.9,16.7,4.2,4.7,404,0.978,0.986,1.503,27818 | |
"Babyfood, cereal, rice, with bananas, prepared with whole milk","Baby Foods",3.57,0.156,0.047,0.1,0.0002,0.18,10.49,6.13,3.32,81.81,86,1.798,0.826,0.294,27819 | |
"Babyfood, cereal, rice, with honey, prepared with whole milk","Baby Foods",3.9,0.291,0.049,,0,0.141,17.1,,3.3,74.4,115,,,,27820 | |
"Babyfood, cereal, rice, with mixed fruit, junior","Baby Foods",0.9,0.016,0.01,0.6,0.009300000000000001,0.05,18.3,10.5,0.2,80.4,82,0.06,0.04,0.05,27821 | |
"Babyfood, cereal, whole wheat, with apples, dry","Baby Foods",12.6,0.6,0.025,12.2,0.0583,0.516,77.1,22.2,4.8,1.7,402,0.639,1.277,1.866,27822 | |
"Babyfood, cereal, with egg yolks, junior","Baby Foods",1.9,0.024,0.033,0.9,0.0007,0.035,7.1,,1.8,88.7,52,0.61,0.79,0.3,27823 | |
"Babyfood, cereal, with egg yolks, strained","Baby Foods",1.9,0.024,0.033,0.9,0.0007,0.039,7,,1.8,88.8,51,0.61,0.79,0.3,27824 | |
"Babyfood, cereal, with eggs, strained","Baby Foods",2.2,0.027,0.038,,0.0008,0.044,8,,1.5,87.2,58,0.49,0.61,0.33,27825 | |
"Babyfood, cherry cobbler, junior","Baby Foods",0.3,0.005,0,0.2,0.009300000000000001,0.045,19.2,10.39,0.1,79.8,78,0.02,0.02,0.03,27826 | |
"Babyfood, cookie, baby, fruit","Baby Foods",6.8,0.083,0.009,3.4,0.0015,0.425,73.7,24.2,12.6,5.7,435,2.7,4.865,4.334,27827 | |
"Babyfood, cookies","Baby Foods",11.8,0.101,0.357,0.2,0.007,0.501,67.1,24.2,13.2,5.9,433,2.352,5.99,2.878,27828 | |
"Babyfood, cookies, arrowroot","Baby Foods",7.6,0.032,0.319,0.2,0.0055,0.156,71.1,,14.3,5.6,442,1.048,7.922,0.591,27829 | |
"Babyfood, corn and sweet potatoes, strained","Baby Foods",1.26,0.018,0.014,1.8,0.005,0.154,15.23,4,0.28,82.62,68,0.053,0.071,0.123,27830 | |
"Babyfood, crackers, vegetable","Baby Foods",8.4,0.041,0.571,4,0.0505,0.245,66.85,13,19.6,2,477,1.966,15.779,1.022,27831 | |
"Babyfood, dessert, banana pudding, strained","Baby Foods",1,0.011,0.054,0.8,0.012,0.09,14.14,10.55,0.8,83.5,68,0.264,0.277,0.111,27832 | |
"Babyfood, dessert, banana yogurt, strained","Baby Foods",1.1,0.03,0.014,0.5,0.013900000000000001,0.1,17.4,3.95,0.52,80.7,79,0.37,0.12,0.03,27833 | |
"Babyfood, dessert, blueberry yogurt, strained","Baby Foods",0.5,0.025,0.014,0.4,0.0124,0.062,17.05,13.62,0.7,81.4,77,0.452,0.192,0.019,27834 | |
"Babyfood, dessert, cherry vanilla pudding, junior","Baby Foods",0.2,0.005,0,0.3,0.0011,0.033,18.4,16.98,0.2,81,69,0.058,0.07,0.036,27835 | |
"Babyfood, dessert, cherry vanilla pudding, strained","Baby Foods",0.2,0.005,0,0.3,0.0011,0.034,17.8,9.15,0.3,81.5,68,0.087,0.105,0.053,27836 | |
"Babyfood, dessert, custard pudding, vanilla, junior","Baby Foods",1.76,0.054,0.026,0.2,0.0004,0.068,17.58,12.2,0.98,79.31,86,0.325,0.364,0.128,27837 | |
"Babyfood, dessert, custard pudding, vanilla, strained","Baby Foods",1.6,0.055,0,,0.0008,0.066,16,11.5,2,79.9,85,1.01,0.68,0.16,27838 | |
"Babyfood, dessert, dutch apple, junior","Baby Foods",0.2,0.003,0.003,1.4,0.018,0.067,19.29,17.89,0.16,80.32,79,0.025,0.006,0.045,27839 | |
"Babyfood, dessert, dutch apple, strained","Baby Foods",0.2,0.005,0,1.4,0.0214,0.033,19.74,17.89,0.4,79.5,75,0.19,0.08,0.01,27840 | |
"Babyfood, dessert, fruit dessert, without ascorbic acid, junior","Baby Foods",0.3,0.009,0,0.6,0.003,0.095,17.2,12,,82.2,63,,,,27841 | |
"Babyfood, dessert, fruit dessert, without ascorbic acid, strained","Baby Foods",0.3,0.009,0,0.6,0.0025,0.094,16,12.6,,83.4,59,,,,27842 | |
"Babyfood, dessert, fruit pudding, orange, strained","Baby Foods",1.1,0.032,0.02,0.6,0.0091,0.086,17.7,,0.9,79.8,80,0.545,0.257,0.038,27843 | |
"Babyfood, dessert, fruit pudding, pineapple, strained","Baby Foods",1.3,0.031,0,0.7,0.0272,0.081,20.3,10.28,0.3,77.6,81,0.099,0.109,0.041,27844 | |
"Babyfood, dessert, peach cobbler, junior","Baby Foods",0.3,0.004,0,0.7,0.0205,0.056,18.3,11.89,,81.2,67,,,,27845 | |
"Babyfood, dessert, peach cobbler, strained","Baby Foods",0.3,0.004,0.007,0.7,0.0205,0.054,17.8,10.62,,81.8,65,,,,27846 | |
"Babyfood, dessert, peach yogurt","Baby Foods",0.9,0.027,0.014,0.4,0.011699999999999999,0.102,17.6,6.63,0.18,80.87,76,0.117,0.048,0.005,27847 | |
"Babyfood, dessert, tropical fruit, junior","Baby Foods",0.2,0.01,0.007,,0.0188,0.058,16.4,,,83.2,60,,,,27848 | |
"Babyfood, dinner, apples and chicken, strained","Baby Foods",2.16,0.018,0.012,1.8,0.0002,0.095,10.87,7.9,1.38,85.4,65,0.347,0.411,0.35,27849 | |
"Babyfood, dinner, beef and rice, toddler","Baby Foods",5,0.011,0.032,,0.0039,0.12,8.8,,2.9,81.9,82,,,,27850 | |
"Babyfood, dinner, beef lasagna, toddler","Baby Foods",4.2,0.018,0.041,,0.0019,0.122,10,,2.1,82.3,77,,,,27851 | |
"Babyfood, dinner, beef noodle, junior","Baby Foods",2.5,0.008,0.026,1.1,0.0014,0.046,7.3,1.45,1.9,87.8,57,0.766,0.838,0.094,27852 | |
"Babyfood, dinner, beef noodle, strained","Baby Foods",2.44,0.01,0.015,1.3,0.0001,0.087,8.18,1.42,2.26,86.84,63,0.937,0.941,0.141,27853 | |
"Babyfood, dinner, beef stew, toddler","Baby Foods",5.1,0.009,0.106,1.1,0.003,0.142,5.5,1.39,1.2,86.9,51,0.58,0.44,0.1,27854 | |
"Babyfood, dinner, beef with vegetables","Baby Foods",2.03,0.019,0.038,1.8,0,0.127,6.36,2.16,6.93,84.3,96,2.84,3.12,0.9,27855 | |
"Babyfood, dinner, broccoli and chicken, junior","Baby Foods",3.59,0.037,0.017,1.4,0.0177,0.17,6.34,1.43,2.48,86.92,62,0.51,0.77,0.43,27856 | |
"Babyfood, dinner, chicken and noodle with vegetables, toddler","Baby Foods",3.8,0.011,0.235,0.6,0.0017,0.095,8.89,0.82,1.7,85.3,66,0.461,0.632,0.392,27857 | |
"Babyfood, dinner, chicken and rice","Baby Foods",1.6,0.018,0.025,1.1,0.001,0.06,9.2,0.55,0.9,88,51,0.211,0.392,0.188,27858 | |
"Babyfood, dinner, chicken noodle, junior","Baby Foods",2.37,0.021,0.035,0.9,0.0001,0.039,8.79,1.07,1.18,87.25,55,0.338,0.467,0.272,27859 | |
"Babyfood, dinner, chicken noodle, strained","Baby Foods",2.69,0.027,0.038,2.1,0.0001,0.139,9.08,2.5,2.06,85.64,66,0.595,0.854,0.461,27860 | |
"Babyfood, dinner, chicken soup, strained","Baby Foods",1.6,0.037,0.016,1.1,0.001,0.066,7.2,1.72,1.7,89.1,50,0.278,0.425,0.9,27861 | |
"Babyfood, dinner, chicken stew, toddler","Baby Foods",5.2,0.036,0.025,0.6,0.0019,0.092,6.4,1.68,3.7,83.3,78,1.1,1.7,0.77,27862 | |
"Babyfood, dinner, macaroni and cheese, junior","Baby Foods",2.6,0.051,0.266,0.3,0.0013,0.044,8.2,1.32,2,86.5,61,1.175,0.534,0.132,27863 | |
"Babyfood, dinner, macaroni and cheese, strained","Baby Foods",3.14,0.066,0.119,0.7,0.0001,0.067,8.95,1.27,2.11,85.25,67,1.291,0.581,0.103,27864 | |
"Babyfood, dinner, macaroni and tomato and beef, junior","Baby Foods",2.5,0.014,0.035,1.1,0.0015,0.072,9.4,2.43,1.1,86.7,59,0.411,0.447,0.079,27865 | |
"Babyfood, dinner, macaroni and tomato and beef, strained","Baby Foods",2.36,0.017,0.038,1.2,0.0003,0.112,9.45,2.09,1.47,86.34,61,0.486,0.594,0.193,27866 | |
"Babyfood, dinner, macaroni, beef and tomato sauce, toddler","Baby Foods",4.34,0.012,0.035,1.1,0.0019,0.148,11.53,0.37,1.9,81.81,81,0.705,0.782,0.14,27867 | |
"Babyfood, dinner, mixed vegetable, junior","Baby Foods",1,0.017,0.038,,0.0033,0.112,8,,,90.6,33,,,,27868 | |
"Babyfood, dinner, mixed vegetable, strained","Baby Foods",1.2,0.022,0.038,,0.0028,0.121,9.5,,0.1,88.7,41,,,,27869 | |
"Babyfood, dinner, pasta with vegetables","Baby Foods",1.7,0.014,0.011,1.5,0.0029,0.133,8.4,1.2,2.1,87.3,60,1.23,0.58,0.144,27870 | |
"Babyfood, dinner, potatoes with cheese and ham, toddler","Baby Foods",3.5,0.053,0.205,1.2,0.0001,0.143,11.97,0.8,2,81.5,78,1.1,0.733,0.163,27871 | |
"Babyfood, dinner, spaghetti and tomato and meat, junior","Baby Foods",2.57,0.015,0.03,1.1,0.0002,0.122,11.42,2.72,1.37,84.17,68,0.543,0.497,0.185,27872 | |
"Babyfood, dinner, spaghetti and tomato and meat, toddler","Baby Foods",5.3,0.022,0.239,,0.0040999999999999995,0.163,10.8,,1,81.6,75,,,,27873 | |
"Babyfood, dinner, sweet potatoes and chicken, strained","Baby Foods",2.51,0.03,0.022,1.3,0,0.2,11.04,5.37,2.17,83.7,74,0.572,0.98,0.48,27874 | |
"Babyfood, dinner, turkey and rice, junior","Baby Foods",2.37,0.024,0.023,1,0.0003,0.086,9.57,1.25,0.92,86.64,56,0.239,0.304,0.233,27875 | |
"Babyfood, dinner, turkey and rice, strained","Baby Foods",2.27,0.018,0.019,0.9,0.0002,0.091,7.94,1.66,1.24,88.22,52,0.338,0.446,0.308,27876 | |
"Babyfood, dinner, turkey, rice, and vegetables, toddler","Baby Foods",3.8,0.011,0.276,0.8,0.0003,0.107,7.5,0.66,1.6,86.3,60,0.5,0.555,0.309,27877 | |
"Babyfood, dinner, vegetables and bacon, strained","Baby Foods",1.92,0.014,0.049,1.7,0.0003,0.116,8.81,1.77,2.95,85.75,69,1.063,1.347,0.377,27878 | |
"Babyfood, dinner, vegetables and beef, junior","Baby Foods",2.21,0.017,0.031,1.3,0.0002,0.145,8.84,2.34,3.6,84.94,77,1.367,1.289,0.298,27879 | |
"Babyfood, dinner, vegetables and beef, strained","Baby Foods",2.21,0.017,0.031,1.3,0.0002,0.145,8.84,2.34,3.6,84.94,77,0.87,0.82,0.19,27880 | |
"Babyfood, dinner, vegetables and chicken, junior","Baby Foods",2.04,0.027,0.034,1.1,0.0002,0.083,8.66,1.46,1.12,87.76,53,0.302,0.402,0.269,27881 | |
"Babyfood, dinner, vegetables and dumplings and beef, junior","Baby Foods",2.1,0.014,0.052,,0.0008,0.047,8,,0.8,88.6,48,,,,27882 | |
"Babyfood, dinner, vegetables and dumplings and beef, strained","Baby Foods",2,0.014,0.049,,0.0008,0.046,7.7,,0.9,88.9,48,,,,27883 | |
"Babyfood, dinner, vegetables and ham, junior","Baby Foods",2.02,0.014,0.045,1,0.0011,0.097,8.64,0.99,1.89,87,60,0.483,0.811,0.448,27884 | |
"Babyfood, dinner, vegetables and ham, strained","Baby Foods",2.19,0.016,0.016,1.6,0.0016,0.141,7.8,1.37,2.14,87.47,59,0.764,0.963,0.234,27885 | |
"Babyfood, dinner, vegetables and lamb, junior","Baby Foods",2.1,0.013,0.013,1.1,0.0017,0.095,7.1,0.94,1.7,88.6,51,0.696,0.69,0.154,27886 | |
"Babyfood, dinner, vegetables and lamb, strained","Baby Foods",2,0.012,0.02,1.1,0.0012,0.094,6.9,0.94,2,88.6,52,0.828,0.822,0.167,27887 | |
"Babyfood, dinner, vegetables and noodles and turkey, junior","Baby Foods",1.8,0.032,0.017,1.1,0.0008,0.073,7.6,,1.5,88.7,52,,,,27888 | |
"Babyfood, dinner, vegetables and noodles and turkey, strained","Baby Foods",1.2,0.032,0.021,1.1,0.0008,0.063,6.8,,1.2,90.3,44,,,,27889 | |
"Babyfood, dinner, vegetables and turkey, junior","Baby Foods",1.72,0.016,0.045,0.9,0.0004,0.098,7.55,1.36,1.74,88.5,53,0.485,0.687,0.391,27890 | |
"Babyfood, dinner, vegetables and turkey, strained","Baby Foods",2.32,0.027,0.02,1.5,0.0007,0.102,7.62,1.54,0.9,88.82,48,0.236,0.294,0.241,27891 | |
"Babyfood, dinner, vegetables and turkey, toddler","Baby Foods",4.8,0.046,0.041,,0.0034,0.166,8.1,,3.4,82.3,80,,,,27892 | |
"Babyfood, dinner, vegetables chicken, strained","Baby Foods",2.47,0.027,0.024,2.1,0.0001,0.158,8.42,1.58,1.73,86.9,59,0.496,0.712,0.374,27893 | |
"Babyfood, dinner, vegetables, noodles and chicken, junior","Baby Foods",1.7,0.026,0.026,1.1,0.0008,0.059,9.1,,2.2,86.2,64,,,,27894 | |
"Babyfood, dinner, vegetables, noodles and chicken, strained","Baby Foods",2,0.028,0.02,1.1,0.0007,0.055,7.9,,2.5,87.2,63,,,,27895 | |
"Babyfood, fruit and vegetable, apple and sweet potato","Baby Foods",0.3,0.008,0.003,1.4,0.0064,0.149,15.3,11.6,0.22,84,64,0.041,0.008,0.079,27896 | |
"Babyfood, fruit dessert, mango with tapioca","Baby Foods",0.3,0.008,0.004,1.1,0.0158,0.066,19,13,0.2,80,70,0.039,0.06,0.03,27897 | |
"Babyfood, fruit supreme dessert","Baby Foods",0.5,0.006,0.001,2,0.0127,0.129,17.18,14.87,0.2,81.6,73,0.03,0.025,0.068,27898 | |
"Babyfood, fruit, apple and blueberry, junior","Baby Foods",0.2,0.005,0.001,1.8,0.013900000000000001,0.065,16.6,8.83,0.2,82.8,62,0.024,0.019,0.073,27899 | |
"Babyfood, fruit, apple and blueberry, strained","Baby Foods",0.2,0.004,0.001,1.8,0.027800000000000002,0.069,16.3,13.93,0.2,83.1,61,0.024,0.019,0.073,27900 | |
"Babyfood, fruit, apple and raspberry, junior","Baby Foods",0.2,0.005,0,2.1,0.0289,0.072,15.4,12.96,0.2,84,58,0.032,0.008,0.063,27901 | |
"Babyfood, fruit, apple and raspberry, strained","Baby Foods",0.2,0.005,0,2.1,0.0268,0.08,15.6,12.96,0.2,83.8,58,0.033,0.008,0.062,27902 | |
"Babyfood, fruit, applesauce and apricots, junior","Baby Foods",0.2,0.006,0,1.8,0.0179,0.109,12.4,8.72,0.2,86.9,47,0.028,0.03,0.051,27903 | |
"Babyfood, fruit, applesauce and apricots, strained","Baby Foods",0.2,0.006,0,1.8,0.0189,0.12,11.64,9.25,0.2,87.7,44,0.024,0.037,0.045,27904 | |
"Babyfood, fruit, applesauce and cherries, junior","Baby Foods",,0.001,0.001,1.1,0.0428,0.132,14.1,10.61,,85.6,51,,,,27905 | |
"Babyfood, fruit, applesauce and cherries, strained","Baby Foods",,0.001,0.001,1.1,0.0428,0.132,14.1,10.81,,85.63,51,,,,27906 | |
"Babyfood, fruit, applesauce and pineapple, junior","Baby Foods",0.1,0.004,0.002,1.5,0.0268,0.076,10.5,,0.1,89.1,39,0.011,0.009,0.032,27907 | |
"Babyfood, fruit, applesauce and pineapple, strained","Baby Foods",0.1,0.004,0.002,1.5,0.0281,0.078,10.1,,0.1,89.5,37,0.01,0.009,0.032,27908 | |
"Babyfood, fruit, applesauce with banana, junior","Baby Foods",0.37,0.005,0.003,1.6,0.0173,0.131,16.16,4.35,0.1,83.14,66,0.04,0.01,0.05,27909 | |
"Babyfood, fruit, applesauce, junior","Baby Foods",,0.005,0.001,1.7,0.0378,0.077,10.3,8.48,,89.5,37,,,,27910 | |
"Babyfood, fruit, applesauce, strained","Baby Foods",0.2,0.004,0,1.7,0.038299999999999994,0.071,10.8,9.87,0.2,88.6,41,0.032,0.008,0.056,27911 | |
"Babyfood, fruit, apricot with tapioca, junior","Baby Foods",0.3,0.008,0,1.5,0.0179,0.125,17.3,1.4,,82.1,63,,,,27912 | |
"Babyfood, fruit, apricot with tapioca, strained","Baby Foods",0.3,0.009,0,1.5,0.0216,0.121,16.3,1.41,,83.1,60,,,,27913 | |
"Babyfood, fruit, bananas and pineapple with tapioca, junior","Baby Foods",0.2,0.007,0,1.6,0.0212,0.078,18.4,8.41,0.1,81.1,68,0.036,0.009,0.02,27914 | |
"Babyfood, fruit, bananas and pineapple with tapioca, strained","Baby Foods",0.2,0.007,0,1.6,0.0192,0.068,17.8,10.73,,81.7,65,,,,27915 | |
"Babyfood, fruit, bananas with apples and pears, strained","Baby Foods",0.9,0.005,0.002,1.4,0.013900000000000001,0.233,19.31,12.76,0.22,79,83,0.106,0.028,0.085,27916 | |
"Babyfood, fruit, bananas with tapioca, junior","Baby Foods",0.4,0.008,0,1.6,0.0257,0.108,17.8,7.1,0.2,81.5,67,0.076,0.018,0.037,27917 | |
"Babyfood, fruit, bananas with tapioca, strained","Baby Foods",0.4,0.005,0,1.6,0.0167,0.088,15.3,0.38,0.1,84,56,0.035,0.01,0.019,27918 | |
"Babyfood, fruit, guava and papaya with tapioca, strained","Baby Foods",0.2,0.007,0.004,,0.0809,0.074,17,,0.1,82.5,63,,,,27919 | |
"Babyfood, fruit, papaya and applesauce with tapioca, strained","Baby Foods",0.2,0.007,0.005,1.4,0.11309999999999999,0.079,18.9,,0.1,80.6,70,,,,27920 | |
"Babyfood, fruit, peaches, junior","Baby Foods",0.94,0.004,0.004,1.3,0.0461,0.195,14.48,11.5,0.33,83.65,65,0.02,0.01,0.04,27921 | |
"Babyfood, fruit, peaches, strained","Baby Foods",0.94,0.004,0.004,1.3,0.0461,0.195,14.48,11.5,0.33,83.65,65,0.02,0.01,0.04,27922 | |
"Babyfood, fruit, pears and pineapple, junior","Baby Foods",0.3,0.01,0,2.6,0.016800000000000002,0.118,11.4,7.36,0.2,87.8,44,0.013,0.031,0.058,27923 | |
"Babyfood, fruit, pears and pineapple, strained","Baby Foods",0.3,0.01,0,2.6,0.0275,0.116,10.9,7.79,0.1,88.5,41,0.007,0.016,0.029,27924 | |
"Babyfood, fruit, pears, junior","Baby Foods",0.3,0.008,0.001,3.6,0.022,0.115,11.6,7.34,0.1,87.8,44,0.006,0.021,0.023,27925 | |
"Babyfood, fruit, pears, strained","Baby Foods",0.3,0.008,0.001,3.6,0.0245,0.13,10.8,6.98,0.2,88.4,42,0.012,0.042,0.046,27926 | |
"Babyfood, fruit, plums with tapioca, without ascorbic acid, junior","Baby Foods",0.1,0.006,0,1.2,0.0008,0.083,20.5,13.64,,79.2,74,,,,27927 | |
"Babyfood, fruit, plums with tapioca, without ascorbic acid, strained","Baby Foods",0.1,0.006,0,1.2,0.0011,0.085,19.7,13.34,,80,71,,,,27928 | |
"Babyfood, fruit, prunes with tapioca, without ascorbic acid, junior","Baby Foods",0.6,0.015,0.002,2.7,0.0008,0.162,18.7,10.97,0.1,80.1,70,0.008,0.066,0.022,27929 | |
"Babyfood, fruit, prunes with tapioca, without ascorbic acid, strained","Baby Foods",0.6,0.015,0.005,2.7,0.0008,0.177,18.5,10.97,0.1,80.3,69,0.008,0.066,0.022,27930 | |
"Babyfood, fruit, tutti frutti, junior","Baby Foods",0.4,0.014,0.017,0.4,0.0072,0.047,16,9.41,0.4,82.9,69,0.11,0.148,0.061,27931 | |
"Babyfood, fruit, tutti frutti, strained","Baby Foods",0.4,0.015,0.025,0.6,0.0124,0.046,15.48,9.29,0.3,83.5,66,0.087,0.113,0.043,27932 | |
"Babyfood, green beans, dices, toddler","Baby Foods",1.2,0.027,0.037,1.3,0.0017,0.116,5.7,1.06,0.2,92.6,29,0.044,0.008,0.102,27933 | |
"Babyfood, juice treats, fruit medley, toddler","Baby Foods",,0.012,0.089,,0.008,0.054,86.68,57.4,,12.89,347,,,,27934 | |
"Babyfood, juice, apple","Baby Foods",,0.004,0.008,0.1,0.0579,0.091,11.7,10.7,0.1,88,47,0.018,0.002,0.031,27935 | |
"Babyfood, juice, apple - cherry","Baby Foods",0.2,0.007,0.004,0.3,0.032100000000000004,0.11,11.2,10.5,0.1,88.2,47,0.02,,0.03,27936 | |
"Babyfood, juice, apple and cherry","Baby Foods",0.1,0.005,0,0.1,0.0583,0.098,9.9,8.98,0.2,89.5,41,0.035,0.011,0.06,27937 | |
"Babyfood, juice, apple and grape","Baby Foods",0.1,0.006,0,0.1,0.0315,0.09,11.34,10.9,0.2,88.1,46,0.04,0.009,0.059,27938 | |
"Babyfood, juice, apple and peach","Baby Foods",0.2,0.003,0,0.1,0.0585,0.097,10.5,9.59,0.1,89,43,0.018,0.002,0.031,27939 | |
"Babyfood, juice, apple and plum","Baby Foods",0.1,0.005,0,0.1,0.0582,0.101,12.3,11.54,,87.3,49,,,,27940 | |
"Babyfood, juice, apple and prune","Baby Foods",0.2,0.009,0.008,0.1,0.0675,0.148,18.1,10.58,0.1,81.3,72,0.018,0.006,0.031,27941 | |
"Babyfood, juice, apple, with calcium","Baby Foods",0.06,0.127,0.003,0.4,0.0212,0.092,11.1,9,0.1,88.3,46,0.018,0.005,0.032,27942 | |
"Babyfood, juice, apple-sweet potato","Baby Foods",0.3,0.015,0.005,0.5,0.0341,0.137,11.4,9.6,0.1,87.9,48,0.03,0.01,0.05,27943 | |
"Babyfood, juice, fruit punch, with calcium","Baby Foods",0.2,0.064,0.004,0.4,0.0212,0.086,12.7,10.6,0.1,86.5,52,0.02,0.004,0.029,27944 | |
"Babyfood, juice, mixed fruit","Baby Foods",0.1,0.008,0.008,0.1,0.0636,0.101,11.7,8.46,0.1,87.9,47,0.015,0.006,0.039,27945 | |
"Babyfood, juice, orange","Baby Foods",0.6,0.012,0,0.1,0.0625,0.184,10.2,8.26,0.3,88.5,45,0.035,0.05,0.06,27946 | |
"Babyfood, juice, orange and apple","Baby Foods",0.4,0.01,0.003,,0.07690000000000001,0.138,10.1,,0.2,88.9,43,,,,27947 | |
"Babyfood, juice, orange and apple and banana","Baby Foods",0.4,0.005,0,0.1,0.032100000000000004,0.134,11.5,10.03,0.1,87.6,47,0.016,0.007,0.027,27948 | |
"Babyfood, juice, orange and apricot","Baby Foods",0.8,0.006,0.006,0.1,0.0859,0.199,10.9,,0.1,87.8,46,0.011,0.022,0.02,27949 | |
"Babyfood, juice, orange and banana","Baby Foods",0.7,0.017,0.003,,0.034,0.2,11.9,,0.1,86.9,50,,,,27950 | |
"Babyfood, juice, orange and pineapple","Baby Foods",0.5,0.008,0.002,0.1,0.053399999999999996,0.141,11.7,,0.1,87.3,48,0.01,0.014,0.024,27951 | |
"Babyfood, juice, orange-carrot","Baby Foods",0.5,0.016,0.01,0.4,0.0341,0.174,9.9,8.4,0.1,89.1,43,0.01,0.01,0.03,27952 | |
"Babyfood, juice, pear","Baby Foods",,0.012,0.008,0.1,0.0338,0.13,11.86,7.28,,87.9,47,,,,27953 | |
"Babyfood, juice, prune and orange","Baby Foods",0.6,0.012,0.002,,0.0638,0.181,16.8,,0.3,81.9,70,,,,27954 | |
"Babyfood, macaroni and cheese, toddler","Baby Foods",3.5,0.102,0.112,0.5,0,0.018,11.2,0.79,2.6,81.7,82,1.53,0.7,0.17,27955 | |
"Babyfood, mashed cheddar potatoes and broccoli, toddlers","Baby Foods",1.13,0.038,0.176,0.9,0.0014,0.118,7.64,1.18,1.47,88.78,48,0.632,0.29,0.291,27956 | |
"Babyfood, meat, beef with vegetables, toddler","Baby Foods",3.5,0.011,0.026,0.5,0.0025,0.168,8.72,1.18,2.1,85.23,68,0.847,0.92,0.108,27957 | |
"Babyfood, meat, beef, junior","Baby Foods",12.03,0.005,0.041,,0.0021000000000000003,0.187,2.43,,2.52,82.44,81,1.18,0.95,0.16,27958 | |
"Babyfood, meat, beef, strained","Baby Foods",12.03,0.005,0.041,,0.0021000000000000003,0.187,2.43,,2.52,82.44,81,1.18,0.95,0.16,27959 | |
"Babyfood, meat, chicken sticks, junior","Baby Foods",14.6,0.073,0.408,0.2,0.0017,0.106,1.5,1.4,14.4,68.3,188,4.094,6.267,2.986,27960 | |
"Babyfood, meat, chicken, junior","Baby Foods",14,0.055,0.049,,0.0015,0.122,,,9.6,76,146,2.47,4.33,2.33,27961 | |
"Babyfood, meat, chicken, strained","Baby Foods",13.7,0.064,0.049,,0.0017,0.141,0.1,,7.9,77.5,130,2.03,3.56,1.92,27962 | |
"Babyfood, meat, ham, junior","Baby Foods",11.3,0.005,0.044,,0.0021000000000000003,0.21,3.7,,3.8,80.5,97,1.271,1.804,0.516,27963 | |
"Babyfood, meat, ham, strained","Baby Foods",11.3,0.006,0.044,,0.0021000000000000003,0.204,3.7,,3.8,80.5,97,1.267,1.803,0.51,27964 | |
"Babyfood, meat, lamb, junior","Baby Foods",15.2,0.007,0.042,,0.0017,0.211,,,5.2,79.6,112,2.56,2.06,0.22,27965 | |
"Babyfood, meat, lamb, strained","Baby Foods",14.07,0.007,0.043,,0.0012,0.193,0.85,,3.41,81.06,87,1.65,1.27,0.31,27966 | |
"Babyfood, meat, meat sticks, junior","Baby Foods",13.4,0.034,0.423,0.2,0.0024,0.114,1.1,0.8,14.6,69.5,184,5.82,6.48,1.59,27967 | |
"Babyfood, meat, pork, strained","Baby Foods",14,0.005,0.042,,0.0018,0.223,,,7.1,78.4,124,2.4,3.58,0.78,27968 | |
"Babyfood, meat, turkey sticks, junior","Baby Foods",13.7,0.083,0.44,0.5,0.0015,0.12,1.4,1.4,14.2,69.8,188,4.143,4.671,3.615,27969 | |
"Babyfood, meat, turkey, junior","Baby Foods",11.5,0.041,0.049,,0,0.135,1.4,,6.2,80.32,111,1.641,2.384,1.741,27970 | |
"Babyfood, meat, turkey, strained","Baby Foods",11.5,0.041,0.049,,0.0022,0.135,1.4,,6.2,80.32,111,1.641,2.384,1.741,27971 | |
"Babyfood, meat, veal, strained","Baby Foods",13.12,0.006,0.039,,0,0.17,1.51,,2.45,82.37,81,1.063,1.054,0.157,27972 | |
"Babyfood, mixed fruit juice with low fat yogurt","Baby Foods",2.4,0.081,0.036,0.4,0.0339,0.137,14.68,10.8,0.8,81.5,76,0.517,0.219,0.022,27973 | |
"Babyfood, mixed fruit yogurt, strained","Baby Foods",0.8,0.028,0.016,0.4,0.011699999999999999,0.062,16.23,11.74,0.8,81.8,75,0.517,0.219,0.022,27974 | |
"Babyfood, oatmeal cereal with fruit, dry, instant, toddler","Baby Foods",10.5,0.286,0,7.8,0.0027,0.346,74.1,11.09,7.05,5.4,402,1.572,3.008,2.29,27975 | |
"Babyfood, peaches, dices, toddler","Baby Foods",0.5,0.006,0.009,0.8,0.0313,0.083,11.8,9.49,0.2,87.4,51,0.016,0.046,0.078,27976 | |
"Babyfood, pears, dices, toddler","Baby Foods",0.3,0.01,0.006,1.2,0.0313,0.051,13.6,8.66,0.1,85.6,57,0.01,0.043,0.046,27977 | |
"Babyfood, peas and brown rice","Baby Foods",3.4,0.014,0.006,2.5,0.003,0.093,11.49,2.88,0.5,84.1,64,0.1,0.18,0.18,27978 | |
"Babyfood, peas, dices, toddler","Baby Foods",3.9,0.021,0.048,3.9,0.006,0.081,10.3,4.13,0.8,84.6,64,0.14,0.07,0.37,27979 | |
"Babyfood, plums, bananas and rice, strained","Baby Foods",1.1,0.003,0,1.3,0.0123,0.265,12.7,9.3,0.3,85.6,57,0.06,0.12,0.07,27980 | |
"Babyfood, potatoes, toddler","Baby Foods",1,0.004,0.057,0.9,0.0105,0.11,11.73,0.91,0.1,86.8,52,0.015,0.002,0.025,27981 | |
"Babyfood, pretzels","Baby Foods",10.8,0.025,0.269,2.3,0.0038,0.137,82.2,3.08,2,4,397,0.316,0.188,0.833,27982 | |
"Babyfood, prunes, without vitamin c, strained","Baby Foods",1,0.021,0.001,2.7,0.0013,0.306,23.52,21.21,0.2,74.3,100,0.02,0.13,0.04,27983 | |
"Babyfood, ravioli, cheese filled, with tomato sauce","Baby Foods",3.6,0.054,0.282,0.1,0.0001,0.032,16.3,0.59,2.2,76.5,99,0.96,0.57,0.48,27984 | |
"Babyfood, rice and apples, dry","Baby Foods",6.7,0.85,0.016,3,0,0.41,86.89,3.22,2.4,3.2,396,0.503,0.615,0.92,27985 | |
"Babyfood, teething biscuits","Baby Foods",10.7,0.263,0.227,1.4,0.0091,0.323,76.4,12.65,4.2,6.4,391,1.206,1.702,0.998,27986 | |
"Babyfood, vegetable and brown rice, strained","Baby Foods",1.9,0.014,0.014,1.1,0.0003,0.135,12.1,2.39,1.5,84.1,69,0.14,0.97,0.32,27987 | |
"Babyfood, vegetable, butternut squash and corn","Baby Foods",2,0.032,0.005,2,0.004900000000000001,0.352,9.26,2.93,0.6,87.3,50,0.095,0.166,0.28,27988 | |
"Babyfood, vegetable, green beans and potatoes","Baby Foods",2.2,0.06,0.018,1.4,0.0011,0.148,9,2.35,1.9,86.2,62,1.117,0.539,0.132,27989 | |
"Babyfood, vegetables, beets, strained","Baby Foods",1.3,0.014,0.083,1.9,0.0024,0.182,7.7,6.09,0.1,90.1,34,0.016,0.019,0.036,27990 | |
"Babyfood, vegetables, carrots, junior","Baby Foods",0.8,0.023,0.049,1.7,0.0055,0.202,7.2,3.16,0.2,91,32,0.036,0.009,0.093,27991 | |
"Babyfood, vegetables, carrots, strained","Baby Foods",0.8,0.022,0.069,1.7,0.0057,0.196,6,3.64,0.1,92.3,26,0.018,0.004,0.047,27992 | |
"Babyfood, vegetables, corn, creamed, junior","Baby Foods",1.4,0.004,0.052,2.1,0.0022,0.081,16.25,1.48,0.4,81.4,65,0.074,0.116,0.178,27993 | |
"Babyfood, vegetables, corn, creamed, strained","Baby Foods",1.4,0.02,0.043,2.1,0.0021000000000000003,0.09,14.1,1.23,0.4,83.6,57,0.076,0.116,0.176,27994 | |
"Babyfood, vegetables, garden vegetable, strained","Baby Foods",2.3,0.028,0.031,1.5,0.0057,0.168,6.8,2.57,0.2,90,32,0.035,0.011,0.09,27995 | |
"Babyfood, vegetables, green beans, junior","Baby Foods",1.2,0.065,0.005,1.9,0.008400000000000001,0.128,5.8,1.08,0.1,92.5,24,0.023,0.004,0.052,27996 | |
"Babyfood, vegetables, green beans, strained","Baby Foods",1.2,0.039,0.007,2.2,0.0003,0.146,6.29,1.88,0.17,91.85,27,0.039,,0.116,27997 | |
"Babyfood, vegetables, mix vegetables junior","Baby Foods",1.4,0.011,0.036,1.5,0.0025,0.17,8.2,1.78,0.4,89.4,36,0.079,0.025,0.186,27998 | |
"Babyfood, vegetables, mix vegetables strained","Baby Foods",1.2,0.013,0,1.5,0.0017,0.127,8.05,1.57,0.5,89.8,36,0.089,0.118,0.194,27999 | |
"Babyfood, vegetables, peas, strained","Baby Foods",3.27,0.018,0.005,2,0.0006,0.106,8.36,2.01,0.43,87.52,50,0.07,0.05,0.2,28000 | |
"Babyfood, vegetables, spinach, creamed, strained","Baby Foods",2.5,0.089,0.049,1.8,0.0087,0.191,5.7,2.33,1.3,89.6,37,0.702,0.332,0.133,28001 | |
"Babyfood, vegetables, squash, junior","Baby Foods",0.81,0.024,0.005,0.9,0.0003,0.185,5.73,3.24,0.2,92.66,24,0.02,0.02,0.04,28002 | |
"Babyfood, vegetables, squash, strained","Baby Foods",0.81,0.024,0.005,0.9,0.0003,0.185,5.73,3.37,0.2,92.66,28,0.02,0.02,0.04,28003 | |
"Babyfood, vegetables, sweet potatoes strained","Baby Foods",1.1,0.016,0.022,1.5,0.0099,0.263,13.2,4.05,0.1,84.8,57,0.021,0.004,0.044,28004 | |
"Babyfood, vegetables, sweet potatoes, junior","Baby Foods",1.1,0.016,0.018,1.5,0.0096,0.243,14,4.24,0.1,84.1,60,0.021,0.004,0.044,28005 | |
"Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added DHA","Baby Foods",3.4,0.107,0.041,0.3,0.0014,0.149,13.22,11.46,3.53,79.16,98,1.84,0.916,0.367,28006 | |
"Babyfood, yogurt, whole milk, with fruit, multigrain cereal and added iron","Baby Foods",3.05,0.098,0.038,0.6,0.0036,0.143,13,11.46,3.08,80.21,92,1.582,0.74,0.405,28007 | |
"Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed (formerly ROSS)","Baby Foods",2.86,0.093,0.036,,0.0095,0.125,11.15,10.5,4.77,80.47,99,1.256,1.936,1.068,28008 | |
"Child formula, ABBOTT NUTRITION, PEDIASURE, ready-to-feed, with iron and fiber (formerly ROSS)","Baby Foods",2.8,0.092,0.036,0.5,0.0096,0.124,11.28,7.6,4.7,80.47,99,1.256,1.936,1.067,28009 | |
"Child formula, MEAD JOHNSON, PORTAGEN, with iron, powder, not reconstituted","Baby Foods",16.5,0.44,0.26,,0.038,0.59,54.8,54,22,3,483,19.186,0.683,1.609,28010 | |
"Child formula, MEAD JOHNSON, PORTAGEN, with iron, prepared from powder","Baby Foods",3.33,0.088,0.052,,0.0076,0.118,8.57,7.4,4.48,82.86,88,3.953,0.143,0.333,28011 | |
"Fluid replacement, electrolyte solution (include PEDIALYTE)","Baby Foods",,0.01,0.101,,0,0.077,2.45,2.45,,96.44,10,,,,28012 | |
"Gerber graduates Fruit Strips Real Fruit Bars","Baby Foods",0.82,0.018,0.014,7.8,0.1799,0.312,76.61,68.65,2.24,19.09,330,0.361,0.091,0.658,28013 | |
"Infant Formula, MEAD JOHNSON, ENFAMIL GENTLEASE LIPIL, with iron, prepared from powder","Baby Foods",1.52,0.053,0.021,,0.0079,0.071,6.39,6.44,3.5,88.4,63,1.5,1.3,0.7,28014 | |
"Infant Formula, MEAD JOHNSON, ENFAMIL, ENFACARE LIPIL, ready-to-feed, with ARA and DHA","Baby Foods",2,0.086,0.025,,0.011300000000000001,0.075,7.4,7.4,3.8,86,71,1.578,1.33,0.862,28015 | |
"Infant formula, ABBOTT NUTRITION, ALIMENTUM ADVANCE, with iron, powder, not reconstituted, with DHA and ARA (formerly ROSS)","Baby Foods",13.99,0.534,0.224,,0.0458,0.598,51.91,34.18,28.19,1.5,517,14.282,2.276,8.877,28016 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC NATURAL CARE, ADVANCE, ready-to-feed, with ARA and DHA (formerly ROSS)","Baby Foods",2.12,0.163,0.034,,0.0289,0.101,8.2,8.2,4.24,85.07,78,2.544,0.402,0.842,28017 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC NEOSURE, ready-to-feed, with ARA and DHA (formerly ROSS)","Baby Foods",1.92,0.072,0.023,,0.0103,0.097,6.94,6.9,3.77,87,69,2.447,0.387,0.844,28018 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, liquid concentrate, not reconstituted (formerly ROSS)","Baby Foods",2.64,0.099,0.031,,0.0115,0.134,13.52,13.52,6.89,76.16,127,2.401,2.551,1.555,28019 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, powder, not reconstituted (formerly ROSS)","Baby Foods",10.89,0.41,0.126,,0.047299999999999995,0.552,54.73,54.73,28.87,2.25,522,9.873,10.491,6.396,28020 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ADVANCE, with iron, ready-to-feed (formerly ROSS)","Baby Foods",1.36,0.053,0.016,,0.005900000000000001,0.069,6.77,6.9,3.7,87.79,66,1.237,1.314,0.801,28021 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, ADVANCE, ready-to-feed, with ARA and DHA (formerly ROSS)","Baby Foods",1.8,0.069,0.029,,0.005900000000000001,0.077,6.77,4.4,3.63,87.32,67,1.838,0.294,1.126,28022 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ALIMENTUM, with iron, ready-to-feed (formerly ROSS)","Baby Foods",1.8,0.069,0.029,,0.005900000000000001,0.077,6.77,4.4,3.63,87.32,66,1.838,0.294,1.113,28023 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, liquid concentrate (formerly ROSS)","Baby Foods",3.13,0.134,0.056,,0.0115,0.138,13.21,13.1,6.98,75.81,128,2.262,2.66,1.625,28024 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, powder, not reconstituted (formerly ROSS)","Baby Foods",12.6,0.54,0.226,,0.046299999999999994,0.555,53.57,52.97,28.09,2.5,517,9.167,10.778,6.584,28025 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, ADVANCE with iron, ready-to-feed (formerly ROSS)","Baby Foods",1.61,0.069,0.029,,0.005900000000000001,0.071,6.7,6.7,3.59,87.54,66,1.166,1.371,0.838,28026 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, liquid concentrate (formerly ROSS)","Baby Foods",3.13,0.134,0.056,,0.0115,0.138,13.21,13.1,6.98,75.81,128,2.262,2.66,1.625,28027 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, powder, not reconstituted (formerly ROSS)","Baby Foods",12.6,0.54,0.226,,0.046299999999999994,0.555,53.57,52.97,28.09,2.5,517,9.167,10.778,6.584,28028 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, ISOMIL, with iron, ready-to-feed (formerly ROSS)","Baby Foods",1.61,0.069,0.029,,0.005900000000000001,0.071,6.7,6.7,3.59,87.54,66,1.166,1.371,0.838,28029 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, NEOSURE, powder, with ARA and DHA (formerly ROSS)","Baby Foods",14.42,0.541,0.17,,0.0772,0.731,51.75,52.02,28.33,2.25,520,9.871,10.492,6.66,28030 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, PM 60/40, powder not reconstituted (formerly ROSS)","Baby Foods",11.4,0.288,0.123,,0.046200000000000005,0.411,54.94,52.38,28.71,2.25,524,12.214,5.242,10.835,28031 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE (LACTOSE FREE) ready-to-feed, with ARA and DHA (formerly ROSS)","Baby Foods",1.48,0.058,0.021,,0.006,0.074,7.04,7.4,3.74,87,68,2.43,0.384,0.832,28032 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), liquid concentrate, with ARA and DHA (formerly ROSS)","Baby Foods",2.73,0.108,0.039,,0.0115,0.138,13.64,13.78,6.95,75.88,128,4.522,0.715,1.548,28033 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, SENSITIVE, (LACTOSE FREE), powder, with ARA and DHA (formerly ROSS)","Baby Foods",11.13,0.436,0.158,,0.0451,0.557,55.53,55.67,28.14,2.2,520,18.305,2.894,6.27,28034 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, SPECIAL CARE, ADVANCE 24, with iron, ready-to-feed, with ARA and DHA (formerly ROSS)","Baby Foods",1.8,0.141,0.034,,0.0291,0.101,8.73,8.3,3.26,85.61,71,2.12,0.324,0.737,28035 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, liquid concentrate, not reconstituted (formerly ROSS)","Baby Foods",2.64,0.099,0.031,,0.0115,0.134,13.76,13.76,6.89,76.16,127,2.401,2.551,1.555,28036 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, powder, not reconstituted (formerly ROSS)","Baby Foods",10.85,0.41,0.126,,0.047299999999999995,0.552,54.78,54.7,28.87,2.25,522,9.873,10.491,6.396,28037 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, low iron, ready-to-feed (formerly ROSS)","Baby Foods",1.36,0.051,0.016,,0.005900000000000001,0.069,6.93,6.93,3.55,87.79,65,1.237,1.314,0.801,28038 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, liquid concentrate, not reconstituted (formerly ROSS)","Baby Foods",2.64,0.099,0.031,,0.0115,0.134,13.76,13.76,6.89,76.16,127,2.401,2.551,1.555,28039 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, powder, not reconstituted (formerly ROSS)","Baby Foods",10.89,0.41,0.126,,0.047299999999999995,0.552,54.73,54.73,28.87,2.25,522,9.873,10.491,6.396,28040 | |
"Infant formula, ABBOTT NUTRITION, SIMILAC, with iron, ready-to-feed (formerly ROSS)","Baby Foods",1.36,0.051,0.016,,0.005900000000000001,0.069,6.92,6.9,3.55,87.79,65,1.237,1.314,0.801,28041 | |
"Infant formula, MEAD JOHNSON, ENFAMIL LIPIL, with iron, ready-to-feed, with ARA and DHA","Baby Foods",1.38,0.051,0.018,,0.0079,0.071,7.1,7.1,3.5,88.35,64,1.453,1.255,0.67,28042 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, AR LIPIL, powder, with ARA and DHA","Baby Foods",12.73,0.397,0.204,,0.0611,0.55,56.03,56.03,25.97,3,509,10.942,9.292,5.124,28043 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, AR LIPIL, ready-to-feed, with ARA and DHA","Baby Foods",1.71,0.053,0.027,,0.008199999999999999,0.074,7.53,6.44,3.49,87,68,1.453,1.255,0.67,28044 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, ENFACARE LIPIL, powder, with ARA and DHA","Baby Foods",14,0.59,0.173,,0.079,0,54.6,51,26,2.5,508,10.8,9.1,5.9,28045 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE LIPIL, with iron, powder, with ARA and DHA","Baby Foods",10.9,0.43,0.156,,0.062,0.57,56.3,54.77,28,2.2,521,11.9,10.4,5.5,28046 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, LIPIL, with iron, liquid concentrate, not reconstituted, with ARA and DHA","Baby Foods",2.68,0.104,0.038,,0.015300000000000001,0.14,14.42,13.96,7.11,75.47,132,3.059,2.642,1.411,28047 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, ready-to-feed","Baby Foods",1.38,0.053,0.019,,0.0079,0.072,7.18,7.18,3.5,88.35,63,1.495,1.291,0.689,28048 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, with iron, liquid concentrate, not reconstituted","Baby Foods",2.68,0.104,0.038,,0.015300000000000001,0.14,14.42,13.96,6.79,75.47,130,2.906,2.509,1.283,28049 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LACTOFREE, with iron, powder, not reconstituted","Baby Foods",10.85,0.43,0.156,,0.062,0.58,56.35,57,28,2.2,521,12.02,10.43,5.26,28050 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, liquid concentrate, with ARA and DHA","Baby Foods",2.76,0.102,0.039,,0.0158,0.142,14.24,14.24,7.16,75.32,131,3.078,2.659,1.419,28051 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, powder, with ARA and DHA","Baby Foods",10.8,0.4,0.139,,0.062,0.56,56.2,56,27,3.3,511,11.2,9.63,5.2,28052 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, low iron, ready to feed, with ARA and DHA","Baby Foods",1.38,0.051,0.018,,0.0079,0.071,7.18,7.18,3.5,88.35,64,1.453,1.255,0.67,28053 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, ready-to-feed, with ARA and DHA","Baby Foods",1.38,0.054,0.019,,0.0079,0.072,6.44,6.44,3.5,88.35,66,1.453,1.255,0.67,28054 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, with iron, liquid concentrate, with ARA and DHA","Baby Foods",2.76,0.102,0.035,,0.0158,0.142,14.34,14,6.96,75.34,131,3.08,2.656,1.418,28055 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, LIPIL, with iron, powder, with ARA and DHA","Baby Foods",10.8,0.4,0.139,,0.062,0.56,56.2,56,27,3.3,511,11.221,9.899,5.24,28056 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN LIPIL, with iron, powder, not reconstituted, with ARA and DHA","Baby Foods",13.9,0.47,0.23,,0.06,0.55,51,51,26,3,494,11.2,9.6,5.2,28057 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN LIPIL, with iron, ready to feed, with ARA and DHA","Baby Foods",1.83,0.062,0.031,,0.0079,0.072,6.81,5.13,3.5,87.38,66,1.453,1.255,0.67,28058 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, LIPIL, with iron, liquid concentrate not reconstituted, with ARA and DHA","Baby Foods",3.53,0.123,0.06,,0.015099999999999999,0.138,13.12,9.87,6.73,75.7,126,2.798,2.486,1.327,28059 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, liquid concentrate, not reconstituted","Baby Foods",3.53,0.12,0.06,,0.015099999999999999,0.138,13.12,13.08,6.73,75.7,127,2.879,2.493,1.159,28060 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, powder, not reconstituted","Baby Foods",14.2,0.47,0.23,,0.06,0.55,55,55,25,2.5,502,10.99,9.52,4.93,28061 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, NUTRAMIGEN, with iron, ready-to-feed","Baby Foods",1.83,0.062,0.031,,0.0079,0.072,6.81,5.13,3.5,87.38,66,1.364,1.206,0.617,28062 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE LIPIL, with iron, powder, not reconstituted, with ARA and DHA","Baby Foods",12.5,0.53,0.171,,0.06,0.6,53,53,27,3.5,510,11.37,10.32,5.2,28063 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, LIPIL, liquid concentrate, not reconstituted, with ARA and DHA","Baby Foods",3.19,0.134,0.045,,0.015300000000000001,0.153,13.58,13.58,7.11,75.47,131,2.969,2.598,1.378,28064 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, PROSOBEE, with iron, powder, not reconstituted","Baby Foods",12.5,0.53,0.18,,0.06,0.6,54.3,53,27,3,510,11.37,10.32,5.2,28065 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, liquid concentrate, not reconstituted","Baby Foods",2.76,0.102,0.035,,0.0158,0.142,14.05,14,7.25,75.34,132,3.084,2.693,1.437,28066 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, powder, not reconstituted","Baby Foods",10.8,0.4,0.139,,0.062,0.56,56.2,56,27,3.3,511,11.5,10,5.3,28067 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, low iron, ready-to-feed","Baby Foods",1.38,0.051,0.018,,0.0079,0.071,7.18,7.18,3.5,88.35,63,1.479,1.291,0.689,28068 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, liquid concentrate, not reconstituted","Baby Foods",2.68,0.1,0.035,,0.015300000000000001,0.138,13.96,13.96,7.31,75.47,128,3.093,2.8,1.41,28069 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, powder","Baby Foods",10.8,0.4,0.139,,0.062,0.56,56.2,56,27,3.3,520,11.5,10.3,5.2,28070 | |
"Infant formula, MEAD JOHNSON, ENFAMIL, with iron, ready-to-feed","Baby Foods",1.38,0.051,0.018,,0.0079,0.071,7.18,7.18,3.5,88.35,63,1.469,1.33,0.67,28071 | |
"Infant formula, MEAD JOHNSON, NEXT STEP PROSOBEE, powder, not reconstituted","Baby Foods",15.6,0.92,0.171,,0.057,0.57,57.1,56,21,3,480,8.905,7.8,4.2,28072 | |
"Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE LIPIL, powder, with ARA and DHA","Baby Foods",15.6,0.92,0.171,,0.057,0.57,57.1,56,21,3,480,8.905,7.8,4.2,28073 | |
"Infant formula, MEAD JOHNSON, NEXT STEP, PROSOBEE, LIPIL, ready to feed, with ARA and DHA","Baby Foods",2.14,0.128,0.023,,0.0079,0.079,8.09,7.77,2.91,86.4,67,1.242,1.078,0.573,28074 | |
"Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, powder, not reconstituted","Baby Foods",14,0.58,0.24,,0.06,0.55,52.8,51,28,2,519,16.8,4.6,6.5,28075 | |
"Infant formula, MEAD JOHNSON, PREGESTIMIL, with iron, prepared from powder","Baby Foods",1.82,0.075,0.031,,0.0078,0.071,6.63,6.63,3.65,87.5,67,2.172,0.583,0.809,28076 | |
"Infant formula, MEAD JOHNSON, PROSOBEE LIPIL, with iron, ready to feed, with ARA and DHA","Baby Foods",1.64,0.069,0.023,,0.0079,0.079,6.11,6.11,3.5,88.35,64,1.453,1.255,0.671,28077 | |
"Infant formula, MEAD JOHNSON, PROSOBEE, with iron, liquid concentrate, not reconstituted","Baby Foods",3.19,0.134,0.045,,0.015300000000000001,0.153,13.58,13.58,7.13,75.47,131,3.038,2.72,1.371,28078 | |
"Infant formula, MEAD JOHNSON, PROSOBEE, with iron, ready-to-feed","Baby Foods",1.64,0.069,0.023,,0.0079,0.079,6.11,6.11,3.5,88.35,63,1.443,1.292,0.651,28079 | |
"Infant formula, MEAD JOHNSON,NEXT STEP PROSOBEE, prepared from powder","Baby Foods",2.14,0.128,0.023,,0.0079,0.079,8.08,7.77,2.91,86.41,67,1.243,1.078,0.544,28080 | |
"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, liquid concentrate, not reconstituted","Baby Foods",3.25,0.15,0.049,,0.011,0.169,16.5,11.9,5.13,74.2,125,2.213,1.582,1.213,28081 | |
"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, powder","Baby Foods",12.2,0.565,0.184,,0.042,0.636,62.23,44.3,19.3,2.5,471,8.54,6.23,4.31,28082 | |
"Infant formula, NESTLE, GOOD START 2 ESSENTIALS, with iron, ready-to-feed","Baby Foods",1.7,0.078,0.025,,0.005900000000000001,0.088,8.54,6.19,2.7,86.6,65,1.18,0.87,0.6,28083 | |
"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, liquid concentrate, not reconstituted","Baby Foods",3.2,0.133,0.046,,0.0152,0.146,14.1,11.2,6.5,75.4,128,2.8,2.03,1.317,28084 | |
"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, powder","Baby Foods",12.5,0.526,0.18,,0.0601,0.581,55.7,44.38,25.5,2.5,502,11,8.1,6,28085 | |
"Infant formula, NESTLE, GOOD START ESSENTIALS SOY, with iron, ready-to-feed","Baby Foods",1.63,0.068,0.023,,0.0078,0.075,7.17,5.69,3.3,87.5,65,1.4,1,0.8,28086 | |
"Infant formula, NESTLE, GOOD START SOY, with ARA and DHA, powder","Baby Foods",12.5,0.526,0.2,,0.0601,0.581,55.6,44.38,25.6,2.5,503,11,8.1,6,28087 | |
"Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, liquid concentrate","Baby Foods",3.31,0.139,0.053,,0.0159,0.154,14.71,11.74,6.67,74.2,132,2.897,2.198,1.431,28088 | |
"Infant formula, NESTLE, GOOD START SOY, with DHA and ARA, ready-to-feed","Baby Foods",1.6,0.067,0.026,,0.0077,0.074,7.13,5.68,3.28,87.5,64,1.4,1.189,0.695,28089 | |
"Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, prepared from liquid concentrate","Baby Foods",1.45,0.042,0.018,,0.005900000000000001,0.071,7.39,5,3.37,87.5,66,1.47,1.08,0.74,28090 | |
"Infant formula, NESTLE, GOOD START SUPREME, with iron, DHA and ARA, ready-to-feed","Baby Foods",1.45,0.042,0.018,,0.005900000000000001,0.071,7.39,5,3.37,87.5,66,1.47,1.08,0.74,28091 | |
"Infant formula, NESTLE, GOOD START SUPREME, with iron, liquid concentrate, not reconstituted","Baby Foods",2.79,0.081,0.034,,0.011,0.137,14.2,9.7,6.5,75.8,127,2.97,2.06,1.42,28092 | |
"Infant formula, NESTLE, GOOD START SUPREME, with iron, powder","Baby Foods",11.3,0.343,0.138,,0.0461,0.553,57.32,39.3,26.1,2.5,509,11.66,8.5,5.88,28093 | |
"Infant formula, NESTLE, GOOD START SUPREME, with iron, ready-to-feed","Baby Foods",1.45,0.042,0.018,,0.005900000000000001,0.071,7.39,5,3.37,87.5,66,1.47,1.08,0.74,28094 | |
"Infant formula, PBM PRODUCTS, ULTRA BRIGHT BEGINNINGS, liquid concentrate, not reconstituted (formerly WYETH-AYERST)","Baby Foods",2.9,0.083,0.029,,0.0112,0.109,13.9,13.9,7,76,130,3.2,2.8,1,28095 | |
"Infant formula, PBM PRODUCTS, ULTRA BRIGHT BEGINNINGS, powder (formerly WYETH-AYERST)","Baby Foods",12,0.331,0.118,,0.0433,0.441,56,56,28,2,524,12.761,11.131,3.951,28096 | |
"Infant formula, PBM PRODUCTS, ULTRA BRIGHT BEGINNINGS, ready-to-feed (formerly WYETH-AYERST)","Baby Foods",1.4,0.041,0.014,,0.0056,0.055,6.4,6.4,3.5,88.1,63,1.6,1.4,0.5,28097 | |
"Infant formula, PBM PRODUCTS, ULTRA BRIGHT BEGINNINGS, soy, liquid concentrate (formerly WYETH-AYERST)","Baby Foods",3.6,0.118,0.036,,0.0108,0.138,12.18,12.18,7,76,126,3.2,2.8,1,28098 | |
"Infant formula, PBM PRODUCTS, ULTRA BRIGHT BEGINNINGS, soy, powder (formerly WYETH-AYERST)","Baby Foods",13.6,0.453,0.151,,0.042,0.528,52.2,52.2,27.2,2,508,12.37,10.78,3.83,28099 | |
"Infant formula, PBM PRODUCTS, ULTRA BRIGHT BEGINNINGS, soy, ready-to-feed (formerly WYETH-AYERST)","Baby Foods",1.8,0.059,0.018,,0.0054,0.069,6.09,6.1,3.5,88,63,1.6,1.4,0.5,28100 | |
"Infant formula, PBM PRODUCTS, store brand, liquid concentrate, not reconstituted (formerly WYETH-AYERST)","Baby Foods",2.9,0.083,0.029,,0.0112,0.109,13.9,13.9,7,76,130,3.2,2.8,1,28101 | |
"Infant formula, PBM PRODUCTS, store brand, powder (formerly WYETH-AYERST)","Baby Foods",12,0.331,0.118,,0.0433,0.441,56,56,28,2,524,12.761,11.131,3.951,28102 | |
"Infant formula, PBM PRODUCTS, store brand, ready-to-feed (formerly WYETH-AYERST)","Baby Foods",1.4,0.041,0.014,,0.0056,0.055,6.39,6.4,3.5,88.1,63,1.6,1.4,0.5,28103 | |
"Infant formula, PBM PRODUCTS, store brand, soy, liquid concentrate, not reconstituted (formerly WYETH-AYERST)","Baby Foods",3.6,0.118,0.036,,0.0108,0.138,12.18,12.18,7,76,126,3.2,2.8,1,28104 | |
"Infant formula, PBM PRODUCTS, store brand, soy, powder (formerly WYETH-AYERST)","Baby Foods",13.6,0.453,0.151,,0.042,0.528,52.2,52.2,27.2,2,508,12.37,10.78,3.83,28105 | |
"Infant formula, PBM PRODUCTS, store brand, soy, ready-to-feed (formerly WYETH-AYERST)","Baby Foods",1.8,0.059,0.018,,0.0054,0.069,6.09,6.1,3.5,88,63,1.6,1.4,0.5,28106 | |
"Zwieback","Baby Foods",10.1,0.02,0.227,2.5,0.0053,0.305,74.2,12.5,9.7,4.5,426,2.525,4.244,2.073,28107 | |
"Animal fat, bacon grease","Fats and Oils",,0,0.15,,0,0,,,99.5,,897,39.004,44.874,11.144,28108 | |
"Butter replacement, without fat, powder","Fats and Oils",2,0.023,1.2,,0,0.002,89,5.3,1,5,373,0.589,0.276,0.057,28109 | |
"Butter, light, stick, with salt","Fats and Oils",3.3,0.048,0.45,,0,0.071,,,55.1,42.1,509,34.321,15.927,2.046,28110 | |
"Butter, light, stick, without salt","Fats and Oils",3.3,0.048,0.036,,0,0.071,,,55.1,43.2,499,34.321,15.927,2.046,28111 | |
"Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie","Fats and Oils",1.5,0.006,1.12,,0.0004,0.036,7,5.65,14,74,160,2.115,3.273,7.994,28112 | |
"Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, cholesterol-free","Fats and Oils",1,0.036,0.932,,0,0.049,16,3.28,8,73,140,1.355,3.391,2.891,28113 | |
"Creamy dressing, made with sour cream and/or buttermilk and oil, reduced calorie, fat-free","Fats and Oils",1.4,0.036,0.897,,0,0.133,20,5.35,2.7,74.7,107,0.494,0.64,1.444,28114 | |
"Fat, beef tallow","Fats and Oils",,0,0,,0,0,,,100,,902,49.8,41.8,4,28115 | |
"Fat, chicken","Fats and Oils",,0,0,,0,0,,,99.8,0.2,900,29.8,44.7,20.9,28116 | |
"Fat, duck","Fats and Oils",,0,0,,0,0,,,99.8,0.2,882,33.2,49.3,12.9,28117 | |
"Fat, goose","Fats and Oils",,0,0,,0,0,,,99.8,0.2,900,27.7,56.7,11,28118 | |
"Fat, mutton tallow","Fats and Oils",,0,0,,0,0,,,100,,902,47.3,40.6,7.8,28119 | |
"Fat, turkey","Fats and Oils",,0,0,,0,0,,,99.8,0.2,900,29.4,42.9,23.1,28120 | |
"Fish oil, cod liver","Fats and Oils",,0,0,,0,0,,,100,,902,22.608,46.711,22.541,28121 | |
"Fish oil, herring","Fats and Oils",,0,0,,0,0,,,100,,902,21.29,56.564,15.604,28122 | |
"Fish oil, menhaden","Fats and Oils",,0,0,,0,0,,,100,,902,30.427,26.694,34.197,28123 | |
"Fish oil, menhaden, fully hydrogenated","Fats and Oils",,0,0,,0,0,,,100,,902,95.6,,,28124 | |
"Fish oil, salmon","Fats and Oils",,0,0,,0,0,,,100,,902,19.872,29.037,40.324,28125 | |
"Fish oil, sardine","Fats and Oils",,0,0,,0,0,,,100,,902,29.892,33.841,31.867,28126 | |
"Lard","Fats and Oils",,0,0,,0,0,,,100,,902,39.2,45.1,11.2,28127 | |
"Margarine Spread, approximately 48% fat, tub","Fats and Oils",0.2,0.004,0.646,,0,0.036,0.86,,47.53,49.66,424,8.792,16.416,20.235,28128 | |
"Margarine, 80% fat, stick, includes regular and hydrogenated corn and soybean oils","Fats and Oils",0.16,0.003,0.654,,0,0.018,0.7,,80.71,16.52,717,15.189,38.877,24.302,28129 | |
"Margarine, 80% fat, tub, CANOLA HARVEST Soft Spread (canola, palm and palm kernel oils)","Fats and Oils",0.41,0,0.714,,0,0,1.39,,80.32,16.06,730,11.648,45.262,21.344,28130 | |
"Margarine, industrial, non-dairy, cottonseed, soy oil (partially hydrogenated ), for flaky pastries","Fats and Oils",1.9,0.066,0.879,,0.0004,0.094,,,80.2,15.8,714,20.442,46.692,9.265,28131 | |
"Margarine, industrial, soy and partially hydrogenated soy oil, use for baking, sauces and candy","Fats and Oils",0.18,0.003,0.886,,0,0.018,0.71,,80,17.17,714,16.321,37.46,22.422,28132 | |
"Margarine, margarine-like vegetable oil spread, 67-70% fat, tub","Fats and Oils",0.07,0,0.536,,0,0,0.59,,68.29,29.52,606,16.688,24.748,23.794,28133 | |
"Margarine, margarine-type vegetable oil spread, 70% fat, soybean and partially hydrogenated soybean, stick","Fats and Oils",0.26,0.007,0.7,,0,0.046,1.53,,70.22,26.23,628,13.631,33.468,20.248,28134 | |
"Margarine, regular, 80% fat, composite, stick, with salt","Fats and Oils",0.16,0.003,0.751,,0.0002,0.018,0.7,,80.71,16.52,717,15.189,38.877,24.302,28135 | |
"Margarine, regular, 80% fat, composite, stick, with salt, with added vitamin D","Fats and Oils",0.16,0.003,0.751,,0.0002,0.018,0.7,,80.71,16.52,717,15.189,38.877,24.302,28136 | |
"Margarine, regular, 80% fat, composite, stick, without salt","Fats and Oils",0.16,0.003,0.002,,0.0002,0.018,0.7,,80.71,16.52,717,15.189,38.877,24.302,28137 | |
"Margarine, regular, 80% fat, composite, stick, without salt, with added vitamin D","Fats and Oils",0.16,0.003,0.002,,0.0002,0.018,0.7,,80.71,16.52,717,15.189,38.877,24.302,28138 | |
"Margarine, regular, 80% fat, composite, tub, with salt","Fats and Oils",0.22,0.003,0.657,,0.0001,0.017,0.75,,80.17,17.07,713,14.224,36.435,26.741,28139 | |
"Margarine, regular, 80% fat, composite, tub, with salt, with added vitamin D","Fats and Oils",0.22,0.003,0.657,,0.0001,0.017,0.75,,80.17,17.07,713,14.224,36.435,26.741,28140 | |
"Margarine, regular, 80% fat, composite, tub, without salt","Fats and Oils",0.22,0.003,0.028,,0.0001,0.017,0.75,,80.17,17.07,713,14.224,36.435,26.741,28141 | |
"Margarine, regular, hard, soybean (hydrogenated)","Fats and Oils",0.9,0.03,0.943,,0.0002,0.042,0.9,,80.5,15.7,719,16.7,39.3,20.9,28142 | |
"Margarine-like shortening, industrial, soy (partially hydrogenated), cottonseed, and soy, principal use flaky pastries","Fats and Oils",,0,0.864,,0,0,,,71,28,628,22.869,37.243,7.512,28143 | |
"Margarine-like spread with yogurt, 70% fat, stick, with salt","Fats and Oils",0.3,0.02,0.59,,0.0001,0.025,0.5,,70,28,630,13.3,39.9,14,28144 | |
"Margarine-like spread with yogurt, approximately 40% fat, tub, with salt","Fats and Oils",2,0.05,0.63,,0.0002,0.064,2,,35,59,330,7,9.8,16.8,28145 | |
"Margarine-like spread, BENECOL Light Spread","Fats and Oils",,0.004,0.67,,0,0.004,5.71,,38.71,53.73,357,4.77,18.932,11.948,28146 | |
"Margarine-like spread, SMART BALANCE Light Buttery Spread","Fats and Oils",0.02,0.003,0.58,,0,0.032,1.98,,36.41,59.89,337,10.087,13.699,9.651,28147 | |
"Margarine-like spread, SMART BALANCE Omega Plus Spread (with plant sterols & fish oil)","Fats and Oils",0.13,0,0.729,,0,0.071,0.16,,70.95,27.86,605,19.83,25.334,18.484,28148 | |
"Margarine-like spread, SMART BALANCE Regular Buttery Spread with flax oil","Fats and Oils",0.14,0,0.646,,0,0.028,0.14,,64.63,33.95,583,16.69,26.207,17.822,28149 | |
"Margarine-like spread, SMART BEAT Smart Squeeze","Fats and Oils",,0,0.829,,0,0.026,7.1,1,2.1,87.91,47,0.31,0.47,1.18,28150 | |
"Margarine-like spread, SMART BEAT Super Light without saturated fat","Fats and Oils",,0,0.755,,0,0.012,,,17.1,80.83,158,2.22,7.6,3.98,28151 | |
"Margarine-like vegetable-oil spread, stick/tub/bottle, 60% fat, with added vitamin D","Fats and Oils",0.6,0.021,0.785,,0.0001,0.03,,,59.17,38.68,535,10.042,20.316,24.686,28152 | |
"Margarine-like, butter-margarine blend, 80% fat, stick, without salt","Fats and Oils",0.9,0.028,0.028,,0.0001,0.037,0.6,,80.7,15.8,718,26.904,31.832,18.236,28153 | |
"Margarine-like, margarine-butter blend, soybean oil and butter","Fats and Oils",0.31,0.01,0.633,,0.0001,0.022,0.77,,80.32,17.07,714,14.198,30.292,24.17,28154 | |
"Margarine-like, vegetable oil spread, 20% fat, with salt","Fats and Oils",,0,0.733,,0,0.025,0.4,,19.5,78.8,175,2.87,7.48,8.04,28155 | |
"Margarine-like, vegetable oil spread, 20% fat, without salt","Fats and Oils",,0,0,,0,0.025,0.4,,19.5,78.8,175,2.87,7.48,8.04,28156 | |
"Margarine-like, vegetable oil spread, 60% fat, stick, with salt","Fats and Oils",0.12,0.021,0.785,,0.0001,0.03,0.69,,60.39,36.95,537,10.884,29.664,16.718,28157 | |
"Margarine-like, vegetable oil spread, 60% fat, stick, with salt, with added vitamin D","Fats and Oils",0.12,0.021,0.785,,0.0001,0.03,0.69,,60.39,36.95,537,10.884,29.664,16.718,28158 | |
"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, with salt","Fats and Oils",0.6,0.021,0.7,,0.0001,0.03,,,59.17,38.68,526,10.042,20.316,24.686,28159 | |
"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt","Fats and Oils",0.17,0.021,0.002,,0.0001,0.03,0.86,,59.81,37.58,533,12.086,19.348,26.477,28160 | |
"Margarine-like, vegetable oil spread, 60% fat, stick/tub/bottle, without salt, with added vitamin D","Fats and Oils",0.17,0.021,0.002,,0.0001,0.03,0.86,,59.81,37.58,542,12.086,19.348,26.477,28161 | |
"Margarine-like, vegetable oil spread, 60% fat, tub, with salt","Fats and Oils",0.17,0.021,0.615,,0.0001,0.03,0.86,,59.81,37.58,533,12.086,19.348,26.477,28162 | |
"Margarine-like, vegetable oil spread, 60% fat, tub, with salt, with added vitamin D","Fats and Oils",0.17,0.021,0.785,,0.0001,0.03,0.86,,59.81,37.58,533,12.086,19.347,26.477,28163 | |
"Margarine-like, vegetable oil spread, approximately 37% fat, unspecified oils, with salt, with added vitamin D","Fats and Oils",0.51,0.006,0.589,,0.0001,0.034,0.66,,37.77,59.55,339,8.637,13.958,12.735,28164 | |
"Margarine-like, vegetable oil spread, fat free, liquid, with salt","Fats and Oils",1.5,0.038,0.833,,0.0003,0.05,2.5,,3,91,43,0.416,0.74,1.764,28165 | |
"Margarine-like, vegetable oil spread, fat-free, tub","Fats and Oils",0.1,0.008,0.58,,0,0.036,4.34,,3.04,90.69,44,2.128,0.356,0.422,28166 | |
"Margarine-like, vegetable oil spread, stick or tub, sweetened","Fats and Oils",,0,0.542,,0,0.03,16.7,16.7,52,30,534,8.35,17,23.8,28167 | |
"Margarine-like, vegetable oil spread, unspecified oils, approximately 37% fat, with salt","Fats and Oils",0.51,0.006,0.589,,0.0001,0.034,0.66,,37.77,59.55,339,8.637,13.958,12.407,28168 | |
"Margarine-like, vegetable oil-butter spread, reduced calorie, tub, with salt","Fats and Oils",1,0.028,0.607,,0.0001,0.037,1,,50,46,450,16.669,19.722,11.299,28169 | |
"Margarine-like, vegetable oil-butter spread, tub, with salt","Fats and Oils",1,0.024,0.786,,0.0001,0.036,1,,40,56,362,7.238,18.438,12.573,28170 | |
"Mayonnaise dressing, no cholesterol","Fats and Oils",,0.007,0.486,,0,0.014,0.3,0.3,77.8,21.7,688,10.784,18.026,45.539,28171 | |
"Mayonnaise, low sodium, low calorie or diet","Fats and Oils",0.3,0,0.11,,0,0.01,16,4.2,19.2,62.7,231,3.3,4.5,10.6,28172 | |
"Mayonnaise, made with tofu","Fats and Oils",5.95,0.053,0.773,1.1,0,0.066,3.06,0.85,31.79,56.33,322,2.921,5.246,16.59,28173 | |
"Mayonnaise, reduced-calorie or diet, cholesterol-free","Fats and Oils",0.9,0,0.733,,0,0.067,6.7,4.2,33.3,56,333,4.618,7.707,19.5,28174 | |
"Meat drippings (lard, beef tallow, mutton tallow)","Fats and Oils",,0,0.545,,0,0,,,98.59,,889,44.79,41.77,7.56,28175 | |
"Oil, PAM cooking spray, original","Fats and Oils",0.26,0,0.059,,0,0,20.69,,78.69,0.11,792,11.6,55.79,9.82,28176 | |
"Oil, almond","Fats and Oils",,0,0,,0,0,,,100,,884,8.2,69.9,17.4,28177 | |
"Oil, apricot kernel","Fats and Oils",,0,0,,0,0,,,100,,884,6.3,60,29.3,28178 | |
"Oil, avocado","Fats and Oils",,0,0,,0,0,,,100,,884,11.56,70.554,13.486,28179 | |
"Oil, babassu","Fats and Oils",,0,0,,0,0,,,100,,884,81.2,11.4,1.6,28180 | |
"Oil, canola","Fats and Oils",,0,0,,0,0,,,100,,884,7.365,63.276,28.142,28181 | |
"Oil, cocoa butter","Fats and Oils",,0,0,,0,0,,,100,,884,59.7,32.9,3,28182 | |
"Oil, coconut","Fats and Oils",,0,0,,0,0,,,100,,862,86.5,5.8,1.8,28183 | |
"Oil, cooking and salad, ENOVA, 80% diglycerides","Fats and Oils",,0,0,,0,0,,,100,,884,4.63,37.016,53.37,28184 | |
"Oil, corn and canola","Fats and Oils",,0,0,,0,0,,,100,,884,8.026,58.537,29.113,28185 | |
"Oil, corn, industrial and retail, all purpose salad or cooking","Fats and Oils",,0,0,,0,0,,,100,,884,12.948,27.576,54.677,28186 | |
"Oil, corn, peanut, and olive","Fats and Oils",,0,0,,0,0,,,100,,884,14.367,48.033,33.033,28187 | |
"Oil, cottonseed, salad or cooking","Fats and Oils",,0,0,,0,0,,,100,,884,25.9,17.8,51.9,28188 | |
"Oil, cupu assu","Fats and Oils",,0,0,,0,0,,,100,,884,53.2,38.7,3.8,28189 | |
"Oil, flaxseed","Fats and Oils",,0,0,,0,0,,,100,,884,9.4,20.2,66,28190 | |
"Oil, grapeseed","Fats and Oils",,0,0,,0,0,,,100,,884,9.6,16.1,69.9,28191 | |
"Oil, hazelnut","Fats and Oils",,0,0,,0,0,,,100,,884,7.4,78,10.2,28192 | |
"Oil, industrial, canola (partially hydrogenated) oil for deep fat frying","Fats and Oils",,0,0,,0,0,,,100,,884,10.117,71.075,14.038,28193 | |
"Oil, industrial, canola for salads, woks and light frying","Fats and Oils",,0,0,,0,0,,,100,,884,7.758,61.15,26.397,28194 | |
"Oil, industrial, canola with antifoaming agent, principal uses salads, woks and light frying","Fats and Oils",,0,0,,0,0,,,100,,884,7.615,62.093,25.588,28195 | |
"Oil, industrial, canola, high oleic","Fats and Oils",,0,0,,0,0,,,100,,900,6.787,72.734,15.785,28196 | |
"Oil, industrial, coconut (hydrogenated), used for whipped toppings and coffee whiteners","Fats and Oils",,0.001,0.007,,0,0.002,,,99.5,0.07,880,93.536,0.267,,28197 | |
"Oil, industrial, coconut, confection fat, typical basis for ice cream coatings","Fats and Oils",,0.002,0.005,,0,0.002,,,100,0.08,884,86.503,5.681,1.45,28198 | |
"Oil, industrial, coconut, principal uses candy coatings, oil sprays, roasting nuts","Fats and Oils",,0,0,,0,0,,,100,,884,86.002,5.935,1.657,28199 | |
"Oil, industrial, mid-oleic, sunflower","Fats and Oils",,0,0,,0,0,,,100,,884,9.009,57.334,28.962,28200 | |
"Oil, industrial, palm and palm kernel, filling fat (non-hydrogenated)","Fats and Oils",,0.001,0.006,,0,0.004,,,99.5,0.04,880,71.444,19.702,3.247,28201 | |
"Oil, industrial, palm kernel (hydrogenated) , used for whipped toppings, non-dairy","Fats and Oils",,0.001,0.006,,0,0.002,,,100,0.04,884,88.965,4.934,,28202 | |
"Oil, industrial, palm kernel (hydrogenated), confection fat, intermediate grade product","Fats and Oils",,0.001,0.006,,0,0.001,,,100,0.04,884,92.614,1.271,0.037,28203 | |
"Oil, industrial, palm kernel (hydrogenated), confection fat, uses similar to 95 degree hard butter","Fats and Oils",,0.001,0.006,,0,0.001,,,100,0.05,884,93.701,0.257,,28204 | |
"Oil, industrial, palm kernel (hydrogenated), filling fat","Fats and Oils",,0.002,0.006,,0,0.001,,,100,0.08,884,88.209,5.705,,28205 | |
"Oil, industrial, palm kernel, confection fat, uses similar to high quality cocoa butter","Fats and Oils",,0.001,0.006,,0,0.002,,,100,0.05,884,87.558,5.406,0.834,28206 | |
"Oil, industrial, soy ( partially hydrogenated), all purpose","Fats and Oils",,0,0,,0,0,,,100,,884,24.75,61.248,9.295,28207 | |
"Oil, industrial, soy (partially hydrogenated ) and soy (winterized), pourable clear fry","Fats and Oils",,0,0,,0,0,,,100,,884,15.341,34.63,45.228,28208 | |
"Oil, industrial, soy (partially hydrogenated ), palm, principal uses icings and fillings","Fats and Oils",,0,0,,0,0,,,100,,884,28.421,59.715,7.095,28209 | |
"Oil, industrial, soy (partially hydrogenated) and cottonseed, principal use as a tortilla shortening","Fats and Oils",,0,0,,0,0,,,100,,884,25.883,59.133,10.305,28210 | |
"Oil, industrial, soy (partially hydrogenated), multiuse for non-dairy butter flavor","Fats and Oils",,0,0,,0,0,,,100,,884,18.101,40.262,36.847,28211 | |
"Oil, industrial, soy (partially hydrogenated), principal uses popcorn and flavoring vegetables","Fats and Oils",,0,0,,0,0,,,100,,884,17.683,41.929,35.638,28212 | |
"Oil, industrial, soy, fully hydrogenated","Fats and Oils",,0,0,,0,0,,,100,,884,93.966,1.341,0.383,28213 | |
"Oil, industrial, soy, low linolenic","Fats and Oils",,0,0,,0,0,,,100,,900,15.084,21.438,58.932,28214 | |
"Oil, industrial, soy, refined, for woks and light frying","Fats and Oils",,0,0,,0,0,,,100,,884,15.34,21.701,58.208,28215 | |
"Oil, industrial, soy, ultra low linolenic","Fats and Oils",,0,0,,0,0,,,100,,884,14.853,28.876,52.149,28216 | |
"Oil, mustard","Fats and Oils",,0,0,,0,0,,,100,,884,11.582,59.187,21.23,28217 | |
"Oil, nutmeg butter","Fats and Oils",,0,0,,0,0,,,100,,884,90,4.8,,28218 | |
"Oil, oat","Fats and Oils",,0,0,,0,0,,,100,,884,19.62,35.11,40.87,28219 | |
"Oil, olive, salad or cooking","Fats and Oils",,0.001,0.002,,0,0.001,,,100,,884,13.808,72.961,10.523,28220 | |
"Oil, palm","Fats and Oils",,0,0,,0,0,,,100,,884,49.3,37,9.3,28221 | |
"Oil, peanut, salad or cooking","Fats and Oils",,0,0,,0,0,,,100,,884,16.9,46.2,32,28222 | |
"Oil, poppyseed","Fats and Oils",,0,0,,0,0,,,100,,884,13.5,19.7,62.4,28223 | |
"Oil, rice bran","Fats and Oils",,0,0,,0,0,,,100,,884,19.7,39.3,35,28224 | |
"Oil, safflower, salad or cooking, high oleic (primary safflower oil of commerce)","Fats and Oils",,0,0,,0,0,,,100,,884,7.541,75.221,12.82,28225 | |
"Oil, safflower, salad or cooking, linoleic, (over 70%)","Fats and Oils",,0,0,,0,0,,,100,,884,6.203,14.355,74.623,28226 | |
"Oil, sesame, salad or cooking","Fats and Oils",,0,0,,0,0,,,100,,884,14.2,39.7,41.7,28227 | |
"Oil, sheanut","Fats and Oils",,0,0,,0,0,,,100,,884,46.6,44,5.2,28228 | |
"Oil, soybean lecithin","Fats and Oils",,0,0,,0,0,,,100,,763,15.005,10.977,45.318,28229 | |
"Oil, soybean, salad or cooking","Fats and Oils",,0,0,,0,0,,,100,,884,15.65,22.783,57.74,28230 | |
"Oil, soybean, salad or cooking, (partially hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,14.9,43,37.6,28231 | |
"Oil, soybean, salad or cooking, (partially hydrogenated) and cottonseed","Fats and Oils",,0,0,,0,0,,,100,,884,18,29.5,48.1,28232 | |
"Oil, sunflower, high oleic (70% and over)","Fats and Oils",,0,0,,0,0,,,100,,884,9.859,83.689,3.798,28233 | |
"Oil, sunflower, linoleic (less than 60%)","Fats and Oils",,0,0,,0,0,,,100,,884,10.1,45.4,40.1,28234 | |
"Oil, sunflower, linoleic, (approx. 65%)","Fats and Oils",,0,0,,0,0,,,100,,884,10.3,19.5,65.7,28235 | |
"Oil, sunflower, linoleic, (partially hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,13,46.2,36.4,28236 | |
"Oil, teaseed","Fats and Oils",,0,0,,0,0,,,100,,884,21.1,51.5,23,28237 | |
"Oil, tomatoseed","Fats and Oils",,0,0,,0,0,,,100,,884,19.7,22.8,53.1,28238 | |
"Oil, ucuhuba butter","Fats and Oils",,0,0,,0,0,,,100,,884,85.2,6.7,2.9,28239 | |
"Oil, vegetable, Natreon canola, high stability, non trans, high oleic (70%)","Fats and Oils",,0,0,,0,0,,,100,,884,6.511,71.991,17.098,28240 | |
"Oil, walnut","Fats and Oils",,0,0,,0,0,,,100,,884,9.1,22.8,63.3,28241 | |
"Oil, wheat germ","Fats and Oils",,0,0,,0,0,,,100,,884,18.8,15.1,61.7,28242 | |
"Salad Dressing, coleslaw dressing, reduced fat","Fats and Oils",,0.036,1.6,0.4,0,0.05,40,38.73,20,37,329,2.98,8.6,7.52,28243 | |
"Salad Dressing, mayonnaise, light, SMART BALANCE, Omega Plus light","Fats and Oils",1.53,0.013,0.848,0.2,0,0.063,9.39,5.38,34.18,52.44,333,3.288,16.662,11.776,28244 | |
"Salad Dressing, mayonnaise-like, fat-free","Fats and Oils",0.2,0.006,0.788,1.9,0,0.049,15.5,10.3,2.7,78.7,84,0.6,1.887,0.063,28245 | |
"Salad dressing, KRAFT MIRACLE WHIP FREE Nonfat Dressing","Fats and Oils",0.2,0.006,0.788,1.9,0,0.049,15.5,10.3,2.7,78.7,84,0.6,,,28246 | |
"Salad dressing, KRAFT MIRACLE WHIP LIGHT Dressing","Fats and Oils",0.6,0.005,0.821,0.1,0,0.023,14.4,9.9,18.6,63.3,231,2.9,,,28247 | |
"Salad dressing, KRAFT Mayo Fat Free Mayonnaise Dressing","Fats and Oils",0.2,0.006,0.75,2,0,0.05,12.4,6.8,2.7,81.8,70,0.5,,,28248 | |
"Salad dressing, KRAFT Mayo Light Mayonnaise","Fats and Oils",0.6,0.006,0.797,0.1,0.0003,0.052,8.5,4.2,32.9,55.4,334,5,,,28249 | |
"Salad dressing, Mayonnaise dressing, diet, no cholesterol","Fats and Oils",0.9,0.014,0.711,,0,0.009,23.9,6.4,33.4,39.9,390,5,9,18,28250 | |
"Salad dressing, bacon and tomato","Fats and Oils",1.8,0.004,0.905,0.2,0.0088,0.108,2,2,35,58.7,326,5.435,8.415,19.584,28251 | |
"Salad dressing, blue or roquefort cheese dressing, commercial, regular","Fats and Oils",1.37,0.037,1.041,0.4,0.0007,0.088,4.62,3.48,51.1,39.71,476,8.275,13.279,27.545,28252 | |
"Salad dressing, blue or roquefort cheese dressing, fat-free","Fats and Oils",1.52,0.051,0.814,1.8,0.0005,0.194,25.6,7.44,1.01,68,115,0.45,0.441,0.069,28253 | |
"Salad dressing, blue or roquefort cheese dressing, reduced calorie","Fats and Oils",2.1,0.068,0.939,,0,0.051,13.2,3.6,2.7,77.8,86,0.628,1.092,0.855,28254 | |
"Salad dressing, blue or roquefort cheese, low calorie","Fats and Oils",5.1,0.089,0.939,,0.0003,0.005,2.9,2.82,7.2,79.5,99,2.575,1.783,2.422,28255 | |
"Salad dressing, buttermilk, lite","Fats and Oils",1.25,0.04,1.12,1.1,0.0006,0.132,21.33,3.77,12.42,62.04,202,1.25,2.794,4.213,28256 | |
"Salad dressing, caesar dressing, regular","Fats and Oils",2.17,0.048,1.209,0.5,0.0003,0.029,3.3,2.81,57.85,34.3,542,8.789,13.504,32.857,28257 | |
"Salad dressing, caesar, low calorie","Fats and Oils",0.3,0.024,1.148,0.1,0,0.029,18.6,16.32,4.4,73.2,110,0.703,1.124,2.368,28258 | |
"Salad dressing, coleslaw","Fats and Oils",0.9,0.014,0.71,0.1,0,0.009,23.8,20.11,33.4,39.9,390,4.9,9,18,28259 | |
"Salad dressing, french dressing, commercial, regular","Fats and Oils",0.77,0.024,0.836,,0.0036,0.067,15.58,15.95,44.81,36.56,457,5.648,8.433,21.029,28260 | |
"Salad dressing, french dressing, commercial, regular, without salt","Fats and Oils",0.77,0.024,0,,0,0.067,15.58,15.95,44.81,36.56,459,5.648,8.433,21.029,28261 | |
"Salad dressing, french dressing, fat-free","Fats and Oils",0.2,0.005,0.853,2.2,0,0.084,32.14,16.45,0.27,65.04,132,0.037,0.141,0.062,28262 | |
"Salad dressing, french dressing, reduced calorie","Fats and Oils",0.4,0.011,0.838,,0,0.079,27,25.92,13,59,200,1.872,3.029,7.527,28263 | |
"Salad dressing, french dressing, reduced fat","Fats and Oils",0.58,0.011,0.838,1.5,0.0048,0.107,31.22,16.86,11.52,54.28,222,0.842,4.518,3.852,28264 | |
"Salad dressing, french dressing, reduced fat, without salt","Fats and Oils",0.58,0.011,0.03,1.1,0,0.107,29.28,28.45,13.46,54.28,233,1.099,5.898,5.029,28265 | |
"Salad dressing, french, cottonseed, oil, home recipe","Fats and Oils",0.1,0.006,0.658,,0,0.024,3.4,,70.2,24.2,631,18.2,,,28266 | |
"Salad dressing, french, home recipe","Fats and Oils",0.1,0.006,0.658,,0.0006,0.024,3.4,,70.2,24.2,631,12.6,20.7,33.7,28267 | |
"Salad dressing, green goddess, regular","Fats and Oils",1.9,0.034,0.867,0.1,0.0002,0.058,7.36,6.67,43.33,45.03,427,5.978,9.423,23.165,28268 | |
"Salad dressing, home recipe, cooked","Fats and Oils",4.2,0.084,0.734,,0.0006,0.121,14.9,9.07,9.5,69.2,157,2.9,3.8,2.1,28269 | |
"Salad dressing, home recipe, vinegar and oil","Fats and Oils",,0,0.001,,0,0.008,2.5,2.5,50.1,47.4,449,9.1,14.8,24.1,28270 | |
"Salad dressing, honey mustard dressing, reduced calorie","Fats and Oils",0.98,0.067,0.9,0.8,0.0004,0.055,29.27,18.33,10,57.19,207,0.833,5.573,3.152,28271 | |
"Salad dressing, italian dressing, commercial, regular","Fats and Oils",0.38,0.007,1.018,,0,0.048,10.43,8.32,28.37,56.4,291,4.474,6.315,12.941,28272 | |
"Salad dressing, italian dressing, commercial, regular, without salt","Fats and Oils",0.38,0.007,0.03,,0,0.048,10.43,8.32,28.37,56.4,292,4.474,6.315,12.941,28273 | |
"Salad dressing, italian dressing, fat-free","Fats and Oils",0.97,0.03,1.129,0.6,0.0004,0.102,8.75,8.85,0.87,85.95,47,0.295,0.235,0.192,28274 | |
"Salad dressing, italian dressing, reduced calorie","Fats and Oils",0.3,0.006,1.074,0.2,0.0004,0.033,6.7,1.94,20,70,200,2.88,4.66,11.58,28275 | |
"Salad dressing, italian dressing, reduced fat","Fats and Oils",0.47,0.009,1.074,,0,0.085,4.57,4.55,6.38,84.68,75,0.451,2.19,1.704,28276 | |
"Salad dressing, italian dressing, reduced fat, without salt","Fats and Oils",0.47,0.009,0.03,,0,0.085,4.57,4.55,6.38,84.68,76,0.451,2.19,1.704,28277 | |
"Salad dressing, mayonnaise and mayonnaise-type, low calorie","Fats and Oils",0.9,0.014,0.837,,0,0.024,23.9,4.34,19,54.3,263,2.962,4.628,10.396,28278 | |
"Salad dressing, mayonnaise type, regular, with salt","Fats and Oils",0.9,0.014,0.711,,0,0.009,23.9,6.4,33.4,39.9,390,4.9,9,18,28279 | |
"Salad dressing, mayonnaise, imitation, milk cream","Fats and Oils",2.1,0.072,0.504,,0.0003,0.097,11.1,,5.1,79.6,97,2.8,1.7,0.3,28280 | |
"Salad dressing, mayonnaise, imitation, soybean","Fats and Oils",0.3,0,0.497,,0,0.01,16,6,19.2,62.7,232,3.3,4.5,10.6,28281 | |
"Salad dressing, mayonnaise, imitation, soybean without cholesterol","Fats and Oils",0.1,0,0.353,,0,0.01,15.8,6,47.7,34.6,482,7.5,10.5,27.6,28282 | |
"Salad dressing, mayonnaise, light","Fats and Oils",0.88,0.008,0.673,,0,0.04,8.2,4.34,33.09,55.91,324,5.209,8.135,17.953,28283 | |
"Salad dressing, mayonnaise, soybean and safflower oil, with salt","Fats and Oils",1.1,0.018,0.568,,0,0.034,2.7,0.48,79.4,15.3,717,8.6,13,55,28284 | |
"Salad dressing, mayonnaise, soybean oil, with salt","Fats and Oils",0.9,0.007,0.568,,0,0.012,3.16,1.08,79.39,15.06,718,11.885,19.598,42.38,28285 | |
"Salad dressing, mayonnaise, soybean oil, without salt","Fats and Oils",1.1,0.018,0.03,,0,0.034,2.7,,79.4,16.7,717,11.8,22.7,37.1,28286 | |
"Salad dressing, peppercorn dressing, commercial, regular","Fats and Oils",1.2,0.022,1.103,,0.0006,0.176,3.5,2.45,61.4,31.9,564,10.527,14.84,32.972,28287 | |
"Salad dressing, ranch dressing, commercial, regular","Fats and Oils",1.03,0.031,1.094,0.7,0.0034,0.062,6.69,2.45,51.39,38.18,484,8.019,11.394,28.329,28288 | |
"Salad dressing, ranch dressing, fat-free","Fats and Oils",0.25,0.05,0.897,0.1,0,0.111,26.51,5.35,1.92,68.33,119,,,,28289 | |
"Salad dressing, ranch dressing, reduced fat","Fats and Oils",1.25,0.04,1.12,1.1,0.0006,0.132,21.33,3.77,12.42,62.04,196,1.25,2.794,4.213,28290 | |
"Salad dressing, russian dressing","Fats and Oils",0.69,0.013,1.133,0.7,0.006,0.173,31.9,17.68,26.18,38.53,355,2.39,5.928,14.83,28291 | |
"Salad dressing, russian dressing, low calorie","Fats and Oils",0.5,0.019,0.868,0.3,0.006,0.157,27.6,21.87,4,65,141,0.6,0.9,2.3,28292 | |
"Salad dressing, sesame seed dressing, regular","Fats and Oils",3.1,0.019,1,1,0,0.157,8.6,8.32,45.2,39.2,443,6.2,11.9,25.1,28293 | |
"Salad dressing, spray-style dressing, assorted flavors","Fats and Oils",0.16,0.006,1.102,0.3,0.0007,0,16.6,14.29,10.75,71,165,1.643,,,28294 | |
"Salad dressing, sweet and sour","Fats and Oils",0.1,0.004,0.208,,0.0081,0.033,3.7,3.7,,95.7,15,,,,28295 | |
"Salad dressing, thousand island dressing, fat-free","Fats and Oils",0.55,0.011,0.788,3.3,0,0.122,29.27,16.83,1.45,66.14,132,0.198,0.342,0.63,28296 | |
"Salad dressing, thousand island dressing, reduced fat","Fats and Oils",0.83,0.027,0.955,1.2,0.0015,0.202,24.06,17.31,11.32,60.73,195,0.746,6.468,2.692,28297 | |
"Salad dressing, thousand island, commercial, regular","Fats and Oils",1.09,0.017,0.863,0.8,0,0.107,14.64,15.18,35.06,46.51,370,5.092,7.881,18.22,28298 | |
"Sandwich spread, with chopped pickle, regular, unspecified oils","Fats and Oils",0.9,0.014,1,0.4,0,0.035,22.4,15.18,34,40.8,389,5.1,7.4,20,28299 | |
"Shortening bread, soybean (hydrogenated) and cottonseed","Fats and Oils",,0,0,,0,0,,,100,,884,22,33,40.6,28300 | |
"Shortening cake mix, soybean (hydrogenated) and cottonseed (hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,27.2,54.2,14.1,28301 | |
"Shortening confectionery, coconut (hydrogenated) and or palm kernel (hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,91.3,2.2,1,28302 | |
"Shortening frying (heavy duty), beef tallow and cottonseed","Fats and Oils",,0,0,,0,0,,,100,,900,44.9,38.5,8.8,28303 | |
"Shortening frying (heavy duty), palm (hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,47.5,40.6,7.5,28304 | |
"Shortening frying (heavy duty), soybean (hydrogenated), linoleic (less than 1%)","Fats and Oils",,0,0,,0,0,,,100,,884,21.1,73.7,0.4,28305 | |
"Shortening household soybean (hydrogenated) and palm","Fats and Oils",,0,0,,0,0,,,100,,884,25.02,42.51,26.64,28306 | |
"Shortening industrial, lard and vegetable oil","Fats and Oils",,0,0,,0,0,,,100,,900,35.7,40.7,19.2,28307 | |
"Shortening industrial, soybean (hydrogenated) and cottonseed","Fats and Oils",,0,0,,0,0,,,100,,884,25.6,58,12,28308 | |
"Shortening, confectionery, fractionated palm","Fats and Oils",,0,0,,0,0,,,100,,884,65.5,29.6,0.5,28309 | |
"Shortening, household, lard and vegetable oil","Fats and Oils",,0,0,,0,0,,,100,,900,40.3,44.4,10.9,28310 | |
"Shortening, household, soybean (partially hydrogenated)-cottonseed (partially hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,25,44.5,26.1,28311 | |
"Shortening, industrial, soy (partially hydrogenated ) and corn for frying","Fats and Oils",,0,0,,0,0,,,100,,884,17.416,40.824,36.038,28312 | |
"Shortening, industrial, soy (partially hydrogenated ) for baking and confections","Fats and Oils",,0,0,,0,0,,,100,,884,18.788,71.023,5.4,28313 | |
"Shortening, industrial, soy (partially hydrogenated), pourable liquid fry shortening","Fats and Oils",,0,0,,0,0,,,100,,884,18.358,38.87,38.009,28314 | |
"Shortening, multipurpose, soybean (hydrogenated) and palm (hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,30.423,50.973,14.204,28315 | |
"Shortening, special purpose for baking, soybean (hydrogenated) palm and cottonseed","Fats and Oils",,0,0,,0,0,,,100,,884,28.843,29.583,37.174,28316 | |
"Shortening, special purpose for cakes and frostings, soybean (hydrogenated)","Fats and Oils",,0,0,,0,0,,,100,,884,20.001,36.555,37.991,28317 | |
"Shortening, vegetable, household, composite","Fats and Oils",,0.001,0.004,,0,0,,,99.97,,884,24.98,41.186,28.097,28318 | |
"USDA Commodity Food, oil, vegetable, low saturated fat","Fats and Oils",,0,0,,0,0,,,100,,884,7.429,22.73,65.138,28319 | |
"USDA Commodity Food, oil, vegetable, soybean, refined","Fats and Oils",,0,0,,0,0,,,100,,884,15.251,22.727,57.333,28320 | |
"Vegetable oil, palm kernel","Fats and Oils",,0,0,,0,0,,,100,,862,81.5,11.4,1.6,28321 | |
"Vegetable oil-butter spread, reduced calorie","Fats and Oils",,0.006,0.581,,0,0.006,,,53,44.7,465,17.88,20.77,11.15,28322 | |
"Chicken breast tenders, cooked, conventional oven","Poultry Products",15.78,0.018,0.457,1.3,0,0.218,17,0.41,17.69,47.76,293,3.786,6.787,3.038,28323 | |
"Chicken breast tenders, cooked, microwaved","Poultry Products",16.35,0.014,0.446,,0,0.225,17.56,,12.89,51.34,252,3.2,5.71,2.79,28324 | |
"Chicken breast tenders, uncooked","Poultry Products",14.73,0.019,0.451,1.1,0.0008,0.214,15.01,0.37,15.75,52.74,263,3.26,6.48,3.34,28325 | |
"Chicken nuggets, frozen, cooked","Poultry Products",15.27,0.031,0.557,2.1,0,0.265,14.09,,19.82,48.59,296,3.992,8.862,4.376,28326 | |
"Chicken nuggets, frozen, uncooked","Poultry Products",13.89,0.022,0.424,2.4,0,0.249,14.38,,18.06,51.55,276,3.575,8.266,4.393,28327 | |
"Chicken patty, frozen, cooked","Poultry Products",14.85,0.019,0.532,0.3,0,0.261,12.84,,19.58,50.82,287,3.662,8.337,4.805,28328 | |
"Chicken patty, frozen, uncooked","Poultry Products",14.33,0.02,0.518,1.2,0,0.248,13.61,,20.04,50.04,292,4.013,8.98,5.204,28329 | |
"Chicken, broilers or fryers, back, meat and skin, cooked, fried, batter","Poultry Products",21.97,0.026,0.317,,0,0.18,10.25,,21.91,44.51,331,5.83,8.91,5.2,28330 | |
"Chicken, broilers or fryers, back, meat and skin, cooked, fried, flour","Poultry Products",27.79,0.024,0.09,,0,0.226,6.5,,20.74,43.96,331,5.61,8.18,4.81,28331 | |
"Chicken, broilers or fryers, back, meat and skin, cooked, roasted","Poultry Products",25.95,0.021,0.087,,0,0.21,,,20.97,53.52,300,5.82,8.29,4.62,28332 | |
"Chicken, broilers or fryers, back, meat and skin, cooked, rotisserie, original seasoning","Poultry Products",23.23,0.035,0.584,,0,0.291,,0.03,18.59,56.44,260,4.924,8.162,2.723,28333 | |
"Chicken, broilers or fryers, back, meat and skin, cooked, stewed","Poultry Products",22.18,0.018,0.064,,0,0.145,,,18.14,60.93,258,5.02,7.13,4,28334 | |
"Chicken, broilers or fryers, back, meat and skin, raw","Poultry Products",14.05,0.013,0.064,,0.0016,0.144,,,28.74,58.1,319,8.34,12.25,6.14,28335 | |
"Chicken, broilers or fryers, back, meat only, cooked, fried","Poultry Products",29.99,0.026,0.099,,0,0.251,5.68,,15.32,47.87,288,4.12,5.73,3.64,28336 | |
"Chicken, broilers or fryers, back, meat only, cooked, roasted","Poultry Products",28.19,0.024,0.096,,0,0.237,,,13.16,58.75,239,3.6,4.83,3.05,28337 | |
"Chicken, broilers or fryers, back, meat only, cooked, rotisserie, original seasoning","Poultry Products",25.34,0.038,0.661,,0,0.309,,,11.54,61.24,205,3.007,4.898,1.701,28338 | |
"Chicken, broilers or fryers, back, meat only, cooked, stewed","Poultry Products",25.31,0.021,0.067,,0,0.158,,,11.19,64.33,209,3.04,4.02,2.62,28339 | |
"Chicken, broilers or fryers, back, meat only, raw","Poultry Products",19.56,0.017,0.082,,0,0.204,,,5.92,75.31,137,1.52,1.84,1.47,28340 | |
"Chicken, broilers or fryers, breast, meat and skin, cooked, fried, batter","Poultry Products",24.84,0.02,0.275,0.3,0,0.201,8.99,,13.2,51.64,260,3.52,5.46,3.08,28341 | |
"Chicken, broilers or fryers, breast, meat and skin, cooked, fried, flour","Poultry Products",31.84,0.016,0.076,0.1,0,0.259,1.64,,8.87,56.59,222,2.45,3.5,1.96,28342 | |
"Chicken, broilers or fryers, breast, meat and skin, cooked, roasted","Poultry Products",29.8,0.014,0.071,,0,0.245,,,7.78,62.44,197,2.19,3.03,1.66,28343 | |
"Chicken, broilers or fryers, breast, meat and skin, cooked, rotisserie, original seasoning","Poultry Products",27.48,0.015,0.347,,0,0.289,,0.02,8.18,63.49,184,2.114,3.548,1.166,28344 | |
"Chicken, broilers or fryers, breast, meat and skin, cooked, stewed","Poultry Products",27.39,0.013,0.062,,0,0.178,,,7.42,66.21,184,2.08,2.9,1.58,28345 | |
"Chicken, broilers or fryers, breast, meat and skin, raw","Poultry Products",20.85,0.011,0.063,,0,0.22,,,9.25,69.46,172,2.66,3.82,1.96,28346 | |
"Chicken, broilers or fryers, breast, meat only, cooked, fried","Poultry Products",33.44,0.016,0.079,,0,0.276,0.51,,4.71,60.21,187,1.29,1.72,1.07,28347 | |
"Chicken, broilers or fryers, breast, meat only, cooked, roasted","Poultry Products",31.02,0.015,0.074,,0,0.256,,,3.57,65.26,165,1.01,1.24,0.77,28348 | |
"Chicken, broilers or fryers, breast, meat only, cooked, rotisserie, original seasoning","Poultry Products",29.07,0.014,0.341,,0,0.296,,,3.49,66.67,148,0.843,1.412,0.48,28349 | |
"Chicken, broilers or fryers, breast, meat only, cooked, stewed","Poultry Products",28.98,0.013,0.063,,0,0.187,,,3.03,68.27,151,0.85,1.03,0.66,28350 | |
"Chicken, broilers or fryers, breast, meat only, raw","Poultry Products",21.23,0.005,0.116,,0.0012,0.37,,,2.59,75.79,114,0.567,0.763,0.399,28351 | |
"Chicken, broilers or fryers, breast, meat only, raw, enhanced","Poultry Products",19.75,0.004,0.323,,0,0.282,,,2.73,76.92,104,0.647,0.867,0.491,28352 | |
"Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, batter","Poultry Products",21.85,0.021,0.295,,0,0.185,9.38,,18.64,48.82,298,4.95,7.58,4.43,28353 | |
"Chicken, broilers or fryers, dark meat, meat and skin, cooked, fried, flour","Poultry Products",27.22,0.017,0.089,,0,0.23,4.08,,16.91,50.82,285,4.58,6.66,3.91,28354 | |
"Chicken, broilers or fryers, dark meat, meat and skin, cooked, roasted","Poultry Products",25.97,0.015,0.087,,0,0.22,,,15.78,58.63,253,4.37,6.19,3.49,28355 | |
"Chicken, broilers or fryers, dark meat, meat and skin, cooked, stewed","Poultry Products",23.5,0.014,0.07,,0,0.166,,,14.66,62.99,233,4.06,5.75,3.24,28356 | |
"Chicken, broilers or fryers, dark meat, meat and skin, raw","Poultry Products",16.69,0.011,0.073,,0,0.178,,,18.34,65.42,237,5.26,7.65,3.96,28357 | |
"Chicken, broilers or fryers, dark meat, meat only, cooked, fried","Poultry Products",28.99,0.018,0.097,,0,0.253,2.59,,11.62,55.7,239,3.12,4.32,2.77,28358 | |
"Chicken, broilers or fryers, dark meat, meat only, cooked, roasted","Poultry Products",27.37,0.015,0.093,,0,0.24,,,9.73,63.06,205,2.66,3.56,2.26,28359 | |
"Chicken, broilers or fryers, dark meat, meat only, cooked, stewed","Poultry Products",25.97,0.014,0.074,,0,0.181,,,8.98,65.83,192,2.45,3.26,2.09,28360 | |
"Chicken, broilers or fryers, dark meat, meat only, raw","Poultry Products",20.08,0.012,0.085,,0.0031,0.222,,,4.31,75.99,125,1.1,1.34,1.07,28361 | |
"Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, batter","Poultry Products",21.95,0.017,0.269,0.3,0,0.186,8.28,,15.75,52.77,268,4.14,6.43,3.79,28362 | |
"Chicken, broilers or fryers, drumstick, meat and skin, cooked, fried, flour","Poultry Products",26.96,0.012,0.089,0.1,0,0.229,1.63,,13.72,56.73,245,3.66,5.42,3.23,28363 | |
"Chicken, broilers or fryers, drumstick, meat and skin, cooked, roasted","Poultry Products",27.03,0.012,0.09,,0,0.229,,,11.15,62.6,216,3.05,4.25,2.5,28364 | |
"Chicken, broilers or fryers, drumstick, meat and skin, cooked, rotisserie, original seasoning","Poultry Products",26.86,0.021,0.411,,0,0.291,,0.02,11.98,59.78,215,3.02,5.22,1.785,28365 | |
"Chicken, broilers or fryers, drumstick, meat and skin, cooked, stewed","Poultry Products",25.32,0.011,0.076,,0,0.184,,,10.64,65.12,204,2.91,4.07,2.38,28366 | |
"Chicken, broilers or fryers, drumstick, meat and skin, raw","Poultry Products",19.27,0.011,0.083,,0.0027,0.206,,,8.68,72.46,161,2.39,3.37,1.94,28367 | |
"Chicken, broilers or fryers, drumstick, meat only, cooked, fried","Poultry Products",28.62,0.012,0.096,,0,0.249,,,8.08,62.24,195,2.13,2.94,1.97,28368 | |
"Chicken, broilers or fryers, drumstick, meat only, cooked, roasted","Poultry Products",28.29,0.012,0.095,,0,0.246,,,5.66,66.74,172,1.48,1.87,1.37,28369 | |
"Chicken, broilers or fryers, drumstick, meat only, cooked, rotisserie, original seasoning","Poultry Products",28.74,0.021,0.417,,0,0.301,,,6.81,63.05,176,1.594,2.855,1.041,28370 | |
"Chicken, broilers or fryers, drumstick, meat only, cooked, stewed","Poultry Products",27.5,0.011,0.08,,0,0.199,,,5.71,67.58,169,1.51,1.93,1.37,28371 | |
"Chicken, broilers or fryers, drumstick, meat only, raw","Poultry Products",20.59,0.011,0.088,,0.0032,0.226,,,3.42,76.38,119,0.88,1.06,0.85,28372 | |
"Chicken, broilers or fryers, giblets, cooked, fried","Poultry Products",32.54,0.018,0.113,,0.0087,0.33,4.35,,13.46,47.89,277,3.8,4.42,3.38,28373 | |
"Chicken, broilers or fryers, giblets, cooked, simmered","Poultry Products",27.15,0.014,0.067,,0.0125,0.224,,,4.5,67.72,157,1.322,0.962,0.812,28374 | |
"Chicken, broilers or fryers, giblets, raw","Poultry Products",17.88,0.01,0.077,,0.0162,0.228,1.8,,4.47,74.87,124,1.36,1.12,1.09,28375 | |
"Chicken, broilers or fryers, leg, meat and skin, cooked, fried, batter","Poultry Products",21.77,0.018,0.279,0.3,0,0.189,8.72,,16.17,52.08,273,4.28,6.58,3.85,28376 | |
"Chicken, broilers or fryers, leg, meat and skin, cooked, fried, flour","Poultry Products",26.84,0.013,0.088,0.1,0,0.233,2.5,,14.43,55.28,254,3.9,5.68,3.33,28377 | |
"Chicken, broilers or fryers, leg, meat and skin, cooked, roasted","Poultry Products",25.96,0.012,0.087,,0,0.225,,,13.46,60.92,232,3.72,5.24,3,28378 | |
"Chicken, broilers or fryers, leg, meat and skin, cooked, stewed","Poultry Products",24.17,0.011,0.073,,0,0.176,,,12.92,64.01,220,3.57,5.04,2.87,28379 | |
"Chicken, broilers or fryers, leg, meat and skin, raw","Poultry Products",18.15,0.01,0.079,,0,0.198,,,12.12,69.91,187,3.41,4.89,2.65,28380 | |
"Chicken, broilers or fryers, leg, meat only, cooked, fried","Poultry Products",28.38,0.013,0.096,,0,0.254,0.65,,9.32,60.61,208,2.49,3.43,2.22,28381 | |
"Chicken, broilers or fryers, leg, meat only, cooked, roasted","Poultry Products",27.03,0.012,0.091,,0,0.242,,,8.43,64.7,191,2.29,3.05,1.97,28382 | |
"Chicken, broilers or fryers, leg, meat only, cooked, stewed","Poultry Products",26.26,0.011,0.078,,0,0.19,,,8.06,66.44,185,2.2,2.93,1.88,28383 | |
"Chicken, broilers or fryers, leg, meat only, raw","Poultry Products",20.13,0.011,0.086,,0,0.229,,,3.81,76.13,120,0.98,1.18,0.95,28384 | |
"Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, batter","Poultry Products",23.55,0.02,0.287,,0,0.185,9.5,,15.44,50.23,277,4.12,6.37,3.6,28385 | |
"Chicken, broilers or fryers, light meat, meat and skin, cooked, fried, flour","Poultry Products",30.45,0.016,0.077,0.1,0,0.239,1.82,,12.09,54.66,246,3.32,4.8,2.69,28386 | |
"Chicken, broilers or fryers, light meat, meat and skin, cooked, roasted","Poultry Products",29.02,0.015,0.075,,0,0.227,,,10.85,60.51,222,3.05,4.26,2.31,28387 | |
"Chicken, broilers or fryers, light meat, meat and skin, cooked, stewed","Poultry Products",26.14,0.013,0.063,,0,0.167,,,9.97,65.13,201,2.8,3.92,2.12,28388 | |
"Chicken, broilers or fryers, light meat, meat and skin, raw","Poultry Products",20.27,0.011,0.065,,0,0.204,,,11.07,68.6,186,3.16,4.52,2.34,28389 | |
"Chicken, broilers or fryers, light meat, meat only, cooked, fried","Poultry Products",32.82,0.016,0.081,,0,0.263,0.42,,5.54,60.14,192,1.52,1.97,1.26,28390 | |
"Chicken, broilers or fryers, light meat, meat only, cooked, roasted","Poultry Products",30.91,0.015,0.077,,0,0.247,,,4.51,64.76,173,1.27,1.54,0.98,28391 | |
"Chicken, broilers or fryers, light meat, meat only, cooked, stewed","Poultry Products",28.88,0.013,0.065,,0,0.18,,,3.99,68.02,159,1.12,1.35,0.87,28392 | |
"Chicken, broilers or fryers, light meat, meat only, raw","Poultry Products",23.2,0.012,0.068,,0,0.239,,,1.65,74.86,114,0.44,0.39,0.37,28393 | |
"Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, batter","Poultry Products",22.84,0.021,0.284,,0.0004,0.19,9.03,,17.53,49.29,291,4.67,7.13,4.15,28394 | |
"Chicken, broilers or fryers, meat and skin and giblets and neck, cooked, fried, flour","Poultry Products",28.57,0.017,0.086,,0.0005,0.237,3.27,,15.27,51.88,272,4.16,5.99,3.51,28395 | |
"Chicken, broilers or fryers, meat and skin and giblets and neck, raw","Poultry Products",18.33,0.011,0.07,,0.0026,0.189,0.13,,14.83,66.34,213,4.24,6.08,3.19,28396 | |
"Chicken, broilers or fryers, meat and skin and giblets and neck, roasted","Poultry Products",26.78,0.015,0.079,,0.0005,0.212,0.06,,13.27,60.11,234,3.7,5.17,2.9,28397 | |
"Chicken, broilers or fryers, meat and skin and giblets and neck, stewed","Poultry Products",24.49,0.014,0.066,,0.0005,0.163,0.06,,12.37,64.04,216,3.45,4.82,2.7,28398 | |
"Chicken, broilers or fryers, meat and skin, cooked, fried, batter","Poultry Products",22.54,0.021,0.292,0.3,0,0.185,9.42,,17.35,49.39,289,4.61,7.09,4.1,28399 | |
"Chicken, broilers or fryers, meat and skin, cooked, fried, flour","Poultry Products",28.56,0.017,0.084,0.1,0,0.234,3.15,,14.92,52.41,269,4.06,5.89,3.41,28400 | |
"Chicken, broilers or fryers, meat and skin, cooked, roasted","Poultry Products",27.3,0.015,0.082,,0,0.223,,,13.6,59.45,239,3.79,5.34,2.97,28401 | |
"Chicken, broilers or fryers, meat and skin, cooked, stewed","Poultry Products",24.68,0.013,0.067,,0,0.166,,,12.56,63.93,219,3.5,4.93,2.74,28402 | |
"Chicken, broilers or fryers, meat and skin, raw","Poultry Products",18.6,0.011,0.07,,0.0016,0.189,,,15.06,65.99,215,4.31,6.24,3.23,28403 | |
"Chicken, broilers or fryers, meat only, cooked, fried","Poultry Products",30.57,0.017,0.091,0.1,0,0.257,1.69,,9.12,57.53,219,2.46,3.35,2.15,28404 | |
"Chicken, broilers or fryers, meat only, raw","Poultry Products",21.39,0.012,0.077,,0.0023,0.229,,,3.08,75.46,119,0.79,0.9,0.75,28405 | |
"Chicken, broilers or fryers, meat only, roasted","Poultry Products",28.93,0.015,0.086,,0,0.243,,,7.41,63.79,190,2.04,2.66,1.69,28406 | |
"Chicken, broilers or fryers, meat only, stewed","Poultry Products",27.29,0.014,0.07,,0,0.18,,,6.71,66.81,177,1.84,2.39,1.54,28407 | |
"Chicken, broilers or fryers, neck, meat and skin, cooked simmered","Poultry Products",19.61,0.027,0.052,,0,0.108,,,18.1,61.73,247,5,7.22,3.94,28408 | |
"Chicken, broilers or fryers, neck, meat and skin, cooked, fried, batter","Poultry Products",19.82,0.031,0.276,,0,0.151,8.7,,23.52,46.92,330,6.22,9.79,5.56,28409 | |
"Chicken, broilers or fryers, neck, meat and skin, cooked, fried, flour","Poultry Products",24.01,0.031,0.082,,0,0.18,4.24,,23.61,47.49,332,6.32,9.7,5.47,28410 | |
"Chicken, broilers or fryers, neck, meat and skin, raw","Poultry Products",14.07,0.018,0.064,,0,0.137,,,26.24,59.99,297,7.27,10.55,5.68,28411 | |
"Chicken, broilers or fryers, neck, meat only, cooked, fried","Poultry Products",26.87,0.041,0.099,,0,0.213,1.77,,11.88,58.71,229,3,4.57,3.04,28412 | |
"Chicken, broilers or fryers, neck, meat only, cooked, simmered","Poultry Products",24.56,0.044,0.064,,0,0.14,,,8.18,67.05,179,2.1,2.54,2.03,28413 | |
"Chicken, broilers or fryers, neck, meat only, raw","Poultry Products",17.55,0.027,0.081,,0,0.175,,,8.78,71.17,154,2.25,2.73,2.18,28414 | |
"Chicken, broilers or fryers, separable fat, raw","Poultry Products",3.73,0.007,0.032,,0,0.064,,,67.95,28.91,629,20.25,30.3,14.2,28415 | |
"Chicken, broilers or fryers, skin only, cooked, fried, batter","Poultry Products",10.32,0.026,0.581,,0,0.075,23.15,,28.83,36.11,394,7.61,12.35,6.83,28416 | |
"Chicken, broilers or fryers, skin only, cooked, fried, flour","Poultry Products",19.09,0.014,0.053,,0,0.125,9.34,,42.58,28.54,502,11.67,18.01,9.44,28417 | |
"Chicken, broilers or fryers, skin only, cooked, roasted","Poultry Products",20.36,0.014,0.065,,0,0.136,,,40.68,40.29,454,11.42,17.03,8.57,28418 | |
"Chicken, broilers or fryers, skin only, cooked, rotisserie, original seasoning","Poultry Products",17.66,0.025,0.381,,0,0.245,,0.11,37.24,43.76,406,9.994,16.793,5.423,28419 | |
"Chicken, broilers or fryers, skin only, cooked, stewed","Poultry Products",15.22,0.012,0.056,,0,0.117,,,33.04,53.27,363,9.28,13.83,6.96,28420 | |
"Chicken, broilers or fryers, skin only, raw","Poultry Products",13.33,0.011,0.063,,0,0.103,,,32.35,54.22,349,9.08,13.54,6.81,28421 | |
"Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, batter","Poultry Products",21.61,0.018,0.288,0.3,0,0.192,9.08,,16.53,51.5,277,4.41,6.7,3.9,28422 | |
"Chicken, broilers or fryers, thigh, meat and skin, cooked, fried, flour","Poultry Products",26.75,0.014,0.088,0.1,0,0.237,3.18,,14.98,54.14,262,4.09,5.87,3.41,28423 | |
"Chicken, broilers or fryers, thigh, meat and skin, cooked, roasted","Poultry Products",25.06,0.012,0.084,,0,0.222,,,15.49,59.42,247,4.33,6.15,3.42,28424 | |
"Chicken, broilers or fryers, thigh, meat and skin, cooked, rotisserie, original seasoning","Poultry Products",22.93,0.015,0.345,,0,0.26,,0.02,15.7,60.34,233,4.123,6.979,2.334,28425 | |
"Chicken, broilers or fryers, thigh, meat and skin, cooked, stewed","Poultry Products",23.26,0.011,0.071,,0,0.17,,,14.74,63.11,232,4.11,5.84,3.25,28426 | |
"Chicken, broilers or fryers, thigh, meat and skin, raw","Poultry Products",17.27,0.01,0.076,,0.0023,0.192,,,15.25,67.68,211,4.263,6.328,3.286,28427 | |
"Chicken, broilers or fryers, thigh, meat only, cooked, fried","Poultry Products",28.18,0.013,0.095,,0,0.259,1.18,,10.3,59.31,218,2.78,3.82,2.43,28428 | |
"Chicken, broilers or fryers, thigh, meat only, cooked, roasted","Poultry Products",25.94,0.012,0.088,,0,0.238,,,10.88,62.87,209,3.03,4.15,2.48,28429 | |
"Chicken, broilers or fryers, thigh, meat only, cooked, rotisserie, original seasoning","Poultry Products",24.06,0.013,0.337,,0,0.264,,,11.09,63.89,196,2.866,4.878,1.673,28430 | |
"Chicken, broilers or fryers, thigh, meat only, cooked, stewed","Poultry Products",25,0.011,0.075,,0,0.183,,,9.79,65.59,195,2.71,3.7,2.24,28431 | |
"Chicken, broilers or fryers, thigh, meat only, raw","Poultry Products",19.65,0.01,0.086,,0,0.231,,,3.91,75.81,119,1,1.21,0.97,28432 | |
"Chicken, broilers or fryers, wing, meat and skin, cooked, fried, batter","Poultry Products",19.87,0.02,0.32,0.3,0,0.138,10.94,,21.81,46.21,324,5.83,8.96,5.07,28433 | |
"Chicken, broilers or fryers, wing, meat and skin, cooked, fried, flour","Poultry Products",26.11,0.015,0.077,0.1,0,0.177,2.39,,22.16,48.62,321,6.06,8.89,4.95,28434 | |
"Chicken, broilers or fryers, wing, meat and skin, cooked, roasted","Poultry Products",26.86,0.015,0.082,,0,0.184,,,19.46,55.04,290,5.45,7.64,4.14,28435 | |
"Chicken, broilers or fryers, wing, meat and skin, cooked, rotisserie, original seasoning","Poultry Products",24.34,0.029,0.61,,0,0.296,,0.04,18.77,55.34,266,4.814,8.109,2.69,28436 | |
"Chicken, broilers or fryers, wing, meat and skin, cooked, stewed","Poultry Products",22.78,0.012,0.067,,0,0.139,,,16.82,62.18,249,4.71,6.6,3.58,28437 | |
"Chicken, broilers or fryers, wing, meat and skin, raw","Poultry Products",18.33,0.012,0.073,,0.0007,0.156,,,15.97,66.21,222,4.48,6.35,3.39,28438 | |
"Chicken, broilers or fryers, wing, meat only, cooked, fried","Poultry Products",30.15,0.015,0.091,,0,0.208,,,9.15,59.83,211,2.5,3.08,2.07,28439 | |
"Chicken, broilers or fryers, wing, meat only, cooked, roasted","Poultry Products",30.46,0.016,0.092,,0,0.21,,,8.13,62.78,203,2.26,2.61,1.78,28440 | |
"Chicken, broilers or fryers, wing, meat only, cooked, rotisserie, original seasoning","Poultry Products",27.69,0.032,0.725,,0,0.322,,,9.53,61.13,197,2.223,3.766,1.323,28441 | |
"Chicken, broilers or fryers, wing, meat only, cooked, stewed","Poultry Products",27.18,0.013,0.073,,0,0.153,,,7.18,67.01,181,2,2.31,1.57,28442 | |
"Chicken, broilers or fryers, wing, meat only, raw","Poultry Products",21.97,0.013,0.081,,0.0012,0.194,,,3.54,74.95,126,0.94,0.85,0.8,28443 | |
"Chicken, canned, meat only, with broth","Poultry Products",21.77,0.014,0.503,,0.002,0.138,,,7.95,68.65,165,2.2,3.15,1.75,28444 | |
"Chicken, canned, no broth","Poultry Products",25.3,0.014,0.135,,0,0.153,0.9,,8.1,64.9,185,2.25,3.279,1.978,28445 | |
"Chicken, capons, giblets, cooked, simmered","Poultry Products",26.39,0.013,0.055,,0.009,0.153,0.76,,5.4,66.54,164,1.77,1.37,1.13,28446 | |
"Chicken, capons, giblets, raw","Poultry Products",18.28,0.01,0.077,,0.0184,0.226,1.42,,5.18,74.12,130,1.64,1.32,1.19,28447 | |
"Chicken, capons, meat and skin and giblets and neck, cooked, roasted","Poultry Products",28.35,0.015,0.05,,0.0004,0.243,0.04,,11.67,59.25,226,3.28,4.71,2.52,28448 | |
"Chicken, capons, meat and skin and giblets and neck, raw","Poultry Products",18.51,0.011,0.047,,0.0026,0.213,0.08,,16.9,63.66,232,4.89,7.16,3.6,28449 | |
"Chicken, capons, meat and skin, cooked, roasted","Poultry Products",28.96,0.014,0.049,,0,0.255,,,11.65,58.7,229,3.26,4.75,2.52,28450 | |
"Chicken, capons, meat and skin, raw","Poultry Products",18.77,0.011,0.045,,0.0017,0.217,,,17.07,63.24,234,4.95,7.31,3.62,28451 | |
"Chicken, cornish game hens, meat and skin, cooked, roasted","Poultry Products",22.27,0.013,0.064,,0.0005,0.245,,,18.21,58.68,259,5.05,8,3.6,28452 | |
"Chicken, cornish game hens, meat and skin, raw","Poultry Products",17.15,0.011,0.061,,0.0005,0.236,,,14.02,68.18,200,3.89,6.16,2.77,28453 | |
"Chicken, cornish game hens, meat only, cooked, roasted","Poultry Products",23.3,0.013,0.063,,0.0006,0.25,,,3.87,71.9,134,0.99,1.24,0.94,28454 | |
"Chicken, cornish game hens, meat only, raw","Poultry Products",20.04,0.012,0.068,,0.0006,0.269,,,3.33,75.84,116,0.85,1.07,0.81,28455 | |
"Chicken, feet, boiled","Poultry Products",19.4,0.088,0.067,,0,0.031,0.2,,14.6,65.8,215,3.92,5.5,2.98,28456 | |
"Chicken, gizzard, all classes, cooked, simmered","Poultry Products",30.39,0.017,0.056,,0,0.179,,,2.68,67.93,154,0.67,0.528,0.353,28457 | |
"Chicken, gizzard, all classes, raw","Poultry Products",17.66,0.011,0.069,,0.0037,0.237,,,2.06,79.33,94,0.529,0.512,0.357,28458 | |
"Chicken, ground, crumbles, cooked, pan-browned","Poultry Products",23.28,0.008,0.075,,0,0.677,,,10.92,64.92,189,3.11,4.879,2.08,28459 | |
"Chicken, ground, raw","Poultry Products",17.44,0.006,0.06,,0,0.522,0.04,,8.1,73.24,143,2.301,3.611,1.508,28460 | |
"Chicken, heart, all classes, cooked, simmered","Poultry Products",26.41,0.019,0.048,,0.0018,0.132,0.1,,7.92,64.85,185,2.26,2.01,2.3,28461 | |
"Chicken, heart, all classes, raw","Poultry Products",15.55,0.012,0.074,,0.0032,0.176,0.71,,9.33,73.56,153,2.66,2.37,2.71,28462 | |
"Chicken, liver, all classes, cooked, pan-fried","Poultry Products",25.78,0.01,0.092,,0.0027,0.315,1.11,,6.43,65.22,172,2.033,1.387,1.265,28463 | |
"Chicken, liver, all classes, cooked, simmered","Poultry Products",24.46,0.011,0.076,,0.027899999999999998,0.263,0.87,,6.51,66.81,167,2.06,1.416,1.988,28464 | |
"Chicken, liver, all classes, raw","Poultry Products",16.92,0.008,0.071,,0.0179,0.23,0.73,,4.83,76.46,119,1.563,1.249,1.306,28465 | |
"Chicken, roasting, dark meat, meat only, cooked, roasted","Poultry Products",23.25,0.011,0.095,,0,0.224,,,8.75,67.05,178,2.43,3.31,2,28466 | |
"Chicken, roasting, dark meat, meat only, raw","Poultry Products",18.74,0.009,0.095,,0,0.227,,,3.61,75.48,113,0.93,1.12,0.9,28467 | |
"Chicken, roasting, giblets, cooked, simmered","Poultry Products",26.77,0.012,0.06,,0.0065,0.16,0.86,,5.22,66.32,165,1.64,1.33,1.22,28468 | |
"Chicken, roasting, giblets, raw","Poultry Products",18.14,0.01,0.077,,0.013099999999999999,0.227,1.14,,5.04,74.73,127,1.54,1.28,1.26,28469 | |
"Chicken, roasting, light meat, meat only, cooked, roasted","Poultry Products",27.13,0.013,0.051,,0,0.236,,,4.07,67.85,153,1.08,1.52,0.93,28470 | |
"Chicken, roasting, light meat, meat only, raw","Poultry Products",22.2,0.011,0.051,,0,0.252,,,1.63,74.3,109,0.37,0.48,0.4,28471 | |
"Chicken, roasting, meat and skin and giblets and neck, cooked, roasted","Poultry Products",23.96,0.013,0.071,,0.0004,0.204,0.05,,13.07,62.35,220,3.66,5.22,2.85,28472 | |
"Chicken, roasting, meat and skin and giblets and neck, raw","Poultry Products",17.09,0.01,0.069,,0.0024,0.196,0.09,,15.46,65.98,213,4.41,6.39,3.33,28473 | |
"Chicken, roasting, meat and skin, cooked, roasted","Poultry Products",23.97,0.012,0.073,,0,0.211,,,13.39,62.1,223,3.74,5.4,2.92,28474 | |
"Chicken, roasting, meat and skin, raw","Poultry Products",17.14,0.01,0.068,,0,0.196,,,15.85,65.5,216,4.53,6.64,3.4,28475 | |
"Chicken, roasting, meat only, cooked, roasted","Poultry Products",25.01,0.012,0.075,,0,0.229,,,6.63,67.41,167,1.81,2.5,1.51,28476 | |
"Chicken, roasting, meat only, raw","Poultry Products",20.33,0.01,0.075,,0,0.238,,,2.7,74.94,111,0.67,0.83,0.67,28477 | |
"Chicken, stewing, dark meat, meat only, cooked, stewed","Poultry Products",28.14,0.012,0.095,,0,0.204,,,15.28,55.09,258,4.07,5.24,3.65,28478 | |
"Chicken, stewing, dark meat, meat only, raw","Poultry Products",19.7,0.01,0.101,,0.0046,0.242,,,8.12,71.94,157,2.08,2.52,2.02,28479 | |
"Chicken, stewing, giblets, cooked, simmered","Poultry Products",25.73,0.013,0.056,,0.0055,0.154,0.11,,9.3,64,194,2.66,2.94,1.89,28480 | |
"Chicken, stewing, giblets, raw","Poultry Products",17.89,0.01,0.077,,0.0114,0.226,2.13,,9.21,69.8,168,2.63,2.75,2.1,28481 | |
"Chicken, stewing, light meat, meat only, cooked, stewed","Poultry Products",33.04,0.014,0.058,,0,0.199,,,7.98,57.79,213,1.98,2.69,1.89,28482 | |
"Chicken, stewing, light meat, meat only, raw","Poultry Products",23.1,0.011,0.053,,0.0018,0.261,,,4.21,73.24,137,0.97,1.25,1.04,28483 | |
"Chicken, stewing, meat and skin, and giblets and neck, cooked, stewed","Poultry Products",24.88,0.013,0.067,,0.001,0.171,,,11.91,64.24,214,3.324,4.609,2.584,28484 | |
"Chicken, stewing, meat and skin, and giblets and neck, raw","Poultry Products",17.48,0.01,0.071,,0.0031,0.204,0.19,,19.52,62.5,251,5.48,7.82,4.27,28485 | |
"Chicken, stewing, meat and skin, cooked, stewed","Poultry Products",26.88,0.013,0.073,,0,0.182,,,18.87,53.07,285,5.11,7.19,4.23,28486 | |
"Chicken, stewing, meat and skin, raw","Poultry Products",17.55,0.01,0.071,,0,0.204,,,20.33,61.84,258,5.71,8.24,4.44,28487 | |
"Chicken, stewing, meat only, cooked, stewed","Poultry Products",30.42,0.013,0.078,,0,0.202,,,11.89,56.35,237,3.1,4.05,2.83,28488 | |
"Chicken, stewing, meat only, raw","Poultry Products",21.26,0.01,0.079,,0.0033,0.251,,,6.32,72.54,148,1.57,1.94,1.57,28489 | |
"Chicken, wing, frozen, glazed, barbecue flavored","Poultry Products",19.67,0.028,0.615,0.6,0,0.19,3.34,2.04,12.67,61.79,211,3.321,5.766,2.359,28490 | |
"Chicken, wing, frozen, glazed, barbecue flavored, heated (conventional oven)","Poultry Products",22.24,0.028,0.559,0.5,0,0.218,3.36,1.94,14.87,57.25,242,3.966,6.737,2.838,28491 | |
"Chicken, wing, frozen, glazed, barbecue flavored, heated (microwave)","Poultry Products",25.34,0.038,0.837,0.9,0.0005,0.254,3.84,2.1,13.9,53.89,248,3.655,6.297,2.599,28492 | |
"Dove, cooked (includes squab)","Poultry Products",23.9,0.017,0.057,,0.0029,0.256,,,13,62,213,3.739,5.462,2.733,28493 | |
"Duck, domesticated, liver, raw","Poultry Products",18.74,0.011,0.14,,0.0045,0.23,3.53,,4.64,71.78,136,1.44,0.71,0.63,28494 | |
"Duck, domesticated, meat and skin, cooked, roasted","Poultry Products",18.99,0.011,0.059,,0,0.204,,,28.35,51.84,337,9.67,12.9,3.65,28495 | |
"Duck, domesticated, meat and skin, raw","Poultry Products",11.49,0.011,0.063,,0.0028,0.209,,,39.34,48.5,404,13.22,18.69,5.08,28496 | |
"Duck, domesticated, meat only, cooked, roasted","Poultry Products",23.48,0.012,0.065,,0,0.252,,,11.2,64.22,201,3.951,3.858,1.487,28497 | |
"Duck, domesticated, meat only, raw","Poultry Products",18.28,0.011,0.074,,0.0058,0.271,0.94,,5.95,73.77,135,2.32,1.54,0.75,28498 | |
"Duck, wild, breast, meat only, raw","Poultry Products",19.85,0.003,0.057,,0.0062,0.268,,,4.25,75.51,123,1.32,1.21,0.58,28499 | |
"Duck, wild, meat and skin, raw","Poultry Products",17.42,0.005,0.056,,0.0052,0.249,,,15.2,66.52,211,5.04,6.8,2.02,28500 | |
"Duck, young duckling, domesticated, White Pekin, breast, meat and skin, boneless, cooked, roasted","Poultry Products",24.5,0.008,0.084,,0.0028,0,,,10.85,63.25,202,2.922,5.428,1.632,28501 | |
"Duck, young duckling, domesticated, White Pekin, breast, meat only, boneless, cooked without skin, broiled","Poultry Products",27.6,0.009,0.105,,0.0032,0,,,2.5,68.25,140,0.578,0.871,0.378,28502 | |
"Duck, young duckling, domesticated, White Pekin, leg, meat and skin, bone in, cooked, roasted","Poultry Products",26.75,0.01,0.11,,0.0015,0,,,11.4,60.9,217,2.975,5.617,1.896,28503 | |
"Duck, young duckling, domesticated, White Pekin, leg, meat only, bone in, cooked without skin, braised","Poultry Products",29.1,0.01,0.108,,0.0023,0,,,5.96,64.6,178,1.339,2.637,0.909,28504 | |
"Emu, fan fillet, cooked, broiled","Poultry Products",31.27,0.006,0.053,,0,0.397,,,2.3,66.43,154,0.583,0.917,0.318,28505 | |
"Emu, fan fillet, raw","Poultry Products",22.5,0.003,0.12,,0,0.3,,,0.8,74.62,103,0.201,0.319,0.109,28506 | |
"Emu, flat fillet, raw","Poultry Products",22.25,0.003,0.15,,0,0.24,,,0.74,75.4,102,0.187,0.295,0.102,28507 | |
"Emu, full rump, cooked, broiled","Poultry Products",33.67,0.007,0.11,,0,0.324,,,2.68,61.97,168,0.87,1.079,0.613,28508 | |
"Emu, full rump, raw","Poultry Products",22.83,0.004,0.09,,0,0.33,,,1.64,73.79,112,0.448,0.516,0.329,28509 | |
"Emu, ground, cooked, pan-broiled","Poultry Products",28.43,0.008,0.065,,0,0.375,,,4.65,65.83,163,1.242,1.953,0.677,28510 | |
"Emu, ground, raw","Poultry Products",22.77,0.007,0.056,,0,0.32,,,4.03,72.87,134,1.022,1.607,0.557,28511 | |
"Emu, inside drum, raw","Poultry Products",22.22,0.004,0.102,,0,0.318,,,1.49,74.73,108,0.386,0.532,0.256,28512 | |
"Emu, inside drums, cooked, broiled","Poultry Products",32.38,0.006,0.118,,0,0.312,,,2.01,64.31,156,0.654,0.859,0.408,28513 | |
"Emu, outside drum, raw","Poultry Products",23.08,0.003,0.1,,0,0.32,,,0.48,74.87,103,0.122,0.202,0.07,28514 | |
"Emu, oyster, raw","Poultry Products",22.81,0.004,0.15,,0,0.25,,,4.86,72.57,141,1.231,1.937,0.671,28515 | |
"Emu, top loin, cooked, broiled","Poultry Products",29.07,0.009,0.058,,0,0.374,,,3.13,67.37,152,0.794,1.249,0.433,28516 | |
"Goose, domesticated, meat and skin, cooked, roasted","Poultry Products",25.16,0.013,0.07,,0,0.329,,,21.92,51.95,305,6.87,10.25,2.52,28517 | |
"Goose, domesticated, meat and skin, raw","Poultry Products",15.86,0.012,0.073,,0.004200000000000001,0.308,,,33.62,49.66,371,9.78,17.77,3.76,28518 | |
"Goose, domesticated, meat only, cooked, roasted","Poultry Products",28.97,0.014,0.076,,0,0.388,,,12.67,57.23,238,4.56,4.34,1.54,28519 | |
"Goose, domesticated, meat only, raw","Poultry Products",22.75,0.013,0.087,,0.0072,0.42,,,7.13,68.3,161,2.79,1.85,0.9,28520 | |
"Goose, liver, raw","Poultry Products",16.37,0.043,0.14,,0.0045,0.23,6.32,,4.28,71.78,133,1.59,0.81,0.26,28521 | |
"Ground Turkey, fat free, raw","Poultry Products",23.57,0.003,0.051,,0,0.295,,,1.95,74.66,112,0.487,0.512,0.594,28522 | |
"Ground turkey, 85% lean, 15% fat, pan-broiled crumbles","Poultry Products",25.11,0.049,0.085,,0,0.276,,,17.45,56.66,258,4.572,6.05,4.624,28523 | |
"Ground turkey, 85% lean, 15% fat, patties, broiled","Poultry Products",25.88,0.048,0.081,,0,0.242,,,16.2,58.25,249,4.127,5.462,4.167,28524 | |
"Ground turkey, 85% lean, 15% fat, raw","Poultry Products",16.9,0.033,0.054,,0,0.202,,,12.54,69.74,180,3.414,4.551,3.485,28525 | |
"Ground turkey, 93% lean, 7% fat, pan-broiled crumbles","Poultry Products",27.1,0.031,0.09,,0,0.304,,,11.6,61.05,213,2.966,3.895,3.562,28526 | |
"Ground turkey, 93% lean, 7% fat, patties, broiled","Poultry Products",25.86,0.029,0.091,,0,0.247,,,11.45,62.42,207,2.958,3.875,3.545,28527 | |
"Ground turkey, 93% lean, 7% fat, raw","Poultry Products",18.73,0.021,0.069,,0,0.213,,,8.34,72.63,150,2.17,2.843,2.537,28528 | |
"Ground turkey, fat free, pan-broiled crumbles","Poultry Products",31.69,0.006,0.061,,0,0.357,,,2.71,65.76,151,0.717,0.751,0.843,28529 | |
"Ground turkey, fat free, patties, broiled","Poultry Products",28.99,0.006,0.059,,0,0.339,,,2.48,68.4,138,0.673,0.713,0.759,28530 | |
"Guinea hen, meat and skin, raw","Poultry Products",23.4,0.011,0.067,,0.0013,0.193,,,6.45,68.9,158,1.77,2.43,1.41,28531 | |
"Guinea hen, meat only, raw","Poultry Products",20.64,0.011,0.069,,0.0017,0.22,,,2.47,74.44,110,0.64,0.68,0.59,28532 | |
"Ostrich, fan, raw","Poultry Products",21.81,0.006,0.075,,0,0.308,,,2.65,75.93,117,0.95,0.95,0.5,28533 | |
"Ostrich, ground, cooked, pan-broiled","Poultry Products",26.15,0.008,0.08,,0,0.323,,,7.07,67.12,175,1.793,2.156,0.739,28534 | |
"Ostrich, ground, raw","Poultry Products",20.22,0.007,0.072,,0,0.291,,,8.7,71.07,165,2.177,2.654,0.91,28535 | |
"Ostrich, inside leg, cooked","Poultry Products",29.01,0.006,0.083,,0,0.352,,,1.94,69.95,141,0.7,0.67,0.32,28536 | |
"Ostrich, inside leg, raw","Poultry Products",22.39,0.005,0.072,,0,0.32,,,1.72,75.97,111,0.6,0.6,0.38,28537 | |
"Ostrich, inside strip, cooked","Poultry Products",29.37,0.005,0.073,,0,0.366,,,4.26,66.53,164,1.71,1.74,0.74,28538 | |
"Ostrich, inside strip, raw","Poultry Products",23.69,0.005,0.076,,0,0.33,,,2.87,74.16,127,0.923,1.179,0.591,28539 | |
"Ostrich, outside leg, raw","Poultry Products",22.86,0.005,0.09,,0,0.322,,,1.96,75.59,115,0.61,0.59,0.43,28540 | |
"Ostrich, outside strip, cooked","Poultry Products",28.55,0.005,0.072,,0,0.367,,,3.83,66.88,156,1.43,1.59,0.44,28541 | |
"Ostrich, outside strip, raw","Poultry Products",23.36,0.005,0.07,,0,0.333,,,2.21,74.58,120,0.771,0.874,0.462,28542 | |
"Ostrich, oyster, cooked","Poultry Products",28.81,0.006,0.081,,0,0.409,,,3.97,67.55,159,1.69,1.45,0.51,28543 | |
"Ostrich, oyster, raw","Poultry Products",21.55,0.006,0.083,,0,0.297,,,3.67,75.62,125,1.22,1.25,0.61,28544 | |
"Ostrich, round, raw","Poultry Products",21.99,0.005,0.072,,0,0.315,,,2.4,75.68,116,0.81,0.85,0.52,28545 | |
"Ostrich, tenderloin, raw","Poultry Products",22.07,0.006,0.086,,0,0.32,,,3.19,74.5,123,1.17,1.23,0.75,28546 | |
"Ostrich, tip trimmed, cooked","Poultry Products",28.49,0.006,0.08,,0,0.362,,,2.57,68.51,145,1,0.97,0.44,28547 | |
"Ostrich, tip trimmed, raw","Poultry Products",21.85,0.005,0.067,,0,0.31,,,2.3,76.12,114,0.86,0.79,0.45,28548 | |
"Ostrich, top loin, cooked","Poultry Products",28.12,0.006,0.077,,0,0.353,,,3.87,67.95,155,1.32,1.27,0.38,28549 | |
"Ostrich, top loin, raw","Poultry Products",21.67,0.006,0.081,,0,0.312,,,2.95,75.35,119,1.2,1.06,0.58,28550 | |
"Pate de foie gras, canned (goose liver pate), smoked","Poultry Products",11.4,0.07,0.697,,0.002,0.138,4.67,,43.84,37.04,462,14.45,25.61,0.84,28551 | |
"Pheasant, breast, meat only, raw","Poultry Products",24.37,0.003,0.033,,0.006,0.242,,,3.25,72.4,133,1.1,1.04,0.55,28552 | |
"Pheasant, cooked, total edible","Poultry Products",32.4,0.016,0.043,,0.0023,0.271,,,12.1,54.2,239,3.908,5.627,1.537,28553 | |
"Pheasant, leg, meat only, raw","Poultry Products",22.2,0.029,0.045,,0.006,0.296,,,4.3,73.4,134,1.46,1.38,0.73,28554 | |
"Pheasant, raw, meat and skin","Poultry Products",22.7,0.012,0.04,,0.0053,0.243,,,9.29,67.77,181,2.7,4.32,1.18,28555 | |
"Pheasant, raw, meat only","Poultry Products",23.57,0.013,0.037,,0.006,0.262,,,3.64,72.77,133,1.24,1.17,0.62,28556 | |
"Poultry food products, ground turkey, cooked","Poultry Products",27.37,0.028,0.078,,0,0.294,,,10.4,62.07,203,2.669,3.458,2.917,28557 | |
"Poultry food products, ground turkey, raw","Poultry Products",19.66,0.019,0.058,,0,0.237,,,7.66,72.36,148,2.024,2.635,2.205,28558 | |
"Poultry, mechanically deboned, from backs and necks with skin, raw","Poultry Products",11.39,0.138,0.04,,0.0015,0.104,,,24.73,62.66,272,7.45,10.44,4.96,28559 | |
"Poultry, mechanically deboned, from backs and necks without skin, raw","Poultry Products",13.79,0.123,0.051,,0.003,0.128,,,15.48,69.29,199,4.71,7.41,2.28,28560 | |
"Poultry, mechanically deboned, from mature hens, raw","Poultry Products",14.72,0.187,0.04,,0.002,0.104,,,19.98,62.95,243,4.73,9.3,4.55,28561 | |
"Quail, breast, meat only, raw","Poultry Products",22.59,0.01,0.055,,0.0050999999999999995,0.26,,,2.99,71.67,123,0.87,0.84,0.77,28562 | |
"Quail, cooked, total edible","Poultry Products",25.1,0.015,0.052,,0.0023,0.216,,,14.1,60,227,3.955,4.891,3.487,28563 | |
"Quail, meat and skin, raw","Poultry Products",19.63,0.013,0.053,,0.0060999999999999995,0.216,,,12.05,69.65,192,3.38,4.18,2.98,28564 | |
"Quail, meat only, raw","Poultry Products",21.76,0.013,0.051,,0.0072,0.237,,,4.53,70.03,134,1.32,1.28,1.17,28565 | |
"Squab, (pigeon), light meat without skin, raw","Poultry Products",21.76,0.01,0.055,,0.0050999999999999995,0.26,,,4.52,72.82,134,1.18,1.61,0.96,28566 | |
"Squab, (pigeon), meat and skin, raw","Poultry Products",18.47,0.012,0.054,,0.0052,0.199,,,23.8,56.6,294,8.43,9.72,3.07,28567 | |
"Squab, (pigeon), meat only, raw","Poultry Products",17.5,0.013,0.051,,0.0072,0.237,,,7.5,72.8,142,1.96,2.66,1.6,28568 | |
"Turkey and gravy, frozen","Poultry Products",5.88,0.014,0.554,,0,0.061,4.61,,2.63,85.07,67,0.85,0.97,0.47,28569 | |
"Turkey bacon, cooked","Poultry Products",29.6,0.009,2.285,,0,0.395,3.1,,27.9,32.6,382,8.294,10.899,6.807,28570 | |
"Turkey breast, pre-basted, meat and skin, cooked, roasted","Poultry Products",22.16,0.009,0.397,,0,0.248,,,3.46,70.91,126,0.98,1.14,0.84,28571 | |
"Turkey patties, breaded, battered, fried","Poultry Products",14,0.014,0.8,0.5,0,0.275,15.7,0.32,18,49.7,283,4.69,7.47,4.71,28572 | |
"Turkey roast, boneless, frozen, seasoned, light and dark meat, raw","Poultry Products",17.6,0.001,0.678,,0,0.36,6.4,,2.2,70.4,120,0.73,0.47,0.64,28573 | |
"Turkey roast, boneless, frozen, seasoned, light and dark meat, roasted","Poultry Products",21.32,0.005,0.68,,0,0.298,3.07,,5.78,67.84,155,1.9,1.2,1.66,28574 | |
"Turkey sticks, breaded, battered, fried","Poultry Products",14.2,0.014,0.838,,0,0.26,17,,16.9,49.4,279,4.38,6.92,4.39,28575 | |
"Turkey thigh, pre-basted, meat and skin, cooked, roasted","Poultry Products",18.8,0.008,0.437,,0,0.241,,,8.54,70.6,157,2.65,2.53,2.35,28576 | |
"Turkey, all classes, back, meat and skin, cooked, roasted","Poultry Products",26.59,0.033,0.073,,0,0.26,0.16,,14.38,57.94,244,4.18,5,3.7,28577 | |
"Turkey, all classes, back, meat and skin, raw","Poultry Products",18.11,0.017,0.066,,0,0.236,,,13.11,67.78,196,3.66,4.94,3.23,28578 | |
"Turkey, all classes, breast, meat and skin, cooked, roasted","Poultry Products",28.71,0.021,0.063,,0,0.288,,,7.41,63.22,189,2.1,2.45,1.8,28579 | |
"Turkey, all classes, breast, meat and skin, raw","Poultry Products",21.89,0.013,0.059,,0,0.275,,,7.02,70.05,157,1.91,2.66,1.66,28580 | |
"Turkey, all classes, dark meat, cooked, roasted","Poultry Products",28.57,0.032,0.079,,0,0.29,0.1,,7.22,63.09,188,2.182,1.729,2.298,28581 | |
"Turkey, all classes, dark meat, meat and skin, cooked, roasted","Poultry Products",27.49,0.033,0.076,,0,0.274,,,11.54,60.23,221,3.49,3.65,3.09,28582 | |
"Turkey, all classes, dark meat, meat and skin, raw","Poultry Products",18.92,0.017,0.071,,0,0.261,,,8.8,71.13,160,2.58,3,2.28,28583 | |
"Turkey, all classes, dark meat, raw","Poultry Products",20.07,0.017,0.077,,0,0.286,,,4.38,74.48,125,1.47,0.99,1.31,28584 | |
"Turkey, all classes, giblets, cooked, simmered, some giblet fat","Poultry Products",20.89,0.006,0.064,,0.013699999999999999,0.27,0.8,,11.86,65.26,199,3.923,4.954,1.293,28585 | |
"Turkey, all classes, giblets, raw","Poultry Products",19.36,0.008,0.087,,0.0038,0.316,2.09,,4.2,73.18,129,1.26,0.91,1.03,28586 | |
"Turkey, all classes, leg, meat and skin, cooked, roasted","Poultry Products",27.87,0.032,0.077,,0,0.28,0.13,,9.82,61.19,208,3.06,2.87,2.72,28587 | |
"Turkey, all classes, leg, meat and skin, raw","Poultry Products",19.54,0.017,0.074,,0,0.273,,,6.72,72.69,144,2.06,2.06,1.83,28588 | |
"Turkey, all classes, light meat, cooked, roasted","Poultry Products",29.9,0.019,0.064,,0,0.305,,,3.22,66.27,157,1.03,0.56,0.86,28589 | |
"Turkey, all classes, light meat, meat and skin, cooked, roasted","Poultry Products",28.57,0.021,0.063,,0,0.285,,,8.33,62.83,197,2.34,2.84,2.01,28590 | |
"Turkey, all classes, light meat, meat and skin, raw","Poultry Products",21.64,0.013,0.059,,0,0.271,,,7.36,69.83,159,2,2.81,1.73,28591 | |
"Turkey, all classes, light meat, raw","Poultry Products",23.56,0.012,0.063,,0,0.305,,,1.56,73.82,115,0.5,0.27,0.42,28592 | |
"Turkey, all classes, meat and skin and giblets and neck, cooked, roasted","Poultry Products",27.98,0.026,0.067,,0.0001,0.272,0.07,,9.45,62,205,2.77,3.05,2.42,28593 | |
"Turkey, all classes, meat and skin and giblets and neck, raw","Poultry Products",20.37,0.015,0.067,,0.0002,0.269,0.08,,7.77,70.61,157,2.2,2.76,1.93,28594 | |
"Turkey, all classes, meat and skin, cooked, roasted","Poultry Products",28.1,0.026,0.068,,0,0.28,,,9.73,61.7,208,2.84,3.19,2.48,28595 | |
"Turkey, all classes, meat and skin, raw","Poultry Products",20.42,0.015,0.065,,0,0.266,,,8.02,70.4,160,2.26,2.9,1.98,28596 | |
"Turkey, all classes, meat only, cooked, roasted","Poultry Products",29.32,0.025,0.07,,0,0.298,,,4.97,64.88,170,1.459,1.115,1.501,28597 | |
"Turkey, all classes, meat only, raw","Poultry Products",21.77,0.014,0.07,,0,0.296,0.24,,2.86,74.16,120,0.95,0.61,0.83,28598 | |
"Turkey, all classes, neck, meat only, cooked, simmered","Poultry Products",26.84,0.037,0.056,,0,0.149,0.1,,7.26,65.19,180,2.194,1.74,2.31,28599 | |
"Turkey, all classes, neck, meat only, raw","Poultry Products",20.14,0.034,0.093,,0,0.302,,,5.42,72.88,135,1.82,1.23,1.63,28600 | |
"Turkey, all classes, skin only, cooked, roasted","Poultry Products",19.7,0.035,0.053,,0,0.16,0.33,,39.66,39.65,443,10.34,16.9,9.08,28601 | |
"Turkey, all classes, skin only, raw","Poultry Products",12.71,0.018,0.036,,0,0.102,0.43,,36.91,49.55,389,9.63,15.73,8.45,28602 | |
"Turkey, all classes, wing, meat and skin, cooked, roasted","Poultry Products",27.38,0.024,0.061,,0,0.266,,,12.43,59.49,229,3.39,4.66,2.94,28603 | |
"Turkey, all classes, wing, meat and skin, raw","Poultry Products",20.22,0.014,0.055,,0,0.24,,,12.32,66.49,197,3.28,4.97,2.86,28604 | |
"Turkey, canned, meat only, with broth","Poultry Products",23.68,0.012,0.467,,0.002,0.224,1.47,,6.86,66.07,169,2,2.26,1.75,28605 | |
"Turkey, diced, light and dark meat, seasoned","Poultry Products",18.7,0.001,0.85,,0,0.31,1,,6,71.7,138,1.75,1.98,1.53,28606 | |
"Turkey, drumstick, smoked, cooked, with skin, bone removed","Poultry Products",27.9,0.032,0.996,,0,0.28,,,9.8,61.2,200,3.054,2.864,2.715,28607 | |
"Turkey, fryer-roasters, back, meat and skin, cooked, roasted","Poultry Products",26.15,0.036,0.07,,0,0.208,,,10.24,63.27,204,2.99,3.53,2.64,28608 | |
"Turkey, fryer-roasters, back, meat and skin, raw","Poultry Products",19.89,0.019,0.06,,0,0.204,,,7.27,72.47,151,2.12,2.5,1.88,28609 | |
"Turkey, fryer-roasters, back, meat only, cooked, roasted","Poultry Products",28.02,0.036,0.073,,0,0.217,,,5.64,66.01,170,1.89,1.28,1.69,28610 | |
"Turkey, fryer-roasters, back, meat only, raw","Poultry Products",20.66,0.019,0.065,,0,0.222,,,3.51,75.37,120,1.18,0.8,1.05,28611 | |
"Turkey, fryer-roasters, breast, meat and skin, cooked, roasted","Poultry Products",29.07,0.015,0.053,,0,0.279,,,3.2,67.63,153,0.87,1.2,0.76,28612 | |
"Turkey, fryer-roasters, breast, meat and skin, raw","Poultry Products",23.76,0.011,0.048,,0,0.276,,,2.65,72.88,125,0.72,1,0.63,28613 | |
"Turkey, fryer-roasters, breast, meat only, cooked, roasted","Poultry Products",30.06,0.012,0.052,,0,0.292,,,0.74,68.4,135,0.24,0.13,0.2,28614 | |
"Turkey, fryer-roasters, breast, meat only, raw","Poultry Products",24.6,0.01,0.049,,0,0.293,,,0.65,74.12,111,0.21,0.11,0.17,28615 | |
"Turkey, fryer-roasters, dark meat, meat and skin, cooked, roasted","Poultry Products",27.69,0.027,0.076,,0,0.237,,,7.06,64.82,182,2.12,2.27,1.88,28616 | |
"Turkey, fryer-roasters, dark meat, meat and skin, raw","Poultry Products",20.06,0.014,0.066,,0,0.232,,,4.79,74.56,129,1.43,1.55,1.27,28617 | |
"Turkey, fryer-roasters, dark meat, meat only, cooked, roasted","Poultry Products",28.84,0.026,0.079,,0,0.246,,,4.31,66.39,162,1.45,0.98,1.29,28618 | |
"Turkey, fryer-roasters, dark meat, meat only, raw","Poultry Products",20.46,0.013,0.069,,0,0.244,,,2.67,76.22,111,0.9,0.61,0.8,28619 | |
"Turkey, fryer-roasters, leg, meat and skin, cooked, roasted","Poultry Products",28.49,0.023,0.08,,0,0.252,,,5.41,65.62,170,1.67,1.61,1.48,28620 | |
"Turkey, fryer-roasters, leg, meat and skin, raw","Poultry Products",20.13,0.011,0.069,,0,0.246,,,3.57,75.61,118,1.1,1.08,0.97,28621 | |
"Turkey, fryer-roasters, leg, meat only, cooked, roasted","Poultry Products",29.19,0.022,0.081,,0,0.258,,,3.77,66.54,159,1.27,0.86,1.13,28622 | |
"Turkey, fryer-roasters, leg, meat only, raw","Poultry Products",20.35,0.01,0.071,,0,0.254,,,2.37,76.62,108,0.8,0.54,0.71,28623 | |
"Turkey, fryer-roasters, light meat, meat and skin, cooked, roasted","Poultry Products",28.77,0.018,0.057,,0,0.262,,,4.58,66.54,164,1.25,1.7,1.09,28624 | |
"Turkey, fryer-roasters, light meat, meat and skin, raw","Poultry Products",23.09,0.012,0.05,,0,0.253,,,3.81,72.49,133,1.02,1.52,0.89,28625 | |
"Turkey, fryer-roasters, light meat, meat only, cooked, roasted","Poultry Products",30.19,0.015,0.056,,0,0.277,,,1.18,68.56,140,0.38,0.21,0.31,28626 | |
"Turkey, fryer-roasters, light meat, meat only, raw","Poultry Products",24.18,0.01,0.052,,0,0.276,,,0.49,74.61,108,0.16,0.09,0.13,28627 | |
"Turkey, fryer-roasters, meat and skin and giblets and neck, cooked, roasted","Poultry Products",28.08,0.023,0.065,,0.0001,0.242,0.04,,5.64,65.95,171,1.64,1.89,1.44,28628 | |
"Turkey, fryer-roasters, meat and skin and giblets and neck, raw","Poultry Products",22.15,0.013,0.061,,0.0002,0.246,0.05,,4.25,72.9,133,1.22,1.47,1.07,28629 | |
"Turkey, fryer-roasters, meat and skin, cooked, roasted","Poultry Products",28.26,0.022,0.066,,0,0.25,,,5.72,65.76,172,1.65,1.96,1.45,28630 | |
"Turkey, fryer-roasters, meat and skin, raw","Poultry Products",22.37,0.013,0.058,,0,0.243,,,4.25,72.74,134,1.21,1.52,1.06,28631 | |
"Turkey, fryer-roasters, meat only, cooked, roasted","Poultry Products",29.56,0.02,0.067,,0,0.263,,,2.63,67.57,150,0.87,0.56,0.77,28632 | |
"Turkey, fryer-roasters, meat only, raw","Poultry Products",22.32,0.012,0.061,,0,0.26,,,1.58,75.42,110,0.53,0.35,0.47,28633 | |
"Turkey, fryer-roasters, skin only, cooked, roasted","Poultry Products",20.94,0.035,0.061,,0,0.181,,,23.28,55.46,299,6.07,9.92,5.33,28634 | |
"Turkey, fryer-roasters, skin only, raw","Poultry Products",16.6,0.019,0.035,,0,0.121,,,23.54,59.86,283,6.14,10.03,5.39,28635 | |
"Turkey, fryer-roasters, wing, meat and skin, cooked, roasted","Poultry Products",27.65,0.029,0.073,,0,0.196,,,9.87,62.3,207,2.71,3.62,2.35,28636 | |
"Turkey, fryer-roasters, wing, meat and skin, raw","Poultry Products",20.85,0.014,0.056,,0,0.178,,,7.72,71.19,159,2.06,3.09,1.8,28637 | |
"Turkey, fryer-roasters, wing, meat only, cooked, roasted","Poultry Products",30.85,0.026,0.078,,0,0.204,,,3.44,65.6,163,0.967,0.681,0.967,28638 | |
"Turkey, fryer-roasters, wing, meat only, raw","Poultry Products",22.49,0.012,0.065,,0,0.201,,,1.12,75.82,106,0.36,0.2,0.3,28639 | |
"Turkey, gizzard, all classes, cooked, simmered","Poultry Products",21.72,0.007,0.067,,0.0063,0.332,0.38,,3.87,72.97,129,1.163,1.21,0.503,28640 | |
"Turkey, gizzard, all classes, raw","Poultry Products",19.14,0.006,0.072,,0.0062,0.322,,,4.58,76.18,118,1.312,1.588,0.777,28641 | |
"Turkey, heart, all classes, cooked, simmered","Poultry Products",21.47,0.007,0.09,,0.0028,0.291,0.68,,4.64,71.98,136,1.289,1.138,1.191,28642 | |
"Turkey, heart, all classes, raw","Poultry Products",17.13,0.006,0.094,,0.003,0.295,0.41,,4.79,76.62,113,1.316,1.391,1.272,28643 | |
"Turkey, light or dark meat, smoked, cooked, skin and bone removed","Poultry Products",29.3,0.025,0.996,,0,0.298,,,5,64.9,162,1.368,1.046,1.408,28644 | |
"Turkey, light or dark meat, smoked, cooked, with skin, bone removed","Poultry Products",28.1,0.026,0.996,,0,0.28,,,9.7,61.7,200,2.831,3.18,2.473,28645 | |
"Turkey, liver, all classes, cooked, simmered","Poultry Products",20.02,0.005,0.056,,0.022600000000000002,0.211,1.21,,20.54,56.95,273,6.947,9.108,2.022,28646 | |
"Turkey, liver, all classes, raw","Poultry Products",17.84,0.005,0.071,,0.0245,0.255,2.26,,16.36,62.29,228,5.507,7.397,1.65,28647 | |
"Turkey, mechanically deboned, from turkey frames, raw","Poultry Products",13.29,0.145,0.048,,0,0.173,,,15.96,69.09,201,5.31,5.02,4.51,28648 | |
"Turkey, wing, smoked, cooked, with skin, bone removed","Poultry Products",27.4,0.024,0.996,,0,0.266,,,12.41,59.5,221,3.383,4.651,2.934,28649 | |
"Turkey, young hen, back, meat and skin, cooked, roasted","Poultry Products",26.41,0.031,0.069,,0,0.263,,,15.64,56.91,254,4.54,5.45,4.01,28650 | |
"Turkey, young hen, back, meat and skin, raw","Poultry Products",17.51,0.018,0.061,,0,0.231,,,15.93,65.61,218,4.41,6.12,3.89,28651 | |
"Turkey, young hen, breast, meat and skin, cooked, roasted","Poultry Products",28.8,0.022,0.058,,0,0.289,,,7.86,62.69,194,2.25,2.5,1.93,28652 | |
"Turkey, young hen, breast, meat and skin, raw","Poultry Products",21.62,0.013,0.055,,0,0.266,,,8.3,69,167,2.25,3.19,1.95,28653 | |
"Turkey, young hen, dark meat, meat and skin, cooked, roasted","Poultry Products",27.37,0.031,0.072,,0,0.276,,,12.78,59.61,232,3.86,4.06,3.42,28654 | |
"Turkey, young hen, dark meat, meat and skin, raw","Poultry Products",18.65,0.018,0.067,,0,0.259,,,10.25,69.92,172,2.99,3.53,2.64,28655 | |
"Turkey, young hen, dark meat, meat only, cooked, roasted","Poultry Products",28.42,0.03,0.075,,0,0.292,,,7.79,62.74,192,2.61,1.77,2.33,28656 | |
"Turkey, young hen, dark meat, meat only, raw","Poultry Products",20.07,0.018,0.074,,0,0.287,,,4.88,74.03,130,1.64,1.11,1.46,28657 | |
"Turkey, young hen, leg, meat and skin, cooked, roasted","Poultry Products",27.73,0.03,0.073,,0,0.282,,,10.5,60.73,213,3.28,3.04,2.91,28658 | |
"Turkey, young hen, leg, meat and skin, raw","Poultry Products",19.46,0.018,0.07,,0,0.273,,,7.5,72.04,151,2.29,2.29,2.04,28659 | |
"Turkey, young hen, light meat, meat and skin, cooked, roasted","Poultry Products",28.64,0.023,0.058,,0,0.286,,,9.4,62.14,207,2.65,3.15,2.28,28660 | |
"Turkey, young hen, light meat, meat and skin, raw","Poultry Products",21.51,0.013,0.055,,0,0.267,,,8.1,69.13,165,2.19,3.1,1.91,28661 | |
"Turkey, young hen, light meat, meat only, cooked, roasted","Poultry Products",29.89,0.021,0.06,,0,0.304,,,3.74,65.74,161,1.19,0.66,1,28662 | |
"Turkey, young hen, light meat, meat only, raw","Poultry Products",23.64,0.012,0.06,,0,0.299,,,1.66,73.57,116,0.53,0.29,0.44,28663 | |
"Turkey, young hen, meat and skin and giblets and neck, cooked, roasted","Poultry Products",28,0.026,0.063,,0.0001,0.272,0.07,,10.55,61.34,215,3.1,3.39,2.7,28664 | |
"Turkey, young hen, meat and skin and giblets and neck, raw","Poultry Products",20.15,0.016,0.063,,0.0002,0.267,0.11,,8.78,69.74,166,2.49,3.13,2.18,28665 | |
"Turkey, young hen, meat and skin, cooked, roasted","Poultry Products",28.09,0.026,0.064,,0,0.282,,,10.88,61.04,218,3.18,3.54,2.78,28666 | |
"Turkey, young hen, meat and skin, raw","Poultry Products",20.18,0.015,0.061,,0,0.263,,,9.09,69.5,168,2.56,3.3,2.25,28667 | |
"Turkey, young hen, meat only, cooked, roasted","Poultry Products",29.25,0.025,0.067,,0,0.299,,,5.51,64.43,175,1.82,1.14,1.58,28668 | |
"Turkey, young hen, meat only, raw","Poultry Products",21.76,0.015,0.066,,0,0.293,,,3.18,73.77,122,1.05,0.68,0.92,28669 | |
"Turkey, young hen, skin only, cooked, roasted","Poultry Products",19.03,0.032,0.044,,0,0.155,,,44.45,35.53,482,11.59,18.94,10.18,28670 | |
"Turkey, young hen, skin only, raw","Poultry Products",11.79,0.019,0.032,,0,0.107,,,40.62,46.8,417,10.6,17.31,9.3,28671 | |
"Turkey, young hen, wing, meat and skin, cooked, roasted","Poultry Products",27.3,0.024,0.056,,0,0.268,,,13.46,58.53,238,3.68,5.02,3.19,28672 | |
"Turkey, young hen, wing, meat and skin, raw","Poultry Products",19.93,0.014,0.051,,0,0.238,,,13.87,65.18,210,3.68,5.62,3.22,28673 | |
"Turkey, young tom, back, meat and skin, cooked, roasted","Poultry Products",26.8,0.035,0.077,,0,0.264,,,13.65,58.33,238,3.97,4.73,3.51,28674 | |
"Turkey, young tom, back, meat and skin, raw","Poultry Products",18.47,0.017,0.071,,0,0.245,,,11.14,69.29,179,3.14,4.12,2.78,28675 | |
"Turkey, young tom, breast, meat and skin, cooked, roasted","Poultry Products",28.61,0.021,0.067,,0,0.289,,,7.39,63.3,189,2.08,2.51,1.79,28676 | |
"Turkey, young tom, breast, meat and skin, raw","Poultry Products",21.96,0.013,0.063,,0,0.282,,,6.34,70.68,151,1.73,2.36,1.5,28677 | |
"Turkey, young tom, dark meat, meat and skin, cooked, roasted","Poultry Products",27.58,0.035,0.08,,0,0.276,,,10.85,60.33,216,3.28,3.41,2.91,28678 | |
"Turkey, young tom, dark meat, meat and skin, raw","Poultry Products",19.05,0.017,0.075,,0,0.265,,,7.89,71.88,152,2.32,2.66,2.06,28679 | |
"Turkey, young tom, dark meat, meat only, cooked, roasted","Poultry Products",28.68,0.035,0.082,,0,0.293,,,6.98,63.07,185,2.34,1.58,2.09,28680 | |
"Turkey, young tom, dark meat, meat only, raw","Poultry Products",20.04,0.017,0.08,,0,0.29,,,4.11,74.7,123,1.38,0.93,1.23,28681 | |
"Turkey, young tom, leg, meat and skin, cooked, roasted","Poultry Products",27.93,0.035,0.08,,0,0.281,,,9.63,61.18,206,2.99,2.83,2.66,28682 | |
"Turkey, young tom, leg, meat and skin, raw","Poultry Products",19.54,0.017,0.077,,0,0.275,,,6.34,72.98,141,1.94,1.94,1.72,28683 | |
"Turkey, young tom, light meat, meat and skin, cooked, roasted","Poultry Products",28.48,0.021,0.067,,0,0.287,,,7.7,63.13,191,2.15,2.66,1.86,28684 | |
"Turkey, young tom, light meat, meat and skin, raw","Poultry Products",21.63,0.013,0.063,,0,0.277,,,7.04,70.2,156,1.91,2.68,1.66,28685 | |
"Turkey, young tom, light meat, meat only, cooked, roasted","Poultry Products",29.88,0.018,0.068,,0,0.308,,,2.92,66.56,154,0.93,0.51,0.78,28686 | |
"Turkey, young tom, light meat, meat only, raw","Poultry Products",23.43,0.012,0.067,,0,0.314,,,1.57,73.96,114,0.5,0.28,0.42,28687 | |
"Turkey, young tom, meat and skin and giblets and neck, cooked, roasted","Poultry Products",27.97,0.026,0.072,,0.0001,0.276,0.1,,8.81,62.18,199,2.58,2.86,2.26,28688 | |
"Turkey, young tom, meat and skin and giblets and neck, raw","Poultry Products",20.39,0.015,0.07,,0.0002,0.274,0.08,,7.21,71.14,152,2.05,2.55,1.79,28689 | |
"Turkey, young tom, meat and skin, cooked, roasted","Poultry Products",28.09,0.027,0.072,,0,0.282,,,9.06,61.92,202,2.64,2.98,2.31,28690 | |
"Turkey, young tom, meat and skin, raw","Poultry Products",20.45,0.015,0.068,,0,0.271,,,7.43,70.96,154,2.1,2.68,1.84,28691 | |
"Turkey, young tom, meat only, cooked, roasted","Poultry Products",29.36,0.025,0.074,,0,0.301,,,4.68,65.05,168,1.54,0.98,1.35,28692 | |
"Turkey, young tom, meat only, raw","Poultry Products",21.72,0.014,0.073,,0,0.302,,,2.7,74.38,117,0.89,0.57,0.78,28693 | |
"Turkey, young tom, skin only, cooked, roasted","Poultry Products",20.14,0.037,0.06,,0,0.161,,,37.25,41.54,422,9.72,15.87,8.53,28694 | |
"Turkey, young tom, skin only, raw","Poultry Products",13.24,0.018,0.04,,0,0.096,,,34.56,51.25,368,9.02,14.73,7.92,28695 | |
"Turkey, young tom, wing, meat and skin, cooked, roasted","Poultry Products",27.45,0.023,0.066,,0,0.271,,,11.5,60.31,221,3.13,4.35,2.72,28696 | |
"Turkey, young tom, wing, meat and skin, raw","Poultry Products",20.45,0.013,0.06,,0,0.25,,,11.22,67.32,188,2.99,4.5,2.61,28697 | |
"USDA Commodity Chicken, canned, meat only, drained","Poultry Products",27.52,0.012,0.271,,0,0.189,,,5.72,67.29,162,1.572,2.047,1.313,28698 | |
"USDA Commodity, Chicken, canned, meat only, with broth","Poultry Products",22.41,0.01,0.256,,0,0.168,0.23,0.03,4.69,72.55,133,1.293,1.691,1.075,28699 | |
"USDA Commodity, Chicken, canned, meat only, with water","Poultry Products",22.02,0.01,0.251,,0,0.151,,,4.58,73.31,129,1.258,1.637,1.05,28700 | |
"USDA Commodity, chicken fajita strips, frozen","Poultry Products",18.56,0.013,0.799,,0,0.284,2.23,,5.73,70.6,135,1.596,2.333,1.089,28701 | |
"USDA Commodity, turkey ham, dark meat, smoked, frozen","Poultry Products",16.3,0.007,0.909,,0,0.253,3.1,1.2,4,73.5,118,1.2,1.337,0.873,28702 | |
"USDA Commodity, turkey taco meat, frozen, cooked","Poultry Products",16.8,0.069,0.632,,0,0.297,3.03,,7.58,70,148,1.765,2.59,2.11,28703 | |
"Adobo fresco","Soups, Sauces, and Gravies",2,0.123,17.152,1.3,0.0058,0.187,18.6,2.03,20.9,22.1,271,2.91,14.963,2.044,28704 | |
"CAMPBELL Soup Company, CAMPBELL'S Au Jus Gravy","Soups, Sauces, and Gravies",1.69,0,0.39,,0,0,,,,97.8,8,,,,28705 | |
"CAMPBELL Soup Company, CAMPBELL'S Beef Gravy","Soups, Sauces, and Gravies",1.69,0,0.458,,0,0,5.08,1.69,1.69,90.2,42,0.847,,,28706 | |
"CAMPBELL Soup Company, CAMPBELL'S Brown Gravy with Onions","Soups, Sauces, and Gravies",,0,0.559,,0,0,6.78,3.39,1.69,88.2,42,,,,28707 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Beef with Country Vegetables Soup, ready-to-serve","Soups, Sauces, and Gravies",4.08,0.008,0.367,2,0.0005,0,8.57,1.22,1.22,85.3,61,0.612,,,28708 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Chicken and Dumplings Soup","Soups, Sauces, and Gravies",3.27,0.008,0.363,1.2,0,0,7.35,0.82,3.67,84.7,78,0.816,,,28709 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Classic Chicken Noodle, ready-to-serve","Soups, Sauces, and Gravies",2.45,0.008,0.322,0.8,0,0,5.71,1.22,1.22,88.9,45,0.408,,,28710 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Grilled Chicken and Sausage Gumbo, ready-to-serve","Soups, Sauces, and Gravies",2.86,0.016,0.318,0.4,0,0,7.35,2.04,1.63,87.8,57,0.816,,,28711 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Grilled Chicken with Vegetables and Pasta Soup, ready-to-serve","Soups, Sauces, and Gravies",2.86,0.008,0.347,1.2,0.0005,0,5.71,0.82,1.02,88.7,45,0.204,,,28712 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, New England Clam Chowder, ready-to-serve","Soups, Sauces, and Gravies",2.45,0.033,0.355,1.2,0,0,6.94,0.41,4.9,84.2,82,1.02,,,28713 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Old Fashioned Vegetable Beef Soup, ready-to-serve","Soups, Sauces, and Gravies",2.86,0.016,0.359,1.2,0,0,5.71,1.63,0.61,89,41,0.204,,,28714 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Microwavable Bowls, Sirloin Burger with Country Vegetables Soup, ready-to-serve","Soups, Sauces, and Gravies",3.27,0.008,0.327,1.2,0,0,7.35,1.63,1.43,85.3,57,0.612,,,28715 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, BBQ Seasoned Pork Soup","Soups, Sauces, and Gravies",4.9,0.016,0.376,2,0,0,8.98,2.04,1.43,83.3,68,0.612,,,28716 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Baked Potato with Cheddar & Bacon Bits Soup","Soups, Sauces, and Gravies",2.04,0.016,0.322,0.8,0,0,9.39,1.25,3.67,83.8,78,1.224,,,28717 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Baked Potato with Steak & Cheese Soup","Soups, Sauces, and Gravies",3.27,0.008,0.343,1.2,0,0,8.57,1.22,4.08,82.3,82,1.02,,,28718 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Barbeque Seasoned Burger Soup","Soups, Sauces, and Gravies",4.08,0.024,0.367,2,0,0,11.43,4.08,2.45,80.7,84,1.02,,,28719 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Beef Rib Roast with Potatoes & Herbs Soup","Soups, Sauces, and Gravies",2.86,0.008,0.363,0.8,0.0005,0,6.94,2.45,0.41,87.7,44,0.408,,,28720 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Beef Stew - Fully Loaded","Soups, Sauces, and Gravies",4.08,0.008,0.331,1.2,0.0005,0,8.16,2.04,2.04,84.2,69,0.816,,,28721 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Beef Stroganof - Fully Loaded","Soups, Sauces, and Gravies",4.9,0.016,0.331,1.6,0,0,7.35,1.22,5.71,81,102,1.633,,,28722 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Beef with Country Vegetables Soup","Soups, Sauces, and Gravies",3.27,0.008,0.376,1.2,0,0,7.35,1.63,1.22,85.3,53,0.408,,,28723 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Beef with White and Wild Rice Soup","Soups, Sauces, and Gravies",3.27,0.008,0.363,0.8,0,0,9.8,2.04,0.61,84.3,57,0.204,,,28724 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Chicken Broccoli Cheese & Potato Soup","Soups, Sauces, and Gravies",2.86,0.008,0.359,1.2,0,0,8.16,2.45,4.49,83.22,86,1.633,,,28725 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Chicken Corn Chowder","Soups, Sauces, and Gravies",2.86,0.008,0.351,0.8,0,0,8.16,1.22,4.08,83.8,82,1.224,,,28726 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Chicken Mushroom Chowder","Soups, Sauces, and Gravies",3.27,0.008,0.347,1.2,0,0,7.76,1.63,3.67,83.2,78,0.612,,,28727 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Chicken and Dumplings Soup","Soups, Sauces, and Gravies",3.27,0.008,0.363,1.2,0,0,7.76,4.9,3.27,84.7,74,0.816,,,28728 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Classic Chicken Noodle Soup","Soups, Sauces, and Gravies",3.27,0.008,0.322,0.8,0,0,5.71,0.82,1.22,88.3,49,0.408,,,28729 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Fajita Chicken with Rice & Beans Soup","Soups, Sauces, and Gravies",2.86,0.008,0.347,0.8,0,0,9.39,2.86,0.61,83.9,53,0.204,,,28730 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Firehouse - Hot & Spicy Beef & Bean Chili","Soups, Sauces, and Gravies",6.12,0.016,0.355,2.4,0.0005,0,10.2,2.86,3.27,78.7,95,1.429,,,28731 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Grilled Chicken & Sausage Gumbo Soup","Soups, Sauces, and Gravies",2.86,0.008,0.347,0.8,0,0,8.57,1.63,1.22,85.6,57,0.612,,,28732 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Grilled Chicken with Vegetables & Pasta Soup","Soups, Sauces, and Gravies",2.45,0.008,0.359,0.8,0,0,5.71,0.82,1.02,88.8,41,0.204,,,28733 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Grilled Sirloin Steak with Hearty Vegetables Soup","Soups, Sauces, and Gravies",3.27,0.008,0.363,1.6,0.0005,0,7.76,6.12,0.82,87,53,0.408,,,28734 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Beef Barley Soup","Soups, Sauces, and Gravies",3.67,0.008,0.196,2,0,0.327,8.57,1.22,0.82,82.6,57,0.408,0.204,,28735 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Chicken Noodle Soup","Soups, Sauces, and Gravies",3.27,0.008,0.167,0.8,0.001,0,6.94,1.22,1.02,87.5,49,0.408,,,28736 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Microwavable Bowls, Chicken Noodle Soup","Soups, Sauces, and Gravies",2.86,0.008,0.167,0.4,0.001,0.286,6.94,0.41,1.02,88.5,49,0.408,0.408,0.204,28737 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Microwavable Bowls, Grilled Chicken & Sausage Gumbo Soup","Soups, Sauces, and Gravies",2.86,0.016,0.167,0.8,0.0024,0.249,7.35,1.63,1.22,86.8,53,0.408,0.612,0.204,28738 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST New England Clam Chowder","Soups, Sauces, and Gravies",2.04,0.041,0.167,0.8,0,0.408,8.16,0.82,1.22,81.1,53,0.408,0.408,0.408,28739 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, HEALTHY REQUEST Vegetable Soup","Soups, Sauces, and Gravies",1.63,0.024,0.167,1.6,0,0,9.8,3.27,0.41,87.7,49,0.204,,,28740 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Hearty Bean 'N' Ham Soup","Soups, Sauces, and Gravies",4.49,0.024,0.318,3.3,0,0,12.24,2.04,0.82,81.6,74,0.204,,,28741 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Hearty Beef Barley Soup","Soups, Sauces, and Gravies",3.67,0.008,0.322,1.6,0.0005,0,10.61,2.04,0.82,82.6,65,0.204,,,28742 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Hearty Chicken with Vegetables Soup","Soups, Sauces, and Gravies",2.45,0.008,0.29,1.2,0,0,6.94,1.22,0.82,88.6,45,0.204,,,28743 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Hearty Vegetable with Pasta Soup","Soups, Sauces, and Gravies",1.63,0.016,0.38,1.2,0.001,0,9.39,3.67,0.82,86.7,51,,,,28744 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Herb Roasted Chicken with Potatoes & Garlic Soup","Soups, Sauces, and Gravies",3.27,0.008,0.355,1.2,0,0,6.94,1.63,0.61,87.2,46,0.408,,,28745 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Honey Roasted Ham with Potatoes Soup","Soups, Sauces, and Gravies",3.27,0.016,0.331,1.2,0.0005,0,8.16,2.86,1.02,86.1,55,0.408,,,28746 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Italian Sausage & Peppers Soup","Soups, Sauces, and Gravies",2.86,0.008,0.327,1.2,0.001,0,8.16,3.27,2.04,86,62,0.612,,,28747 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Manhattan Clam Chowder","Soups, Sauces, and Gravies",2.04,0.016,0.339,1.2,0,0,7.76,1.63,1.43,87.9,52,0.408,,,28748 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, New England Clam Chowder","Soups, Sauces, and Gravies",2.86,0.008,0.363,1.2,0,0,8.16,0.41,5.31,81.1,94,0.816,,,28749 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Old Fashioned Potato Ham Chowder","Soups, Sauces, and Gravies",2.45,0.008,0.327,1.2,0.001,0,6.94,0.41,4.49,83.8,78,1.633,,,28750 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Old Fashioned Vegetable Beef Soup","Soups, Sauces, and Gravies",3.27,0.016,0.363,1.2,0,0,6.94,1.63,1.02,86.9,49,0.408,,,28751 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Pepper Steak Soup","Soups, Sauces, and Gravies",3.27,0.008,0.327,1.2,0.0005,0,7.35,1.63,0.61,88.1,48,0.204,,,28752 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Pork Roast with Carrots & Potatoes Soup","Soups, Sauces, and Gravies",3.27,0.008,0.363,1.2,0,0,6.53,1.22,1.22,85.6,50,0.612,,,28753 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Rigatoni & Meatballs - Fully Loaded","Soups, Sauces, and Gravies",4.49,0.033,0.327,1.2,0,0,10.2,3.27,2.86,80.3,86,1.224,,,28754 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Roadhouse - Beef & Bean Chili","Soups, Sauces, and Gravies",6.12,0.016,0.359,2.4,0.0005,0,10.2,2.86,3.27,78.7,95,1.429,,,28755 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Salisbury Steak with Mushrooms & Onions Soup","Soups, Sauces, and Gravies",2.86,0.008,0.327,0.8,0,0,7.76,2.45,1.84,85.2,57,1.02,,,28756 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Savory Chicken with White & Wild Rice Soup","Soups, Sauces, and Gravies",2.86,0.008,0.331,0.8,0,0,7.35,0.41,0.82,88,45,0.204,,,28757 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Savory Pot Roast Soup","Soups, Sauces, and Gravies",2.86,0.008,0.322,0.8,0.0005,0,8.16,1.63,0.41,87.3,49,0.204,,,28758 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Savory Vegetable Soup","Soups, Sauces, and Gravies",1.22,0.016,0.314,1.6,0,0,8.98,2.45,0.41,88.2,44,0.204,,,28759 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Sizzlin' Steak- Grilled Steak Chili with Beans","Soups, Sauces, and Gravies",6.53,0.016,0.355,2.9,0.0005,0,11.02,3.67,1.22,80,81,0.408,,,28760 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Slow Roasted Beef with Mushrooms Soup","Soups, Sauces, and Gravies",3.27,0.008,0.339,1.2,0.0005,0,7.35,2.04,0.61,87.1,48,0.408,,,28761 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Smoked Chicken with Roasted Corn Chowder","Soups, Sauces, and Gravies",4.08,0.008,0.363,2,0,0,7.76,1.22,4.08,82.2,84,0.816,,,28762 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Split Pea 'N' Ham Soup","Soups, Sauces, and Gravies",4.9,0.008,0.318,2,0.001,0,12.24,2.04,1.02,81,78,0.408,,,28763 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Steak 'N' Potato Soup","Soups, Sauces, and Gravies",3.27,0,0.376,1.2,0,0,7.35,0.41,0.82,86.5,49,0.204,,,28764 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Tantalizin' Turkey - Turkey Chili with Beans Soup","Soups, Sauces, and Gravies",6.12,0.024,0.359,3.3,0.001,0,11.02,3.67,1.02,80.6,78,0.408,,,28765 | |
"CAMPBELL Soup Company, CAMPBELL'S CHUNKY Soups, Turkey Pot Pie - Fully Loaded","Soups, Sauces, and Gravies",4.49,0.008,0.327,1.6,0,0,8.57,1.63,3.27,82,82,0.612,,,28766 | |
"CAMPBELL Soup Company, CAMPBELL'S Chicken Gravy","Soups, Sauces, and Gravies",,0,0.441,,0,0,5.08,1.69,5.08,88.3,68,1.695,,,28767 | |
"CAMPBELL Soup Company, CAMPBELL'S Country Style Cream Gravy","Soups, Sauces, and Gravies",1.69,0,0.322,,0,0,5.08,1.69,5.08,86.8,76,1.695,,,28768 | |
"CAMPBELL Soup Company, CAMPBELL'S Country Style Sausage Gravy","Soups, Sauces, and Gravies",3.39,0,0.458,,0,0,5.08,1.69,10.17,78.3,119,2.542,,,28769 | |
"CAMPBELL Soup Company, CAMPBELL'S Fat Free Beef Gravy","Soups, Sauces, and Gravies",1.69,0,0.508,,0,0,5.08,,,91.1,25,,,,28770 | |
"CAMPBELL Soup Company, CAMPBELL'S Fat Free Chicken Gravy","Soups, Sauces, and Gravies",1.69,0,0.525,,0,0,5.08,,,91.7,25,,,,28771 | |
"CAMPBELL Soup Company, CAMPBELL'S Fat Free Turkey Gravy","Soups, Sauces, and Gravies",1.67,0,0.483,,0,0,6.67,,,90.6,33,,,,28772 | |
"CAMPBELL Soup Company, CAMPBELL'S Golden Pork Gravy","Soups, Sauces, and Gravies",1.69,0,0.525,,0,0,5.08,1.69,5.08,87.4,76,2.542,,,28773 | |
"CAMPBELL Soup Company, CAMPBELL'S Microwavable Beef Gravy","Soups, Sauces, and Gravies",1.69,0,0.475,,0,0,5.08,1.69,1.69,90,42,0.847,,,28774 | |
"CAMPBELL Soup Company, CAMPBELL'S Microwavable Chicken Gravy","Soups, Sauces, and Gravies",,0,0.433,,0,0,5,1.67,5,88.5,67,1.667,,,28775 | |
"CAMPBELL Soup Company, CAMPBELL'S Microwavable Turkey Gravy","Soups, Sauces, and Gravies",1.67,0,0.45,,0,0,5,1.67,1.67,89.6,42,0.833,,,28776 | |
"CAMPBELL Soup Company, CAMPBELL'S Mushroom Gravy","Soups, Sauces, and Gravies",,0,0.475,,0,0,5.08,1.69,1.69,91.9,34,,,,28777 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White - Microwaveable Bowls, Chicken Noodle Soup","Soups, Sauces, and Gravies",1.63,0,0.355,0.4,0,0,4.08,,0.82,92.4,30,0.204,,,28778 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White - Microwaveable Bowls, Chicken Rice Soup","Soups, Sauces, and Gravies",0.82,0.008,0.327,0.4,0,0,5.71,0.41,0.41,92,30,0.204,,,28779 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White - Microwaveable Bowls, Creamy Tomato Soup","Soups, Sauces, and Gravies",1.22,0.016,0.306,1.2,0.0024,0,10.2,6.53,2.04,84.7,64,0.408,,,28780 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White - Microwaveable Bowls, Tomato Soup","Soups, Sauces, and Gravies",1.22,0.008,0.322,1.2,0.0024,0,9.8,7.35,,87.4,44,,,,28781 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White - Microwaveable Bowls, Vegetable Beef Soup","Soups, Sauces, and Gravies",2.04,0,0.359,1.2,0,0,6.12,0.82,0.2,90.6,34,0.204,,,28782 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 25% Less Sodium Chicken Noodle Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.524,0.8,0,0.071,6.35,0.79,1.59,87.8,48,0.397,0.794,0.397,28783 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 25% Less Sodium Cream of Mushroom Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.524,1.6,0,0.105,6.45,0.81,6.45,84.2,89,0.806,2.419,3.226,28784 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 25% Less Sodium Tomato Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.387,0.8,0.0048,0.29,16.13,9.68,,80.6,73,,,,28785 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 98% Fat Free Broccoli Cheese Soup, condensed","Soups, Sauces, and Gravies",1.61,0.032,0.387,0.8,0,0.573,9.68,2.42,1.21,86.6,56,0.806,,,28786 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 98% Fat Free Cream of Broccoli Soup, condensed","Soups, Sauces, and Gravies",1.61,0.016,0.565,1.6,0,0,8.06,0.81,1.61,86.6,56,0.403,,,28787 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 98% Fat Free Cream of Celery Soup, condensed","Soups, Sauces, and Gravies",0.81,0.016,0.387,1.6,0,0.484,7.26,0.81,2.42,85.9,56,0.806,0.403,1.21,28788 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 98% Fat Free Cream of Chicken Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.387,0.8,0,0.444,8.06,0.81,2.02,85.9,56,0.806,0.806,0.403,28789 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, 98% Fat Free Cream of Mushroom Soup, condensed","Soups, Sauces, and Gravies",0.81,0.016,0.387,0.8,0,0.444,7.26,,2.02,87.6,48,0.403,0.403,1.21,28790 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, BATMAN Fun Shapes Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.46,0.8,0,0,7.94,0.79,1.59,85.7,56,0.397,,,28791 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Bean with Bacon Soup, condensed","Soups, Sauces, and Gravies",6.25,0.047,0.672,6.3,0.0028,0.375,19.53,3.13,2.34,70.2,125,1.172,0.781,0.391,28792 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Beef Broth, condensed","Soups, Sauces, and Gravies",2.42,0,0.694,,0,0.032,0.81,0.81,,94.9,12,,,,28793 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Beef Consomme, condensed","Soups, Sauces, and Gravies",3.23,0,0.653,,0,0.032,0.81,0.81,,93.5,16,,,,28794 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Beef Noodle Soup, condensed","Soups, Sauces, and Gravies",3.17,0,0.651,0.8,0,0.063,6.35,0.79,1.59,85.2,56,0.397,0.397,0.794,28795 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Beef with Vegetables and Barley Soup, condensed","Soups, Sauces, and Gravies",3.97,0,0.706,2.4,0,0.119,11.9,1.59,1.19,80.6,71,0.794,0.397,,28796 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Beefy Mushroom Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.706,,0,0.048,4.76,0.79,1.59,88,40,0.397,0.397,0.794,28797 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Broccoli Cheese Soup, condensed","Soups, Sauces, and Gravies",1.61,0.032,0.661,,0.001,0.234,9.68,2.42,3.63,83.1,81,1.613,2.016,,28798 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cheddar Cheese Soup, condensed","Soups, Sauces, and Gravies",1.61,0.032,0.524,0.8,0,0.452,8.87,1.61,4.03,83.2,81,1.613,0.806,1.21,28799 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Alphabet Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0.001,0.659,9.52,0.79,1.19,84.4,56,0.397,0.397,0.397,28800 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Barley with Mushrooms Soup, condensed","Soups, Sauces, and Gravies",3.17,0,0.571,2.4,0,0,12.7,1.59,1.19,81.8,71,0.397,,,28801 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Broth, condensed","Soups, Sauces, and Gravies",0.81,0,0.621,,0,0,0.81,0.81,0.81,95.9,16,,,,28802 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Gumbo Soup, condensed","Soups, Sauces, and Gravies",1.59,0.016,0.69,0.8,0,0,7.94,1.59,0.79,86.4,48,0.397,,,28803 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken NOODLEO's Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.429,11.9,1.59,1.98,83,71,0.794,0.794,0.397,28804 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Noodle Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.706,0.8,0,0.04,6.35,0.79,1.59,87.7,48,0.397,0.397,,28805 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Vegetable Soup, condensed","Soups, Sauces, and Gravies",2.38,0.016,0.706,1.6,0,0.127,11.9,2.38,0.79,83.2,63,0.397,,,28806 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken Won Ton Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.69,,0,0.056,6.35,0.79,0.79,89.1,40,0.397,0.397,,28807 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken and Dumplings Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.603,0.8,0,0,7.94,0.79,1.98,86.4,56,0.794,,,28808 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken and Stars Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.444,8.73,0.79,1.59,86,56,0.397,0.794,0.397,28809 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Chicken with Rice Soup, condensed","Soups, Sauces, and Gravies",1.59,0,0.484,0.8,0,0.341,10.32,0.79,1.19,84.8,56,0.397,0.397,,28810 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Asparagus Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.669,2.4,0,0.056,7.26,1.61,5.65,83.9,89,1.613,0.806,3.226,28811 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Broccoli Soup, condensed","Soups, Sauces, and Gravies",1.61,0.016,0.605,0.8,0.001,0.077,9.68,2.42,4.03,84.8,73,1.21,0.806,2.016,28812 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Celery Soup, condensed","Soups, Sauces, and Gravies",0.81,0.016,0.516,2.4,0,0.46,7.26,0.81,4.84,84.4,73,0.806,2.823,1.21,28813 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Chicken Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.702,1.6,0,0.048,8.06,0.81,6.45,83.8,97,2.016,2.823,1.21,28814 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Chicken with Herbs Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.645,,0,0,7.26,0.81,3.23,84.3,65,1.21,1.21,0.806,28815 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Mushroom Soup, condensed","Soups, Sauces, and Gravies",0.81,0,0.702,1.6,0,0.048,7.26,0.81,4.84,84,81,1.21,,,28816 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Mushroom with Roasted Garlic Soup, condensed","Soups, Sauces, and Gravies",1.61,0.016,0.387,1.6,0,0.484,8.06,0.81,2.02,86.2,56,0.806,0.403,0.806,28817 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Onion Soup, condensed","Soups, Sauces, and Gravies",0.81,0,0.645,2.4,0,0.048,8.06,3.23,4.84,82.2,81,1.21,1.21,2.419,28818 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Potato Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.484,1.6,0,0.548,12.1,0.81,1.61,83,73,0.806,0.403,0.403,28819 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Cream of Shrimp Soup, condensed","Soups, Sauces, and Gravies",2.42,0,0.694,,0,0.024,6.45,,4.84,85.8,81,1.613,0.806,2.419,28820 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Creamy Chicken Noodle Soup, condensed","Soups, Sauces, and Gravies",3.23,0.016,0.702,3.2,0,0.056,8.87,0.81,5.65,79.1,97,1.21,1.21,2.419,28821 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Creamy Chicken Verde Soup, condensed","Soups, Sauces, and Gravies",1.61,0.016,0.629,2.4,0,0,8.06,0.81,5.65,82.2,89,2.016,2.016,1.613,28822 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Curly Noodle Soup, condensed","Soups, Sauces, and Gravies",3.17,0.016,0.381,0.8,0,0,8.73,0.79,1.59,85.4,63,0.397,,,28823 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, DANNY PHANTOM shaped pasta with Chicken in Chicken Broth, condensed","Soups, Sauces, and Gravies",3.17,0,0.444,0.8,0,0,7.94,0.79,1.59,85.7,56,0.397,,,28824 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, DORA THE EXPLORER Kidshapes Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.381,10.32,2.38,1.59,85.7,63,0.397,0.397,,28825 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, DOUBLE NOODLE in Chicken Broth Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.667,15.87,0.79,1.59,79.5,87,0.397,0.794,0.397,28826 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Fiesta Nacho Cheese Soup, condensed","Soups, Sauces, and Gravies",2.42,0.065,0.637,0.8,0,0.081,8.06,1.61,6.45,80.3,97,2.419,1.613,1.613,28827 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, French Onion Soup, condensed","Soups, Sauces, and Gravies",1.59,0.016,0.516,0.8,0,0.444,4.76,3.17,1.19,91,36,0.794,,0.397,28828 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, GOLDFISH Pasta with Chicken in Chicken Broth, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.429,9.52,0.79,1.59,85.7,63,0.397,0.794,0.397,28829 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, GOLDFISH Pasta with Meatballs in Chicken Broth Soup, condensed","Soups, Sauces, and Gravies",3.17,0,0.381,0.8,0,0.381,8.73,0.79,2.38,84,71,0.794,0.794,0.397,28830 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Golden Mushroom Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.524,0.8,0,0.548,8.06,0.81,2.82,87.2,65,0.806,0.403,1.21,28831 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Green Pea Soup, condensed","Soups, Sauces, and Gravies",7.03,0.016,0.68,3.1,0,0.305,21.88,4.69,2.34,66.8,141,0.781,0.391,0.781,28832 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Hearty Vegetable with Pasta Soup, condensed","Soups, Sauces, and Gravies",2.38,0.016,0.706,1.6,0,0,15.08,6.35,0.4,80.5,71,,,,28833 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Homestyle Chicken Noodle Soup, condensed","Soups, Sauces, and Gravies",3.17,0,0.516,0.8,0,0.508,7.94,0.79,1.59,86.6,56,0.397,0.794,0.397,28834 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Italian Style Wedding Soup, condensed","Soups, Sauces, and Gravies",3.17,0.032,0.643,2.4,0,0,9.52,1.59,1.98,83.2,71,0.794,,,28835 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Lentil Soup, condensed","Soups, Sauces, and Gravies",6.35,0.032,0.635,4,0,0.27,19.05,1.59,0.79,71.2,111,0.397,,0.397,28836 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Manhattan Clam Chowder, condensed","Soups, Sauces, and Gravies",1.59,0.016,0.698,1.6,0.001,0.198,9.52,1.59,0.4,86.4,48,0.397,,,28837 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Mega Noodle in Chicken Broth, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.437,11.9,0.79,1.59,82.8,71,0.397,0.794,0.397,28838 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Minestrone Soup, condensed","Soups, Sauces, and Gravies",3.17,0.016,0.516,2.4,0,0.833,13.49,2.38,0.79,79.7,71,0.397,,,28839 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, New England Clam Chowder, condensed","Soups, Sauces, and Gravies",3.17,0.016,0.516,0.8,0,0.516,10.32,0.79,1.98,83.3,71,0.397,,1.19,28840 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Old Fashioned Tomato Rice Soup, condensed","Soups, Sauces, and Gravies",0.79,0,0.611,0.8,0.0019,0.119,18.25,7.94,1.59,74.5,87,0.397,,0.397,28841 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Oyster Stew, condensed","Soups, Sauces, and Gravies",2.38,0,0.722,,0,0.02,2.38,,4.76,89.6,63,2.381,0.794,0.794,28842 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Pepper Pot Soup, condensed","Soups, Sauces, and Gravies",3.97,0.016,0.778,0.8,0,0,7.14,0.79,3.17,83,71,1.19,,,28843 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, SHREK shaped pasta with Chicken in Chicken Broth Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.381,0.8,0,0.444,9.52,0.79,1.59,85.7,63,0.397,0.794,0.397,28844 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Scotch Broth, condensed","Soups, Sauces, and Gravies",2.42,0,0.694,1.6,0,0,8.06,0.81,0.81,86.8,48,,,,28845 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Southwest Style Pepper Jack Soup, condensed","Soups, Sauces, and Gravies",1.61,0.016,0.71,3.2,0,0,10.48,2.42,4.84,80.3,89,1.613,,,28846 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Southwestern-Style Chicken Vegetable Soup, condensed","Soups, Sauces, and Gravies",3.97,0.032,0.659,3.2,0.001,0,16.67,2.38,0.79,76,87,0.397,,,28847 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Split Pea with Ham and Bacon Soup, condensed","Soups, Sauces, and Gravies",7.81,0.016,0.664,3.1,0,0.352,23.44,3.13,1.56,66,141,0.391,0.781,0.391,28848 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Tomato Bisque, condensed","Soups, Sauces, and Gravies",1.59,0.032,0.698,0.8,0.0048,0,18.25,11.9,2.78,75.4,103,1.19,0.397,0.794,28849 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Tomato Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.387,0.8,0.0048,0.556,16.13,9.68,,80.3,73,,,,28850 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Vegetable Beef Soup, condensed","Soups, Sauces, and Gravies",3.97,0.016,0.706,2.4,0.001,0.206,11.9,1.59,0.79,81.6,71,0.397,,,28851 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Vegetable Soup, condensed","Soups, Sauces, and Gravies",3.17,0.016,0.516,2.4,0,0.579,16.67,5.56,0.4,78.7,79,0.397,,,28852 | |
"CAMPBELL Soup Company, CAMPBELL'S Red and White, Vegetarian Vegetable Soup, condensed","Soups, Sauces, and Gravies",2.38,0.016,0.381,1.6,0,0.698,14.29,4.76,0.4,81.6,71,,,,28853 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Gold Label Soups, Blended Red Pepper Black Bean Soup","Soups, Sauces, and Gravies",1.22,0.016,0.335,1.6,0.0015,0,9.39,4.08,0.61,87.3,49,0.408,,,28854 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Gold Label Soups, Creamy Portobello Mushroom Soup","Soups, Sauces, and Gravies",1.22,0.008,0.322,0.8,0,0,5.71,0.82,1.63,90.1,42,1.224,,,28855 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Gold Label Soups, Creamy Tomato Parmesan","Soups, Sauces, and Gravies",2.04,0.041,0.363,1.6,0,0,10.2,6.12,3.67,82.6,82,2.449,,,28856 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Gold Label Soups, Golden Butternut Squash Soup","Soups, Sauces, and Gravies",0.82,0.016,0.331,1.2,0,0,7.35,3.27,0.61,89.8,37,0.408,,,28857 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Gold Label Soups, Italian Tomato & Basil Soup","Soups, Sauces, and Gravies",1.22,0.016,0.314,1.2,0.002,0,7.76,5.71,,89.3,37,,,,28858 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Gold Label Soups, Southwestern Corn Chowder","Soups, Sauces, and Gravies",1.22,0.008,0.253,0.8,0.0005,0.09,10.61,2.86,1.22,84.9,61,0.204,0.408,0.612,28859 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT HARVEST Microwaveable Bowls, 98% Fat Free New England Clam Chowder","Soups, Sauces, and Gravies",2.45,0.008,0.196,0.4,0,0,6.94,0.41,1.02,88.9,45,0.408,0.204,0.408,28860 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, Chicken with Egg Noodles Soup","Soups, Sauces, and Gravies",3.27,0.008,0.196,0.4,0,0,4.9,0.82,1.63,89.8,49,0.408,0.816,0.408,28861 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, HEALTHY REQUEST Italian Wedding Soup","Soups, Sauces, and Gravies",2.45,0.016,0.167,0.8,0,0.286,7.35,1.22,1.22,87.6,49,0.408,0.408,,28862 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, HEALTHY REQUEST Mexican Style Tortilla","Soups, Sauces, and Gravies",3.27,0.016,0.167,0.8,0,0.314,8.16,1.22,0.82,87.7,53,0.204,0.204,0.204,28863 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, Italian Sausage Pasta & Pepperoni Soup","Soups, Sauces, and Gravies",2.86,0.016,0.355,0.8,0,0,6.12,2.04,2.45,87.5,53,1.02,,,28864 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, Italian-Style Wedding Soup","Soups, Sauces, and Gravies",2.86,0.016,0.196,0.8,0,0,6.53,1.22,1.63,89.1,53,1.02,,,28865 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, Mexican Style Chicken Tortilla Soup","Soups, Sauces, and Gravies",3.27,0.024,0.196,0.8,0,0,7.76,1.22,1.02,86.9,52,0.408,,,28866 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, Minestrone Soup","Soups, Sauces, and Gravies",1.63,0.016,0.196,1.2,0,0,7.76,2.04,0.41,88.7,39,0.204,,,28867 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Microwaveable Bowls, Savory Chicken and Long Grain Rice Soup","Soups, Sauces, and Gravies",2.45,0.008,0.196,0.4,0,0,6.12,1.22,0.41,89.4,45,,,,28868 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, 98% Fat Free New England Clam Chowder","Soups, Sauces, and Gravies",2.45,0.008,0.196,0.4,0,0,6.94,0.41,1.02,88.7,45,0.408,,,28869 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Beef with Roasted Barley Soup","Soups, Sauces, and Gravies",3.67,0.008,0.196,0.8,0,0,8.57,1.63,0.41,85.6,54,0.204,,,28870 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Chicken & Pasta with Roasted Garlic Soup","Soups, Sauces, and Gravies",3.27,0,0.335,0.8,0,0,7.35,0.82,0.41,88.1,46,0.204,,,28871 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Chicken Vegetable Medley Soup","Soups, Sauces, and Gravies",2.86,0.008,0.196,0.4,0,0,7.76,1.63,0.41,88,49,,,,28872 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Creamy Chicken Alfredo Soup","Soups, Sauces, and Gravies",4.08,0.016,0.196,0.4,0,0,6.12,0.41,5.31,83,90,1.632,,,28873 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, HEALTHY REQUEST Itallian-Style Wedding Soup","Soups, Sauces, and Gravies",2.45,0.016,0.167,0.8,0,0,6.53,0.41,1.02,89.4,45,0.408,,,28874 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, HEALTHY REQUEST Mexican Style Chicken Tortilla","Soups, Sauces, and Gravies",3.27,0.016,0.167,0.8,0,0,8.98,0.82,0.82,87,57,0.408,,,28875 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Harvest Tomato with Basil Soup","Soups, Sauces, and Gravies",1.22,0,0.196,0.8,0.002,0,8.98,4.9,,87.9,41,,,,28876 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Italian Sausage with Pasta & Pepperoni Soup","Soups, Sauces, and Gravies",2.86,0.016,0.196,0.8,0,0,7.35,1.22,2.86,86.2,65,1.02,,,28877 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Italian-Style Wedding Soup","Soups, Sauces, and Gravies",2.86,0.016,0.196,0.4,0,0,5.31,1.22,2.04,89.2,53,1.225,,,28878 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Mediterranean Meatball w/Bowtie Pasta Soup","Soups, Sauces, and Gravies",2.86,0.016,0.196,0.8,0,0,6.12,1.22,1.63,88.8,49,0.612,,,28879 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Mexican Style Chicken Tortilla Soup","Soups, Sauces, and Gravies",2.86,0.016,0.196,0.8,0,0,6.12,1.22,0.82,88.5,45,0.408,,,28880 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Minestrone Soup","Soups, Sauces, and Gravies",2.04,0.016,0.196,1.2,0,0,8.16,2.04,0.2,88.3,41,,,,28881 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, New England Clam Chowder","Soups, Sauces, and Gravies",2.45,0.008,0.196,0.4,0,0,6.94,0.41,4.08,86,73,0.816,,,28882 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Potato Broccoli Cheese Soup","Soups, Sauces, and Gravies",1.22,0.016,0.196,1.2,0.001,0,6.12,1.22,3.67,89.2,61,0.408,,,28883 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Roasted Chicken with Long Grain & Wild Rice Soup","Soups, Sauces, and Gravies",2.45,0.008,0.196,0.4,0,0,8.16,0.82,0.2,88.7,45,,,,28884 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Roasted Chicken with Rotini & Penne Pasta Soup","Soups, Sauces, and Gravies",3.27,0.008,0.196,0.4,0,0,5.31,0.82,0.41,88.7,37,,,,28885 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Savory White Bean with Roasted Ham Soup","Soups, Sauces, and Gravies",3.67,0.024,0.196,2.9,0.0005,0,12.24,1.63,0.61,83.1,69,0.204,,,28886 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Slow Roasted Beef and Vegetables Soup","Soups, Sauces, and Gravies",2.86,0.016,0.196,0.8,0.0005,0,6.53,1.63,0.2,89,41,0.204,,,28887 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Split Pea with Roasted Ham Soup","Soups, Sauces, and Gravies",3.67,0.016,0.196,2,0,0,11.84,2.04,0.41,82.8,61,0.204,,,28888 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Tomato Garden Soup","Soups, Sauces, and Gravies",1.22,0.016,0.196,0.8,0,0,8.57,4.08,0.2,88.6,41,0.204,,,28889 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Vegetable Medley Soup","Soups, Sauces, and Gravies",1.22,0.016,0.196,1.2,0,0,6.53,2.45,0.2,88.9,33,,,,28890 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soup, Zesty Azteca Meatballs & Rice","Soups, Sauces, and Gravies",2.04,0.016,0.196,0.4,0,0,7.35,1.22,2.04,87.2,53,0.816,,,28891 | |
"CAMPBELL Soup Company, CAMPBELL'S SELECT Soups, HEALTHY REQUEST Chicken with Egg Noodles","Soups, Sauces, and Gravies",2.86,0.008,0.196,0.8,0,0.286,5.31,0.41,1.02,89.9,41,0.408,0.408,0.204,28892 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, 25% Less Sodium Chicken with Mini Noodles Soup","Soups, Sauces, and Gravies",1.31,0,0.239,0.7,0.0008,0,3.61,0.66,0.66,93.5,26,0.164,,,28893 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, 25% Less Sodium Classic Tomato","Soups, Sauces, and Gravies",0.98,0.007,0.216,0.7,0.011800000000000001,0,8.85,4.92,,89,39,,,,28894 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Blended Vegetable Medley Soup","Soups, Sauces, and Gravies",0.98,0.007,0.292,1.3,0.009800000000000001,0,6.23,2.95,0.49,91.1,33,0.164,,,28895 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Chicken & Stars Soup","Soups, Sauces, and Gravies",0.98,0,0.292,0.7,0,0,3.28,0.33,0.49,94,21,0.164,,,28896 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Chicken with Mini Noodles Soup","Soups, Sauces, and Gravies",1.31,0,0.321,0.7,0.0008,0,3.61,0.66,0.66,93.5,26,0.164,,,28897 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Cream of Broccoli Soup","Soups, Sauces, and Gravies",0.98,0.007,0.292,2.3,0,0,5.57,0.98,2.3,90.2,47,0.656,,,28898 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Creamy Chicken Soup","Soups, Sauces, and Gravies",1.31,0,0.292,1.3,0,0,4.26,0.33,2.95,90.5,43,0.492,,,28899 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Creamy Tomato Soup","Soups, Sauces, and Gravies",1.31,0.02,0.308,1.3,0.0079,0,11.15,7.54,1.31,84.8,62,0.328,,,28900 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Italian Style Wedding Soup","Soups, Sauces, and Gravies",0.98,0.007,0.282,0.3,0.0004,0,3.28,0.98,0.82,93.4,24,0.328,,,28901 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, New England Clam Chowder","Soups, Sauces, and Gravies",1.31,0.007,0.292,1.3,0,0,4.26,,1.97,91.6,40,0.328,,,28902 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Vegetable Beef Soup","Soups, Sauces, and Gravies",0.98,0.007,0.305,0.3,0,0,3.28,1.64,0.33,94,20,0.164,,,28903 | |
"CAMPBELL Soup Company, CAMPBELL'S SOUP AT HAND, Velvety Potato Soup","Soups, Sauces, and Gravies",0.66,0.007,0.285,1.3,0,0,6.89,1.64,2.3,89.3,51,0.328,,,28904 | |
"CAMPBELL Soup Company, CAMPBELL'S Turkey Gravy","Soups, Sauces, and Gravies",1.69,0,0.458,,0,0,5.08,1.69,1.69,89.8,42,0.847,,,28905 | |
"CAMPBELL Soup Company, CAMPBELL's Red and White, Souper Shapes Soup - Cars, condensed","Soups, Sauces, and Gravies",3.17,0,0.381,0.8,0,0.444,8.73,0.79,1.59,85.7,63,0.397,0.794,0.397,28906 | |
"CAMPBELL Soup Company, FRANCO-AMERICAN Fat Free Slow Roast Beef Gravy","Soups, Sauces, and Gravies",1.69,0,0.508,,0,0,5.08,,,89.6,34,,,,28907 | |
"CAMPBELL Soup Company, FRANCO-AMERICAN Fat Free Slow Roast Chicken Gravy","Soups, Sauces, and Gravies",1.69,0,0.424,,0,0,6.78,,,91.2,34,,,,28908 | |
"CAMPBELL Soup Company, FRANCO-AMERICAN Slow Roast Beef Gravy","Soups, Sauces, and Gravies",1.69,0,0.525,,0,0,5.08,,0.85,89.5,42,,,,28909 | |
"CAMPBELL Soup Company, FRANCO-AMERICAN Slow Roast Chicken Gravy","Soups, Sauces, and Gravies",1.69,0,0.407,,0,0,5.08,,0.85,90.5,34,,,,28910 | |
"CAMPBELL Soup Company, FRANCO-AMERICAN Slow Roast Turkey Gravy","Soups, Sauces, and Gravies",1.69,0,0.542,,0,0,6.78,,0.85,88.6,42,,,,28911 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Chicken Noodle Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.325,0.8,0,0.357,6.35,0.79,1.59,88.2,48,0.397,0.397,0.397,28912 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Chicken with Rice, condensed","Soups, Sauces, and Gravies",1.59,0,0.325,0.8,0.001,0.484,7.19,0.79,1.19,88.8,56,0.397,0.397,,28913 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Cream of Celery Soup, condensed","Soups, Sauces, and Gravies",0.81,0.081,0.331,0.8,0,0.484,9.68,1.61,1.61,86.5,56,0.403,0.403,0.806,28914 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Cream of Chicken Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.331,0.8,0,0.605,9.68,5.65,2.02,85.6,65,0.806,0.403,0.806,28915 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Cream of Mushroom Soup, condensed","Soups, Sauces, and Gravies",1.61,0.081,0.331,0.8,0,0.629,8.06,1.61,1.61,87.1,56,0.403,0.403,0.806,28916 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Homestyle Chicken Noodle Soup, condensed","Soups, Sauces, and Gravies",2.38,0,0.325,0.8,0,0.349,7.94,0.79,1.19,88.6,48,0.397,0.397,0.397,28917 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Minestrone Soup, condensed","Soups, Sauces, and Gravies",2.38,0.032,0.325,2.4,0,0.659,11.9,3.17,0.4,83.2,63,,,,28918 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Tomato Soup, condensed","Soups, Sauces, and Gravies",1.61,0,0.331,0.8,0.0048,0.565,13.71,8.06,1.21,81.8,73,0.403,,0.403,28919 | |
"CAMPBELL Soup Company, HEALTHY REQUEST, Vegetable Soup, condensed","Soups, Sauces, and Gravies",3.17,0.016,0.325,2.4,0,0.683,15.87,3.97,0.79,79.1,79,,,0.397,28920 | |
"CAMPBELL Soup Company, PACE, Chipotle Chunky Salsa","Soups, Sauces, and Gravies",,0,0.719,3.1,0,0,6.25,6.25,,88.6,25,,,,28921 | |
"CAMPBELL Soup Company, PACE, Cilantro Chunky Salsa","Soups, Sauces, and Gravies",,0,0.844,3.1,0,0,6.25,6.25,,88.6,25,,,,28922 | |
"CAMPBELL Soup Company, PACE, Enchilada Sauce","Soups, Sauces, and Gravies",1.67,0,0.867,1.7,0.002,0,8.33,6.67,,87.1,40,,,,28923 | |
"CAMPBELL Soup Company, PACE, Green Taco Sauce","Soups, Sauces, and Gravies",,0,0.625,,0,0,6.25,6.25,,90.7,25,,,,28924 | |
"CAMPBELL Soup Company, PACE, Lime & Garlic Chunky Salsa","Soups, Sauces, and Gravies",,0,0.656,3.1,0.0056,0,9.38,6.25,,86.6,38,,,,28925 | |
"CAMPBELL Soup Company, PACE, Organic Picante Sauce","Soups, Sauces, and Gravies",,0,0.688,3.1,0,0,6.25,6.25,,89.3,25,,,,28926 | |
"CAMPBELL Soup Company, PACE, Picante Sauce","Soups, Sauces, and Gravies",,0,0.781,3.1,0,0,6.25,6.25,,89.9,25,,,,28927 | |
"CAMPBELL Soup Company, PACE, Pico De Gallo","Soups, Sauces, and Gravies",,0,0.469,,0.0038,0,9.38,6.25,,88,31,,,,28928 | |
"CAMPBELL Soup Company, PACE, Red Taco Sauce","Soups, Sauces, and Gravies",,0,0.813,,0,0,12.5,6.25,,85.3,50,,,,28929 | |
"CAMPBELL Soup Company, PACE, Salsa Verde","Soups, Sauces, and Gravies",,0,0.719,,0.0038,0.203,6.25,6.25,1.56,88.1,47,,,,28930 | |
"CAMPBELL Soup Company, PACE, Tequila Lime Salsa","Soups, Sauces, and Gravies",,0,0.594,,0.0075,0.313,9.38,6.25,,88.6,47,,,,28931 | |
"CAMPBELL Soup Company, PACE, Thick & Chunky Salsa","Soups, Sauces, and Gravies",,0,0.719,3.1,0,0,6.25,6.25,,88.7,25,,,,28932 | |
"CAMPBELL Soup Company, PACE, Triple Pepper Salsa","Soups, Sauces, and Gravies",3.13,0,0.594,3.1,0.0075,0,9.38,6.25,,86.2,47,,,,28933 | |
"CAMPBELL Soup Company, PREGO Pasta, Chunky Garden Combination Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.362,2.3,0.0018,0.308,10,7.69,1.15,84.8,54,,,,28934 | |
"CAMPBELL Soup Company, PREGO Pasta, Chunky Garden Mushroom Supreme Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0,0.354,2.3,0.0018,0.354,10,7.69,2.31,78.8,69,0.385,0.385,1.154,28935 | |
"CAMPBELL Soup Company, PREGO Pasta, Chunky Garden Mushroom and Green Pepper Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.362,2.3,0.0028,0.308,10,7.69,2.31,82.5,69,,,,28936 | |
"CAMPBELL Soup Company, PREGO Pasta, Chunky Garden Tomato, Onion and Garlic Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.6,0.016,0.376,2.4,0.0029,0.32,10.4,8,2.4,80.9,72,,,,28937 | |
"CAMPBELL Soup Company, PREGO Pasta, Diced Onion and Garlic Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.031,0.369,2.3,0.0009,0.338,13.85,9.23,3.46,79.7,92,1.154,,,28938 | |
"CAMPBELL Soup Company, PREGO Pasta, Flavored with Meat Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.369,2.3,0.0018,0.277,10,7.69,1.92,83.5,62,0.385,,,28939 | |
"CAMPBELL Soup Company, PREGO Pasta, Fresh Mushroom Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.369,2.3,0.0018,0.269,10,8.46,1.15,84,54,0.769,,,28940 | |
"CAMPBELL Soup Company, PREGO Pasta, Garlic Supreme Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.031,0.408,2.3,0.0009,0.315,13.08,10,3.08,80.6,85,1.154,,,28941 | |
"CAMPBELL Soup Company, PREGO Pasta, Heart Smart- Ricotta Parmesan Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",2.4,0.048,0.288,2.4,0.0019,0.328,10.4,8,2,83,72,0.8,,,28942 | |
"CAMPBELL Soup Company, PREGO Pasta, Heart Smart- Roasted Red Pepper and Garlic Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.6,0.016,0.288,2.4,0.0019,0.328,10.4,7.2,1.2,83.5,56,,,,28943 | |
"CAMPBELL Soup Company, PREGO Pasta, Heart Smart- Traditional Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.277,2.3,0.0018,0.292,10,7.7,1.15,85.4,54,,0.769,0.385,28944 | |
"CAMPBELL Soup Company, PREGO Pasta, Italian Sausage and Garlic Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",2.4,0.016,0.384,2.4,0.001,0.312,10.4,8,2.4,82.5,72,0.8,,,28945 | |
"CAMPBELL Soup Company, PREGO Pasta, Mini Meatball Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",3.08,0.015,0.369,2.3,0.0018,0.277,10,7.69,2.31,82,77,0.769,,,28946 | |
"CAMPBELL Soup Company, PREGO Pasta, Mushroom and Garlic Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.362,2.3,0.0009,0.331,10,7.69,1.92,84,62,,,,28947 | |
"CAMPBELL Soup Company, PREGO Pasta, Mushroom and Parmesan Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",2.4,0.048,0.384,2.4,0.001,0.376,17.6,10.4,2.8,76.6,104,1.2,,,28948 | |
"CAMPBELL Soup Company, PREGO Pasta, Organic Mushroom Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.6,0.016,0.376,3.2,0.0038,0.36,10.4,7.2,2.4,84.5,72,0.4,,,28949 | |
"CAMPBELL Soup Company, PREGO Pasta, Organic Tomato and Basil Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.6,0.032,0.376,3.2,0.0048,0.32,10.4,7.2,2.4,83,72,0.385,,,28950 | |
"CAMPBELL Soup Company, PREGO Pasta, Roasted Garlic Parmesan Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",2.31,0.031,0.369,2.3,0.0009,0.308,10,7.69,0.77,83.7,77,0.385,,,28951 | |
"CAMPBELL Soup Company, PREGO Pasta, Roasted Garlic and Herb Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.354,2.3,0.0018,0.308,10,6.92,2.31,83.5,69,,,,28952 | |
"CAMPBELL Soup Company, PREGO Pasta, Tomato, Basil and Garlic Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.6,0.016,0.336,2.4,0.001,0.32,9.6,7.2,2,83.5,64,,,,28953 | |
"CAMPBELL Soup Company, PREGO Pasta, Traditional Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.369,2.3,0.0018,0.292,10,7.69,1.15,80,54,,,,28954 | |
"CAMPBELL Soup Company, PREGO Pasta, Zesty Mushroom Italian Sauce, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.015,0.408,2.3,0,0.354,13.85,9.23,2.69,80.2,85,0.769,,,28955 | |
"CAMPBELL Soup Company, SWANSON BROTH, Certified Organic Vegetable Broth","Soups, Sauces, and Gravies",,0,0.234,,0,0,1.28,0.85,,98.2,5,,,,28956 | |
"CAMPBELL Soup Company, SWANSON BROTH, Vegetable Broth","Soups, Sauces, and Gravies",,0,0.4,,0,0,1.28,0.85,,97.6,5,,,,28957 | |
"CAMPBELL Soup company, CAMPBELL'S Low Sodium Soups, Chicken Broth","Soups, Sauces, and Gravies",1.01,0,0.047,,0,0.077,0.34,0.34,0.34,98.2,10,0.168,,,28958 | |
"CAMPBELL Soup company, CAMPBELL'S Low Sodium Soups, Chicken with Noodles Soup","Soups, Sauces, and Gravies",3.93,0.007,0.046,0.7,0,0.161,5.57,1.31,1.48,88.8,52,0.492,0.656,0.328,28959 | |
"CAMPBELL Soup company, CAMPBELL'S Low Sodium Soups, Cream of Mushroom Soup","Soups, Sauces, and Gravies",1.01,0.013,0.02,,0,0.057,6.38,2.01,2.68,89.4,54,0.839,0.503,1.342,28960 | |
"Fish broth","Soups, Sauces, and Gravies",2,0.03,0.318,,0,0.086,0.4,0.09,0.6,96,16,0.133,0.108,0.245,28961 | |
"Gravy, HEINZ Home Style Savory Beef Gravy","Soups, Sauces, and Gravies",1.09,0.006,0.587,0.7,0,0.022,6.24,0.52,1.13,89.97,39,0.4,0.432,0.046,28962 | |
"Gravy, au jus, canned","Soups, Sauces, and Gravies",1.2,0.004,0.05,,0.001,0.081,2.5,,0.2,94.5,16,0.1,0.08,0.01,28963 | |
"Gravy, au jus, dry","Soups, Sauces, and Gravies",9.2,0.14,11.588,,0.001,0.279,47.49,,9.63,2.74,313,2.026,4.683,0.23,28964 | |
"Gravy, beef, canned, ready-to-serve","Soups, Sauces, and Gravies",3.75,0.006,0.56,0.4,0,0.081,4.81,0.21,2.36,87.48,53,1.153,0.962,0.08,28965 | |
"Gravy, brown instant, dry","Soups, Sauces, and Gravies",8.53,0.116,5.053,3.2,0.0019,0.367,59.78,9.23,11.85,5.51,380,5.866,5.488,0.499,28966 | |
"Gravy, brown, dry","Soups, Sauces, and Gravies",10.74,0.132,4.843,2,0.0003,0.262,59.38,,9.61,5,367,3.319,4.452,0.405,28967 | |
"Gravy, chicken, canned, ready-to-serve","Soups, Sauces, and Gravies",1.93,0.02,0.424,0.4,0,0.109,5.42,0.78,5.71,85.34,79,1.41,2.55,1.5,28968 | |
"Gravy, chicken, dry","Soups, Sauces, and Gravies",11.27,0.146,4.152,,0.0006,0.404,62.09,,9.73,3.85,381,2.92,4.648,1.877,28969 | |
"Gravy, instant beef, dry","Soups, Sauces, and Gravies",9.8,0.141,5.203,4.3,0.0009,0.45,61.1,23.9,9.48,4.65,369,4.88,3.659,0.938,28970 | |
"Gravy, instant turkey, dry","Soups, Sauces, and Gravies",11.72,0.115,4.09,3.8,0.0009,0.306,57.56,7.6,14.66,5.24,409,4.931,5.25,4.478,28971 | |
"Gravy, meat or poultry, low sodium, prepared","Soups, Sauces, and Gravies",3.8,0.006,0.018,0.3,0,0.081,6.16,0.01,2.4,87.5,53,1.003,1.068,0.095,28972 | |
"Gravy, mushroom, canned","Soups, Sauces, and Gravies",1.26,0.007,0.57,0.4,0,0.106,5.47,,2.71,89,50,0.4,1.17,1.02,28973 | |
"Gravy, mushroom, dry, powder","Soups, Sauces, and Gravies",10,0.23,6.58,4.8,0.007,0.262,64.66,3.26,4,3.34,328,2.36,1.31,0.14,28974 | |
"Gravy, onion, dry, mix","Soups, Sauces, and Gravies",9,0.28,4.186,6,0.007,0.262,67.64,,3,4.36,322,1.86,0.9,0.14,28975 | |
"Gravy, pork, dry, powder","Soups, Sauces, and Gravies",8.78,0.139,5.356,2.4,0.0014,0.235,63.57,24.73,8.63,4.43,367,4.29,3.881,0.454,28976 | |
"Gravy, turkey, canned, ready-to-serve","Soups, Sauces, and Gravies",2.6,0.004,0.577,0.4,0,0.109,5.1,0.21,2.1,88.6,51,0.62,0.9,0.49,28977 | |
"Gravy, turkey, dry","Soups, Sauces, and Gravies",10.42,0.146,4.392,,0.0002,0.428,65.12,,7.19,4.67,367,1.975,2.575,2.196,28978 | |
"Gravy, unspecified type, dry","Soups, Sauces, and Gravies",13,0.15,5.73,,0.007,0.262,58,,8,4,344,2.86,3.15,1.62,28979 | |
"Potato soup, instant, dry mix","Soups, Sauces, and Gravies",9.2,0.172,0.612,7.6,0.016,1.248,76.14,10,3.1,5.8,343,0.613,1.185,1.025,28980 | |
"Sauce, alfredo mix, dry","Soups, Sauces, and Gravies",15.32,0.467,2.59,2,0,0.254,36.52,5.4,36.35,2.05,535,13.18,13.669,8.61,28981 | |
"Sauce, barbecue","Soups, Sauces, and Gravies",,0.012,0.847,0.6,0.0007,0.208,36.25,26.06,0.29,60.34,150,,0.074,0.17,28982 | |
"Sauce, barbecue, low sodium","Soups, Sauces, and Gravies",,0.012,0.133,0.6,0.0007,0.208,36.25,26.06,0.29,60.34,150,,0.074,0.17,28983 | |
"Sauce, cheese sauce mix, dry","Soups, Sauces, and Gravies",7.68,0.204,3.202,1,0.0009,0.428,60.52,10.26,18.33,3.78,438,8.44,6.868,0.983,28984 | |
"Sauce, cheese, dry, powder","Soups, Sauces, and Gravies",22.69,0.795,3.712,1.1,0.001,0.519,33.66,25.13,25.44,4.09,448,12.05,8.44,3.66,28985 | |
"Sauce, cheese, ready-to-serve","Soups, Sauces, and Gravies",6.71,0.184,0.828,0.5,0.0004,0.03,6.83,0.42,13.29,70.5,174,6.01,3.823,2.599,28986 | |
"Sauce, chili, peppers, hot, immature green, canned","Soups, Sauces, and Gravies",0.7,0.005,0.025,1.9,0.068,0.564,5,2.55,0.1,93.9,20,0.013,0.068,0.012,28987 | |
"Sauce, fish, ready-to-serve","Soups, Sauces, and Gravies",5.06,0.043,7.851,,0.0005,0.288,3.64,3.64,0.01,71.07,35,0.003,0.002,0.003,28988 | |
"Sauce, hoisin, ready-to-serve","Soups, Sauces, and Gravies",3.31,0.032,1.615,2.8,0.0004,0.119,44.08,27.26,3.39,44.23,220,0.568,0.963,1.698,28989 | |
"Sauce, homemade, white, medium","Soups, Sauces, and Gravies",3.84,0.118,0.354,0.2,0.0008,0.156,9.17,4.38,10.63,74.89,147,2.854,4.42,2.862,28990 | |
"Sauce, homemade, white, thick","Soups, Sauces, and Gravies",3.99,0.111,0.373,0.3,0.0007,0.149,11.61,3.98,13.83,69.1,186,3.416,5.851,3.914,28991 | |
"Sauce, homemade, white, thin","Soups, Sauces, and Gravies",3.77,0.126,0.328,0.1,0.0008,0.163,7.4,4.78,6.73,80.66,105,2.152,2.67,1.586,28992 | |
"Sauce, mole poblano, dry mix, single brand","Soups, Sauces, and Gravies",7.48,0.302,1.164,10.1,0,0.602,41.7,,41.58,4.12,571,,,,28993 | |
"Sauce, oyster, ready-to-serve","Soups, Sauces, and Gravies",1.35,0.032,2.733,0.3,0.0001,0.054,10.92,,0.25,80,51,0.043,0.073,0.066,28994 | |
"Sauce, pasta, spaghetti/marinara, ready-to-serve","Soups, Sauces, and Gravies",1.78,0.022,0.41,2.6,0.002,0.316,13.76,8.84,2.69,80.01,87,0.699,0.589,1.184,28995 | |
"Sauce, pasta, spaghetti/marinara, ready-to-serve, low sodium","Soups, Sauces, and Gravies",1.78,0.022,0.03,2.6,0.002,0.316,13.76,8.84,2.69,80.01,87,0.699,0.589,1.184,28996 | |
"Sauce, peppers, hot, chili, mature red, canned","Soups, Sauces, and Gravies",0.9,0.009,0.025,0.7,0.03,0.564,3.9,2.55,0.6,94.1,21,0.08,0.411,0.074,28997 | |
"Sauce, pizza, canned, ready-to-serve","Soups, Sauces, and Gravies",2.18,0.054,0.185,2,0.011300000000000001,0.354,8.67,1.75,1.15,86.71,54,0.46,0.461,0.099,28998 | |
"Sauce, plum, ready-to-serve","Soups, Sauces, and Gravies",0.89,0.012,0.538,0.7,0.0005,0.259,42.81,,1.04,53.71,184,0.153,0.24,0.588,28999 | |
"Sauce, ready-to-serve, pepper or hot","Soups, Sauces, and Gravies",0.51,0.008,2.643,0.3,0.07479999999999999,0.144,1.75,1.26,0.37,89.98,11,0.052,0.03,0.196,29000 | |
"Sauce, ready-to-serve, pepper, TABASCO","Soups, Sauces, and Gravies",1.29,0.012,0.633,0.6,0.0045,0.128,0.8,0.13,0.76,95.17,12,0.106,0.061,0.401,29001 | |
"Sauce, salsa, ready-to-serve","Soups, Sauces, and Gravies",1.54,0.027,0.6,1.6,0.0019,0.297,6.26,3.06,0.16,89.88,27,0.03,0.025,0.115,29002 | |
"Sauce, sofrito, prepared from recipe","Soups, Sauces, and Gravies",12.8,0.02,1.145,1.7,0.020399999999999998,0.401,5.46,,18.2,59.66,237,,,,29003 | |
"Sauce, sweet and sour, prepared-from-recipe","Soups, Sauces, and Gravies",1.84,0.016,0.347,0.4,0.005,0.193,16.72,10.81,0.58,78.56,79,0.144,0.253,0.117,29004 | |
"Sauce, teriyaki, ready-to-serve","Soups, Sauces, and Gravies",5.93,0.025,3.833,0.1,0,0.225,15.56,14.1,0.02,67.69,89,,,,29005 | |
"Sauce, teriyaki, ready-to-serve, reduced sodium","Soups, Sauces, and Gravies",5.93,0.025,1.778,0.1,0,0.225,15.58,14.1,0.02,69.7,89,,,,29006 | |
"Sauce, tomato chili sauce, bottled, no salt, low sodium","Soups, Sauces, and Gravies",2.5,0.02,0.02,0.5,0.016,0.37,28.73,8.96,0.3,68,104,0.044,0.042,0.137,29007 | |
"Sauce, tomato chili sauce, bottled, with salt","Soups, Sauces, and Gravies",2.5,0.02,1.338,5.9,0.016,0.37,19.79,10.54,0.3,68,104,0.045,0.038,0.154,29008 | |
"Sauce, white, thin, prepared-from-recipe, with butter","Soups, Sauces, and Gravies",3.95,0.131,0.184,0.1,0,0.167,8.29,5.29,2.56,84.02,72,1.6,0.656,0.112,29009 | |
"Sauce, worcestershire","Soups, Sauces, and Gravies",,0.107,0.98,,0.013,0.8,19.46,10.03,,78.54,78,,,,29010 | |
"Soup, Chicken Broth, canned, ready-to-serve","Soups, Sauces, and Gravies",1,0.006,0.158,0.4,0.007,0.08,0.4,,0.1,97.8,7,0.029,0.045,0.021,29011 | |
"Soup, HEALTHY CHOICE Chicken Noodle Soup, canned","Soups, Sauces, and Gravies",3.69,0.008,0.195,0.8,0,0,5.2,0.57,0.63,89.73,41,0.4,,0.18,29012 | |
"Soup, HEALTHY CHOICE Chicken and Rice Soup, canned","Soups, Sauces, and Gravies",2.53,0.015,0.181,0.8,0.001,0,5.71,0.37,0.55,90.31,37,0.17,0.23,0.13,29013 | |
"Soup, HEALTHY CHOICE Garden Vegetable Soup, canned","Soups, Sauces, and Gravies",2.13,0.016,0.195,1.9,0.001,0,10.04,2.13,0.21,86.82,51,0.05,0.07,0.08,29014 | |
"Soup, SWANSON Chicken Broth 99% Fat Free","Soups, Sauces, and Gravies",0.54,0.004,0.409,,0,0.03,0.14,0.15,0.17,98.1,4,,,,29015 | |
"Soup, bean & ham, canned, reduced sodium, prepared with water or ready-to-serve","Soups, Sauces, and Gravies",4.19,0.038,0.187,4,0.0011,0.158,13.66,3.17,1.03,79.91,74,0.252,0.415,0.269,29016 | |
"Soup, bean with bacon, condensed, single brand","Soups, Sauces, and Gravies",6.5,0,0.736,4.6,0,0,18,,2.1,70.9,117,0.601,0.747,0.446,29017 | |
"Soup, bean with bacon, dry, mix, prepared with water","Soups, Sauces, and Gravies",2.07,0.021,0.35,3.4,0.0004,0.123,6.18,0.23,0.81,89.73,40,0.36,0.35,0.06,29018 | |
"Soup, bean with frankfurters, canned, condensed","Soups, Sauces, and Gravies",7.6,0.066,0.831,4.6,0.0007,0.363,16.75,,5.31,67.7,142,1.61,2.08,1.25,29019 | |
"Soup, bean with frankfurters, canned, prepared with equal volume water","Soups, Sauces, and Gravies",3.99,0.035,0.437,,0.0004,0.191,8.8,,2.79,83.03,75,0.85,1.09,0.66,29020 | |
"Soup, bean with ham, canned, chunky, ready-to-serve","Soups, Sauces, and Gravies",5.19,0.032,0.4,4.6,0.0018,0.175,11.16,,3.5,78.63,95,1.37,1.58,0.39,29021 | |
"Soup, bean with pork, canned, condensed","Soups, Sauces, and Gravies",5.88,0.06,0.709,5.9,0.0012,0.3,16.97,3,4.42,70.17,129,1.14,1.62,1.36,29022 | |
"Soup, bean with pork, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.88,0.031,0.349,2.9,0.0006,0.147,8.31,1.47,2.16,85.35,63,0.558,0.793,0.666,29023 | |
"Soup, beef and mushroom, low sodium, chunk style","Soups, Sauces, and Gravies",4.3,0.013,0.025,0.2,0.003,0.14,9.58,0.84,2.3,83.3,69,1.621,0.394,0.068,29024 | |
"Soup, beef broth bouillon and consomme, canned, condensed","Soups, Sauces, and Gravies",2.52,0.007,0.653,,0.0007,0.125,0.84,,,94.76,13,,,,29025 | |
"Soup, beef broth or bouillon canned, ready-to-serve","Soups, Sauces, and Gravies",1.14,0.006,0.372,,0,0.054,0.04,,0.22,97.55,7,0.11,0.09,0.01,29026 | |
"Soup, beef broth or bouillon, powder, dry","Soups, Sauces, and Gravies",15.97,0.06,16.982,,0,0.446,23.65,16.71,8.89,3.27,238,4.32,3.616,0.332,29027 | |
"Soup, beef broth or bouillon, powder, prepared with water","Soups, Sauces, and Gravies",0.21,0.004,0.26,,0,0.006,0.25,0.2,0.08,98.69,3,0.04,0.033,0.003,29028 | |
"Soup, beef broth, bouillon, consomme, prepared with equal volume water","Soups, Sauces, and Gravies",2.22,0.004,0.264,,0.0004,0.064,0.73,,,96.24,12,,,,29029 | |
"Soup, beef broth, cubed, dry","Soups, Sauces, and Gravies",17.3,0.06,24,,0,0.403,16.1,14.51,4,3.3,170,1.99,1.67,0.16,29030 | |
"Soup, beef broth, cubed, prepared with water","Soups, Sauces, and Gravies",0.21,0.004,0.26,,0,0.006,0.25,0.2,0.08,98.69,3,0.04,0.033,0.003,29031 | |
"Soup, beef mushroom, canned, condensed","Soups, Sauces, and Gravies",4.6,0.004,0.709,0.2,0,0.126,5.2,,2.4,85.5,61,1.2,1,0.1,29032 | |
"Soup, beef mushroom, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.37,0.002,0.386,0.1,0.0019,0.063,2.6,,1.23,92.6,30,0.61,0.51,0.05,29033 | |
"Soup, beef noodle, canned, condensed","Soups, Sauces, and Gravies",3.85,0.012,0.653,0.6,0.0003,0.079,7.16,2.06,2.46,84.42,67,0.91,0.99,0.39,29034 | |
"Soup, beef noodle, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.93,0.008,0.381,0.3,0.0002,0.04,3.58,1.03,1.23,92.16,34,0.455,0.495,0.195,29035 | |
"Soup, beef noodle, dry, mix","Soups, Sauces, and Gravies",17.93,0.048,8.408,2.7,0.004,0.656,48.64,5.1,6.39,4.97,324,2.07,2.71,1.33,29036 | |
"Soup, beef stroganoff, canned, chunky style, ready-to-serve","Soups, Sauces, and Gravies",5.1,0.02,0.435,0.6,0,0.14,9,1.68,4.6,79.9,98,2.324,1.556,0.246,29037 | |
"Soup, beef with vegetables and barley, canned, condensed, single brand","Soups, Sauces, and Gravies",3.9,0,0.707,,0,0,8.2,,1.4,84.6,61,0.48,0.567,0.098,29038 | |
"Soup, black bean, canned, condensed","Soups, Sauces, and Gravies",4.83,0.035,0.97,6.8,0.0002,0.25,15.42,2.49,1.32,75.33,91,0.34,0.48,0.41,29039 | |
"Soup, black bean, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.42,0.019,0.487,3.4,0.0001,0.125,7.71,1.24,0.66,87.62,46,0.17,0.24,0.205,29040 | |
"Soup, bouillon cubes and granules, low sodium, dry","Soups, Sauces, and Gravies",16.7,0.187,1.067,0.2,0.0011,0.309,64.88,14.47,13.89,2.3,438,3.433,5.365,4.485,29041 | |
"Soup, broccoli cheese, canned, condensed, commercial","Soups, Sauces, and Gravies",2.1,0.041,0.661,1.8,0.002,0.207,7.7,2.12,5.3,82.7,87,1.6,2,1.7,29042 | |
"Soup, cheese, canned, condensed","Soups, Sauces, and Gravies",4.22,0.111,0.693,0.8,0,0.12,8.19,0.6,8.15,77.15,121,5.19,2.31,0.23,29043 | |
"Soup, cheese, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",3.77,0.115,0.406,0.4,0.0005,0.136,6.47,,5.8,82.44,92,3.63,1.63,0.18,29044 | |
"Soup, cheese, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.19,0.057,0.388,0.4,0,0.062,4.26,,4.24,88.12,63,2.7,1.2,0.12,29045 | |
"Soup, chicken broth cubes, dry","Soups, Sauces, and Gravies",14.6,0.19,24,,0.001,0.374,23.5,,4.7,2.5,198,1.2,1.92,1.62,29046 | |
"Soup, chicken broth cubes, dry, prepared with water","Soups, Sauces, and Gravies",0.39,0.005,0.326,,0,0.01,0.62,,0.12,97.43,5,0.03,0.05,0.04,29047 | |
"Soup, chicken broth or bouillon, dry","Soups, Sauces, and Gravies",16.66,0.187,23.875,,0.0011,0.309,18.01,17.36,13.88,2.27,267,3.43,5.36,4.48,29048 | |
"Soup, chicken broth or bouillon, dry, prepared with water","Soups, Sauces, and Gravies",0.28,0.006,0.401,,0,0.006,0.3,0.29,0.23,98.28,4,0.057,0.089,0.074,29049 | |
"Soup, chicken broth, canned, condensed","Soups, Sauces, and Gravies",4.42,0.006,0.621,,0,0.17,0.75,0.35,1.04,91.96,31,0.31,0.47,0.22,29050 | |
"Soup, chicken broth, canned, less/reduced sodium","Soups, Sauces, and Gravies",1.36,0.008,0.231,,0.0004,0.085,0.38,0.22,,97.32,7,,,,29051 | |
"Soup, chicken broth, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.02,0.004,0.306,,0,0.086,0.38,0.29,0.57,95.95,16,0.16,0.24,0.11,29052 | |
"Soup, chicken broth, low sodium, canned","Soups, Sauces, and Gravies",2,0.004,0.03,,0,0.086,1.2,0.13,0.6,96,16,0.179,0.274,0.126,29053 | |
"Soup, chicken corn chowder, chunky, ready-to-serve, single brand","Soups, Sauces, and Gravies",3.1,0,0.299,0.9,0,0,7.5,,6.3,82.1,99,1.75,1.27,1.9,29054 | |
"Soup, chicken gumbo, canned, condensed","Soups, Sauces, and Gravies",2.1,0.019,0.693,1.6,0.004,0.06,6.67,1.93,1.14,88.02,45,0.26,0.52,0.28,29055 | |
"Soup, chicken gumbo, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.08,0.01,0.391,0.8,0.002,0.031,3.43,1.02,0.59,93.84,23,0.13,0.27,0.14,29056 | |
"Soup, chicken mushroom chowder, chunky, ready-to-serve, single brand","Soups, Sauces, and Gravies",3,0,0.339,1.4,0.002,0,7.1,,4.4,84.2,80,1.15,0.837,1.74,29057 | |
"Soup, chicken mushroom, canned, condensed","Soups, Sauces, and Gravies",3.5,0.023,0.661,0.2,0,0.126,7.6,1.31,7.3,80.4,109,1.92,3.21,1.85,29058 | |
"Soup, chicken mushroom, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.8,0.012,0.327,0.1,0,0.063,3.8,,3.75,90,54,0.98,1.65,0.95,29059 | |
"Soup, chicken noodle, canned, condensed","Soups, Sauces, and Gravies",2.59,0.009,0.706,0.3,0,0.044,6.03,0.54,1.94,87.48,52,0.536,0.855,0.54,29060 | |
"Soup, chicken noodle, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.27,0.006,0.349,0.2,0,0.022,2.95,0.27,0.95,93.82,25,0.262,0.418,0.264,29061 | |
"Soup, chicken noodle, dry, mix","Soups, Sauces, and Gravies",15.42,0.055,3.643,3.2,0,0.306,62.32,1.9,6.51,4.94,377,1.947,2.263,1.39,29062 | |
"Soup, chicken noodle, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.84,0.002,0.229,0.1,0,0.013,3.67,0.31,0.55,94.16,23,0.122,0.205,0.155,29063 | |
"Soup, chicken noodle, low sodium, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.27,0.006,0.173,0.2,0,0.022,2.95,0.27,0.95,93.82,25,0.262,0.418,0.264,29064 | |
"Soup, chicken rice, canned, chunky, ready-to-serve","Soups, Sauces, and Gravies",5.11,0.014,0.37,0.4,0.0016,0.045,5.41,0.6,1.33,86.78,53,0.4,0.6,0.28,29065 | |
"Soup, chicken rice, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.97,0.003,0.388,0.3,0,0.004,3.66,0.29,0.57,93.84,24,0.13,0.25,0.17,29066 | |
"Soup, chicken vegetable with potato and cheese, chunky, ready-to-serve","Soups, Sauces, and Gravies",1.16,0.015,0.416,0.3,0.004,0.073,5.2,0.64,4.46,87.9,65,1.636,1.605,0.974,29067 | |
"Soup, chicken vegetable, canned, condensed","Soups, Sauces, and Gravies",2.94,0.014,0.733,0.7,0.0008,0.126,7.01,1.26,2.32,85.52,61,0.69,1.04,0.49,29068 | |
"Soup, chicken vegetable, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.5,0.007,0.392,0.4,0.0004,0.064,3.56,0.54,1.18,92.64,31,0.35,0.53,0.25,29069 | |
"Soup, chicken vegetable, chunky, canned, ready-to-serve","Soups, Sauces, and Gravies",5.13,0.011,0.347,,0.0023,0.153,7.87,,2.01,83.44,69,0.6,0.9,0.42,29070 | |
"Soup, chicken vegetable, chunky, reduced fat, reduced sodium, ready-to-serve, single brand","Soups, Sauces, and Gravies",2.7,0,0.192,,0,0,6.3,,0.5,89.5,40,0.121,0.168,0.107,29071 | |
"Soup, chicken with dumplings, canned, condensed","Soups, Sauces, and Gravies",4.58,0.012,0.618,0.4,0,0.095,4.93,0.46,4.51,83.82,79,1.07,2.06,1.06,29072 | |
"Soup, chicken with dumplings, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.33,0.006,0.305,0.2,0,0.048,2.51,0.33,2.29,91.78,40,0.54,1.05,0.54,29073 | |
"Soup, chicken with rice, canned, condensed","Soups, Sauces, and Gravies",2.89,0.014,0.484,0.5,0.0001,0.082,5.84,0.16,1.56,87.84,49,0.37,0.74,0.34,29074 | |
"Soup, chicken with rice, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.45,0.009,0.238,0.3,0.0001,0.041,2.92,0.08,0.78,93.87,24,0.185,0.37,0.17,29075 | |
"Soup, chicken with star-shaped pasta, canned, condensed, single brand","Soups, Sauces, and Gravies",2.3,0,0.732,,0,0,7.1,,1.4,86.8,50,0.342,0.546,0.303,29076 | |
"Soup, chicken, canned, chunky, ready-to-serve","Soups, Sauces, and Gravies",5.06,0.01,0.354,0.6,0.0005,0.07,6.88,0.87,2.64,84.12,71,0.79,1.18,0.55,29077 | |
"Soup, chili beef, canned, condensed","Soups, Sauces, and Gravies",5.09,0.033,0.788,2.5,0.0031,0.4,18.86,5.09,2.53,70.86,117,1.242,1.013,0.095,29078 | |
"Soup, chili beef, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.49,0.018,0.388,1.2,0.0015,0.196,9.23,2.49,1.24,85.68,57,0.608,0.496,0.046,29079 | |
"Soup, chunky beef with country vegetables, ready-to-serve","Soups, Sauces, and Gravies",4.08,0,0.367,,0,0,8.57,,1.22,85.3,62,0.612,0.443,0.511,29080 | |
"Soup, chunky beef, canned, ready-to-serve","Soups, Sauces, and Gravies",3.97,0.013,0.338,0.6,0.0029,0.14,10.08,0.67,1.11,83.34,66,0.554,0.465,0.047,29081 | |
"Soup, chunky chicken noodle, canned, ready-to-serve","Soups, Sauces, and Gravies",3.27,0.008,0.343,0.4,0.0004,0.1,4,0.75,0.9,90.66,37,0.408,0.194,0.112,29082 | |
"Soup, chunky vegetable, canned, ready-to-serve","Soups, Sauces, and Gravies",1.46,0.023,0.359,0.5,0.0025,0.165,7.92,1.83,1.54,87.58,51,0.23,0.66,0.58,29083 | |
"Soup, clam chowder, manhattan style, canned, chunky, ready-to-serve","Soups, Sauces, and Gravies",3.02,0.028,0.417,1.2,0.0050999999999999995,0.16,7.84,1.67,1.41,86.04,56,0.88,0.41,0.05,29084 | |
"Soup, clam chowder, manhattan, canned, condensed","Soups, Sauces, and Gravies",1.74,0.019,0.457,1.2,0.0032,0.15,9.74,2.7,1.76,84.3,61,0.305,0.305,1.027,29085 | |
"Soup, clam chowder, manhattan, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.85,0.011,0.226,0.6,0.0016,0.074,4.77,1.32,0.86,92.26,30,0.149,0.149,0.503,29086 | |
"Soup, clam chowder, new england, canned, condensed","Soups, Sauces, and Gravies",3.17,0.016,0.516,0.7,0.0040999999999999995,0.221,10.32,0.38,2.06,81.49,72,0.959,,0.959,29087 | |
"Soup, clam chowder, new england, canned, prepared with equal volume low fat (2%) milk","Soups, Sauces, and Gravies",3.24,0.07,0.273,0.3,0.0021000000000000003,0.179,7.46,2.81,2.02,85.49,61,1.094,0.268,0.513,29088 | |
"Soup, clam chowder, new england, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.55,0.009,0.254,0.3,0.002,0.108,5.05,0.19,1.01,90.89,35,0.468,,0.469,29089 | |
"Soup, consomme with gelatin, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.87,0.005,1.325,,0.0001,0.023,0.78,0.45,0.08,94.75,7,,,,29090 | |
"Soup, crab, canned, ready-to-serve","Soups, Sauces, and Gravies",2.25,0.027,0.506,0.3,0,0.134,4.22,,0.62,91.5,31,0.16,0.28,0.16,29091 | |
"Soup, cream of asparagus, canned, condensed","Soups, Sauces, and Gravies",1.82,0.023,0.661,0.4,0.0022,0.138,8.52,0.72,3.26,84.05,69,0.82,0.75,1.46,29092 | |
"Soup, cream of asparagus, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",2.55,0.07,0.42,0.3,0.0016,0.145,6.61,,3.3,86,65,1.34,0.84,0.9,29093 | |
"Soup, cream of asparagus, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.94,0.012,0.402,0.2,0.0011,0.071,4.38,,1.68,91.8,35,0.43,0.39,0.76,29094 | |
"Soup, cream of celery, canned, condensed","Soups, Sauces, and Gravies",1.32,0.032,0.516,0.6,0.0002,0.098,7.03,1.35,4.46,84.96,72,1.12,1.03,2,29095 | |
"Soup, cream of celery, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",2.29,0.075,0.272,0.3,0.0006,0.125,5.86,,3.91,86.46,66,1.59,0.99,1.07,29096 | |
"Soup, cream of celery, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.68,0.016,0.254,0.3,0.0001,0.05,3.62,,2.29,92.27,37,0.58,0.53,1.03,29097 | |
"Soup, cream of chicken, canned, condensed","Soups, Sauces, and Gravies",2.38,0.014,0.702,,0.0001,0.049,7.16,0.54,5.77,82.75,90,1.697,2.056,1.063,29098 | |
"Soup, cream of chicken, canned, condensed, reduced sodium","Soups, Sauces, and Gravies",1.8,0.011,0.357,0.4,0,0.272,9.5,0.39,1.3,85.8,58,0.5,0.4,0.4,29099 | |
"Soup, cream of chicken, canned, condensed, single brand","Soups, Sauces, and Gravies",2.4,0,0.788,,0,0,7.7,,6.5,81.4,99,1.61,1.64,2.05,29100 | |
"Soup, cream of chicken, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",3.01,0.073,0.362,0.1,0.0005,0.11,6.04,,4.62,84.83,77,1.87,1.8,0.66,29101 | |
"Soup, cream of chicken, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.41,0.014,0.347,0.1,0.0001,0.036,3.8,,3.02,90.62,48,0.85,1.34,0.61,29102 | |
"Soup, cream of chicken, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.68,0.029,0.454,0.1,0.0002,0.082,5.11,1.59,2.04,90.94,41,1.3,0.45,0.16,29103 | |
"Soup, cream of mushroom, canned, condensed","Soups, Sauces, and Gravies",1.61,0.012,0.702,,0,0.062,6.72,1.46,5.89,83.85,85,1.38,1.11,1.434,29104 | |
"Soup, cream of mushroom, canned, condensed, reduced sodium","Soups, Sauces, and Gravies",1.21,0.013,0.383,0.6,0,0.374,8.1,2.13,1.69,87.26,52,0.53,0.44,0.56,29105 | |
"Soup, cream of mushroom, canned, prepared with equal volume low fat (2%) milk","Soups, Sauces, and Gravies",2.49,0.068,0.335,,0.0001,0.102,5.73,3.33,3.86,86.63,67,1.317,1.087,0.771,29106 | |
"Soup, cream of mushroom, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.79,0.007,0.318,,0,0.03,3.29,0.72,2.88,92.04,42,0.676,0.543,0.702,29107 | |
"Soup, cream of mushroom, low sodium, ready-to-serve, canned","Soups, Sauces, and Gravies",1,0.019,0.02,0.2,0.0004,0.041,4.53,1.72,3.7,90.3,53,1.005,0.704,1.739,29108 | |
"Soup, cream of onion, canned, condensed","Soups, Sauces, and Gravies",2.2,0.027,0.637,0.4,0.001,0.098,10.4,3.64,4.2,81,88,1.17,1.67,1.16,29109 | |
"Soup, cream of onion, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",2.74,0.072,0.405,0.3,0.001,0.125,7.4,,3.78,84.5,75,1.63,1.32,0.64,29110 | |
"Soup, cream of onion, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.13,0.014,0.38,0.4,0.0005,0.049,5.2,,2.16,90.5,44,0.6,0.86,0.6,29111 | |
"Soup, cream of potato, canned, condensed","Soups, Sauces, and Gravies",1.39,0.016,0.484,0.4,0,0.109,9.14,1.69,1.88,85.39,59,0.97,0.44,0.33,29112 | |
"Soup, cream of potato, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",2.33,0.067,0.23,0.2,0.0005,0.13,6.92,,2.6,86.67,60,1.52,0.7,0.23,29113 | |
"Soup, cream of potato, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.72,0.008,0.238,0.2,0,0.056,4.7,,0.97,92.49,30,0.5,0.23,0.17,29114 | |
"Soup, cream of shrimp, canned, condensed","Soups, Sauces, and Gravies",2.22,0.014,0.685,0.2,0,0.047,6.53,,4.14,84.85,72,2.58,1.19,0.15,29115 | |
"Soup, cream of shrimp, canned, prepared with equal volume low fat (2%) milk","Soups, Sauces, and Gravies",2.78,0.069,0.354,0.1,0.0001,0.095,5.64,2.62,3.23,87.11,61,1.93,1.147,0.155,29116 | |
"Soup, cream of shrimp, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.11,0.009,0.391,0.1,0,0.024,3.27,0.24,2.07,92.38,36,1.29,0.595,0.075,29117 | |
"Soup, cream of vegetable, dry, powder","Soups, Sauces, and Gravies",8,0.134,4.957,3,0.0166,0.408,52.1,17.51,24.1,2.9,446,6.03,10.73,6.29,29118 | |
"Soup, egg drop, Chinese restaurant","Soups, Sauces, and Gravies",1.16,0.007,0.37,0.4,0.0065,0.022,4.29,0.09,0.61,92.87,27,0.166,0.191,0.129,29119 | |
"Soup, escarole, canned, ready-to-serve","Soups, Sauces, and Gravies",0.62,0.013,1.558,,0.0018,0.107,0.72,,0.73,96.89,11,0.22,0.33,0.15,29120 | |
"Soup, gazpacho, canned, ready-to-serve","Soups, Sauces, and Gravies",2.9,0.01,0.303,0.2,0.0029,0.092,1.8,0.59,0.1,93.77,19,0.01,0.01,0.03,29121 | |
"Soup, hot and sour, Chinese restaurant","Soups, Sauces, and Gravies",2.58,0.019,0.376,0.5,0,0.055,4.35,0.42,1.21,90.65,39,0.229,0.288,0.311,29122 | |
"Soup, lentil with ham, canned, ready-to-serve","Soups, Sauces, and Gravies",3.74,0.017,0.532,,0.0017,0.144,8.16,,1.12,85.75,56,0.45,0.52,0.13,29123 | |
"Soup, minestrone, canned, chunky, ready-to-serve","Soups, Sauces, and Gravies",2.13,0.025,0.288,2.4,0.002,0.255,8.64,2.17,1.17,86.72,53,0.62,0.38,0.11,29124 | |
"Soup, minestrone, canned, condensed","Soups, Sauces, and Gravies",3.48,0.028,0.516,0.8,0.0009,0.255,9.17,1.5,2.05,82.95,68,0.44,0.56,0.91,29125 | |
"Soup, minestrone, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.77,0.014,0.254,0.4,0.0005,0.13,4.66,,1.04,91.33,34,0.23,0.29,0.46,29126 | |
"Soup, minestrone, canned, reduced sodium, ready-to-serve","Soups, Sauces, and Gravies",2,0.02,0.215,2.4,0.0057,0.186,9,2.13,0.8,87.3,50,0.14,0.28,0.25,29127 | |
"Soup, mushroom barley, canned, condensed","Soups, Sauces, and Gravies",1.5,0.01,0.573,,0,0.076,9.6,,1.8,84.9,61,0.35,0.8,0.57,29128 | |
"Soup, mushroom barley, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.77,0.005,0.365,0.3,0,0.038,4.8,,0.93,92.4,30,0.18,0.41,0.29,29129 | |
"Soup, mushroom with beef stock, canned, condensed","Soups, Sauces, and Gravies",2.51,0.008,0.773,0.1,0.0008,0.126,7.41,2.28,3.21,84.6,68,1.24,1.12,0.62,29130 | |
"Soup, mushroom with beef stock, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.29,0.004,0.397,0.3,0.0004,0.065,3.81,,1.65,92.08,35,0.64,0.58,0.32,29131 | |
"Soup, mushroom, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.66,0.005,0.403,0.2,0.0004,0.038,4.4,0.18,1.82,92.36,33,0.32,0.89,0.61,29132 | |
"Soup, onion, canned, condensed","Soups, Sauces, and Gravies",3.06,0.022,0.732,0.7,0.001,0.056,6.68,2.72,1.42,86.35,46,0.21,0.61,0.53,29133 | |
"Soup, onion, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.5,0.012,0.423,0.3,0.0005,0.028,3.27,1.33,0.7,93.26,23,0.103,0.299,0.26,29134 | |
"Soup, onion, dry, mix","Soups, Sauces, and Gravies",7.48,0.143,8.031,6.6,0.0034,0.721,65.07,4.65,0.34,3.79,293,0.089,0.067,0.164,29135 | |
"Soup, onion, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.32,0.009,0.346,0.3,0.0001,0.031,2.77,0.2,0.01,95.8,12,0.004,0.003,0.007,29136 | |
"Soup, oxtail, dry, mix, prepared with water","Soups, Sauces, and Gravies",1.11,0.008,0.475,0.1,0.0001,0.013,3.54,0.98,1.01,92.96,28,0.5,0.42,0.04,29137 | |
"Soup, oyster stew, canned, condensed","Soups, Sauces, and Gravies",1.72,0.018,0.74,,0.0026,0.04,3.32,,3.13,89.88,48,2.04,0.74,0.13,29138 | |
"Soup, oyster stew, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",2.51,0.068,0.425,,0.0018,0.096,3.99,,3.24,88.94,55,2.06,0.85,0.13,29139 | |
"Soup, oyster stew, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.87,0.009,0.407,,0.0013,0.02,1.69,,1.59,94.86,24,1.04,0.38,0.07,29140 | |
"Soup, pea, green, canned, condensed","Soups, Sauces, and Gravies",6.54,0.021,0.68,3.9,0.0013,0.145,20.18,6.52,2.23,68.54,125,1.07,0.76,0.29,29141 | |
"Soup, pea, green, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",4.97,0.068,0.352,1.1,0.0011,0.148,12.69,,2.77,77.93,94,1.58,0.86,0.21,29142 | |
"Soup, pea, green, canned, prepared with equal volume water","Soups, Sauces, and Gravies",3.2,0.012,0.336,1.9,0.0006,0.071,9.88,3.19,1.09,84.55,61,0.524,0.372,0.142,29143 | |
"Soup, pea, low sodium, prepared with equal volume water","Soups, Sauces, and Gravies",3.2,0.012,0.01,1.9,0.0006,0.071,9.88,3.19,1.09,84.55,62,0.524,0.372,0.142,29144 | |
"Soup, pea, split with ham, canned, chunky, ready-to-serve","Soups, Sauces, and Gravies",4.62,0.014,0.301,1.7,0.0029,0.127,11.17,1.91,1.66,80.95,77,0.66,0.68,0.24,29145 | |
"Soup, pea, split with ham, canned, condensed","Soups, Sauces, and Gravies",7.68,0.016,0.63,1.7,0.0011,0.297,20.81,,3.28,65.67,141,1.31,1.34,0.47,29146 | |
"Soup, pea, split with ham, canned, prepared with equal volume water","Soups, Sauces, and Gravies",4.08,0.009,0.398,0.9,0.0006,0.158,11.05,,1.74,81.77,75,0.7,0.71,0.25,29147 | |
"Soup, pepperpot, canned, condensed","Soups, Sauces, and Gravies",5.19,0.019,0.778,0.4,0.0011,0.124,7.66,,3.78,80.62,84,1.68,1.64,0.29,29148 | |
"Soup, pepperpot, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.54,0.011,0.385,0.2,0.0005,0.061,3.75,,1.85,90.46,41,0.822,0.803,0.142,29149 | |
"Soup, potato ham chowder, chunky, ready-to-serve, single brand","Soups, Sauces, and Gravies",2.7,0,0.364,0.6,0,0,5.6,,5.2,85.3,80,1.62,2.46,0.32,29150 | |
"Soup, ramen noodle, any flavor, dry","Soups, Sauces, and Gravies",10.48,0.029,2.036,2.3,0.0003,0.179,63.42,1.57,15.63,4.89,436,7.553,6.53,1.457,29151 | |
"Soup, ramen noodle, beef flavor, dry","Soups, Sauces, and Gravies",10.29,0.03,2.002,2.2,0.0006,0.185,63.27,1.78,15.71,5.52,436,7.965,6.784,1.528,29152 | |
"Soup, ramen noodle, chicken flavor, dry","Soups, Sauces, and Gravies",10.66,0.027,2.071,2.4,0,0.173,63.57,1.35,15.55,4.26,437,7.095,6.148,1.387,29153 | |
"Soup, ramen noodle, dry, any flavor, reduced fat, reduced sodium","Soups, Sauces, and Gravies",10.89,0.022,1.2,2.7,0.0012,0.128,70.95,0.85,2.5,12.08,350,,0.685,1.438,29154 | |
"Soup, scotch broth, canned, condensed","Soups, Sauces, and Gravies",4.05,0.012,0.716,1,0.0007,0.13,7.73,,2.14,83.78,66,0.91,0.63,0.45,29155 | |
"Soup, scotch broth, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.03,0.008,0.415,0.5,0.0004,0.065,3.87,0.26,1.07,91.84,33,0.455,0.315,0.225,29156 | |
"Soup, shark fin, restaurant-prepared","Soups, Sauces, and Gravies",3.2,0.01,0.501,,0.0001,0.053,3.8,,2,90.13,46,0.501,0.583,0.341,29157 | |
"Soup, sirloin burger with vegetables, ready-to-serve, single brand","Soups, Sauces, and Gravies",4.2,0,0.361,2.3,0,0,6.8,,3.7,84.1,77,1.33,1.32,0.523,29158 | |
"Soup, split pea with ham and bacon, canned, condensed, single brand","Soups, Sauces, and Gravies",8.6,0,0.729,3,0,0,21.2,,2.3,65.4,140,0.676,0.892,0.439,29159 | |
"Soup, split pea with ham, chunky, reduced fat, reduced sodium, ready-to-serve, single brand","Soups, Sauces, and Gravies",5.2,0,0.343,,0.004200000000000001,0,11.3,,1.1,81,76,0.3,0.404,0.198,29160 | |
"Soup, stock, beef, home-prepared","Soups, Sauces, and Gravies",1.97,0.008,0.198,,0,0.185,1.2,0.54,0.09,95.89,13,0.035,0.043,0.005,29161 | |
"Soup, stock, chicken, home-prepared","Soups, Sauces, and Gravies",2.52,0.003,0.143,,0.0002,0.105,3.53,1.58,1.2,92.15,36,0.321,0.582,0.213,29162 | |
"Soup, stock, fish, home-prepared","Soups, Sauces, and Gravies",2.26,0.003,0.156,,0.0001,0.144,,,0.81,96.96,17,0.203,0.236,0.138,29163 | |
"Soup, stockpot, canned, condensed","Soups, Sauces, and Gravies",3.79,0.017,0.816,,0.0016,0.185,8.95,,3.04,81.89,78,0.67,0.79,1.37,29164 | |
"Soup, stockpot, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.97,0.009,0.424,,0.0008,0.096,4.65,,1.58,90.58,40,0.35,0.41,0.71,29165 | |
"Soup, tomato beef with noodle, canned, condensed","Soups, Sauces, and Gravies",3.55,0.014,0.731,1.2,0,0.176,16.87,,3.42,74.08,112,1.27,1.38,0.54,29166 | |
"Soup, tomato beef with noodle, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.78,0.009,0.367,0.6,0,0.088,8.44,0.73,1.71,86.99,56,0.635,0.69,0.27,29167 | |
"Soup, tomato bisque, canned, condensed","Soups, Sauces, and Gravies",1.76,0.031,0.685,0.8,0.0046,0.325,18.47,,1.95,75.32,96,0.42,0.53,0.87,29168 | |
"Soup, tomato bisque, canned, prepared with equal volume milk","Soups, Sauces, and Gravies",2.51,0.074,0.442,0.2,0.0028,0.241,11.73,,2.63,81.51,79,1.25,0.75,0.49,29169 | |
"Soup, tomato bisque, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.92,0.016,0.424,0.2,0.0024,0.169,9.6,,1.02,87.17,50,0.22,0.28,0.45,29170 | |
"Soup, tomato rice, canned, condensed","Soups, Sauces, and Gravies",1.64,0.018,0.635,1.3,0.0115,0.257,17.08,5.9,2.12,77.13,93,0.4,0.47,1.05,29171 | |
"Soup, tomato rice, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.82,0.011,0.319,0.7,0.0058,0.129,8.54,2.95,1.06,88.52,47,0.2,0.235,0.525,29172 | |
"Soup, tomato vegetable, dry, mix","Soups, Sauces, and Gravies",11.73,0.046,6.722,3,0.0353,0.605,59.9,3.77,5.09,3.73,325,2.32,1.91,0.5,29173 | |
"Soup, tomato vegetable, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.79,0.008,0.132,0.3,0.0012,0.067,4.04,0.99,0.34,94.24,22,0.15,0.12,0.03,29174 | |
"Soup, tomato, canned, condensed","Soups, Sauces, and Gravies",1.61,0.013,0.387,1.2,0.0129,0.229,13.41,8.11,0.56,82.5,60,0.155,0.179,0.189,29175 | |
"Soup, tomato, canned, condensed, reduced sodium","Soups, Sauces, and Gravies",1.61,0.013,0.022,1.2,0.0129,0.229,13.41,8.11,0.56,82.5,65,0.155,0.179,0.189,29176 | |
"Soup, tomato, canned, prepared with equal volume low fat (2%) milk","Soups, Sauces, and Gravies",2.49,0.069,0.21,0.6,0.0063,0.183,8.95,6.53,1.3,85.98,55,0.695,0.336,0.126,29177 | |
"Soup, tomato, canned, prepared with equal volume water, commercial","Soups, Sauces, and Gravies",0.79,0.008,0.19,0.6,0.0063,0.112,6.57,3.97,0.28,91.38,30,0.076,0.088,0.093,29178 | |
"Soup, tomato, dry, mix, prepared with water","Soups, Sauces, and Gravies",0.93,0.029,0.356,0.4,0.002,0.111,7.17,3.9,0.61,89.88,38,0.286,0.237,0.063,29179 | |
"Soup, tomato, low sodium, with water","Soups, Sauces, and Gravies",0.79,0.008,0.024,0.6,0.0063,0.112,6.57,3.97,0.28,91.38,30,0.076,0.088,0.093,29180 | |
"Soup, turkey noodle, canned, condensed","Soups, Sauces, and Gravies",3.11,0.009,0.65,0.6,0.0001,0.06,6.88,0.41,1.59,86.37,55,0.44,0.64,0.39,29181 | |
"Soup, turkey noodle, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.6,0.005,0.334,0.3,0.0001,0.031,3.54,,0.82,92.99,28,0.23,0.33,0.2,29182 | |
"Soup, turkey vegetable, canned, condensed","Soups, Sauces, and Gravies",2.52,0.014,0.739,0.5,0,0.143,7.05,1.09,2.47,86.01,60,0.73,1.08,0.55,29183 | |
"Soup, turkey vegetable, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.28,0.007,0.376,0.2,0,0.073,3.58,,1.26,92.89,30,0.37,0.55,0.28,29184 | |
"Soup, turkey, chunky, canned, ready-to-serve","Soups, Sauces, and Gravies",4.33,0.021,0.391,,0.0027,0.153,5.96,,1.87,86.37,57,0.52,0.75,0.46,29185 | |
"Soup, vegetable beef, canned, condensed","Soups, Sauces, and Gravies",4.45,0.013,0.706,1.6,0.0019,0.138,8.11,0.89,1.51,83.69,63,0.68,0.64,0.09,29186 | |
"Soup, vegetable beef, canned, condensed, single brand","Soups, Sauces, and Gravies",3.8,0,0.555,,0,0,7.7,,0.8,86,53,0.231,0.176,0.237,29187 | |
"Soup, vegetable beef, canned, prepared with equal volume water","Soups, Sauces, and Gravies",2.23,0.008,0.349,0.8,0.001,0.069,4.06,0.45,0.76,91.8,31,0.34,0.32,0.045,29188 | |
"Soup, vegetable beef, dry, mix, prepared with water","Soups, Sauces, and Gravies",1.16,0.006,0.312,0.3,0.0008,0.072,3.17,0.36,0.44,94.2,21,0.22,0.18,0.02,29189 | |
"Soup, vegetable beef, microwavable, ready-to-serve, single brand","Soups, Sauces, and Gravies",6.2,0,0.376,1.5,0,0,3.3,,0.7,88.6,44,0.221,0.223,0.112,29190 | |
"Soup, vegetable chicken, canned, prepared with water, low sodium","Soups, Sauces, and Gravies",5.1,0.011,0.035,0.4,0.0023,0.153,8.76,1.42,2,83.4,69,0.597,0.895,0.418,29191 | |
"Soup, vegetable soup, condensed, low sodium, prepared with equal volume water","Soups, Sauces, and Gravies",1.1,0.012,0.194,1.1,0.0004,0.217,6.06,2.15,0.45,91.35,33,0.074,0.102,0.202,29192 | |
"Soup, vegetable with beef broth, canned, condensed","Soups, Sauces, and Gravies",2.42,0.014,0.515,1.3,0.0019,0.157,10.7,1.64,1.56,83.27,66,0.36,0.45,0.64,29193 | |
"Soup, vegetable with beef broth, canned, prepared with equal volume water","Soups, Sauces, and Gravies",1.21,0.009,0.253,0.7,0.001,0.079,5.35,0.82,0.78,91.59,33,0.18,0.225,0.32,29194 | |
"Soup, vegetable, canned, low sodium, condensed","Soups, Sauces, and Gravies",2.2,0.02,0.385,2.1,0.0008,0.433,12.11,4.31,0.9,82.79,65,0.147,0.203,0.403,29195 | |
"Soup, vegetarian vegetable, canned, condensed","Soups, Sauces, and Gravies",1.72,0.017,0.672,0.5,0.0012,0.171,9.78,3.13,1.58,84.91,59,0.24,0.68,0.59,29196 | |
"Soup, vegetarian vegetable, canned, prepared with equal volume water","Soups, Sauces, and Gravies",0.86,0.01,0.338,0.3,0.0006,0.086,4.89,1.57,0.79,92.41,28,0.12,0.34,0.295,29197 | |
"Soup, wonton, Chinese restaurant","Soups, Sauces, and Gravies",2.08,0.005,0.406,0.2,0.0007,0.032,5.25,0.34,0.26,91.18,32,0.062,0.077,0.071,29198 | |
"Split pea soup, canned, reduced sodium, prepared with water or ready-to serve","Soups, Sauces, and Gravies",3.85,0.017,0.166,1.9,0,0.183,11.83,5.06,0.92,82.4,71,0.3,0.37,0.168,29199 | |
"Split pea with ham soup, canned, reduced sodium, prepared with water or ready-to-serve","Soups, Sauces, and Gravies",4,0.016,0.196,1.9,0.001,0.204,11.4,1.57,0.7,82.8,68,0.294,0.282,0.135,29200 | |
"USDA Commodity, salsa","Soups, Sauces, and Gravies",1.5,0.012,0.43,1.4,0.004,0.27,7,,0.2,89.7,36,0.029,0.016,0.107,29201 | |
"USDA Commodity, spaghetti sauce, meatless, canned","Soups, Sauces, and Gravies",1.2,0.02,0.59,,0.0039,0.292,8.7,4.7,0.9,87.1,48,0.162,0.21,0.51,29202 | |
"BUTCHER BOY MEATS, INC., Turkey Franks","Sausages and Luncheon Meats",13.45,0.148,1.162,0.2,0.0008,0.189,4.66,2.49,18.17,59.06,239,5.86,5.542,5.046,29203 | |
"Bacon and beef sticks","Sausages and Luncheon Meats",29.1,0.014,1.42,,0,0.385,0.8,0.8,44.2,21.6,517,16,21.9,4.3,29204 | |
"Barbecue loaf, pork, beef","Sausages and Luncheon Meats",15.84,0.055,1.334,,0,0.329,6.4,,8.9,64.82,173,3.17,4.14,0.81,29205 | |
"Beef sausage, fresh, cooked","Sausages and Luncheon Meats",18.21,0.011,0.652,,0,0.258,0.35,,27.98,51.12,332,10.905,12.639,0.663,29206 | |
"Beef sausage, pre-cooked","Sausages and Luncheon Meats",15.5,0.015,0.91,,0.0007,0.234,0.03,,37.57,43.75,405,15.098,16.387,0.879,29207 | |
"Beef, bologna, reduced sodium","Sausages and Luncheon Meats",11.7,0.012,0.682,,0,0.155,2,,28.4,54.8,310,11.676,13.299,1.051,29208 | |
"Beef, cured, corned beef, canned","Sausages and Luncheon Meats",27.1,0.012,1.006,,0,0.136,,,14.93,57.72,250,6.18,5.96,0.63,29209 | |
"Beef, cured, dried","Sausages and Luncheon Meats",31.1,0.008,2.79,,0,0.235,2.76,2.7,1.94,53.8,153,0.95,0.84,0.07,29210 | |
"Beef, cured, luncheon meat, jellied","Sausages and Luncheon Meats",19,0.01,1.322,,0,0.402,,,3.3,74.6,111,1.41,1.45,0.17,29211 | |
"Beef, cured, pastrami","Sausages and Luncheon Meats",21.8,0.01,0.885,,0.0003,0.21,0.36,0.1,5.82,69.53,147,2.681,2.118,0.145,29212 | |