From 2f752eae61edadb5b822c9d87b1d48d3b3182879 Mon Sep 17 00:00:00 2001 From: Dan Elbert Date: Wed, 9 Mar 2016 18:53:47 -0600 Subject: [PATCH] Adding USDA weights; usda_importer refactor --- app/models/usda_food.rb | 2 + app/models/usda_food_weight.rb | 5 + ...20160309182253_create_usda_food_weights.rb | 13 + db/schema.rb | 13 +- lib/usda_importer.rb | 355 +- spec/lib/usda_importer_spec.rb | 5 + spec/test_data/ABBREV.txt | 2 + spec/test_data/FOOD_DES.txt | 2 + spec/test_data/WEIGHT.txt | 9 + vendor/data/usda/WEIGHT.txt | 15438 ++++++++++++++++ 10 files changed, 15727 insertions(+), 117 deletions(-) create mode 100644 app/models/usda_food_weight.rb create mode 100644 db/migrate/20160309182253_create_usda_food_weights.rb create mode 100644 spec/lib/usda_importer_spec.rb create mode 100644 spec/test_data/ABBREV.txt create mode 100644 spec/test_data/FOOD_DES.txt create mode 100644 spec/test_data/WEIGHT.txt create mode 100644 vendor/data/usda/WEIGHT.txt diff --git a/app/models/usda_food.rb b/app/models/usda_food.rb index cba60ac..e9fb5db 100644 --- a/app/models/usda_food.rb +++ b/app/models/usda_food.rb @@ -1,6 +1,8 @@ class UsdaFood < ActiveRecord::Base include TokenizedLike + has_many :usda_food_weights + def self.search(query) tokens = query.to_s.split(' ') diff --git a/app/models/usda_food_weight.rb b/app/models/usda_food_weight.rb new file mode 100644 index 0000000..a57bd6a --- /dev/null +++ b/app/models/usda_food_weight.rb @@ -0,0 +1,5 @@ +class UsdaFoodWeight < ActiveRecord::Base + + belongs_to :usda_food + +end \ No newline at end of file diff --git a/db/migrate/20160309182253_create_usda_food_weights.rb b/db/migrate/20160309182253_create_usda_food_weights.rb new file mode 100644 index 0000000..f069a1d --- /dev/null +++ b/db/migrate/20160309182253_create_usda_food_weights.rb @@ -0,0 +1,13 @@ +class CreateUsdaFoodWeights < ActiveRecord::Migration + def change + create_table :usda_food_weights do |t| + t.integer :usda_food_id, index: true, null: false + + t.decimal :amount, precision: 5, scale: 3 + t.string :description + t.decimal :gram_weight, precision: 7, scale: 1 + + t.timestamps null: false + end + end +end diff --git a/db/schema.rb b/db/schema.rb index 6eeffc3..fa976be 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20160303180854) do +ActiveRecord::Schema.define(version: 20160309182253) do create_table "ingredients", force: :cascade do |t| t.string "name" @@ -68,6 +68,17 @@ ActiveRecord::Schema.define(version: 20160303180854) do t.integer "user_id" end + create_table "usda_food_weights", force: :cascade do |t| + t.integer "usda_food_id", null: false + t.decimal "amount", precision: 5, scale: 3 + t.string "description" + t.decimal "gram_weight", precision: 7, scale: 1 + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + + add_index "usda_food_weights", ["usda_food_id"], name: "index_usda_food_weights_on_usda_food_id" + create_table "usda_foods", force: :cascade do |t| t.string "ndbn", limit: 5, null: false t.string "long_description" diff --git a/lib/usda_importer.rb b/lib/usda_importer.rb index 1b1cfe2..dc274ec 100644 --- a/lib/usda_importer.rb +++ b/lib/usda_importer.rb @@ -2,101 +2,126 @@ require 'csv' class UsdaImporter - ABBREV_COLUMNS = [ - 'NDB_No', - 'Shrt_Desc', - 'Water', - 'Energ_Kcal', - 'Protein', - 'Lipid_Tot', - 'Ash', - 'Carbohydrt', - 'Fiber_TD', - 'Sugar_Tot', - 'Calcium', - 'Iron', - 'Magnesium', - 'Phosphorus', - 'Potassium', - 'Sodium', - 'Zinc', - 'Copper', - 'Manganese', - 'Selenium', - 'Vit_C', - 'Thiamin', - 'Riboflavin', - 'Niacin', - 'Panto_acid', - 'Vit_B6', - 'Folate_Tot', - 'Folic_acid', - 'Food_Folate', - 'Folate_DFE', - 'Choline_Tot', - 'Vit_B12', - 'Vit_A_IU', - 'Vit_A_RAE', - 'Retinol', - 'Alpha_Carot', - 'Beta_Carot', - 'Beta_Crypt', - 'Lycopene', - 'Lut+Zea', - 'Vit_E', - 'Vit_D_mcg', - 'Vit_D_IU', - 'Vit_K', - 'FA_Sat', - 'FA_Mono', - 'FA_Poly', - 'Cholestrl', - 'GmWt_1', - 'GmWt_Desc1', - 'GmWt_2', - 'GmWt_Desc2', - 'Refuse_Pct' - ] - - FOOD_DATA_COLUMNS = [ - 'NDB_No', - 'FdGrp_Cd', - 'Long_Desc', - 'Shrt_Desc', - 'ComName', - 'ManufacName', - 'Survey', - 'Ref_desc', - 'Refuse', - 'SciName', - 'N_Factor', - 'Pro_Factor', - 'Fat_Factor', - 'CHO_Factor' - ] + FILES = { + abbreviated: { + filename: 'ABBREV.txt', + columns: [ + 'NDB_No', + 'Shrt_Desc', + 'Water', + 'Energ_Kcal', + 'Protein', + 'Lipid_Tot', + 'Ash', + 'Carbohydrt', + 'Fiber_TD', + 'Sugar_Tot', + 'Calcium', + 'Iron', + 'Magnesium', + 'Phosphorus', + 'Potassium', + 'Sodium', + 'Zinc', + 'Copper', + 'Manganese', + 'Selenium', + 'Vit_C', + 'Thiamin', + 'Riboflavin', + 'Niacin', + 'Panto_acid', + 'Vit_B6', + 'Folate_Tot', + 'Folic_acid', + 'Food_Folate', + 'Folate_DFE', + 'Choline_Tot', + 'Vit_B12', + 'Vit_A_IU', + 'Vit_A_RAE', + 'Retinol', + 'Alpha_Carot', + 'Beta_Carot', + 'Beta_Crypt', + 'Lycopene', + 'Lut+Zea', + 'Vit_E', + 'Vit_D_mcg', + 'Vit_D_IU', + 'Vit_K', + 'FA_Sat', + 'FA_Mono', + 'FA_Poly', + 'Cholestrl', + 'GmWt_1', + 'GmWt_Desc1', + 'GmWt_2', + 'GmWt_Desc2', + 'Refuse_Pct' + ], + map: { + ndbn: 'NDB_No', + short_description: 'Shrt_Desc', + water: 'Water', + kcal: 'Energ_Kcal', + protein: 'Protein', + lipid: 'Lipid_Tot', + ash: 'Ash', + carbohydrates: 'Carbohydrt', + fiber: 'Fiber_TD', + sugar: 'Sugar_Tot', + gram_weight_1: 'GmWt_1', + gram_weight_2: 'GmWt_2', + gram_weight_desc_1: 'GmWt_Desc1', + gram_weight_desc_2: 'GmWt_Desc2', + refuse_percent: 'Refuse_Pct' + } + }, - ABBREV_COLUMN_MAP = { - ndbn: 'NDB_No', - short_description: 'Shrt_Desc', - water: 'Water', - kcal: 'Energ_Kcal', - protein: 'Protein', - lipid: 'Lipid_Tot', - ash: 'Ash', - carbohydrates: 'Carbohydrt', - fiber: 'Fiber_TD', - sugar: 'Sugar_Tot', - gram_weight_1: 'GmWt_1', - gram_weight_2: 'GmWt_2', - gram_weight_desc_1: 'GmWt_Desc1', - gram_weight_desc_2: 'GmWt_Desc2', - refuse_percent: 'Refuse_Pct' - } + food_data: { + filename: 'FOOD_DES.txt', + columns: [ + 'NDB_No', + 'FdGrp_Cd', + 'Long_Desc', + 'Shrt_Desc', + 'ComName', + 'ManufacName', + 'Survey', + 'Ref_desc', + 'Refuse', + 'SciName', + 'N_Factor', + 'Pro_Factor', + 'Fat_Factor', + 'CHO_Factor' + ], + map: { + scientific_name: 'SciName', + refuse_description: 'Ref_desc', + long_description: 'Long_Desc' + } + }, - FOOD_DATA_COLUMN_MAP = { - scientific_name: 'SciName', - refuse_description: 'Ref_desc', - long_description: 'Long_Desc' + weights: { + filename: 'WEIGHT.txt', + map_into: 'usda_food_weights', + columns: [ + 'NDB_No', + 'Seq', + 'Amount', + 'Msre_Desc', + 'Gm_Wgt', + 'Num_Data_Pts', + 'Std_Dev' + ], + map: { + amount: 'Amount', + description: 'Msre_Desc', + gram_weight: 'Gm_Wgt' + } + } } def initialize(directory) @@ -105,47 +130,145 @@ class UsdaImporter def import + UsdaFoodWeight.delete_all UsdaFood.delete_all - food_data_lookup = {} + sorted_files = {} + opened_files = {} - CSV.open(File.join(@directory, 'FOOD_DES.txt'), 'r:iso-8859-1:utf-8', csv_options(FOOD_DATA_COLUMNS)) do |csv| - csv.each do |row| - food_data_lookup[row['NDB_No']] = row.to_h + # Sort each file by NDB_No + FILES.each do |name, data| + filename = File.join(@directory, data[:filename]) + sorted_filename = "#{filename}.sorted" + idx = data[:columns].index('NDB_No') + + if idx + idx += 1 + `sort -n -t'^' -k#{idx}.2,#{idx}.6 #{filename} > #{sorted_filename}` end + + sorted_files[name] = sorted_filename end - CSV.open(File.join(@directory, 'ABBREV.txt'), 'r:iso-8859-1:utf-8', csv_options(ABBREV_COLUMNS)) do |csv| - csv.each_slice(500) do |slice| + begin + + sorted_files.each do |name, filename| + data = FILES[name] + opened_files[name] = CSV.open(filename, 'r:iso-8859-1:utf-8', csv_options(data[:columns])) + end + + build_enumerator(opened_files).each_slice(500) do |slice| UsdaFood.transaction do + slice.each do |data| - attributes = slice.map do |row| - attrs = Hash[ABBREV_COLUMN_MAP.map { |db, col| [db, row[col]] }] - lookup = food_data_lookup[attrs[:ndbn]] - if lookup - extra_attrs = Hash[FOOD_DATA_COLUMN_MAP.map { |db, col| [db, lookup[col]] }] - attrs.merge!(extra_attrs) + food = UsdaFood.new + + data.each do |name, rows| + file_info = FILES[name] + obj = food + + if file_info[:map_into] + obj = food.send(file_info[:map_into]).build + end + + rows.each do |row| + file_info[:map].each do |db, col| + obj.send("#{db}=", row[col]) + end + end end - attrs + + food.save! + end - - UsdaFood.create(attributes) - end end + + + ensure + opened_files.each { |k, v| v.close } + sorted_files.each { |k, v| `rm #{v}` } end - usda_items = Hash[UsdaFood.where(ndbn: Ingredient.select(:ndbn)).map { |uf| [uf.ndbn, uf] }] + # UsdaFood.delete_all + # + # food_data_lookup = {} + # + # CSV.open(File.join(@directory, 'FOOD_DES.txt'), 'r:iso-8859-1:utf-8', csv_options(FOOD_DATA_COLUMNS)) do |csv| + # csv.each do |row| + # food_data_lookup[row['NDB_No']] = row.to_h + # end + # end + # + # CSV.open(File.join(@directory, 'ABBREV.txt'), 'r:iso-8859-1:utf-8', csv_options(ABBREV_COLUMNS)) do |csv| + # csv.each_slice(500) do |slice| + # UsdaFood.transaction do + # + # attributes = slice.map do |row| + # attrs = Hash[ABBREV_COLUMN_MAP.map { |db, col| [db, row[col]] }] + # lookup = food_data_lookup[attrs[:ndbn]] + # if lookup + # extra_attrs = Hash[FOOD_DATA_COLUMN_MAP.map { |db, col| [db, lookup[col]] }] + # attrs.merge!(extra_attrs) + # end + # attrs + # end + # + # UsdaFood.create(attributes) + # + # end + # end + # end + # + # usda_items = Hash[UsdaFood.where(ndbn: Ingredient.select(:ndbn)).map { |uf| [uf.ndbn, uf] }] + # + # Ingredient.where('ndbn IS NOT NULL').each do |i| + # item = usda_items[i.ndbn] + # + # if item + # i.set_usda_food(item) + # i.save + # end + # end - Ingredient.where('ndbn IS NOT NULL').each do |i| - item = usda_items[i.ndbn] + end + + def build_enumerator(opened_files) + enumerate_data = {} + opened_files.each do |name, csv| + csv_enumerator = csv.each + enumerate_data[name] = { + enumerator: csv_enumerator, + done: false, + next_ndbn: csv_enumerator.peek['NDB_No'] + } + end + + Enumerator.new do |yielder| + loop do + break if enumerate_data.values.all? { |d| d[:done] } + + current_ndbn = enumerate_data.values.map { |d| d[:next_ndbn] }.min + results = Hash.new { |hash, key| hash[key] = [] } + + enumerate_data.each do |name, data| + unless data[:done] + begin + while data[:next_ndbn] == current_ndbn + results[name] << data[:enumerator].next + data[:next_ndbn] = data[:enumerator].peek['NDB_No'] + end + rescue StopIteration + data[:done] = true + end + end + end + + yielder << results - if item - i.set_usda_food(item) - i.save end - end + end end def csv_options(headers) diff --git a/spec/lib/usda_importer_spec.rb b/spec/lib/usda_importer_spec.rb new file mode 100644 index 0000000..782b5cf --- /dev/null +++ b/spec/lib/usda_importer_spec.rb @@ -0,0 +1,5 @@ +require 'rails_helper' + +RSpec.describe UsdaImporter do + +end \ No newline at end of file diff --git a/spec/test_data/ABBREV.txt b/spec/test_data/ABBREV.txt new file mode 100644 index 0000000..5229832 --- /dev/null +++ b/spec/test_data/ABBREV.txt @@ -0,0 +1,2 @@ +~01001~^~BUTTER,WITH SALT~^15.87^717^0.85^81.11^2.11^0.06^0.0^0.06^24^0.02^2^24^24^643^0.09^0.000^0.000^1.0^0.0^0.005^0.034^0.042^0.110^0.003^3^0^3^3^18.8^0.17^2499^684^671^0^158^0^0^0^2.32^0.0^0^7.0^51.368^21.021^3.043^215^5.0^~1 pat, (1" sq, 1/3" high)~^14.2^~1 tbsp~^0 +~01006~^~CHEESE,BRIE~^48.42^334^20.75^27.68^2.70^0.45^0.0^0.45^184^0.50^20^188^152^629^2.38^0.019^0.034^14.5^0.0^0.070^0.520^0.380^0.690^0.235^65^0^65^65^15.4^1.65^592^174^173^0^9^0^0^0^0.24^0.5^20^2.3^17.410^8.013^0.826^100^28.35^~1 oz~^144^~1 cup, sliced~^0 diff --git a/spec/test_data/FOOD_DES.txt b/spec/test_data/FOOD_DES.txt new file mode 100644 index 0000000..085f854 --- /dev/null +++ b/spec/test_data/FOOD_DES.txt @@ -0,0 +1,2 @@ +~01001~^~0100~^~Butter, salted~^~BUTTER,WITH SALT~^~~^~~^~Y~^~~^0^~~^6.38^4.27^8.79^3.87 +~01006~^~0100~^~Cheese, brie~^~CHEESE,BRIE~^~~^~~^~Y~^~~^0^~~^6.38^4.27^8.79^3.87 diff --git a/spec/test_data/WEIGHT.txt b/spec/test_data/WEIGHT.txt new file mode 100644 index 0000000..3433d31 --- /dev/null +++ b/spec/test_data/WEIGHT.txt @@ -0,0 +1,9 @@ +~01001~^1^1^~pat (1" sq, 1/3" high)~^5.0^^ +~01001~^2^1^~tbsp~^14.2^^ +~01001~^3^1^~cup~^227^^ +~01001~^4^1^~stick~^113^^ +~01006~^1^1^~oz~^28.35^^ +~01006~^2^1^~cup, sliced~^144^^ +~01006~^3^1^~cup, melted~^240^^ +~01006~^4^1^~cubic inch~^17^^ +~01006~^5^1^~package (4.5 oz)~^128^^ diff --git a/vendor/data/usda/WEIGHT.txt b/vendor/data/usda/WEIGHT.txt new file mode 100644 index 0000000..416ea83 --- /dev/null +++ b/vendor/data/usda/WEIGHT.txt @@ -0,0 +1,15438 @@ +~01001~^1^1^~pat (1" sq, 1/3" high)~^5.0^^ +~01001~^2^1^~tbsp~^14.2^^ +~01001~^3^1^~cup~^227^^ +~01001~^4^1^~stick~^113^^ +~01002~^1^1^~pat (1" sq, 1/3" high)~^3.8^^ +~01002~^2^1^~tbsp~^9.4^^ +~01002~^3^1^~cup~^151^^ +~01002~^4^1^~stick~^76^^ +~01003~^1^1^~tbsp~^12.8^^ +~01003~^2^1^~cup~^205^^ +~01004~^1^1^~oz~^28.35^^ +~01004~^2^1^~cubic inch~^17^^ +~01004~^3^1^~cup, crumbled, not packed~^135^^ +~01005~^1^1^~cup, diced~^132^^ +~01005~^2^1^~cup, shredded~^113^^ +~01005~^3^1^~oz~^28.35^^ +~01005~^4^1^~cubic inch~^17^^ +~01005~^5^1^~slice (1 oz)~^28^^ +~01006~^1^1^~oz~^28.35^^ +~01006~^2^1^~cup, sliced~^144^^ +~01006~^3^1^~cup, melted~^240^^ +~01006~^4^1^~cubic inch~^17^^ +~01006~^5^1^~package (4.5 oz)~^128^^ +~01007~^1^1^~oz~^28.35^^ +~01007~^2^1^~cup~^246^^ +~01007~^3^1^~cubic inch~^17^^ +~01007~^4^1^~wedge (1.33 oz)~^38^^ +~01008~^1^1^~oz~^28.35^^ +~01009~^1^1^~cup, diced~^132^^ +~01009~^2^1^~cup, melted~^244^^ +~01009~^3^1^~cup, shredded~^113^^ +~01009~^4^1^~oz~^28.35^^ +~01009~^5^1^~cubic inch~^17^^ +~01009~^6^1^~slice (1 oz)~^28^^ +~01010~^1^1^~oz~^28.35^^ +~01011~^1^1^~cup, diced~^132^^ +~01011~^2^1^~cup, shredded~^113^^ +~01011~^3^1^~oz~^28.35^^ +~01011~^4^1^~cubic inch~^17^^ +~01011~^5^1^~slice (1 oz)~^28^^ +~01012~^1^4^~oz~^113^^ +~01012~^2^1^~cup, large curd (not packed)~^210^^ +~01012~^3^1^~cup, small curd (not packed)~^225^^ +~01013~^1^4^~oz~^113^^ +~01013~^2^1^~cup (not packed)~^226^^ +~01014~^1^1^~cup (not packed)~^145^^ +~01014~^2^4^~oz~^113^^ +~01015~^1^4^~oz~^113^^ +~01015~^2^1^~cup (not packed)~^226^^ +~01016~^1^4^~oz~^113^^ +~01016~^2^1^~cup (not packed)~^226^^ +~01017~^1^1^~tbsp~^14.5^^ +~01017~^2^1^~cup~^232^^ +~01017~^3^1^~tbsp, whipped~^10.0^^ +~01017~^4^1^~oz~^28.35^^ +~01017~^5^1^~cubic inch~^16^^ +~01017~^6^1^~package, small (3 oz)~^85^^ +~01018~^1^1^~oz~^28.35^^ +~01018~^2^1^~package (7 oz)~^198^^ +~01019~^1^1^~cup, crumbled~^150^^ +~01019~^2^1^~oz~^28.35^^ +~01019~^3^1^~cubic inch~^17^^ +~01019~^4^1^~wedge (1.33 oz)~^38^^ +~01020~^1^1^~cup, diced~^132^^ +~01020~^2^1^~cup, shredded~^108^^ +~01020~^3^1^~oz~^28.35^^ +~01020~^4^1^~cubic inch~^15.0^^ +~01020~^5^1^~slice (1 oz)~^28^^ +~01020~^6^1^~package (8 oz)~^227^^ +~01021~^1^1^~oz~^28.35^^ +~01021~^2^1^~package (8 oz)~^227^^ +~01022~^1^1^~oz~^28.35^^ +~01022~^2^1^~package (7 oz)~^198^^ +~01023~^1^1^~oz~^28.35^^ +~01023~^2^1^~slice (1 oz)~^28^^ +~01023~^3^1^~cubic inch~^15.0^^ +~01023~^4^1^~cup, diced~^132^^ +~01023~^5^1^~cup, shredded~^108^^ +~01023~^6^1^~package (6 oz)~^170^^ +~01024~^1^1^~cup~^134^^ +~01024~^2^1^~oz~^28.35^^ +~01024~^3^1^~cubic inch~^18^^ +~01024~^4^1^~box~^113^^ +~01024~^5^1^~package (8 oz)~^227^^ +~01025~^1^1^~cup, diced~^132^^ +~01025~^2^1^~cup, shredded~^113^^ +~01025~^3^1^~oz~^28.35^^ +~01025~^4^1^~cubic inch~^17^^ +~01025~^5^1^~slice (1 oz)~^28^^ +~01025~^6^1^~package (6 oz)~^170^^ +~01026~^1^1^~cup, shredded~^112^^ +~01026~^2^1^~oz~^28.35^^ +~01026~^3^6^~slices~^170^^ +~01027~^1^1^~oz~^28.35^^ +~01027~^2^1^~cubic inch~^18^^ +~01028~^1^1^~oz~^28.35^^ +~01029~^1^1^~cup, diced~^132^^ +~01029~^2^1^~cup, shredded~^113^^ +~01029~^3^1^~oz~^28.35^^ +~01029~^4^1^~cubic inch~^18^^ +~01029~^5^1^~slice (1 oz)~^28^^ +~01030~^1^1^~cup, diced~^132^^ +~01030~^2^1^~cup, shredded~^113^^ +~01030~^3^1^~oz~^28.35^^ +~01030~^4^1^~cubic inch~^18^^ +~01030~^5^1^~slice (1 oz)~^28^^ +~01030~^6^1^~package (6 oz)~^170^^ +~01031~^1^1^~oz~^28.35^^ +~01031~^2^1^~package (3 oz)~^85^^ +~01032~^1^1^~cup~^100^^ +~01032~^2^1^~tbsp~^5.0^^ +~01032~^3^1^~oz~^28.35^^ +~01033~^1^1^~oz~^28.35^^ +~01033~^2^1^~cubic inch~^10.3^^ +~01033~^3^5^~package (5 oz)~^142^^ +~01034~^1^1^~cup, diced~^132^^ +~01034~^2^1^~cup, shredded~^113^^ +~01034~^3^1^~oz~^28.35^^ +~01034~^4^1^~cubic inch~^17^^ +~01034~^5^1^~slice (1 oz)~^28^^ +~01034~^6^1^~package (6 oz)~^170^^ +~01035~^1^1^~cup, diced~^132^^ +~01035~^2^1^~oz~^28.35^^ +~01035~^3^1^~cubic inch~^17^^ +~01035~^4^1^~slice (1 oz)~^28^^ +~01035~^5^1^~package (6 oz)~^170^^ +~01036~^1^.5^~cup~^124^^ +~01036~^2^1^~cup~^246^^ +~01037~^1^.5^~cup~^124^^ +~01037~^2^1^~oz~^28.35^^ +~01037~^3^1^~cup~^246^^ +~01038~^1^1^~oz~^28.35^^ +~01038~^2^5^~package (5 oz)~^142^^ +~01039~^1^1^~oz~^28.35^^ +~01039~^2^1^~package (3 oz)~^85^^ +~01040~^1^1^~cup, diced~^132^^ +~01040~^2^1^~cup, melted~^244^^ +~01040~^3^1^~cup, shredded~^108^^ +~01040~^4^1^~oz~^28.35^^ +~01040~^5^1^~cubic inch~^15.0^^ +~01040~^6^1^~slice (1 oz)~^28^^ +~01041~^1^1^~oz~^28.35^^ +~01041~^2^1^~package (6 oz)~^170^^ +~01042~^1^1^~oz~^28.35^^ +~01042~^2^1^~slice (1 oz)~^28^^ +~01042~^3^1^~slice (3/4 oz)~^21^^ +~01042~^4^1^~cubic inch~^18^^ +~01042~^5^1^~cup, shredded~^113^^ +~01042~^6^1^~cup, diced~^140^^ +~01042~^7^1^~cup, melted~^244^^ +~01043~^1^1^~cup, diced~^140^^ +~01043~^2^1^~cup, melted~^244^^ +~01043~^3^1^~cup, shredded~^113^^ +~01043~^4^1^~oz~^28.35^^ +~01043~^5^1^~cubic inch~^18^^ +~01043~^6^1^~slice (3/4 oz)~^21^^ +~01044~^1^1^~cup, diced~^140^^ +~01044~^2^1^~cup, shredded~^113^^ +~01044~^3^1^~oz~^28.35^^ +~01044~^4^1^~cubic inch~^18^^ +~01044~^5^1^~slice (3/4 oz)~^21^^ +~01045~^1^1^~oz~^28.35^^ +~01045~^2^1^~package (8 oz)~^227^^ +~01046~^1^1^~cup~^113^^ +~01046~^2^1^~oz~^28.35^^ +~01046~^3^1^~slice (3/4 oz)~^21^^ +~01046~^4^1^~package (8 oz)~^227^^ +~01047~^1^1^~oz~^28.35^^ +~01047~^2^1^~package (8 oz)~^227^^ +~01048~^1^1^~cup, diced~^140^^ +~01048~^2^1^~cup~^244^^ +~01048~^3^1^~jar (5 oz)~^128^^ +~01048~^4^1^~cubic inch~^18^^ +~01048~^5^1^~jar (5 oz)~^142^^ +~01048~^6^1^~slice~^34^^ +~01048~^7^1^~slice, thin~^14.0^^ +~01049~^1^1^~fl oz~^30.2^^ +~01049~^2^1^~tbsp~^15.0^^ +~01049~^3^1^~cup~^242^^ +~01049~^4^1^~container, individual (.5 fl oz)~^15.0^^ +~01050~^1^1^~fl oz~^30.0^^ +~01050~^2^1^~tbsp~^15.0^^ +~01050~^3^1^~cup~^240^^ +~01050~^4^1^~container, individual~^11.1^^ +~01052~^1^1^~cup, whipped~^120^^ +~01052~^2^1^~cup, fluid (yields 2 cups whipped)~^239^^ +~01052~^3^1^~tbsp~^15.0^^ +~01053~^1^1^~cup, whipped~^120^^ +~01053~^2^1^~cup, fluid (yields 2 cups whipped)~^238^^ +~01053~^3^1^~tbsp~^15.0^^ +~01053~^4^1^~fl oz~^29.8^^ +~01054~^1^1^~cup~^60^^ +~01054~^2^1^~tbsp~^3.0^^ +~01055~^1^1^~tbsp~^15.0^^ +~01055~^2^1^~cup~^242^^ +~01056~^1^1^~tbsp~^12.0^^ +~01056~^2^1^~cup~^230^^ +~01057~^1^1^~cup~^254^^ +~01057~^2^1^~fl oz~^31.8^^ +~01057~^3^1^~quart~^1016^^ +~01058~^1^1^~tbsp~^12.0^^ +~01058~^2^1^~cup~^235^^ +~01059~^1^1^~cup~^244^^ +~01059~^2^1^~quart~^976^^ +~01060~^1^1^~cup~^244^^ +~01060~^2^1^~fl oz~^30.5^^ +~01060~^3^1^~quart~^976^^ +~01061~^1^1^~serving~^19^1^ +~01067~^1^1^~container, individual~^15.0^^ +~01067~^2^1^~fl oz~^30.0^^ +~01067~^3^1^~cup~^240^^ +~01067~^4^.5^~cup~^120^^ +~01068~^1^1^~container, individual~^15.0^^ +~01068~^2^.5^~cup~^120^^ +~01069~^1^1^~cup~^94^^ +~01069~^2^1^~tsp~^2.0^^ +~01069~^3^1^~packet~^3.0^^ +~01070~^1^1.5^~oz~^43^^ +~01070~^2^1^~portion, amount to make 1 tbsp~^1.3^^ +~01071~^1^1^~cup~^80^^ +~01071~^2^1^~tbsp~^4.0^^ +~01071~^3^1^~package yields~^160^^ +~01072~^1^1^~cup~^70^^ +~01072~^2^1^~tbsp~^4.0^^ +~01073~^1^1^~cup~^75^^ +~01073~^2^1^~tbsp~^4.0^^ +~01074~^1^1^~oz~^28.35^^ +~01074~^2^1^~cup~^230^^ +~01076~^1^1^~cup~^244^^ +~01076~^2^1^~quart~^976^^ +~01077~^1^1^~cup~^244^^ +~01077~^2^1^~fl oz~^30.5^^ +~01077~^3^1^~tbsp~^15^^ +~01077~^4^1^~quart~^976^^ +~01078~^1^1^~cup~^244^^ +~01078~^2^1^~quart~^976^^ +~01079~^1^1^~cup~^244^^ +~01079~^2^1^~fl oz~^30.5^^ +~01079~^3^1^~quart~^976^^ +~01080~^1^1^~cup~^245^^ +~01080~^2^1^~quart~^980^^ +~01081~^1^1^~cup~^246^^ +~01081~^2^1^~quart~^984^^ +~01082~^1^1^~cup~^244^^ +~01082~^2^1^~fl oz~^30.5^^ +~01082~^3^1^~quart~^976^^ +~01083~^1^1^~cup~^245^^ +~01083~^2^1^~quart~^980^^ +~01084~^1^1^~cup~^246^^ +~01084~^2^1^~quart~^984^^ +~01085~^1^1^~cup~^245^^ +~01085~^2^1^~fl oz~^30.6^^ +~01085~^3^1^~quart~^980^^ +~01086~^1^1^~cup~^245^^ +~01086~^2^1^~fl oz~^30.6^^ +~01086~^3^1^~quart~^980^^ +~01087~^1^1^~cup~^246^^ +~01087~^2^1^~quart~^984^^ +~01088~^1^1^~cup~^245^^ +~01088~^2^1^~fl oz~^30.6^^ +~01088~^3^1^~quart~^980^^ +~01089~^1^1^~cup~^244^^ +~01089~^2^1^~fl oz~^30.5^^ +~01089~^3^1^~quart~^976^^ +~01090~^1^.25^~cup~^32^^ +~01090~^2^1^~cup~^128^^ +~01091~^1^.25^~cup~^30^^ +~01091~^2^1^~cup~^120^^ +~01091~^3^5^~tbsp~^23^1^ +~01092~^1^1^~cup~^68^^ +~01092~^2^1^~envelope (1-1/3 cup)~^91^^ +~01092~^3^.333^~cup (makes 1 cup reconstituted milk)~^23^^ +~01093~^1^1^~oz~^28.35^^ +~01093~^2^.25^~lb~^113^^ +~01094~^1^.25^~cup~^30^^ +~01094~^2^1^~cup~^120^^ +~01094~^3^1^~tbsp~^6.5^^ +~01095~^1^1^~fl oz~^38.2^^ +~01095~^2^1^~cup~^306^^ +~01096~^1^1^~fl oz~^31.5^^ +~01096~^2^1^~cup~^252^^ +~01096~^3^1^~can (13 oz)~^369^^ +~01096~^4^.5^~cup~^126^^ +~01097~^1^1^~fl oz~^31.9^^ +~01097~^2^1^~cup~^256^^ +~01097~^3^.5^~cup~^128^^ +~01102~^1^1^~cup~^250^^ +~01102~^2^1^~fl oz~^31.2^^ +~01102~^3^1^~quart~^1000^^ +~01103~^1^1^~cup~^250^^ +~01103~^2^1^~fl oz~^31.2^^ +~01103~^3^1^~quart~^1000^^ +~01104~^1^1^~cup~^250^^ +~01104~^2^1^~quart~^1000^^ +~01105~^1^1^~cup~^250^^ +~01105~^2^1^~fl oz~^31.2^^ +~01106~^1^1^~fl oz~^30.5^^ +~01106~^2^1^~cup~^244^^ +~01106~^3^1^~quart~^976^^ +~01107~^1^1^~fl oz~^30.8^^ +~01107~^2^1^~cup~^246^^ +~01108~^1^1^~cup~^244^^ +~01108~^2^1^~quart~^976^^ +~01109~^1^1^~cup~^245^^ +~01109~^2^1^~quart~^980^^ +~01110~^1^1^~fl oz~^28.4^^ +~01110~^2^1^~container (10.6 oz)~^300^^ +~01111~^1^1^~fl oz~^28.4^^ +~01111~^2^1^~container (11 oz)~^313^^ +~01112~^1^1^~cup~^246^^ +~01112~^2^1^~quart~^984^^ +~01113~^1^1^~cup~^57^^ +~01113~^2^1^~tbsp~^2.9^^ +~01114~^1^1^~cup~^246^^ +~01114~^2^1^~quart~^984^^ +~01115~^1^1^~cup~^145^^ +~01115~^2^1^~tbsp~^7.5^^ +~01116~^1^1^~container (6 oz)~^170^^ +~01116~^2^1^~container (8 oz)~^227^^ +~01116~^3^.5^~container (4 oz)~^113^^ +~01116~^4^1^~cup (8 fl oz)~^245^^ +~01117~^1^1^~container (6 oz)~^170^^ +~01117~^2^1^~container (8 oz)~^227^^ +~01117~^3^.5^~container (4 oz)~^113^^ +~01117~^4^1^~cup (8 fl oz)~^245^^ +~01118~^1^1^~container (6 oz)~^170^^ +~01118~^2^1^~container (8 oz)~^227^^ +~01118~^3^1^~cup (8 fl oz)~^245^^ +~01119~^1^1^~container (6 oz)~^170^^ +~01119~^2^1^~container (8 oz)~^227^^ +~01119~^3^1^~cup (8 fl oz)~^245^^ +~01120~^1^1^~container (6 oz)~^170^^ +~01120~^2^1^~container (4.4 oz)~^125^^ +~01120~^3^1^~container (5 oz)~^142^^ +~01120~^4^1^~cup (8 fl oz)~^245^^ +~01120~^5^1^~container (8 oz)~^227^^ +~01120~^6^.5^~container (4 oz)~^113^^ +~01121~^1^1^~container (6 oz)~^170^^ +~01121~^2^1^~cup (8 fl oz)~^245^^ +~01121~^3^1^~container (8 oz)~^227^^ +~01121~^5^1^~container, Dannon Sprinkl'ins (4.1 oz)~^116^^ +~01121~^6^.5^~container (4 oz)~^113^^ +~01122~^1^1^~container (6 oz)~^170^^ +~01122~^2^.5^~container (4 oz)~^113^^ +~01122~^3^1^~container (8 oz)~^227^^ +~01123~^1^1^~large~^50^^ +~01123~^2^1^~extra large~^56^^ +~01123~^3^1^~jumbo~^63^^ +~01123~^5^1^~cup (4.86 large eggs)~^243^^ +~01123~^6^1^~medium~^44^^ +~01123~^7^1^~small~^38^^ +~01124~^1^1^~large~^33^^ +~01124~^2^1^~cup~^243^^ +~01125~^1^1^~large~^17^^ +~01125~^2^1^~cup~^243^^ +~01126~^1^1^~oz~^28.35^^ +~01126~^2^.5^~lb~^227^^ +~01127~^1^1^~oz~^28.35^^ +~01127~^2^.5^~lb~^227^^ +~01128~^1^1^~large~^46^^ +~01129~^1^1^~cup, chopped~^136^^ +~01129~^2^1^~tbsp~^8.5^^ +~01129~^3^1^~large~^50^^ +~01130~^1^1^~tbsp~^15^^ +~01130~^2^1^~large~^61^^ +~01131~^1^1^~large~^50^^ +~01132~^1^1^~large~^61^^ +~01132~^2^1^~tbsp~^13.7^^ +~01132~^3^1^~cup~^220^^ +~01133~^1^1^~cup, sifted~^85^^ +~01133~^2^1^~tbsp~^5.0^^ +~01134~^1^1^~cup, sifted~^85^^ +~01134~^2^1^~tbsp~^5.0^^ +~01135~^1^1^~oz~^28.35^^ +~01135~^2^.5^~lb~^227^^ +~01136~^1^1^~cup, sifted~^107^^ +~01136~^2^1^~tbsp~^7.0^^ +~01137~^1^1^~cup, sifted~^67^^ +~01137~^2^1^~tbsp~^4.0^^ +~01138~^1^1^~egg~^70^^ +~01139~^1^1^~egg~^144^^ +~01140~^1^1^~egg~^9.0^^ +~01141~^1^1^~egg~^79^^ +~01144~^1^.35^~oz~^9.9^^ +~01144~^2^.7^~oz~^20^^ +~01145~^1^1^~pat (1" sq, 1/3" high)~^5.0^^ +~01145~^2^1^~tbsp~^14.2^^ +~01145~^3^1^~cup~^227^^ +~01145~^4^1^~stick~^113^^ +~01146~^1^1^~tbsp~^5.0^^ +~01151~^1^1^~cup~^245^^ +~01151~^2^1^~quart~^980^^ +~01152~^1^1^~cup~^245^^ +~01152~^2^1^~quart~^980^^ +~01153~^1^1^~fl oz~^31.5^^ +~01153~^2^.5^~cup~^126^^ +~01154~^1^.25^~cup~^30^^ +~01154~^2^1^~cup~^120^^ +~01155~^1^1^~cup~^68^^ +~01155~^2^1^~envelope (1-1/3 cup)~^91^^ +~01156~^1^1^~oz~^28.35^^ +~01157~^1^1^~oz~^28.35^^ +~01159~^1^1^~oz~^28.35^^ +~01160~^1^1^~oz~^28.35^^ +~01160~^2^.5^~lb~^227^^ +~01161~^1^1^~cup, shredded~^113^^ +~01161~^2^1^~oz~^28.35^^ +~01161~^3^1^~cubic inch~^18^^ +~01161~^4^1^~slice~^28^^ +~01161~^5^3^~oz~^85^^ +~01164~^1^2^~tbsp~^30^^ +~01164~^2^1^~cup~^243^^ +~01165~^1^1^~cup, crumbled~^132^^ +~01165~^2^1^~oz~^28.35^^ +~01166~^1^1^~cup, diced~^132^^ +~01166~^2^1^~cup, shredded~^113^^ +~01166~^3^1^~oz~^28.35^^ +~01166~^4^1^~cubic inch~^18^^ +~01166~^5^1^~slice (1 oz)~^28^^ +~01167~^1^1^~cup, diced~^132^^ +~01167~^2^1^~cup, shredded~^113^^ +~01167~^3^1^~oz~^28.35^^ +~01167~^4^1^~cubic inch~^17^^ +~01167~^5^1^~slice (1 oz)~^28^^ +~01168~^1^1^~cup, diced~^132^^ +~01168~^2^1^~cup, shredded~^113^^ +~01168~^3^1^~oz~^28.35^^ +~01168~^4^1^~cubic inch~^17^^ +~01168~^5^1^~slice (1 oz)~^28^^ +~01169~^1^1^~cup, diced~^132^^ +~01169~^2^1^~cup, shredded~^113^^ +~01169~^3^1^~oz~^28.35^^ +~01169~^4^1^~cubic inch~^17^^ +~01169~^5^1^~slice (1 oz)~^28^^ +~01171~^1^1^~oz~^28^^ +~01172~^1^1^~oz~^28^^ +~01173~^1^1^~oz~^28^^ +~01174~^1^1^~cup~^246^^ +~01174~^2^1^~quart~^984^^ +~01175~^1^1^~cup~^244^^ +~01175~^2^1^~quart~^976^^ +~01178~^1^1^~tablespoon~^12.0^^ +~01178~^2^1^~cup~^230^^ +~01179~^1^1^~tablespoon~^12.0^^ +~01179~^2^1^~cup~^230^^ +~01180~^1^1^~tablespoon~^12.0^^ +~01180~^2^1^~cup~^230^^ +~01182~^1^1^~cup shredded~^113^^ +~01184~^1^1^~container (6 oz)~^170^^ +~01185~^1^1^~tablespoon~^5.0^^ +~01186~^1^1^~tbsp~^18^6^.251 +~01187~^1^1^~container (6 oz)~^170^^ +~01188~^1^2^~tbsp~^33^^ +~01189~^1^2^~tbsp~^35^^ +~01190~^1^1^~slice~^21^^ +~01191~^1^1^~oz~^28^^ +~01192~^1^1^~oz~^28^^ +~01193~^1^2^~tbsp~^31^^ +~01194~^1^2^~tbsp~^32^^ +~01199~^1^2^~tbsp~^29^1^ +~01199~^2^1^~pint~^484^1^ +~01200~^1^1^~tablespoon~^4.0^^ +~01200~^2^1^~cup~^75^^ +~01202~^1^1^~cup~^250^^ +~01202~^2^1^~fl oz~^31.2^^ +~01202~^3^1^~quart~^1000^^ +~01203~^1^1^~container (6 oz)~^170^^ +~01203~^2^1^~cup (8 fl oz)~^245^^ +~01203~^3^1^~container (8 oz)~^227^^ +~01204~^1^1^~cup~^100^^ +~01204~^2^1^~tbsp~^5.0^^ +~01204~^3^1^~oz~^28.35^^ +~01205~^1^1^~tbsp~^15.0^1^ +~01206~^1^4^~tsp~^12.0^1^ +~01208~^1^1^~cup, diced~^132^^ +~01208~^2^1^~oz~^28.35^^ +~01208~^3^1^~cup, shredded~^113^^ +~01208~^4^1^~cubic inch~^14.3^^ +~01208~^5^1^~slice (1 oz)~^28^^ +~01208~^6^1^~package (6 oz)~^170^^ +~01209~^1^1^~oz~^28.35^1^ +~01209~^2^.25^~cup~^28^1^ +~01210~^1^1^~tbsp~^8.6^3^1.389 +~01210~^2^1^~cup~^105^3^3.876 +~01211~^1^1^~cup~^244^^ +~01211~^2^1^~tbsp~^15^^ +~01211~^3^1^~fl oz~^30.5^^ +~01211~^4^1^~quart~^976^^ +~01212~^1^1^~cup~^128^^ +~01212~^2^.25^~cup~^32^^ +~01214~^1^1^~cup~^252^^ +~01214~^2^1^~fl oz~^31.5^^ +~01214~^3^1^~can (13 oz)~^369^^ +~01214~^4^.5^~cup~^126^^ +~01215~^1^1^~slice 3/4 oz~^21^^ +~01215~^2^1^~slice 2/3 oz~^19^^ +~01216~^1^1^~container (6 oz)~^170^^ +~01216~^2^1^~container (4.4 oz)~^125^^ +~01216~^3^1^~container (5 oz)~^142^^ +~01216~^4^1^~cup (8 fl oz)~^245^^ +~01216~^5^1^~container (8 oz)~^227^^ +~01216~^6^.5^~container (4 oz)~^113^^ +~01217~^1^1^~container (6 oz)~^170^^ +~01217~^2^1^~cup (8 fl oz)~^245^^ +~01217~^3^1^~container (8 oz)~^227^^ +~01217~^5^1^~container, Dannon Sprinkl'ins (4.1 oz)~^116^^ +~01217~^6^.5^~container (4 oz)~^113^^ +~01218~^1^1^~container (6 oz)~^170^^ +~01218~^2^1^~container (4.4 oz)~^125^^ +~01218~^3^1^~cup (8 fl oz)~^245^^ +~01218~^4^1^~container (8 oz)~^227^^ +~01219~^1^1^~container (6 oz)~^170^^ +~01219~^2^1^~cup (8 fl oz)~^245^^ +~01219~^3^1^~container (8 oz)~^227^^ +~01220~^1^1^~container (6 oz)~^170^^ +~01220~^2^1^~container (8 oz)~^227^^ +~01220~^3^.5^~container (4 oz)~^113^^ +~01220~^4^1^~cup (8 fl oz)~^245^^ +~01221~^1^1^~container (6 oz)~^170^^ +~01222~^1^1^~container (6 oz)~^170^^ +~01223~^1^1^~tbsp~^11.0^^ +~01224~^1^2^~scoop~^50^1^ +~01225~^1^1^~tbsp~^19^4^2.243 +~01226~^1^.25^~cup~^60^^ +~01226~^2^1^~cup~^240^^ +~01227~^1^1^~cup grated~^97^12^13.246 +~01228~^1^1^~cup, crumbled~^122^12^8.56 +~01229~^1^1^~cup, crumbled~^118^12^5.521 +~01230~^1^1^~cup~^245^^ +~01231~^1^1^~container~^170^^ +~01235~^1^.5^~cup~^68^^ +~01236~^1^.5^~cup~^86^^ +~01237~^1^1^~bar~^50^^ +~01238~^1^1^~serving~^70^^ +~01239~^1^1^~serving~^82^1^ +~01240~^1^1^~unit~^96^1^ +~01241~^1^1^~serving~^70^1^ +~01242~^1^1^~serving~^70^1^ +~01243~^1^.5^~cup~^68^1^ +~01244~^1^1^~bar~^68^2^ +~01250~^1^1^~can~^227^1^ +~01251~^1^.25^~cup shredded~^28^^ +~01252~^1^1^~slice (2/3 oz)~^19^^ +~01252~^2^1^~slice (3/4 oz)~^21^^ +~01253~^1^1^~oz~^28.35^^ +~01253~^2^1^~slice (3/4 oz)~^21^^ +~01253~^3^1^~slice (1 oz)~^28^^ +~01253~^4^1^~cubic inch~^18^^ +~01253~^5^1^~cup, diced~^140^^ +~01253~^6^1^~cup, shredded~^113^^ +~01253~^7^1^~cup, melted~^244^^ +~01254~^1^1^~cup~^113^^ +~01254~^2^1^~oz~^28.35^^ +~01254~^3^1^~slice (3/4 oz)~^21^^ +~01254~^4^1^~package (8 oz)~^227^^ +~01255~^1^1^~oz~^28^^ +~01256~^1^1^~container~^170^1^ +~01258~^1^1^~cup, sifted~^107^^ +~01258~^2^1^~tbsp~^7.0^^ +~01259~^1^1^~piece~^21^12^.481 +~01259~^2^1^~package~^566^8^208.427 +~01260~^1^1^~slice~^21^9^2.145 +~01263~^1^1^~medium~^298^1^ +~01264~^1^26^~pieces~^95^1^ +~01265~^1^1^~serving~^28^1^ +~01266~^1^1^~serving~^28^^ +~01267~^1^2^~tsp~^5.0^1^ +~01270~^1^1^~slice (2/3 oz)~^19^^ +~01270~^2^1^~slice (3/4 oz)~^21^^ +~01270~^3^1^~slice (1 oz)~^28^^ +~01271~^1^1^~cup~^86^32^7.497 +~01275~^1^5.3^~oz~^150^^ +~01276~^1^5.3^~oz~^150^^ +~01278~^1^5.3^~oz~^150^^ +~01280~^1^5.3^~oz~^150^^ +~01281~^1^5.3^~oz~^150^^ +~01284~^1^1^~container (5.3 oz)~^150^^ +~01285~^1^1^~container (5.3 oz)~^150^^ +~01286~^1^1^~container (5.3 oz)~^150^^ +~01287~^1^1^~container (7 oz)~^200^^ +~01291~^1^1^~cup~^252^^ +~01291~^2^1^~fl oz~^31.5^^ +~01291~^3^1^~can (13 oz)~^369^^ +~01291~^4^.5^~cup~^126^^ +~01295~^1^1^~cup (8 fl oz)~^245^^ +~01295~^2^1^~container (8 oz)~^227^^ +~01295~^3^.5^~container (4 oz)~^113^^ +~02001~^1^1^~tsp~^1.9^^ +~02001~^2^1^~tbsp~^6.0^^ +~02002~^1^1^~tsp, whole~^2.1^^ +~02002~^2^1^~tbsp, whole~^6.7^^ +~02003~^1^1^~tsp, leaves~^0.7^13^ +~02003~^2^1^~tbsp, leaves~^2.1^30^.12 +~02003~^3^1^~tsp, ground~^1.4^^ +~02003~^4^1^~tbsp, ground~^4.5^^ +~02004~^1^1^~tsp, crumbled~^0.6^^ +~02004~^2^1^~tbsp, crumbled~^1.8^^ +~02005~^1^1^~tsp~^2.1^^ +~02005~^2^1^~tbsp~^6.7^^ +~02006~^1^1^~tsp, ground~^2.0^^ +~02006~^2^1^~tbsp, ground~^5.8^^ +~02007~^1^1^~tsp~^2.0^^ +~02007~^2^1^~tbsp~^6.5^^ +~02008~^1^1^~tsp~^0.6^^ +~02008~^2^1^~tbsp~^1.9^^ +~02009~^1^1^~tsp~^2.7^33^ +~02009~^2^1^~tbsp~^8.0^30^.1 +~02010~^1^1^~tsp~^2.6^13^.13 +~02010~^2^1^~tbsp~^7.8^12^.288 +~02011~^1^1^~tsp~^2.1^30^.12 +~02011~^2^1^~tbsp~^6.5^30^.16 +~02012~^1^1^~tsp~^0.6^^ +~02012~^2^1^~tbsp~^1.8^^ +~02013~^1^1^~tsp~^1.8^^ +~02013~^2^1^~tbsp~^5.0^^ +~02014~^1^1^~tsp, whole~^2.1^^ +~02014~^2^1^~tbsp, whole~^6.0^^ +~02015~^1^1^~tsp~^2.0^^ +~02015~^2^1^~tbsp~^6.3^^ +~02016~^1^1^~tsp~^2.1^^ +~02016~^2^1^~tbsp~^6.6^^ +~02017~^1^1^~tsp~^1.0^^ +~02017~^2^1^~tbsp~^3.1^^ +~02018~^1^1^~tsp, whole~^2.0^^ +~02018~^2^1^~tbsp, whole~^5.8^^ +~02019~^1^1^~tsp~^3.7^^ +~02019~^2^1^~tbsp~^11.1^^ +~02020~^1^1^~tsp~^3.1^50^.06 +~02020~^2^1^~tbsp~^9.7^20^.07 +~02021~^1^1^~tsp~^1.8^33^ +~02021~^2^1^~tbsp~^5.2^30^.15 +~02022~^1^1^~tsp~^1.7^^ +~02022~^2^1^~tbsp~^5.3^^ +~02023~^1^1^~tsp~^0.6^^ +~02023~^2^1^~tbsp~^1.7^^ +~02024~^1^1^~tsp~^2.0^3^.115 +~02024~^2^1^~tbsp~^6.3^60^.46 +~02025~^1^1^~tsp~^2.2^^ +~02025~^2^1^~tbsp~^7.0^^ +~02026~^1^1^~tsp~^2.4^10^.04 +~02026~^2^1^~tbsp~^6.9^10^.12 +~02027~^1^1^~tsp, leaves~^1.0^10^.03 +~02027~^2^1^~tsp, ground~^1.8^10^.05 +~02028~^1^1^~tsp~^2.3^23^ +~02028~^2^1^~tbsp~^6.8^20^.19 +~02029~^1^1^~tsp~^0.5^13^ +~02029~^2^1^~tbsp~^1.6^30^.16 +~02030~^1^1^~tsp, ground~^2.3^63^ +~02030~^2^1^~tbsp, ground~^6.9^60^ +~02030~^3^1^~tsp, whole~^2.9^3^.1 +~02030~^4^1^~dash~^0.1^^ +~02031~^1^1^~tsp~^1.8^^ +~02031~^2^1^~tbsp~^5.3^^ +~02032~^1^1^~tsp, ground~^2.4^^ +~02032~^2^1^~tbsp, ground~^7.1^^ +~02033~^1^1^~tsp~^2.8^^ +~02033~^2^1^~tbsp~^8.8^40^.32 +~02034~^1^1^~tsp~^1.5^20^.07 +~02034~^2^1^~tbsp~^4.4^20^.19 +~02035~^1^1^~tsp~^1.7^^ +~02035~^2^1^~tbsp~^5.6^^ +~02036~^1^1^~tsp~^1.2^^ +~02036~^2^1^~tbsp~^3.3^^ +~02037~^1^1^~tsp~^0.7^^ +~02037~^2^1^~tbsp~^2.1^^ +~02038~^1^1^~tsp~^0.7^^ +~02038~^2^1^~tbsp~^2.0^^ +~02039~^1^1^~tsp~^1.4^^ +~02039~^2^1^~tbsp~^4.4^^ +~02041~^1^1^~tsp, leaves~^0.6^10^.03 +~02041~^2^1^~tbsp, leaves~^1.8^30^.08 +~02041~^3^1^~tsp, ground~^1.6^^ +~02041~^4^1^~tbsp, ground~^4.8^^ +~02042~^1^1^~tsp, leaves~^1.0^30^.06 +~02042~^2^1^~tbsp, leaves~^2.7^30^.17 +~02042~^3^1^~tsp, ground~^1.4^^ +~02042~^4^1^~tbsp, ground~^4.3^^ +~02043~^1^1^~tsp~^3.0^20^.06 +~02043~^2^1^~tbsp~^9.4^20^.16 +~02044~^1^5^~leaves~^2.5^^ +~02044~^2^2^~tbsp, chopped~^5.3^^ +~02044~^3^.25^~cup leaves, whole~^6.0^12^1.021 +~02045~^1^5^~sprigs~^1.0^^ +~02045~^2^1^~cup sprigs~^8.9^^ +~02046~^1^1^~tsp or 1 packet~^5.0^^ +~02046~^2^1^~cup~^249^34^5.448 +~02047~^1^1^~tsp~^6.0^^ +~02047~^2^1^~tbsp~^18^^ +~02047~^3^1^~cup~^292^^ +~02047~^4^1^~dash~^0.4^^ +~02048~^1^1^~tbsp~^14.9^^ +~02048~^2^1^~cup~^239^^ +~02048~^3^1^~tsp~^5.0^23^.785 +~02049~^1^1^~tsp~^0.8^^ +~02049~^2^.5^~tsp~^0.4^^ +~02050~^1^1^~tsp~^4.2^^ +~02050~^2^1^~tbsp~^13.0^^ +~02050~^3^1^~cup~^208^^ +~02051~^1^1^~tsp~^4.2^^ +~02051~^2^1^~tbsp~^13.0^^ +~02052~^1^1^~tsp~^4.2^^ +~02052~^2^1^~tbsp~^13.0^^ +~02053~^1^1^~tbsp~^14.9^^ +~02053~^2^1^~cup~^238^^ +~02053~^3^1^~tsp~^5.0^^ +~02054~^1^1^~tbsp, drained~^8.6^^ +~02055~^1^1^~tsp~^5.0^^ +~02055~^2^1^~tbsp~^15.0^^ +~02063~^1^1^~tsp~^0.7^^ +~02063~^2^1^~tbsp~^1.7^^ +~02064~^1^2^~leaves~^0.1^^ +~02064~^2^2^~tbsp~^3.2^^ +~02065~^1^2^~leaves~^0.3^^ +~02065~^2^2^~tbsp~^11.4^^ +~02066~^1^1^~tsp~^0.5^^ +~02066~^2^1^~tbsp~^1.6^^ +~02068~^1^1^~tbsp~^14.9^^ +~02068~^2^1^~cup~^239^^ +~02068~^3^1^~tsp~^5.0^^ +~02069~^1^1^~tbsp~^16^^ +~02069~^2^1^~cup~^255^^ +~02069~^3^1^~tsp~^5.3^^ +~02073~^1^2^~tbsp (1 serving)~^5.3^1^ +~02074~^1^.25^~tsp~^1.0^1^ +~02075~^1^2^~tsp~^5.7^3^.577 +~02076~^1^1.33^~tbsp~^9.0^2^ +~03001~^1^1^~packet~^28^^ +~03002~^1^1^~tbsp~^14.7^13^ +~03002~^2^1^~oz~^28.35^1^ +~03002~^3^1^~jar~^71^4^0 +~03003~^1^1^~oz~^28.35^1^ +~03003~^2^1^~tbsp~^14.7^13^ +~03003~^3^1^~jar~^71^4^0 +~03005~^1^1^~tbsp~^16^8^1.569 +~03005~^2^1^~oz~^28.35^^ +~03005~^3^1^~jar~^71^^ +~03007~^1^1^~oz~^28.35^^ +~03007~^2^1^~jar~^71^^ +~03008~^1^1^~tbsp~^15.0^^ +~03008~^2^1^~oz~^28.35^^ +~03008~^3^1^~jar~^71^^ +~03008~^4^1^~jar Gerber Second Foods (2.5 oz)~^71^^ +~03009~^1^1^~oz~^28.35^^ +~03009~^2^1^~jar~^71^^ +~03010~^1^1^~tbsp~^22^7^ +~03010~^2^1^~oz~^28.35^1^ +~03010~^3^1^~jar~^71^4^0 +~03010~^4^1^~container~^70^10^ +~03011~^1^1^~oz~^28.35^^ +~03011~^2^1^~jar~^71^^ +~03012~^1^1^~tbsp~^15.0^^ +~03012~^2^1^~oz~^28.35^^ +~03012~^3^1^~jar~^71^^ +~03012~^4^1^~jar Beech-Nut Stage 1 (2.5 oz)~^71^^ +~03012~^5^1^~jar Gerber Second Foods (2.5 oz)~^71^^ +~03012~^6^1^~jar Heinz Strained-2 (2.5 oz)~^71^^ +~03013~^1^1^~tbsp~^15.0^^ +~03013~^2^1^~oz~^28.35^^ +~03013~^3^1^~jar~^71^^ +~03013~^4^1^~jar Gerber Third Foods (2.5 oz)~^71^^ +~03013~^5^1^~jar Heinz Junior-3 (2.5 oz)~^71^^ +~03014~^1^1^~stick~^10.0^^ +~03014~^2^1^~jar~^71^^ +~03014~^3^1^~jar Gerber Graduate (2.5 oz)~^71^^ +~03015~^1^1^~tbsp~^15.0^^ +~03015~^2^1^~oz~^28.35^^ +~03015~^3^1^~jar~^71^^ +~03015~^4^1^~jar Beech-Nut Stage 1 (2.5 oz)~^71^^ +~03015~^5^1^~jar Gerber Second Foods (2.5 oz)~^71^^ +~03015~^6^1^~jar Heinz Strained-2 (2.5 oz)~^71^^ +~03016~^1^1^~tbsp~^19^12^3.629 +~03016~^2^1^~container~^68^12^1.792 +~03017~^1^1^~stick~^10.0^^ +~03017~^2^1^~jar~^71^^ +~03017~^3^1^~jar Gerber Graduate (2.5 oz)~^71^^ +~03019~^1^1^~bar~^9.9^^ +~03021~^1^1^~stick~^10.0^^ +~03021~^2^1^~jar~^71^^ +~03021~^3^1^~jar Gerber Graduate (2.5 oz)~^71^^ +~03024~^1^1^~serving~^113^^ +~03041~^1^1^~oz~^28.35^^ +~03041~^2^1^~jar~^113^^ +~03042~^1^1^~oz~^28.35^^ +~03042~^2^1^~jar~^170^^ +~03043~^1^1^~oz~^28.35^^ +~03043~^2^1^~jar~^170^^ +~03044~^1^1^~tbsp~^16^^ +~03044~^2^1^~oz~^28.35^^ +~03044~^3^1^~jar~^113^^ +~03044~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03044~^5^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03044~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03045~^1^1^~tbsp~^16^^ +~03045~^2^1^~oz~^28.35^^ +~03045~^3^1^~jar~^170^^ +~03045~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03045~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03046~^1^1^~tbsp~^16^^ +~03046~^2^1^~piece~^8.0^^ +~03047~^1^1^~tbsp~^16^^ +~03047~^2^1^~oz~^28.35^^ +~03047~^3^1^~jar~^113^^ +~03047~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03047~^5^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03047~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03048~^1^1^~container~^113^^ +~03049~^1^1^~oz~^28.35^^ +~03049~^2^1^~jar~^170^^ +~03050~^1^1^~tbsp~^16^^ +~03050~^2^1^~oz~^28.35^^ +~03050~^3^1^~jar~^170^^ +~03050~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03050~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03050~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03051~^1^1^~oz~^28.35^^ +~03051~^2^1^~jar~^170^^ +~03052~^1^1^~oz~^28.35^^ +~03052~^2^1^~jar~^170^^ +~03052~^3^1^~jar Beech-Nut Table Time (6 oz)~^170^^ +~03053~^1^1^~cup~^256^^ +~03053~^2^1^~tbsp~^16^^ +~03053~^3^1^~oz~^28.35^^ +~03053~^4^1^~jar~^113^^ +~03053~^5^1^~jar Earth's Best (4.5 oz)~^128^^ +~03053~^6^1^~jar Gerber Second Food (4 oz)~^113^^ +~03053~^7^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03053~^8^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03054~^1^1^~cup~^256^^ +~03054~^2^1^~tbsp~^16^^ +~03054~^3^1^~oz~^28.35^^ +~03054~^4^1^~jar~^170^^ +~03054~^5^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03054~^6^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03054~^7^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03055~^1^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03059~^1^1^~cup~^256^^ +~03059~^2^1^~tbsp~^16^^ +~03059~^3^1^~oz~^28.35^^ +~03059~^4^1^~jar~^113^^ +~03059~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03059~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03061~^1^1^~cup~^256^^ +~03061~^2^1^~tbsp~^16^^ +~03061~^3^1^~oz~^28.35^^ +~03061~^4^1^~jar~^113^^ +~03061~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03061~^6^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03061~^7^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03062~^1^1^~cup~^256^^ +~03062~^2^1^~tbsp~^16^^ +~03062~^3^1^~oz~^28.35^^ +~03062~^4^1^~jar~^170^^ +~03062~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03062~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03066~^1^1^~cup~^256^^ +~03066~^2^1^~tbsp~^16^^ +~03066~^3^1^~oz~^28.35^^ +~03066~^4^1^~jar~^113^^ +~03066~^5^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03066~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03067~^1^1^~oz~^28.35^^ +~03067~^2^1^~jar~^170^^ +~03068~^1^1^~tbsp~^16^^ +~03068~^2^1^~oz~^28.35^^ +~03068~^3^1^~jar~^113^^ +~03068~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03068~^5^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03068~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03069~^1^1^~tbsp~^16^^ +~03069~^2^1^~oz~^28.35^^ +~03069~^3^1^~jar~^170^^ +~03069~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03069~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03069~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03070~^1^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03070~^2^1^~tbsp~^16^^ +~03070~^3^1^~oz~^28.35^^ +~03070~^4^1^~jar~^113^^ +~03070~^5^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03072~^1^1^~tbsp~^16^^ +~03072~^2^1^~oz~^28.35^^ +~03072~^3^1^~jar~^170^^ +~03072~^4^1^~jar~^170^^ +~03073~^1^1^~cup~^256^^ +~03073~^2^1^~tbsp~^16^^ +~03073~^3^1^~oz~^28.35^^ +~03073~^4^1^~jar~^113^^ +~03073~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03073~^6^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03073~^7^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03075~^1^1^~oz~^28.35^^ +~03075~^2^1^~jar~^113^^ +~03076~^1^1^~oz~^28.35^^ +~03076~^2^1^~jar~^170^^ +~03077~^1^1^~jar, Gerber (4 oz)~^113^^ +~03079~^1^1^~oz~^28.35^^ +~03079~^2^1^~jar~^113^^ +~03081~^1^1^~oz~^28.35^^ +~03081~^2^1^~jar~^170^^ +~03082~^1^1^~tbsp~^16^^ +~03082~^2^1^~oz~^28.35^^ +~03082~^3^1^~jar~^113^^ +~03082~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03082~^5^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03082~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03083~^1^1^~tbsp~^16^^ +~03083~^2^1^~oz~^28.35^^ +~03083~^3^1^~jar~^170^^ +~03083~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03083~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03083~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03084~^1^1^~cup~^256^^ +~03084~^2^1^~tbsp~^16^^ +~03084~^3^1^~oz~^28.35^^ +~03084~^4^1^~jar~^113^^ +~03084~^5^1^~jar Earth's Best (4.5 oz)~^113^^ +~03084~^6^1^~jar Gerber Second Food (4 oz)~^113^^ +~03085~^1^1^~cup~^256^^ +~03085~^2^1^~tbsp~^16^^ +~03085~^3^1^~oz~^28.35^^ +~03085~^4^1^~jar~^170^^ +~03085~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03089~^1^1^~oz~^28.35^^ +~03089~^2^1^~jar~^113^^ +~03090~^1^1^~oz~^28.35^^ +~03090~^2^1^~jar~^170^^ +~03091~^1^1^~cup~^240^^ +~03091~^2^1^~tbsp~^15.0^^ +~03091~^3^1^~oz~^28.35^^ +~03091~^4^1^~jar~^113^^ +~03091~^5^1^~jar Beech-Nut Stage I (4 oz)~^113^^ +~03091~^6^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~03091~^7^1^~jar Gerber Second Food (4 oz)~^113^^ +~03091~^8^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03091~^9^1^~jar Heinz Beginner-1 (2.5 oz)~^71^^ +~03092~^1^1^~cup~^240^^ +~03092~^2^1^~tbsp~^15.0^^ +~03092~^3^1^~oz~^28.35^^ +~03092~^4^1^~jar~^170^^ +~03092~^5^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03093~^1^1^~oz~^28.35^^ +~03093~^2^1^~jar~^128^^ +~03096~^1^1^~jar, Gerber (4 oz)~^113^^ +~03098~^1^1^~cup~^224^^ +~03098~^2^1^~tbsp~^14.0^^ +~03098~^3^1^~oz~^28.35^^ +~03098~^4^1^~jar~^113^^ +~03098~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03098~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03099~^1^1^~cup~^224^^ +~03099~^2^1^~tbsp~^14.0^^ +~03099~^3^1^~oz~^28.35^^ +~03099~^4^1^~jar~^113^^ +~03099~^5^1^~jar Beech-Nut Baby's First (2.5 oz)~^71^^ +~03099~^6^1^~jar Beech-Nut Stage I (4 oz)~^113^^ +~03099~^7^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~03099~^8^1^~jar Earth's Best (4.5 oz)~^128^^ +~03099~^9^1^~jar Gerber Second Food (4 oz)~^113^^ +~03099~^10^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03099~^11^1^~jar Heinz Beginner-1 (2.5 oz)~^71^^ +~03100~^1^1^~cup~^224^^ +~03100~^2^1^~tbsp~^14.0^^ +~03100~^3^1^~oz~^28.35^^ +~03100~^4^1^~jar~^170^^ +~03100~^5^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03100~^6^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03100~^7^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03104~^1^1^~tbsp~^16^9^1.01 +~03104~^2^1^~oz~^28.35^1^ +~03104~^3^1^~jar~^113^8^23.835 +~03105~^1^1^~tbsp~^16^9^1.01 +~03105~^2^1^~oz~^28.35^1^ +~03105~^3^1^~jar~^99^8^23.835 +~03105~^4^1^~container~^67^8^2.029 +~03108~^1^1^~cup~^224^^ +~03108~^2^1^~tbsp~^14.0^^ +~03108~^3^1^~oz~^28.35^^ +~03108~^4^1^~jar~^113^^ +~03108~^5^1^~jar Beech-Nut Baby's First (2.5 oz)~^71^^ +~03108~^6^1^~jar Beech-Nut Stage I (4 oz)~^113^^ +~03108~^7^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~03108~^8^1^~jar Earth's Best (4.5 oz)~^128^^ +~03108~^9^1^~jar Gerber Second Food (4 oz)~^113^^ +~03108~^10^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03108~^11^1^~jar Heinz Beginner-1 (2.5 oz)~^71^^ +~03109~^1^1^~cup~^224^^ +~03109~^2^1^~tbsp~^14.0^^ +~03109~^3^1^~oz~^28.35^^ +~03109~^4^1^~jar~^170^^ +~03109~^5^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03109~^6^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03109~^7^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03112~^1^1^~cup~^163^^ +~03112~^2^1^~tbsp~^10.0^^ +~03112~^3^1^~jar Gerber Graduate (4.5 oz)~^71^^ +~03114~^1^1^~jar, Gerber (4 oz)~^113^^ +~03115~^1^1^~oz~^28.35^^ +~03116~^1^1^~tbsp~^16^^ +~03116~^2^1^~oz~^28.35^^ +~03116~^3^1^~jar~^113^^ +~03116~^4^1^~jar Beech-Nut Baby's First (2.5 oz)~^71^^ +~03116~^5^1^~jar Beech-Nut Stage I (4 oz)~^113^^ +~03116~^6^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~03116~^7^1^~jar Earth's Best (4.5 oz)~^128^^ +~03116~^8^1^~jar Gerber Second Food (4 oz)~^113^^ +~03116~^9^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03116~^10^1^~jar Heinz Beginner-1 (2.5 oz)~^71^^ +~03117~^1^1^~tbsp~^16^^ +~03117~^2^1^~oz~^28.35^^ +~03117~^3^1^~jar~^170^^ +~03117~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03117~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03117~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03118~^1^1^~tbsp~^15.0^^ +~03118~^2^1^~oz~^28.35^^ +~03118~^3^1^~jar~^113^^ +~03118~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03118~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~03119~^1^1^~jar~^113^^ +~03119~^2^1^~tbsp~^15.0^^ +~03119~^3^1^~oz~^28.35^^ +~03119~^4^1^~cup~^240^^ +~03119~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03119~^6^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03119~^7^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03120~^1^1^~cup~^240^^ +~03120~^2^1^~tbsp~^15.0^^ +~03120~^3^1^~oz~^28.35^^ +~03120~^4^1^~jar~^170^^ +~03120~^5^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03121~^1^1^~tbsp~^16^13^ +~03121~^2^1^~oz~^28.35^1^ +~03121~^3^1^~jar~^95^7^22.45 +~03121~^4^1^~cup~^240^1^ +~03121~^5^1^~container~^91^12^21.176 +~03122~^1^1^~oz~^28.35^^ +~03127~^1^1^~cup~^240^^ +~03127~^2^1^~tbsp~^15.0^^ +~03127~^3^1^~oz~^28.35^^ +~03127~^4^1^~jar~^113^^ +~03127~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03128~^1^1^~tbsp~^15.0^^ +~03128~^2^1^~oz~^28.35^^ +~03128~^3^1^~jar~^170^^ +~03128~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03128~^5^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03129~^1^1^~tbsp~^15.0^^ +~03129~^2^1^~oz~^28.35^^ +~03129~^3^1^~jar~^113^^ +~03129~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03129~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~03130~^1^1^~tbsp~^17^13^.722 +~03130~^2^1^~oz~^28.35^1^ +~03130~^3^1^~jar~^95^7^22.45 +~03130~^4^1^~container~^67^12^2.853 +~03131~^1^1^~tbsp~^17^13^.722 +~03131~^2^1^~oz~^28.35^1^ +~03131~^3^1^~jar~^95^7^22.45 +~03131~^4^1^~container~^67^12^2.853 +~03132~^1^1^~tbsp~^16^^ +~03132~^2^1^~oz~^28.35^^ +~03132~^3^1^~jar~^113^^ +~03132~^4^1^~jar Beech-Nut Baby's First (2.5 oz)~^71^^ +~03132~^5^1^~jar Beech-Nut Stage I (4 oz)~^113^^ +~03132~^6^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~03132~^7^1^~jar Earth's Best (4.5 oz)~^113^^ +~03132~^8^1^~jar Gerber Second Food (4 oz)~^113^^ +~03132~^9^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03132~^10^1^~jar Heinz Beginner-1 (2.5 oz)~^71^^ +~03133~^1^1^~tbsp~^16^^ +~03133~^2^1^~oz~^28.35^^ +~03133~^3^1^~jar~^170^^ +~03133~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03133~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03133~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03134~^1^1^~tbsp~^15.0^^ +~03134~^2^1^~oz~^28.35^^ +~03134~^3^1^~jar~^113^^ +~03134~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03134~^5^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03135~^1^1^~tbsp~^15.0^^ +~03135~^2^1^~oz~^28.35^^ +~03135~^3^1^~jar~^170^^ +~03135~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03136~^1^1^~tbsp~^15.0^^ +~03136~^2^1^~oz~^28.35^^ +~03136~^3^1^~jar~^113^^ +~03136~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03136~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~03137~^1^1^~oz~^28.35^^ +~03137~^2^1^~jar~^170^^ +~03139~^1^1^~tbsp~^15.0^^ +~03139~^2^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~03140~^1^1^~tbsp~^15.0^^ +~03140~^2^1^~oz~^28.35^^ +~03140~^3^1^~jar, Gerber (4 oz)~^113^^ +~03140~^4^1^~jar~^113^^ +~03141~^1^1^~oz~^28.35^^ +~03141~^2^1^~jar Gerber~^128^^ +~03142~^1^1^~tbsp~^16^^ +~03142~^2^1^~oz~^28.35^^ +~03142~^3^1^~jar~^113^^ +~03142~^4^1^~jar Earth's Best (4.5 oz)~^128^^ +~03142~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03142~^6^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03142~^7^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03143~^1^1^~tbsp~^16^^ +~03143~^2^1^~oz~^28.35^^ +~03143~^3^1^~jar~^170^^ +~03143~^4^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03144~^1^1^~oz~^28.35^^ +~03144~^2^1^~jar~^113^^ +~03145~^1^1^~oz~^28.35^^ +~03145~^2^1^~jar~^170^^ +~03147~^1^1^~tbsp~^16^^ +~03147~^2^1^~jar NFS~^170^^ +~03147~^3^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03150~^1^1^~oz~^28.35^^ +~03150~^2^1^~jar~^113^^ +~03151~^1^1^~oz~^28.35^^ +~03151~^2^1^~jar~^170^^ +~03152~^1^1^~oz~^28.35^^ +~03152~^2^1^~jar~^113^^ +~03153~^1^1^~oz~^28.35^^ +~03153~^2^1^~jar~^170^^ +~03154~^1^1^~jar, Gerber (4 oz)~^113^^ +~03156~^1^1^~tbsp~^15.0^^ +~03156~^2^1^~oz~^28.35^^ +~03156~^3^1^~jar~^170^^ +~03156~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03156~^5^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03157~^1^1^~tbsp~^15.0^^ +~03157~^2^1^~oz~^28.35^^ +~03157~^3^1^~jar~^113^^ +~03157~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03157~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~03158~^1^1^~tbsp~^16^^ +~03158~^2^1^~oz~^28.35^^ +~03158~^3^1^~jar~^113^^ +~03158~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03158~^5^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03158~^6^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03159~^1^1^~tbsp~^16^^ +~03159~^2^1^~oz~^28.35^^ +~03159~^3^1^~jar~^170^^ +~03159~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03160~^1^1^~oz~^28.35^^ +~03160~^2^1^~jar~^113^^ +~03161~^1^1^~oz~^28.35^^ +~03161~^2^1^~jar Gerber~^128^^ +~03162~^1^1^~oz~^28.35^^ +~03162~^2^1^~jar~^113^^ +~03163~^1^1^~tbsp~^15.0^^ +~03163~^2^1^~jar NFS~^113^^ +~03163~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~03164~^1^1^~oz~^28.35^^ +~03164~^2^1^~jar~^113^^ +~03165~^1^1^~oz~^28.35^^ +~03165~^2^1^~jar~^170^^ +~03166~^1^1^~fl oz~^31.7^^ +~03166~^2^1^~jar~^127^^ +~03166~^3^1^~bottle Earth's Best (4.2 fl oz)~^131^^ +~03166~^4^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~03166~^5^1^~bottle Gerber First Food (4 fl oz)~^125^^ +~03166~^6^1^~bottle Beech-Nut Stage I (4 fl oz)~^125^^ +~03167~^1^1^~fl oz~^31.2^^ +~03167~^2^1^~bottle Earth's Best (4.2 fl oz)~^131^^ +~03167~^3^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~03167~^4^1^~bottle NFS~^125^^ +~03167~^5^1^~bottle Beech-Nut Stage 2 (4 fl oz)~^125^^ +~03167~^6^1^~bottle Gerber Second Foods (4 fl oz)~^125^^ +~03168~^1^1^~fl oz~^31.2^^ +~03168~^2^1^~jar~^127^^ +~03169~^1^1^~fl oz~^31.2^1^ +~03170~^1^1^~fl oz~^31.2^^ +~03170~^2^1^~jar~^127^^ +~03171~^1^1^~fl oz~^31.2^^ +~03171~^2^1^~jar~^127^^ +~03171~^3^1^~bottle (4 fl oz)~^125^^ +~03172~^1^1^~fl oz~^31.2^^ +~03172~^2^1^~jar~^127^^ +~03172~^3^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~03172~^4^1^~bottle Gerber Second Foods (4 fl oz)~^125^^ +~03172~^5^1^~bottle Beech-Nut Stage 3 (4 fl oz)~^125^^ +~03173~^1^1^~fl oz~^31.2^^ +~03173~^2^1^~jar~^127^^ +~03174~^1^1^~fl oz~^31.2^^ +~03174~^2^1^~jar~^127^^ +~03174~^3^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~03175~^1^1^~fl oz~^31.2^^ +~03175~^2^1^~jar~^127^^ +~03176~^1^1^~fl oz~^31.2^^ +~03176~^2^1^~jar~^127^^ +~03177~^1^1^~fl oz~^31.2^^ +~03177~^2^1^~jar~^127^^ +~03178~^1^1^~fl oz~^31.2^^ +~03178~^2^1^~jar~^127^^ +~03179~^1^1^~fl oz~^31.2^^ +~03179~^2^1^~jar~^127^^ +~03179~^3^1^~bottle (4 fl oz)~^125^^ +~03181~^1^1^~tbsp~^2.4^^ +~03181~^2^.5^~oz~^15.0^^ +~03184~^1^.5^~oz~^15.0^^ +~03185~^1^1^~tbsp~^2.5^^ +~03185~^2^.5^~oz~^15.0^^ +~03186~^1^1^~tbsp~^2.5^^ +~03186~^2^.5^~oz~^15.0^^ +~03187~^1^1^~oz~^28.35^^ +~03187~^2^1^~jar~^113^^ +~03188~^1^1^~oz~^28.35^^ +~03188~^2^1^~jar~^170^^ +~03189~^1^1^~tbsp~^3.2^5^.466 +~03189~^2^.5^~oz~^15.0^1^ +~03189~^3^.25^~cup~^12.2^4^.386 +~03189~^4^1^~box~^223^4^5.393 +~03190~^1^1^~tbsp~^2.5^^ +~03190~^2^.5^~oz~^15.0^^ +~03191~^1^1^~oz~^28.35^^ +~03191~^2^1^~jar~^113^^ +~03192~^1^1^~oz~^28.35^^ +~03192~^2^1^~jar~^170^^ +~03193~^1^1^~tbsp~^2.4^^ +~03193~^2^.5^~oz~^14.2^^ +~03194~^1^1^~tbsp~^2.5^^ +~03194~^2^.5^~oz~^15.0^^ +~03195~^1^1^~tbsp~^16^^ +~03195~^2^1^~oz~^28.35^^ +~03195~^3^1^~jar~^113^^ +~03195~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03195~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~03197~^1^1^~oz~^28.35^^ +~03197~^2^1^~jar~^113^^ +~03198~^1^1^~oz~^28.35^^ +~03198~^2^1^~jar~^170^^ +~03199~^1^1^~oz~^28.35^^ +~03199~^2^1^~jar~^113^^ +~03201~^1^1^~oz~^28.35^^ +~03201~^2^1^~jar~^170^^ +~03205~^1^1^~tbsp~^5.3^^ +~03205~^2^1^~packet (.75 oz)~^21^^ +~03206~^1^1^~cookie~^8.0^^ +~03209~^1^1^~cracker~^0.7^^ +~03211~^1^1^~tbsp~^2.4^^ +~03211~^2^.5^~oz~^14.2^^ +~03212~^1^1^~tbsp~^2.5^^ +~03212~^2^.5^~oz~^15.0^^ +~03213~^1^1^~oz~^28.35^^ +~03213~^2^1^~cookie~^6.5^^ +~03214~^1^1^~oz~^28.35^^ +~03214~^2^1^~cookie~^5.0^^ +~03215~^1^1^~oz~^28.35^^ +~03215~^2^1^~pretzel~^6.0^^ +~03216~^1^1^~oz~^28.35^^ +~03216~^2^1^~biscuit~^11.0^^ +~03217~^1^1^~oz~^28.35^^ +~03217~^2^1^~piece~^7.0^^ +~03217~^3^1^~rusk~^10.0^^ +~03217~^4^1^~toast, Gerber Zwieback~^7.0^^ +~03220~^1^1^~oz~^28.35^^ +~03220~^2^1^~jar~^113^^ +~03221~^1^1^~oz~^28.35^^ +~03221~^2^1^~jar~^170^^ +~03222~^1^1^~oz~^28.35^^ +~03224~^1^1^~oz~^28.35^^ +~03224~^2^1^~jar~^113^^ +~03225~^1^1^~oz~^28.35^^ +~03225~^2^1^~jar~^170^^ +~03226~^1^1^~oz~^28.35^^ +~03226~^2^1^~jar~^113^^ +~03227~^1^1^~tbsp~^15.0^^ +~03227~^2^1^~oz~^28.35^^ +~03227~^3^1^~jar~^113^^ +~03227~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03227~^5^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03228~^1^1^~tbsp~^15.0^^ +~03228~^2^1^~oz~^28.35^^ +~03228~^3^1^~jar~^220^^ +~03228~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03229~^1^1^~oz~^28.35^^ +~03229~^2^1^~jar~^113^^ +~03230~^1^1^~oz~^28.35^^ +~03230~^2^1^~jar~^220^^ +~03233~^1^1^~tbsp~^15.0^^ +~03233~^2^1^~oz~^28.35^^ +~03233~^3^1^~jar~^113^^ +~03233~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03235~^1^1^~tbsp~^15.0^^ +~03235~^2^1^~oz~^28.35^^ +~03235~^3^1^~jar~^113^^ +~03235~^4^1^~jar Gerber Second Food (4 oz)~^113^^ +~03235~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~03236~^1^1^~tbsp~^15.0^^ +~03236~^2^1^~oz~^28.35^^ +~03236~^3^1^~jar~^170^^ +~03236~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03236~^5^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03238~^1^1^~oz~^28.35^^ +~03238~^2^1^~jar~^113^^ +~03245~^1^1^~cup~^229^^ +~03245~^2^1^~tbsp~^14.0^^ +~03245~^3^1^~oz~^28.35^^ +~03245~^4^1^~jar~^113^^ +~03245~^5^1^~jar Gerber Second Food (4 oz)~^113^^ +~03245~^6^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03245~^7^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03246~^1^1^~cup~^229^^ +~03246~^2^1^~tbsp~^14.0^^ +~03246~^3^1^~oz~^28.35^^ +~03246~^4^1^~jar~^170^^ +~03246~^5^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03246~^6^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03246~^7^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03265~^1^1^~fl oz~^31.2^^ +~03265~^2^1^~jar~^127^^ +~03265~^3^1^~bottle Earth's Best (4.2 fl oz)~^131^^ +~03265~^4^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~03265~^5^1^~bottle Beech-Nut Stage 2 (4 fl oz)~^125^^ +~03265~^6^1^~bottle Gerber Second Foods (4 fl oz)~^125^^ +~03267~^1^1^~fl oz~^31.2^^ +~03268~^1^1^~fl oz~^31.2^^ +~03268~^2^1^~jar~^127^^ +~03269~^1^1^~serving~^189^^ +~03274~^1^1^~cup~^256^^ +~03274~^2^1^~tbsp~^16^^ +~03274~^3^1^~oz~^28.35^^ +~03274~^4^1^~jar~^170^^ +~03274~^5^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03274~^6^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03278~^1^1^~oz~^28.35^^ +~03278~^2^1^~jar~^113^^ +~03279~^1^1^~serving~^99^^ +~03280~^1^1^~tbsp~^15.0^^ +~03280~^2^1^~oz~^28.35^^ +~03280~^3^1^~jar~^170^^ +~03280~^4^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03280~^5^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03282~^1^1^~serving 3.5 oz serving~^99^^ +~03282~^2^1^~tbsp~^15.0^^ +~03282~^3^1^~oz~^28.35^^ +~03282~^4^1^~cup~^240^^ +~03282~^5^1^~package 7 oz~^198^^ +~03283~^1^1^~oz~^28.35^^ +~03283~^2^1^~jar~^113^^ +~03286~^1^1^~oz~^28.35^^ +~03286~^2^1^~jar~^113^^ +~03287~^1^1^~tbsp~^16^^ +~03287~^2^1^~oz~^28.35^^ +~03287~^3^1^~jar~^170^^ +~03287~^4^1^~jar Beech-Nut Stage 3 (6 oz)~^170^^ +~03287~^5^1^~jar Gerber Third Foods (6 oz)~^170^^ +~03287~^6^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~03289~^1^1^~tbsp~^15.0^^ +~03289~^2^1^~jar NFS~^113^^ +~03289~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~03290~^1^1^~tbsp~^15.0^^ +~03290~^2^1^~jar NFS~^113^^ +~03290~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~03293~^1^1^~oz~^28.35^^ +~03293~^2^1^~jar Earth's Best~^113^^ +~03296~^1^1^~oz~^28.35^^ +~03296~^2^1^~jar Beech nut~^170^^ +~03297~^1^1^~oz~^28.35^^ +~03297~^2^1^~jar~^113^^ +~03297~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~03297~^4^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03297~^5^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~03298~^1^1^~tbsp~^29^4^4.181 +~03298~^2^1^~container~^162^3^2.802 +~03301~^1^4^~oz~^113^1^ +~03301~^2^8^~oz~^227^1^ +~03302~^1^1^~serving~^7.0^1^ +~03303~^1^1^~tbsp~^16^^ +~03303~^2^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~03304~^1^1^~oz~^28.35^^ +~03681~^1^1^~oz~^28.35^^ +~03682~^1^1^~oz~^28.35^^ +~03685~^1^1^~oz~^28.35^^ +~03686~^1^1^~oz~^28.35^^ +~03689~^1^1^~oz~^28.35^^ +~03690~^1^1^~oz~^28.35^^ +~03693~^1^1^~oz~^28.35^^ +~03694~^1^1^~oz~^28.35^^ +~03696~^1^1^~oz~^28.35^^ +~03704~^1^1^~oz~^28.35^^ +~03711~^1^1^~oz~^28.35^^ +~03712~^1^1^~oz~^28.35^^ +~03800~^1^1^~fl oz~^30.5^^ +~03801~^1^1^~fl oz~^31.4^^ +~03802~^1^1^~scoop~^8.7^^ +~03803~^1^1^~fl oz~^30.5^^ +~03805~^1^1^~scoop~^8.3^^ +~03806~^1^1^~fl oz~^30.5^^ +~03806~^2^5^~fl oz~^152^^ +~03808~^1^1^~scoop~^8.5^^ +~03809~^1^1^~scoop~^8.3^^ +~03812~^1^1^~fl oz~^31.3^^ +~03813~^1^1^~Serving 100 ml~^107^^ +~03813~^2^1^~fl oz~^30.8^^ +~03814~^1^1^~scoop~^9.6^^ +~03815~^1^1^~serving 100 ml~^106^^ +~03815~^2^1^~fl oz~^30.5^^ +~03816~^1^1^~fl oz~^31.5^^ +~03818~^1^1^~fl oz~^31.3^^ +~03819~^1^1^~scoop~^9.4^^ +~03820~^1^1^~fl oz~^31.0^^ +~03821~^1^1^~scoop~^8.8^^ +~03822~^1^1^~serving 100 ml~^103^^ +~03822~^2^1^~fl oz~^30.8^^ +~03823~^1^1^~Serving 100 ml~^106^^ +~03823~^2^1^~fl oz~^30.5^^ +~03824~^1^1^~fl oz~^30.8^^ +~03825~^1^1^~serving 100 ml~^106^^ +~03825~^2^1^~fl oz~^30.5^^ +~03826~^1^1^~scoop~^8.8^^ +~03827~^1^1^~scoop~^8.5^^ +~03830~^1^1^~fl oz~^31.3^^ +~03832~^1^1^~serving 100 ml~^106^^ +~03832~^2^1^~fl oz~^30.5^^ +~03837~^1^1^~scoop~^8.7^^ +~03838~^1^1^~scoop~^9.0^^ +~03839~^1^1^~fl oz~^30.5^^ +~03840~^1^1^~fl oz~^30.8^^ +~03841~^1^1^~fl oz~^30.5^^ +~03842~^1^1^~fl oz~^31.4^^ +~03843~^1^1^~scoop~^8.7^^ +~03844~^1^1^~fl oz~^31.6^^ +~03845~^1^1^~serving 100 ml~^107^^ +~03845~^2^1^~fl oz~^30.5^^ +~03846~^1^1^~fl oz~^30.5^^ +~03849~^1^1^~scoop~^9.4^^ +~03850~^1^1^~fl oz~^30.4^^ +~03851~^1^1^~fl oz~^31.4^^ +~03852~^1^1^~scoop~^8.8^^ +~03853~^1^1^~scoop~^8.5^^ +~03854~^1^1^~fl oz~^31.3^^ +~03855~^1^1^~fl oz~^31.0^^ +~03856~^1^1^~fl oz~^31.4^^ +~03857~^1^1^~serving 100 ml~^106^^ +~03857~^2^1^~fl oz~^30.5^^ +~03858~^1^1^~scoop~^8.7^^ +~03859~^1^1^~oz~^29^^ +~03860~^1^1^~fl oz~^31.0^^ +~03861~^1^3^~scoop~^28^^ +~03864~^1^1^~serving 100 ml~^103^^ +~03864~^2^1^~fl oz~^30.5^^ +~03867~^1^1^~scoop~^9.4^^ +~03868~^1^1^~fl oz~^30.5^^ +~03869~^1^1^~scoop~^8.5^^ +~03870~^1^1^~fl oz~^31.0^^ +~03900~^1^1^~fl oz~^30.5^^ +~03901~^1^1^~fl oz~^31.9^^ +~03913~^1^1^~scoop~^9.4^^ +~03925~^1^1^~fl oz~^30.5^^ +~03926~^1^1^~fl oz~^31.4^^ +~03928~^1^1^~scoop~^8.5^^ +~03929~^1^1^~scoop~^9.3^^ +~03930~^1^1^~fl oz~^30.5^^ +~03934~^1^1^~oz~^28.35^^ +~03935~^1^1^~fl oz~^30.5^^ +~03936~^1^1^~fl oz~^30.4^^ +~03937~^1^1^~fl oz~^31.4^^ +~03938~^1^1^~scoop~^8.4^^ +~03939~^1^1^~fl oz~^30.4^^ +~03940~^1^1^~fl oz~^31.4^^ +~03941~^1^1^~scoop~^8.7^^ +~03942~^1^1^~serving 100 ml~^106^^ +~03942~^2^1^~fl oz~^30.5^^ +~03943~^1^1^~scoop~^8.7^^ +~03943~^2^1^~serving 100 ml~^106^^ +~03944~^1^1^~fl oz~^30.5^^ +~03945~^1^1^~fl oz~^30.5^^ +~03946~^1^1^~fl oz~^30.5^^ +~03947~^1^1^~fl oz~^30.5^^ +~03948~^1^1^~fl oz~^30.5^^ +~03949~^1^1^~fl oz~^30.4^^ +~03950~^1^1^~scoop~^8.5^^ +~03951~^1^1^~fl oz~^31.4^^ +~03952~^1^1^~fl oz~^31.4^^ +~03953~^1^1^~fl oz~^30.5^^ +~03954~^1^1^~scoop~^8.7^^ +~03955~^1^1^~fl oz~^30.8^^ +~03956~^1^1^~oz~^31^^ +~03956~^2^1^~container~^113^^ +~03957~^1^1^~scoop~^8.7^1^ +~03959~^1^1^~container~^170^^ +~03960~^1^1^~fl oz~^30.5^^ +~03961~^1^1^~fl oz~^31.4^^ +~03963~^1^1^~fl oz~^30.5^^ +~03964~^1^1^~bar~^19^1^ +~03965~^1^1^~tbsp~^16^8^1.569 +~03965~^2^1^~container~^69^8^3.378 +~03966~^1^1^~fl oz~^29.2^^ +~03967~^1^1^~scoop~^8.8^^ +~03968~^1^1^~fl oz~^29.2^^ +~03980~^1^1^~scoop~^8.7^^ +~03981~^1^5^~fl oz~^152^1^ +~03982~^1^1^~fl oz~^30.4^1^ +~03982~^2^5^~fl oz~^152^^ +~03983~^1^1^~fl oz~^30.4^1^ +~03983~^2^5^~fl oz~^152^^ +~03984~^1^1^~fl oz~^30.4^1^ +~03984~^2^5^~fl oz~^152^^ +~03985~^1^1^~fl oz~^30.4^1^ +~03985~^2^5^~fl oz~^152^^ +~03986~^1^1^~fl oz~^30.5^1^ +~03986~^2^5^~fl oz~^152^1^ +~03987~^1^1^~fl oz~^30.4^1^ +~03987~^2^5^~fl oz~^152^^ +~03988~^1^1^~fl oz~^30.4^1^ +~03988~^2^5^~fl oz~^152^^ +~03989~^1^1^~fl oz~^30.4^1^ +~03989~^2^5^~fl oz~^152^^ +~03990~^1^1^~fl oz~^30.4^1^ +~03990~^2^5^~fl oz~^152^^ +~03991~^1^5^~fl oz~^153^1^ +~03992~^1^1^~fl oz~^30.4^^ +~03992~^2^5^~fl oz~^153^1^ +~03993~^1^1^~fl oz~^30.4^1^ +~03993~^2^5^~fl oz~^152^^ +~03994~^1^1^~bottle~^140^1^ +~03995~^1^1^~packet~^99^1^ +~03997~^1^4^~biscuit~^8.0^1^ +~03998~^1^18^~piece~^7.0^1^ +~03999~^1^1^~scoop~^9.5^^ +~04001~^1^1^~tbsp~^12.8^^ +~04001~^2^1^~cup~^205^^ +~04002~^1^1^~tbsp~^12.8^^ +~04002~^2^1^~cup~^205^^ +~04011~^1^1^~tbsp~^15.0^^ +~04013~^1^1^~tbsp~^16^^ +~04014~^1^1^~tbsp~^16^^ +~04015~^1^1^~tbsp~^15^^ +~04015~^2^1^~cup~^245^^ +~04015~^3^1^~serving (2 tbsp)~^30^^ +~04016~^1^1^~tablespoon~^15^^ +~04016~^2^1^~cup~^245^^ +~04017~^1^1^~tbsp~^16^^ +~04017~^2^1^~cup~^250^^ +~04017~^3^1^~serving (2 tbsp)~^30^^ +~04018~^1^1^~tbsp~^14.7^^ +~04018~^2^1^~cup~^235^^ +~04020~^1^1^~tablespoon~^16^^ +~04020~^2^1^~cup~^260^^ +~04020~^3^1^~serving (2 tbsp)~^30^^ +~04021~^1^1^~tablespoon~^15.0^^ +~04021~^2^1^~cup~^240^^ +~04022~^1^1^~tablespoon~^16^^ +~04022~^2^1^~cup~^260^^ +~04023~^1^1^~tablespoon~^15^^ +~04023~^2^1^~cup~^245^^ +~04023~^3^1^~serving (2 tbsp)~^15^^ +~04025~^1^1^~tbsp~^13.8^^ +~04025~^2^1^~cup~^220^^ +~04025~^3^1^~packet~^10.0^^ +~04026~^1^1^~tablespoon~^13.8^^ +~04026~^2^1^~cup~^220^^ +~04027~^1^1^~tbsp~^15.0^^ +~04027~^2^1^~cup~^240^^ +~04028~^1^1^~tablespoon~^15.0^^ +~04028~^2^1^~cup~^240^^ +~04029~^1^1^~tablespoon~^14.1^^ +~04029~^2^1^~cup~^225^^ +~04030~^1^1^~tablespoon~^15^^ +~04030~^2^1^~cup~^245^^ +~04031~^1^1^~tbsp~^12.8^^ +~04031~^2^1^~cup~^205^^ +~04034~^1^1^~tbsp~^13.6^^ +~04034~^2^1^~cup~^218^^ +~04034~^3^1^~tsp~^4.5^^ +~04037~^1^1^~tablespoon~^13.6^^ +~04037~^2^1^~cup~^218^^ +~04037~^3^1^~tsp~^4.5^^ +~04038~^1^1^~tsp~^4.5^^ +~04038~^2^1^~tablespoon~^13.6^^ +~04038~^3^1^~cup~^218^^ +~04042~^1^1^~tbsp~^13.5^^ +~04042~^2^1^~cup~^216^^ +~04042~^3^1^~tsp~^4.5^^ +~04044~^1^1^~tbsp~^13.6^^ +~04044~^2^1^~cup~^218^^ +~04044~^3^1^~tsp~^4.5^^ +~04047~^1^1^~tbsp~^13.6^^ +~04047~^2^1^~cup~^218^^ +~04047~^3^1^~tsp~^4.5^^ +~04053~^1^1^~tablespoon~^13.5^^ +~04053~^2^1^~cup~^216^^ +~04053~^3^1^~tsp~^4.5^^ +~04055~^1^1^~tbsp~^13.6^^ +~04055~^2^1^~cup~^216^^ +~04055~^3^1^~tsp~^4.5^^ +~04058~^1^1^~tablespoon~^13.6^^ +~04058~^2^1^~cup~^218^^ +~04058~^3^1^~tsp~^4.5^^ +~04060~^1^1^~tbsp~^13.6^^ +~04060~^2^1^~cup~^218^^ +~04060~^3^1^~tsp~^4.5^^ +~04073~^1^1^~tsp~^4.7^^ +~04073~^2^1^~stick~^113^^ +~04114~^1^1^~tbsp~^14.7^^ +~04114~^2^1^~cup~^235^^ +~04120~^1^1^~tbsp~^16^^ +~04120~^2^1^~cup~^250^^ +~04128~^1^1^~tbsp~^14.9^16^1.399 +~04128~^2^1^~cup~^232^^ +~04128~^3^1^~tsp~^4.8^^ +~04133~^1^1^~tablespoon~^14.0^^ +~04133~^2^1^~cup~^220^^ +~04135~^1^1^~tablespoon~^16^^ +~04135~^2^1^~cup~^250^^ +~04141~^1^1^~tablespoon~^15.0^^ +~04142~^1^1^~tablespoon~^16^^ +~04142~^2^1^~cup~^260^^ +~04143~^1^1^~tablespoon~^14.7^^ +~04143~^2^1^~cup~^235^^ +~04144~^1^1^~tablespoon~^15.0^^ +~04144~^2^1^~cup~^240^^ +~04145~^1^1^~tablespoon~^13.8^^ +~04145~^2^1^~cup~^220^^ +~04146~^1^1^~tablespoon~^14.0^^ +~04146~^2^1^~cup~^220^^ +~04367~^1^1^~tablespoon~^16^^ +~04367~^2^1^~cup~^256^^ +~04501~^1^1^~tablespoon~^13.6^^ +~04501~^2^1^~cup~^218^^ +~04501~^3^1^~tsp~^4.5^^ +~04502~^1^1^~tablespoon~^13.6^^ +~04502~^2^1^~cup~^218^^ +~04502~^3^1^~tsp~^4.5^^ +~04506~^1^1^~tbsp~^13.6^^ +~04506~^2^1^~cup~^218^^ +~04506~^3^1^~tsp~^4.5^^ +~04510~^1^1^~tbsp~^13.6^^ +~04510~^2^1^~cup~^218^^ +~04510~^3^1^~tsp~^4.5^^ +~04511~^1^1^~tablespoon~^13.6^^ +~04511~^2^1^~cup~^218^^ +~04511~^3^1^~tsp~^4.5^^ +~04513~^1^1^~tablespoon~^13.6^^ +~04513~^2^1^~cup~^218^^ +~04513~^3^2^~tbsp (1/8 cup)~^27^^ +~04514~^1^1^~tablespoon~^13.6^^ +~04514~^2^1^~cup~^218^^ +~04514~^3^1^~tsp~^4.5^^ +~04515~^1^1^~tablespoon~^13.6^^ +~04515~^2^1^~cup~^218^^ +~04515~^3^1^~tsp~^4.5^^ +~04516~^1^1^~tablespoon~^13.6^^ +~04516~^2^1^~cup~^218^^ +~04516~^3^1^~tsp~^4.5^^ +~04517~^1^1^~tablespoon~^13.6^^ +~04517~^2^1^~cup~^218^^ +~04517~^3^1^~tsp~^4.5^^ +~04518~^1^1^~tbsp~^13.6^^ +~04518~^2^1^~cup~^218^^ +~04518~^3^1^~tsp~^4.5^^ +~04520~^1^1^~tbsp~^12.8^^ +~04520~^2^1^~cup~^205^^ +~04528~^1^1^~tbsp~^13.6^^ +~04528~^2^1^~cup~^218^^ +~04528~^3^1^~tsp~^4.5^^ +~04529~^1^1^~tablespoon~^13.6^^ +~04529~^2^1^~cup~^218^^ +~04529~^3^1^~tsp~^4.5^^ +~04530~^1^1^~tablespoon~^13.6^^ +~04530~^2^1^~cup~^218^^ +~04530~^3^1^~tsp~^4.5^^ +~04531~^1^1^~tablespoon~^13.6^^ +~04531~^2^1^~cup~^218^^ +~04531~^3^1^~tsp~^4.5^^ +~04532~^1^1^~tablespoon~^13.6^^ +~04532~^2^1^~cup~^218^^ +~04532~^3^1^~tsp~^4.5^^ +~04534~^1^1^~tbsp~^13.6^^ +~04534~^2^1^~cup~^218^^ +~04534~^3^1^~tsp~^4.5^^ +~04536~^1^1^~tablespoon~^13.6^^ +~04536~^2^1^~cup~^218^^ +~04536~^3^1^~tsp~^4.5^^ +~04539~^1^1^~tbsp~^15^^ +~04539~^2^1^~cup~^245^^ +~04541~^1^1^~tablespoon~^13.6^^ +~04541~^2^1^~cup~^218^^ +~04541~^3^1^~tsp~^4.5^^ +~04542~^1^1^~tbsp~^12.8^^ +~04542~^2^1^~cup~^205^^ +~04543~^1^1^~tablespoon~^13.6^^ +~04543~^2^1^~cup~^218^^ +~04543~^3^1^~tsp~^4.5^^ +~04544~^1^1^~tablespoon~^12.8^^ +~04544~^2^1^~cup~^205^^ +~04545~^1^1^~tbsp~^13.6^^ +~04545~^2^1^~cup~^218^^ +~04545~^3^1^~tsp~^4.5^^ +~04546~^1^1^~tablespoon~^12.8^^ +~04546~^2^1^~cup~^205^^ +~04548~^1^1^~tbsp~^12.8^^ +~04548~^2^1^~cup~^205^^ +~04549~^1^1^~tbsp~^12.8^^ +~04549~^2^1^~cup~^205^^ +~04550~^1^1^~tbsp~^12.8^^ +~04550~^2^1^~cup~^205^^ +~04551~^1^1^~tbsp~^12.8^^ +~04551~^2^1^~cup~^205^^ +~04554~^1^1^~tbsp~^12.8^^ +~04554~^2^1^~cup~^205^^ +~04556~^1^1^~tbsp~^12.8^^ +~04556~^2^1^~cup~^205^^ +~04559~^1^1^~tbsp~^12.8^^ +~04559~^2^1^~cup~^205^^ +~04560~^1^1^~tbsp~^12.8^^ +~04560~^2^1^~cup~^205^^ +~04570~^1^1^~tbsp~^13.6^^ +~04570~^2^1^~cup~^218^^ +~04572~^1^1^~tbsp~^13.6^^ +~04572~^2^1^~cup~^218^^ +~04572~^3^1^~tsp~^4.5^^ +~04573~^1^1^~tbsp~^13.6^^ +~04573~^2^1^~cup~^218^^ +~04573~^3^1^~tsp~^4.5^^ +~04574~^1^1^~tbsp~^12.8^^ +~04574~^2^1^~cup~^205^^ +~04575~^1^1^~tbsp~^12.8^^ +~04575~^2^1^~tsp~^4.3^^ +~04575~^3^1^~cup~^205^^ +~04576~^1^1^~tbsp~^12.8^^ +~04576~^2^1^~cup~^205^^ +~04581~^1^1^~tbsp~^14.0^^ +~04581~^2^1^~cup~^218^^ +~04581~^3^1^~tsp~^4.5^^ +~04582~^1^1^~tbsp~^14.0^^ +~04582~^2^1^~cup~^218^^ +~04582~^3^1^~tsp~^4.5^^ +~04583~^1^1^~tbsp~^14.0^^ +~04583~^2^1^~cup~^218^^ +~04583~^3^1^~tsp~^4.5^^ +~04584~^1^1^~tbsp~^14.0^^ +~04584~^2^1^~cup~^218^^ +~04584~^3^1^~tsp~^4.5^^ +~04585~^1^1^~tbsp~^14.1^8^.614 +~04585~^2^1^~cup~^227^^ +~04585~^3^1^~tsp~^4.7^^ +~04585~^4^1^~stick~^111^4^1.258 +~04586~^1^1^~tbsp~^12.8^^ +~04586~^2^1^~cup~^205^^ +~04587~^1^1^~tbsp~^12.8^^ +~04587~^2^1^~cup~^205^^ +~04588~^1^1^~tbsp~^13.6^^ +~04588~^2^1^~cup~^218^^ +~04588~^3^1^~tsp~^4.5^^ +~04589~^1^1^~tsp~^4.5^^ +~04589~^2^1^~tbsp~^13.6^^ +~04589~^3^1^~cup~^218^^ +~04590~^1^1^~tbsp~^13.6^^ +~04590~^2^1^~tsp~^4.5^^ +~04590~^3^1^~cup~^218^^ +~04591~^1^1^~tbsp~^13.6^^ +~04591~^2^1^~tsp~^4.5^^ +~04591~^3^1^~cup~^218^^ +~04592~^1^1^~tbsp~^12.5^^ +~04592~^2^1^~tsp~^4.5^^ +~04592~^3^1^~cup~^205^^ +~04593~^1^1^~tbsp~^13.6^^ +~04593~^2^1^~tsp~^4.5^^ +~04593~^3^1^~cup~^218^^ +~04594~^1^1^~tbsp~^13.6^^ +~04594~^2^1^~tsp~^4.5^^ +~04594~^3^1^~cup~^218^^ +~04595~^1^1^~tbsp~^12.8^^ +~04595~^2^1^~cup~^205^^ +~04600~^1^1^~tablespoon~^14.0^^ +~04601~^1^1^~tablespoon~^14.0^^ +~04602~^1^1^~tablespoon~^14.0^^ +~04606~^1^1^~tablespoon~^12.8^^ +~04606~^2^1^~oz~^28.35^^ +~04609~^1^1^~tsp~^4.3^^ +~04610~^1^1^~tbsp~^14.0^1^ +~04610~^2^1^~cup~^227^^ +~04610~^3^1^~tsp~^4.7^^ +~04610~^4^1^~pat (1" sq, 1/3" high)~^5.0^^ +~04610~^5^1^~stick~^113^^ +~04611~^1^1^~tbsp~^14.2^^ +~04611~^2^1^~cup~^227^^ +~04612~^1^1^~tbsp~^14.3^^ +~04612~^2^1^~cup~^229^^ +~04612~^3^1^~tsp~^4.8^1^ +~04613~^1^1^~tbsp~^14.0^^ +~04613~^2^1^~cup~^229^^ +~04613~^3^1^~tsp~^4.8^^ +~04614~^1^1^~tbsp~^14.3^^ +~04614~^2^1^~cup~^229^^ +~04614~^3^1^~tsp~^4.8^1^ +~04615~^1^1^~tbsp~^12.8^^ +~04615~^2^1^~cup~^205^^ +~04617~^1^1^~tbsp~^14.2^^ +~04617~^2^1^~cup~^227^^ +~04617~^3^1^~pat (1" sq, 1/3" high)~^5.0^^ +~04617~^4^1^~stick~^113^^ +~04618~^1^1^~tbsp~^14.2^^ +~04618~^2^1^~cup~^227^^ +~04620~^1^1^~tbsp~^14.0^^ +~04624~^1^1^~tbsp~^15.0^^ +~04626~^1^1^~tablespoon~^14.0^^ +~04627~^1^1^~tablespoon~^14.0^^ +~04628~^1^1^~tbsp~^14.0^1^ +~04629~^1^1^~tbsp (1 NLEA serving)~^14.0^^ +~04630~^1^1^~tbsp~^14.0^^ +~04631~^1^1^~tbsp~^14.6^^ +~04631~^2^1^~cup~^233^^ +~04633~^1^1^~tbsp~^15.0^^ +~04633~^2^1^~cup~^240^^ +~04634~^1^1^~tbsp~^12.8^^ +~04634~^2^1^~cup~^205^^ +~04635~^1^1^~tbsp~^16^^ +~04635~^2^1^~cup~^256^^ +~04636~^1^1^~tbsp~^14.0^^ +~04636~^2^1^~cup~^231^^ +~04638~^1^1^~tablespoon~^14.0^^ +~04639~^1^1^~tablespoon~^15.0^^ +~04639~^2^1^~serving~^30^^ +~04640~^1^1^~tablespoon~^15.0^^ +~04640~^2^1^~serving (2 tbsp)~^30^^ +~04641~^1^1^~tablespoon~^15.0^^ +~04642~^1^1^~tablespoon~^13.6^^ +~04642~^2^1^~teaspoon~^4.5^^ +~04642~^3^1^~cup~^218^^ +~04643~^1^1^~tablespoon~^13.6^^ +~04643~^2^1^~cup~^218^^ +~04644~^1^1^~tablespoon~^13.6^^ +~04644~^2^1^~teaspoon~^4.5^^ +~04644~^3^1^~cup~^218^^ +~04645~^1^1^~tablespoon~^13.6^^ +~04645~^2^1^~teaspoon~^4.5^^ +~04645~^3^1^~cup~^218^^ +~04646~^1^1^~tbsp~^13.6^^ +~04646~^2^1^~cup~^218^^ +~04646~^3^1^~tsp~^4.5^^ +~04648~^1^1^~tbsp~^13.6^^ +~04648~^2^1^~cup~^218^^ +~04648~^3^1^~tsp~^4.5^^ +~04649~^1^1^~tbsp~^13.6^^ +~04649~^2^1^~cup~^218^^ +~04649~^3^1^~tsp~^4.5^^ +~04650~^1^1^~tbsp~^13.6^^ +~04650~^2^1^~cup~^218^^ +~04650~^3^1^~tsp~^4.5^^ +~04651~^1^1^~tbsp~^13.6^^ +~04651~^2^1^~cup~^218^^ +~04651~^3^1^~tsp~^4.5^^ +~04652~^1^1^~tbsp~^13.6^^ +~04652~^2^1^~cup~^218^^ +~04652~^3^1^~tsp~^4.5^^ +~04653~^1^1^~tbsp~^13.6^^ +~04653~^2^1^~cup~^218^^ +~04653~^3^1^~tsp~^4.5^^ +~04654~^1^1^~tbsp~^13.6^^ +~04654~^2^1^~cup~^218^^ +~04654~^3^1^~tsp~^4.5^^ +~04655~^1^1^~tbsp~^14.0^1^ +~04656~^1^1^~tbsp~^13.6^^ +~04656~^2^1^~cup~^218^^ +~04656~^3^1^~tsp~^4.5^^ +~04657~^1^1^~tbsp~^13.6^^ +~04657~^2^1^~cup~^218^^ +~04657~^3^1^~tsp~^4.5^^ +~04658~^1^1^~tbsp~^13.6^^ +~04658~^2^1^~cup~^218^^ +~04658~^3^1^~tsp~^4.5^^ +~04659~^1^1^~tbsp~^13.6^^ +~04659~^2^1^~cup~^218^^ +~04659~^3^1^~tsp~^4.5^^ +~04660~^1^1^~tbsp~^13.6^^ +~04660~^2^1^~cup~^218^^ +~04660~^3^1^~tsp~^4.5^^ +~04661~^1^1^~tbsp~^13.6^^ +~04661~^2^1^~cup~^218^^ +~04661~^3^1^~tsp~^4.5^^ +~04662~^1^1^~tbsp~^13.6^^ +~04662~^2^1^~cup~^218^^ +~04662~^3^1^~tsp~^4.5^^ +~04663~^1^1^~tbsp~^13.6^^ +~04663~^2^1^~cup~^218^^ +~04663~^3^1^~tsp~^4.5^^ +~04664~^1^1^~tbsp~^13.6^^ +~04664~^2^1^~cup~^218^^ +~04664~^3^1^~tsp~^4.5^^ +~04665~^1^1^~tbsp~^14.0^1^ +~04666~^1^1^~tbsp~^12.8^^ +~04666~^2^1^~cup~^205^^ +~04667~^1^1^~tbsp~^12.8^^ +~04667~^2^1^~cup~^205^^ +~04668~^1^1^~tbsp~^14.0^1^ +~04668~^2^1^~cup~^227^^ +~04668~^3^1^~tsp~^4.7^^ +~04669~^1^1^~tablespoon~^13.6^^ +~04669~^2^1^~cup~^218^^ +~04669~^3^1^~teaspoon~^4.5^^ +~04670~^1^1^~tbsp~^13.6^^ +~04670~^2^1^~cup~^218^^ +~04670~^3^1^~tsp~^4.5^^ +~04673~^1^1^~tablespoon~^14.0^^ +~04674~^1^1^~tbsp~^14.0^^ +~04675~^1^1^~tablespoon~^14.0^^ +~04676~^1^1^~tablespoon~^14.0^^ +~04677~^1^1^~tablespoon~^14.0^^ +~04678~^1^1^~tbsp~^14.0^1^ +~04679~^1^1^~spray , about 1/3 second (1 NLEA serving)~^0.3^1^ +~04683~^1^1^~tbsp (1 NLEA serving)~^14.0^6^0 +~04684~^1^1^~tablespoon (1 NLEA serving)~^14.0^^ +~04685~^1^1^~tbsp (1 NLEA serving)~^14.0^^ +~04685~^2^1^~cup~^214^3^5.338 +~04686~^1^2^~tbsp (1 serving)~^30^2^ +~04687~^1^1^~tablespoon (1 NLEA serving)~^14.0^^ +~04688~^1^1^~serving (approximately 10 sprays)~^8.0^^ +~04689~^1^1^~tbsp (1 NLEA serving)~^14.0^^ +~04690~^1^1^~tbsp~^14.9^16^1.399 +~04691~^1^1^~tablespoon~^14.0^^ +~04691~^2^1^~cup~^227^^ +~04691~^3^1^~teaspoon~^4.0^^ +~04692~^1^1^~tbsp~^14.0^1^ +~04693~^1^1^~tbsp~^14.0^1^ +~04694~^1^1^~tbsp~^14.0^1^ +~04694~^2^1^~cup~^229^^ +~04694~^3^1^~teaspoon~^4.8^^ +~04695~^1^1^~tbsp~^14.0^1^ +~04695~^2^1^~cup~^229^^ +~04695~^3^1^~teaspoon~^4.8^^ +~04696~^1^1^~tbsp~^14.0^1^ +~04696~^2^1^~cup~^229^^ +~04696~^3^1^~teaspoon~^4.8^^ +~04697~^1^1^~tbsp~^14.0^1^ +~04698~^1^1^~tablespoon~^14.0^^ +~04698~^2^1^~cup~^218^^ +~04698~^3^1^~teaspoon~^4.5^^ +~04699~^1^1^~tablespoon~^14.0^^ +~04699~^2^1^~cup~^218^^ +~04699~^3^1^~teaspoon~^4.5^^ +~04700~^1^1^~tablespoon~^13.6^^ +~04700~^2^1^~cup~^218^^ +~04700~^3^1^~teaspoon~^4.5^^ +~04701~^1^1^~tablespoon~^13.6^^ +~04701~^2^1^~cup~^218^^ +~04701~^3^1^~teaspoon~^4.5^^ +~04702~^1^1^~tablespoon~^13.6^^ +~04702~^2^1^~cup~^218^^ +~04702~^3^1^~teaspoon~^4.5^^ +~04703~^1^2^~tbsp~^30^3^0 +~04704~^1^2^~tbsp~^33^1^ +~04705~^1^2^~tbsp (1 NLEA serving)~^34^2^ +~04706~^1^2^~tbsp (1 NLEA serving)~^30^1^ +~04707~^1^1^~tablespoon~^13.7^^ +~04707~^2^1^~cup~^219^1^ +~04708~^1^1^~tbsp~^15.0^1^ +~04708~^2^1^~cup~^232^24^4.973 +~05000~^1^3^~oz~^85^^ +~05000~^2^1^~breast~^384^48^76.654 +~05001~^1^3^~oz~^85^^ +~05001~^2^1^~chicken~^1046^^ +~05002~^1^3^~oz~^85^^ +~05002~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^308^^ +~05002~^3^1^~chicken~^1028^^ +~05003~^1^3^~oz~^85^^ +~05003~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^212^^ +~05003~^3^1^~chicken~^708^^ +~05004~^1^3^~oz~^85^^ +~05004~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^205^^ +~05004~^3^1^~chicken~^682^^ +~05005~^1^3^~oz~^85^^ +~05005~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^225^^ +~05005~^3^1^~chicken~^751^^ +~05006~^1^3^~oz~^85^^ +~05006~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^276^^ +~05006~^3^.5^~chicken, bone removed~^460^^ +~05007~^1^3^~oz~^85^^ +~05007~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^280^^ +~05007~^3^.5^~chicken, bone removed~^466^^ +~05008~^1^3^~oz~^85^^ +~05008~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^188^^ +~05008~^3^.5^~chicken, bone removed~^314^^ +~05009~^1^1^~cup, chopped or diced~^140^^ +~05009~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^178^^ +~05009~^3^.5^~chicken, bone removed~^299^^ +~05010~^1^1^~cup, chopped or diced~^140^^ +~05010~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^200^^ +~05010~^3^.5^~chicken, bone removed~^334^^ +~05011~^1^3^~oz~^85^^ +~05011~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^197^^ +~05011~^3^.5^~chicken, bone and skin removed~^329^^ +~05012~^1^1^~cup, chopped or diced~^140^^ +~05012~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^155^^ +~05012~^3^.5^~chicken, bone and skin removed~^258^^ +~05013~^1^1^~cup, chopped or diced~^140^^ +~05013~^2^1^~tbsp~^8.7^^ +~05013~^3^1^~unit (yield from 1 lb ready-to-cook chicken)~^146^^ +~05014~^1^1^~cup, chopped or diced~^140^^ +~05014~^2^1^~tbsp~^8.7^^ +~05014~^3^1^~unit (yield from 1 lb ready-to-cook chicken)~^157^^ +~05015~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^47^^ +~05015~^2^.5^~chicken, skin only~^79^^ +~05016~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^114^^ +~05016~^2^.5^~chicken, skin only~^190^^ +~05017~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^33^^ +~05017~^2^.5^~chicken, skin only~^56^^ +~05018~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^34^^ +~05018~^2^.5^~chicken, skin only~^56^^ +~05019~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^44^^ +~05019~^2^.5^~chicken, skin only~^72^^ +~05020~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^23^^ +~05020~^2^1^~giblets~^75^^ +~05021~^1^1^~cup, chopped or diced~^145^^ +~05021~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^13.0^^ +~05022~^1^1^~cup chopped or dice~^145^^ +~05023~^1^1^~oz~^28.35^^ +~05023~^2^1^~lb~^453.0^^ +~05024~^1^1^~cup chopped or dice~^145^^ +~05025~^1^1^~heart~^6.1^^ +~05025~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^1.8^^ +~05026~^1^1^~cup, chopped or diced~^145^^ +~05026~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^1.0^^ +~05027~^1^1^~liver~^44^^ +~05028~^1^1^~liver~^44^^ +~05029~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^116^^ +~05029~^2^.5^~chicken, bone removed~^194^^ +~05030~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^113^^ +~05030~^2^.5^~chicken, bone removed~^188^^ +~05031~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^78^^ +~05031~^2^.5^~chicken, bone removed~^130^^ +~05032~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^79^^ +~05032~^2^.5^~chicken, bone removed~^132^^ +~05033~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^90^^ +~05033~^2^.5^~chicken, bone removed~^150^^ +~05034~^1^3^~oz~^85^^ +~05034~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^160^^ +~05034~^3^.5^~chicken, bone removed~^266^^ +~05035~^1^3^~oz~^85^^ +~05035~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^167^^ +~05035~^3^.5^~chicken, bone removed~^278^^ +~05036~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^110^^ +~05036~^2^.5^~chicken, bone removed~^184^^ +~05037~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^101^^ +~05037~^2^.5^~chicken, bone removed~^167^^ +~05038~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^110^^ +~05038~^2^.5^~chicken, bone removed~^184^^ +~05039~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^88^^ +~05039~^2^.5^~chicken, bone and skin removed~^147^^ +~05040~^1^1^~cup~^140^^ +~05040~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^64^^ +~05041~^1^1^~cup, chopped or diced~^140^^ +~05041~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^64^^ +~05041~^3^.5^~chicken, bone and skin removed~^107^^ +~05042~^1^1^~cup, chopped or diced~^140^^ +~05042~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^71^^ +~05042~^3^.5^~chicken, bone and skin removed~^119^^ +~05043~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^109^^ +~05043~^2^.5^~chicken, bone and skin removed~^182^^ +~05044~^1^1^~cup~^140^^ +~05044~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^91^^ +~05045~^1^1^~cup, chopped or diced~^140^^ +~05045~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^81^^ +~05045~^3^.5^~chicken, bone and skin removed~^136^^ +~05046~^1^1^~cup, chopped or diced~^140^^ +~05046~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^86^^ +~05046~^3^.5^~chicken, bone and skin removed~^143^^ +~05047~^1^1^~tbsp~^12.8^^ +~05047~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^32^^ +~05047~^3^.5^~chicken, separable fat~^52^^ +~05048~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^59^^ +~05048~^2^.5^~back, bone removed~^99^^ +~05049~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^72^^ +~05049~^2^.5^~back, bone removed~^120^^ +~05050~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^44^^ +~05050~^2^.5^~back, bone removed~^72^^ +~05051~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^32^^ +~05051~^2^.5^~back, bone removed~^53^^ +~05052~^1^3^~oz~^85^^ +~05052~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^36^^ +~05052~^3^1^~cup, chopped or diced~^160^^ +~05053~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^31^^ +~05053~^2^.5^~back, bone and skin removed~^51^^ +~05054~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^35^^ +~05054~^2^.5^~back, bone and skin removed~^58^^ +~05055~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^24^^ +~05055~^2^.5^~back, bone and skin removed~^40^^ +~05056~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^26^^ +~05056~^2^.5^~back, bone and skin removed~^42^^ +~05057~^1^.5^~breast, bone removed (yield from 1 lb ready-to-cook chicken)~^87^^ +~05057~^2^.5^~breast, bone removed~^145^^ +~05058~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^84^^ +~05058~^2^.5^~breast, bone removed~^140^^ +~05059~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^59^^ +~05059~^2^.5^~breast, bone removed~^98^^ +~05060~^1^1^~cup, chopped or diced~^140^^ +~05060~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^58^^ +~05060~^3^.5^~breast, bone removed~^98^^ +~05061~^1^1^~cup, chopped or diced~^140^^ +~05061~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^66^^ +~05061~^3^.5^~breast, bone removed~^110^^ +~05062~^1^3^~oz~^85^^ +~05062~^2^1^~piece~^272^13^81.254 +~05062~^3^1^~package~^926^13^570.981 +~05063~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^52^^ +~05063~^2^.5^~breast, bone and skin removed~^86^^ +~05064~^1^1^~cup, chopped or diced~^140^^ +~05064~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^52^^ +~05064~^3^.5^~breast, bone and skin removed~^86^^ +~05065~^1^1^~cup, chopped or diced~^140^^ +~05065~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^57^^ +~05065~^3^.5^~breast, bone and skin removed~^95^^ +~05066~^1^1^~drumstick with skin~^133^50^22.217 +~05066~^2^1^~drumstick~^130^25^ +~05067~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^43^^ +~05067~^2^1^~drumstick, bone removed~^72^^ +~05068~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^29^^ +~05068~^2^1^~drumstick, bone removed~^49^^ +~05069~^1^1^~drumstick with skin (yield from 1 lb ready-to-cook chicken)~^105^50^18.415 +~05069~^2^1^~drumstick without skin~^96^25^ +~05070~^1^1^~cup, chopped or diced~^140^^ +~05070~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^34^^ +~05070~^3^1^~drumstick, bone removed~^57^^ +~05071~^1^1^~drumstick with skin~^130^25^ +~05071~^2^1^~drumstick without skin~^122^50^19.32 +~05072~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^25^^ +~05072~^2^1^~drumstick, bone and skin removed~^42^^ +~05073~^1^1^~drumstick without skin~^96^25^ +~05073~^2^1^~drumstick with skin~^105^50^18.415 +~05074~^1^3^~oz~^85^^ +~05074~^2^1^~drumstick, bone and skin removed~^46^^ +~05074~^3^1^~cup, chopped or diced~^160^^ +~05074~^4^1^~unit (yield from 1 lb ready-to-cook chicken)~^28^^ +~05075~^1^3^~oz~^85^^ +~05075~^2^1^~leg, with skin (Sum of drumstick+thigh+back)~^344^^ +~05075~^3^1^~drumstick with skin~^111^^ +~05075~^4^1^~thigh with skin~^185^^ +~05075~^5^1^~back with skin~^49^^ +~05076~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^95^^ +~05076~^2^1^~leg, bone removed~^158^^ +~05077~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^67^^ +~05077~^2^1^~leg, bone removed~^112^^ +~05078~^1^3^~oz~^85^^ +~05078~^2^1^~leg, with skin (Sum of drumstick+thigh+back)~^258^^ +~05078~^3^1^~thigh with skin~^133^^ +~05078~^4^1^~drumstick with skin~^91^^ +~05078~^5^1^~back with skin~^35^^ +~05079~^1^1^~cup, chopped or diced~^140^^ +~05079~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^75^^ +~05079~^3^1^~leg, bone removed~^125^^ +~05080~^1^3^~oz~^85^^ +~05080~^2^1^~leg, bone and skin removed (Sum of drumstick+thigh+back meat only)~^265^^ +~05080~^3^1^~thigh bone and skin removed~^147^^ +~05080~^4^1^~drumstick bone and skin removed~^88^^ +~05080~^5^1^~back bone and skin removed~^30^^ +~05081~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^56^^ +~05081~^2^1^~leg, bone and skin removed~^94^^ +~05082~^1^3^~oz~^85^^ +~05082~^2^1^~leg (Sum of drumstick+thigh+back meat only)~^199^^ +~05082~^3^1^~drumstick bone and skin~^105^^ +~05082~^4^1^~thigh bone and skin~^72^^ +~05082~^5^1^~back bone and skin~^22^^ +~05083~^1^3^~oz~^85^^ +~05083~^2^1^~cup, chopped or diced~^160^^ +~05083~^3^1^~unit (yield from 1 lb ready-to-cook chicken)~^60^^ +~05083~^4^1^~leg, bone and skin removed~^101^^ +~05084~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^15.0^^ +~05084~^2^1^~neck, bone removed~^50^^ +~05085~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^16^^ +~05085~^2^1^~neck, bone removed~^52^^ +~05086~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^11.0^^ +~05086~^2^1^~neck, bone removed~^36^^ +~05087~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^11.0^^ +~05087~^2^1^~neck, bone removed~^38^^ +~05088~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^6.0^^ +~05088~^2^1^~neck, bone and skin removed~^20^^ +~05089~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^7.0^^ +~05089~^2^1^~neck, bone and skin removed~^22^^ +~05090~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^5.0^^ +~05090~^2^1^~neck, bone and skin removed~^18^^ +~05091~^1^1^~thigh with skin~^193^23^ +~05091~^2^1^~oz~^28.35^6^0 +~05092~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^52^^ +~05092~^2^1^~thigh, bone removed~^86^^ +~05093~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^38^^ +~05093~^2^1^~thigh, bone removed~^62^^ +~05094~^1^1^~thigh with skin~^137^28^ +~05094~^2^1^~thigh without skin~^116^45^22.921 +~05095~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^41^^ +~05095~^2^1^~thigh, bone removed~^68^^ +~05096~^1^1^~thigh without skin~^149^45^27.195 +~05096~^2^3^~oz~^85^^ +~05097~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^31^^ +~05097~^2^1^~thigh, bone and skin removed~^52^^ +~05098~^1^1^~thigh without skin~^116^45^22.921 +~05098~^2^1^~thigh with skin~^137^28^ +~05099~^1^1^~cup, chopped or diced~^140^^ +~05099~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^33^^ +~05099~^3^1^~thigh, bone and skin removed~^55^^ +~05100~^1^1^~piece~^107^11^14.622 +~05100~^2^1^~package~^1150^11^458.261 +~05101~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^29^^ +~05101~^2^1^~wing, bone removed~^49^^ +~05102~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^19^^ +~05102~^2^1^~wing, bone removed~^32^^ +~05103~^1^1^~piece~^85^155^ +~05104~^1^1^~cup, chopped or diced~^140^^ +~05104~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^24^^ +~05104~^3^1^~wing, bone removed~^40^^ +~05105~^1^1^~wing, bone and skin removed (yield from 1 lb ready-to-cook chicken)~^17^^ +~05105~^2^1^~wing, bone and skin removed~^29^^ +~05106~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^12.0^^ +~05106~^2^1^~wing, bone and skin removed~^20^^ +~05107~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^13.0^^ +~05107~^2^1^~wing, bone and skin removed~^21^^ +~05108~^1^1^~cup, chopped or diced~^140^^ +~05108~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^14.0^^ +~05108~^3^1^~wing, bone and skin removed~^24^^ +~05109~^1^3^~oz~^85^^ +~05109~^2^1^~chicken~^1509^^ +~05110~^1^3^~oz~^85^^ +~05110~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^235^^ +~05110~^3^1^~chicken~^1072^^ +~05111~^1^3^~oz~^85^^ +~05111~^2^1^~breast~^635^6^150.228 +~05111~^3^1^~bird~^4405^6^925.702 +~05112~^1^3^~oz~^85^^ +~05112~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^210^^ +~05112~^3^.5^~chicken, bone removed~^480^^ +~05113~^1^3^~oz~^85^^ +~05113~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^209^^ +~05113~^3^.5^~chicken, bone and skin removed~^477^^ +~05114~^1^1^~cup, chopped or diced~^140^^ +~05114~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^171^^ +~05115~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^25^^ +~05115~^2^1^~giblets~^113^^ +~05116~^1^1^~cup, chopped or diced~^145^^ +~05116~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^15.0^^ +~05117~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^99^^ +~05117~^2^.5^~chicken, bone and skin removed~^220^^ +~05118~^1^1^~cup, chopped or diced~^140^^ +~05118~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^78^^ +~05119~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^113^^ +~05119~^2^.5^~chicken, bone and skin removed~^258^^ +~05120~^1^1^~cup, chopped or diced~^140^^ +~05120~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^94^^ +~05121~^1^3^~oz~^85^^ +~05121~^2^1^~chicken~^905^^ +~05122~^1^3^~oz~^85^^ +~05122~^2^1^~cup, chopped or diced~^160^^ +~05122~^3^1^~unit (yield from 1 lb ready-to-cook chicken)~^202^^ +~05122~^4^1^~chicken, bone removed~^593^^ +~05123~^1^3^~oz~^85^^ +~05123~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^271^^ +~05123~^3^.5^~chicken, bone removed~^398^^ +~05124~^1^3^~oz~^85^^ +~05124~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^178^^ +~05124~^3^.5^~chicken, bone removed~^261^^ +~05125~^1^3^~oz~^85^^ +~05125~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^194^^ +~05125~^3^.5^~chicken, bone and skin removed~^284^^ +~05126~^1^1^~cup, chopped or diced~^140^^ +~05126~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^137^^ +~05127~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^28^^ +~05127~^2^1^~giblets~^81^^ +~05128~^1^1^~cup, chopped or diced~^145^^ +~05128~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^17^^ +~05129~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^89^^ +~05129~^2^.5^~chicken, bone and skin removed~^130^^ +~05130~^1^1^~cup, chopped or diced~^140^^ +~05130~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^64^^ +~05131~^1^1^~unit (yield from 1 lb ready-to-cook chicken)~^105^^ +~05131~^2^.5^~chicken, bone and skin removed~^154^^ +~05132~^1^1^~cup, chopped or diced~^140^^ +~05132~^2^1^~unit (yield from 1 lb ready-to-cook chicken)~^73^^ +~05133~^1^3^~oz~^85^^ +~05133~^2^1^~capon~^2152^^ +~05134~^1^3^~oz~^85^^ +~05134~^2^1^~capon~^1418^^ +~05134~^3^1^~unit (yield from 1 lb ready-to cook capon)~^218^^ +~05135~^1^3^~oz~^85^^ +~05135~^2^1^~unit (yield from 1 lb ready-to cook capon)~^297^^ +~05135~^3^.5^~capon, bone removed~^964^^ +~05136~^1^3^~oz~^85^^ +~05136~^2^1^~unit (yield from 1 lb ready-to cook capon)~^196^^ +~05136~^3^.5^~capon, bone removed~^637^^ +~05137~^1^1^~giblets~^115^^ +~05137~^2^1^~unit (yield from 1 lb ready-to cook capon)~^18^^ +~05138~^1^1^~cup, chopped or diced~^145^^ +~05138~^2^1^~unit (yield from 1 lb ready-to cook capon)~^11.0^^ +~05139~^1^3^~oz~^85^^ +~05139~^2^1^~unit (yield from 1 lb ready-to-cook duck)~^287^^ +~05139~^3^.5^~duck~^634^^ +~05140~^1^1^~cup, chopped or diced~^140^^ +~05140~^2^1^~unit (yield from 1 lb ready-to-cook duck)~^173^^ +~05140~^3^.5^~duck~^382^^ +~05141~^1^1^~unit (yield from 1 lb ready-to-cook duck)~^137^^ +~05141~^2^.5^~duck~^303^^ +~05142~^1^1^~cup, chopped or diced~^140^^ +~05142~^2^1^~unit (yield from 1 lb ready-to-cook duck)~^100^^ +~05142~^3^.5^~duck~^221^^ +~05143~^1^1^~liver~^44^^ +~05143~^2^1^~unit (yield from 1 lb ready-to-cook duck)~^10.0^^ +~05144~^1^3^~oz~^85^^ +~05144~^2^1^~unit (yield from 1 lb ready-to-cook duck)~^239^^ +~05144~^3^.5^~duck~^270^^ +~05145~^1^1^~unit (yield from 1 lb ready-to-cook duck)~^73^^ +~05145~^2^.5^~breast, bone and skin removed~^83^^ +~05146~^1^3^~oz~^85^^ +~05146~^2^1^~unit (yield from 1 lb ready-to-cook goose)~^320^^ +~05146~^3^.5^~goose~^1319^^ +~05147~^1^1^~cup, chopped or diced~^140^^ +~05147~^2^1^~unit (yield from 1 lb ready-to-cook goose)~^188^^ +~05147~^3^.5^~goose~^774^^ +~05148~^1^3^~oz~^85^^ +~05148~^2^1^~unit (yield from 1 lb ready-to-cook goose)~^185^^ +~05148~^3^.5^~goose~^766^^ +~05149~^1^1^~unit (yield from 1 lb ready-to-cook goose)~^143^^ +~05149~^2^.5^~goose~^591^^ +~05150~^1^1^~liver~^94^^ +~05150~^2^1^~unit (yield from 1 lb ready-to-cook goose)~^11.0^^ +~05151~^1^3^~oz~^85^^ +~05151~^2^1^~unit (yield from 1 lb ready-to-cook guinea)~^359^^ +~05151~^3^.5^~guinea~^345^^ +~05152~^1^3^~oz~^85^^ +~05152~^2^1^~unit (yield from 1 lb ready-to-cook guinea)~^275^^ +~05152~^3^.5^~guinea~^264^^ +~05153~^1^3^~oz~^85^^ +~05153~^2^1^~unit (yield from 1 lb ready-to-eat pheasant)~^371^^ +~05153~^3^.5^~pheasant~^400^^ +~05154~^1^3^~oz~^85^^ +~05154~^2^1^~unit (yield from 1 lb ready-to-eat pheasant)~^326^^ +~05154~^3^.5^~pheasant~^352^^ +~05155~^1^3^~oz~^85^^ +~05155~^2^1^~unit (yield from 1 lb ready-to-eat pheasant)~^169^^ +~05155~^3^.5^~breast, bone and skin removed~^182^^ +~05156~^1^1^~unit (yield from 1 lb ready-to-eat pheasant)~^99^^ +~05156~^2^1^~leg, bone and skin removed~^107^^ +~05157~^1^1^~quail~^109^^ +~05157~^2^1^~unit (yield from 1 lb ready-to cook quail)~^405^^ +~05158~^1^1^~quail~^92^^ +~05158~^2^1^~unit (yield from 1 lb ready-to cook quail)~^342^^ +~05159~^1^3^~oz~^85^^ +~05159~^2^1^~unit (yield from 1 lb ready-to cook quail)~^208^^ +~05159~^3^1^~breast~^56^^ +~05160~^1^3^~oz~^85^^ +~05160~^2^1^~unit (yield from 1 lb ready-to-cook squab)~^297^^ +~05160~^3^1^~squab~^199^^ +~05161~^1^1^~unit (yield from 1 lb ready-to-cook squab)~^251^^ +~05161~^2^1^~squab~^168^^ +~05162~^1^1^~breast, bone removed~^101^^ +~05162~^2^1^~unit (yield from 1 lb ready-to-cook squab)~^151^^ +~05165~^1^3^~oz~^85^1^ +~05165~^2^1^~bird~^5002^8^1142.284 +~05166~^1^3^~oz~^85^1^ +~05166~^2^1^~bird~^3812^8^950.883 +~05167~^1^3^~oz~^85^1^ +~05167~^2^1^~bird~^5002^8^1142.284 +~05168~^1^3^~oz~^85^1^ +~05168~^2^1^~bird~^3812^8^950.883 +~05169~^1^1^~oz~^28.35^^ +~05169~^2^1^~lb~^453.0^^ +~05170~^1^1^~serving~^85^^ +~05171~^1^3^~oz~^85^18^12.66 +~05171~^2^1^~giblets~^157^16^52.179 +~05172~^1^1^~giblets~^95^18^29.595 +~05173~^1^1^~raw gizzard~^63^8^26.34 +~05174~^1^1^~gizzard cooked~^45^8^17.724 +~05175~^1^1^~piece~^24^18^12.66 +~05176~^1^1^~heart~^20^7^11.33 +~05177~^1^1^~raw liver~^78^8^46.34 +~05178~^1^1^~liver cooked~^53^8^31.32 +~05179~^1^1^~oz~^28.35^^ +~05179~^2^1^~lb~^453.0^^ +~05180~^1^1^~serving~^85^^ +~05181~^1^3^~oz~^85^^ +~05181~^2^1^~lb~^453.0^^ +~05182~^1^1^~serving~^85^^ +~05183~^1^1^~oz~^28.35^^ +~05183~^2^1^~lb~^453.0^^ +~05184~^1^1^~serving~^85^^ +~05185~^1^1^~serving~^85^^ +~05186~^1^1^~serving~^85^^ +~05187~^1^1^~serving~^85^^ +~05188~^1^1^~serving~^85^^ +~05190~^1^1^~cup, chopped or diced~^140^^ +~05190~^2^.5^~back, bone removed~^262^^ +~05190~^3^1^~unit (yield from 1 lb ready-to-cook turkey)~^34^^ +~05191~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^146^^ +~05191~^2^.5^~breast, bone removed~^1132^^ +~05192~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^112^^ +~05192~^2^.5^~breast, bone removed~^864^^ +~05193~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^105^^ +~05193~^2^1^~leg, bone removed~^816^^ +~05194~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^71^^ +~05194~^2^1^~leg, bone removed~^546^^ +~05195~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^33^^ +~05195~^2^1^~wing, bone removed~^256^^ +~05196~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^24^^ +~05196~^2^1^~wing, bone removed~^186^^ +~05200~^1^3^~oz~^85^^ +~05200~^2^.5^~turkey, bone removed~^808^^ +~05200~^3^1^~unit (yield from 1 lb ready-to-cook turkey)~^229^^ +~05215~^1^4^~oz~^114^^ +~05215~^2^1^~back~^1124^7^362.91 +~05216~^1^3^~oz~^85^^ +~05216~^2^1^~back~^911^8^216.52 +~05219~^1^4^~oz~^114^1^ +~05219~^2^1^~breast~^1769^8^576.76 +~05220~^1^3^~oz~^85^1^ +~05220~^2^1^~breast~^1413^8^459.96 +~05227~^1^3^~oz~^85^^ +~05227~^2^1^~wing~^346^16^26.88 +~05228~^1^3^~oz~^85^^ +~05228~^2^1^~wing~^213^15^21.05 +~05236~^1^1^~unit (yield from 1 lb ready-to-cook turkey)~^31^^ +~05236~^2^.5^~turkey, skin only~^196^^ +~05277~^1^1^~can (5 oz)~^142^^ +~05282~^1^1^~tbsp~^13.0^^ +~05282~^2^1^~oz~^28.35^^ +~05284~^1^1^~cup, drained~^135^^ +~05284~^2^1^~can (5 oz)~^142^^ +~05284~^3^1^~can (5 oz) yields~^125^^ +~05285~^1^1^~oz~^28.35^^ +~05285~^2^.5^~lb~^227^^ +~05286~^1^3^~oz~^85^^ +~05286~^2^1^~package (net weight, 5 oz)~^142^^ +~05293~^1^3^~oz~^85^^ +~05293~^2^.5^~breast, bone removed~^864^^ +~05294~^1^3^~oz~^85^^ +~05294~^2^1^~thigh, bone removed~^314^^ +~05295~^1^3^~oz~^85^^ +~05295~^2^1^~box (net weight, 2.5 lb)~^1134^^ +~05300~^1^1^~stick (2.25 oz)~^64^^ +~05301~^1^.5^~lb~^227^^ +~05302~^1^.5^~lb~^227^^ +~05303~^1^.5^~lb~^227^^ +~05304~^1^.5^~lb~^227^^ +~05305~^1^1^~lb~^453.6^^ +~05305~^2^1^~patty, 4 oz~^114^^ +~05306~^1^1^~patty (4 oz, raw) (yield after cooking)~^82^^ +~05306~^2^1^~unit, yield from 1 lb raw~^330^^ +~05307~^1^3^~oz~^85^^ +~05307~^2^.5^~bird~^168^^ +~05308~^1^3^~oz~^85^^ +~05308~^2^.5^~bird~^129^^ +~05308~^3^1^~bird whole~^257^^ +~05309~^1^3^~oz~^85^^ +~05309~^2^.5^~bird~^120^^ +~05309~^3^1^~bird whole~^239^^ +~05310~^1^3^~oz~^85^^ +~05310~^2^.5^~bird~^110^^ +~05310~^3^1^~bird whole~^220^^ +~05311~^1^1^~oz~^28^^ +~05311~^2^1^~cup~^205^^ +~05311~^3^1^~can (5 oz) yields~^125^^ +~05312~^1^1^~piece~^29^18^5.211 +~05312~^2^1^~serving~^86^9^9.245 +~05313~^1^1^~serving~^74^9^12.986 +~05314~^1^3^~oz~^85^^ +~05314~^2^1^~piece~^263^11^83.914 +~05314~^3^.5^~breast~^118^^ +~05315~^1^1^~unit (yield from 1 lb ready-to-cook duck)~^56^^ +~05315~^2^3^~oz~^85^^ +~05315~^3^.5^~breast, bone removed~^120^^ +~05316~^1^3^~oz~^85^^ +~05316~^2^.5^~breast, bone and skin removed~^95^^ +~05316~^3^1^~cup, chopped or diced~^174^^ +~05316~^4^1^~unit (yield from 1 lb ready-to-cook duck)~^44^^ +~05317~^1^1^~leg, bone removed (yield after cooking)~^92^^ +~05317~^2^1^~unit (yield from 1 lb ready-to-cook duck)~^43^^ +~05317~^3^3^~oz~^85^^ +~05318~^1^3^~oz~^85^^ +~05318~^2^1^~cup chopped or diced, cooked~^174^^ +~05318~^3^1^~unit (yield from 1 lb ready-to-cook duck)~^35^^ +~05318~^4^1^~leg, bone and skin removed~^75^^ +~05319~^1^1^~drumstick~^71^96^13.471 +~05320~^1^1^~serving~^96^30^24.073 +~05323~^1^1^~patty~^60^^ +~05324~^1^1^~patty~^60^^ +~05326~^1^1^~piece~^15.0^^ +~05326~^2^4^~pieces~^62^^ +~05327~^1^1^~piece~^15.0^^ +~05327~^2^4^~pieces~^62^^ +~05332~^1^4^~oz crumbled~^112^^ +~05333~^1^3^~oz crumbled~^85^^ +~05334~^1^1^~thigh~^95^96^19.425 +~05335~^1^1^~oz~^28.35^^ +~05335~^2^1^~lb~^453.6^^ +~05336~^1^1^~cup drained~^135^^ +~05336~^2^1^~can (5 oz)~^142^^ +~05337~^1^1^~cup drained~^135^^ +~05337~^2^1^~can (5 oz)~^142^^ +~05338~^1^1^~cup drained~^135^^ +~05338~^2^1^~can (5 oz)~^142^^ +~05339~^1^1^~wing~^51^96^12.015 +~05341~^1^1^~serving (3 oz)~^85^^ +~05341~^2^1^~back~^102^^ +~05341~^3^1^~oz~^28.35^^ +~05342~^1^3^~oz~^85^^ +~05342~^2^1^~breast breast with skin and bone~^483^48^ +~05342~^3^1^~oz~^28.35^^ +~05343~^1^1^~drumstick~^53^^ +~05343~^2^1^~serving (3oz)~^85^^ +~05343~^3^1^~oz~^28.35^^ +~05344~^1^1^~oz~^28.35^^ +~05345~^1^1^~thigh~^89^^ +~05345~^2^1^~serving (3 oz)~^85^^ +~05345~^3^1^~oz~^28.35^^ +~05346~^1^1^~wing~^53^^ +~05346~^2^1^~serving (3 oz)~^85^^ +~05346~^3^1^~oz~^28.35^^ +~05347~^1^1^~back~^102^^ +~05347~^2^1^~serving (3 oz)~^85^^ +~05347~^3^1^~oz~^28.35^^ +~05348~^1^1^~serving (3 oz)~^85^^ +~05348~^2^1^~oz~^28.35^^ +~05348~^3^1^~breast~^343^^ +~05349~^1^1^~drumstick~^53^^ +~05349~^2^1^~serving (3 oz)~^85^^ +~05349~^3^1^~oz~^28.35^^ +~05351~^1^1^~thigh~^89^^ +~05351~^2^1^~serving~^85^^ +~05352~^1^1^~wing~^53^^ +~05352~^2^1^~serving (3 oz)~^85^^ +~05352~^3^1^~oz~^28.35^^ +~05353~^1^1^~strip~^9.4^21^2.597 +~05354~^1^3^~oz~^85^^ +~05354~^2^1^~cup~^183^6^22.58 +~05356~^1^1^~serving~^85^^ +~05357~^1^3^~oz~^85^^ +~05357~^2^1^~back~^182^^ +~05358~^1^3^~oz~^85^^ +~05358~^2^1^~breast~^384^^ +~05359~^1^1^~drumstick~^71^^ +~05361~^1^1^~thigh~^95^^ +~05362~^1^1^~wing~^51^^ +~05363~^1^4^~oz~^113^^ +~05363~^2^1^~breast~^219^6^12.111 +~05363~^3^1^~bird~^627^6^47.422 +~05600~^1^1^~oz~^28.35^^ +~05600~^2^1^~serving~^28^^ +~05621~^1^1^~patty~^117^6^16.337 +~05622~^1^1^~patty (yield from 135.8 g raw meat)~^109^6^42.202 +~05622~^2^1^~serving ( 3 oz )~^85^^ +~05623~^1^1^~serving ( 3 oz )~^85^^ +~05623~^2^1^~fan fillet~^513^23^65.33 +~05624~^1^1^~serving ( 3 oz )~^85^^ +~05624~^2^1^~steak~^394^3^49.561 +~05625~^1^3^~oz~^85^^ +~05625~^2^1^~flat fillet~^354^23^43.54 +~05626~^1^3^~oz~^85^^ +~05626~^2^1^~full rump~^695^23^43.54 +~05627~^1^1^~serving ( 3 oz )~^85^^ +~05627~^2^1^~full rump cooked ( yield from 695 g raw meat )~^496^23^31.09 +~05628~^1^3^~oz~^85^^ +~05628~^2^1^~inside drum~^572^23^87.077 +~05629~^1^1^~serving ( 3 oz )~^85^^ +~05629~^2^1^~inside drum cooked ( yield from 572 g raw meat )~^416^23^63.38 +~05630~^1^3^~oz~^85^^ +~05630~^2^1^~outside drum~^422^23^65.331 +~05631~^1^3^~oz~^85^^ +~05631~^2^1^~steak~^300^23^21.79 +~05632~^1^1^~serving ( 3 oz )~^85^^ +~05632~^2^1^~steak~^244^3^77.631 +~05641~^1^1^~patty~^109^6^1.656 +~05641~^2^4^~patty~^435^6^6.625 +~05642~^1^1^~patty~^93^6^1.695 +~05642~^2^1^~serving ( 3 oz )~^85^^ +~05643~^1^1^~serving ( cooked from 4oz raw)~^85^^ +~05643~^2^1^~oz~^28.35^^ +~05644~^1^1^~serving ( cooked from 4 oz raw )~^85^^ +~05644~^2^1^~oz~^28.35^^ +~05645~^1^1^~serving ( 3 oz )~^85^^ +~05646~^1^1^~serving (cooked from 4 oz raw)~^85^^ +~05646~^2^1^~oz~^28.35^^ +~05647~^1^1^~serving ( 3 oz )~^85^^ +~05648~^1^1^~serving (cooked from 4 oz raw)~^85^^ +~05648~^2^1^~oz~^28.35^^ +~05649~^1^1^~serving (cooked from 4 oz raw)~^85^^ +~05649~^2^1^~oz~^28.35^^ +~05650~^1^1^~serving ( 3 oz )~^85^^ +~05651~^1^1^~serving ( cooked from 4 oz raw)~^85^^ +~05651~^2^1^~oz~^28.35^^ +~05652~^1^1^~serving ( 3 oz )~^85^^ +~05653~^1^1^~serving (cooked from 4 oz raw)~^85^^ +~05653~^2^1^~oz~^28.35^^ +~05653~^3^1^~lb~^453.0^^ +~05654~^1^1^~serving (cooked from 4 oz raw)~^85^^ +~05654~^2^1^~lb~^456.0^^ +~05654~^3^1^~oz~^28.35^^ +~05655~^1^1^~serving ( cooked from 4 oz raw)~^85^^ +~05655~^2^1^~oz~^28.35^^ +~05655~^3^1^~lb~^453.0^^ +~05656~^1^1^~serving ( 3 oz )~^85^^ +~05657~^1^1^~serving (cooked from 4 oz raw)~^85^^ +~05657~^2^1^~oz~^28.35^^ +~05657~^3^1^~lb~^453.0^^ +~05658~^1^1^~serving ( 3 oz )~^85^^ +~05661~^1^1^~liver~^44^^ +~05661~^2^1^~oz~^28.35^^ +~05662~^1^1^~patty (cooked from 4 oz raw)~^85^^ +~05662~^2^1^~oz~^28.35^^ +~05662~^3^1^~lb~^453.0^^ +~05663~^1^3^~oz~^85^^ +~05664~^1^1^~patty~^85^^ +~05664~^2^1^~oz~^28.35^^ +~05665~^1^1^~oz~^28.35^^ +~05665~^2^1^~lb~^453.0^^ +~05665~^3^1^~serving (cooked from 4 oz)~^85^^ +~05666~^1^3^~oz~^85^^ +~05667~^1^3^~oz~^85^^ +~05668~^1^1^~patty (cooked from 4 oz raw)~^85^^ +~05668~^2^1^~oz~^28.35^^ +~05668~^3^1^~lb~^453.0^^ +~05669~^1^3^~oz~^85^^ +~05670~^1^3^~oz~^85^^ +~05671~^1^1^~drumstick without skin~^95^60^16.56 +~05671~^2^1^~drumstick with skin~^105^60^18.385 +~05672~^1^1^~thigh without skin~^111^45^22.251 +~05672~^2^1^~thigh with skin~^129^45^25.18 +~05673~^1^1^~oz~^28.35^^ +~05673~^2^1^~lb~^453.0^^ +~05674~^1^1^~oz~^28.35^^ +~05674~^2^1^~lb~^453.0^^ +~05675~^1^1^~oz~^28.35^^ +~05675~^2^1^~lb~^453.0^^ +~05676~^1^1^~drumstick without skin~^95^60^16.56 +~05676~^2^1^~drumstick with skin~^105^60^18.385 +~05677~^1^1^~thigh without skin~^111^45^22.251 +~05677~^2^1^~thigh with skin~^129^45^25.18 +~05678~^1^1^~drumstick with skin~^143^10^29.469 +~05678~^2^1^~drumstick without skin~^136^29^ +~05679~^1^1^~drumstick without skin~^91^30^ +~05679~^2^1^~drumstick with skin~^129^10^23.648 +~05680~^1^1^~drumstick without skin~^95^10^20.442 +~05680~^2^1^~drumstick with skin~^106^10^22.463 +~05681~^1^3^~oz~^85^^ +~05681~^2^1^~thigh without skin~^132^15^31.264 +~05681~^3^1^~thigh with skin~^158^15^39.359 +~05682~^1^3^~oz~^85^^ +~05682~^2^1^~thigh without skin~^148^15^24.13 +~05682~^3^1^~thigh with skin~^191^15^34.245 +~05683~^1^1^~thigh with skin~^130^15^31.242 +~05683~^2^1^~thigh without skin~^112^15^26.334 +~05684~^1^1^~oz~^28.35^^ +~05685~^1^1^~oz~^28.35^^ +~05686~^1^1^~oz~^28.35^^ +~05687~^1^1^~drumstick with skin~^106^10^22.463 +~05687~^2^1^~drumstick without skin~^95^10^20.442 +~05688~^1^1^~drumstick with skin~^143^10^29.469 +~05688~^2^1^~drumstick without skin~^130^10^24.86 +~05689~^1^1^~drumstick with skin~^129^10^23.648 +~05689~^2^1^~drumstick without skin~^91^30^ +~05690~^1^3^~oz~^85^^ +~05690~^2^1^~thigh without skin~^132^15^31.264 +~05690~^3^1^~thigh with skin~^158^15^39.359 +~05691~^1^3^~oz~^85^^ +~05691~^2^1^~thigh without skin~^148^15^24.13 +~05691~^3^1^~thigh~^181^22^ +~05692~^1^1^~thigh with skin~^130^15^31.242 +~05692~^2^1^~thigh without skin~^112^15^26.334 +~05693~^1^3^~oz~^85^^ +~05693~^2^1^~back~^182^48^34.31 +~05694~^1^4^~oz~^114^^ +~05695~^1^3^~oz~^85^^ +~05696~^1^4^~oz~^114^^ +~05697~^1^3^~oz~^85^^ +~05698~^1^1^~oz~^28.35^^ +~05699~^1^1^~oz~^28.35^^ +~05700~^1^4^~oz~^114^^ +~05700~^2^1^~lb~^453.0^^ +~05701~^1^3^~oz~^85^^ +~05702~^1^4^~oz~^114^^ +~05702~^2^1^~lb~^453.0^^ +~05703~^1^3^~oz~^85^^ +~05703~^2^1^~lb~^453.0^^ +~05704~^1^3^~oz~^85^1^ +~05704~^2^1^~bird~^5717^11^1080.565 +~05705~^1^3^~oz~^28^1^ +~05705~^2^1^~bird~^4147^11^597.099 +~05706~^1^3^~oz~^85^1^ +~05706~^2^1^~bird~^5717^11^1080.565 +~05707~^1^3^~oz~^85^1^ +~05707~^2^1^~bird~^4147^11^597.099 +~05707~^3^1^~lb~^453.0^1^ +~05708~^1^1^~breast~^1171^4^269.718 +~05708~^2^3^~oz~^85^4^0 +~05709~^1^3^~oz~^85^4^0 +~05709~^2^1^~breast~^852^4^209.04 +~05710~^1^3^~oz~^85^4^0 +~05710~^2^1^~breast~^1150^4^244.183 +~05711~^1^1^~breast~^863^4^116.235 +~05711~^2^3^~oz~^85^4^0 +~05712~^1^3^~oz~^28^8^0 +~05712~^2^1^~wing~^518^21^ +~05713~^1^3^~oz~^85^8^0 +~05713~^2^1^~wing~^375^31^ +~05714~^1^1^~oz~^28.35^12^0 +~05715~^1^1^~oz~^28.35^12^0 +~05716~^1^3^~oz~^85^12^0 +~05716~^2^1^~drumstick~^356^33^ +~05717~^1^3^~oz~^85^5^0 +~05717~^2^1^~thigh~^454^10^ +~05718~^1^3^~oz~^85^1^ +~05718~^2^1^~breast~^1654^11^336.64 +~05719~^1^4^~oz~^114^^ +~05719~^2^1^~back~^1245^11^251.39 +~05720~^1^3^~oz~^85^^ +~05720~^2^1^~back~^949^11^121.52 +~05721~^1^4^~oz~^114^1^ +~05721~^2^1^~breast~^2110^11^451.88 +~05721~^3^1^~lb~^453.0^1^ +~05722~^1^3^~oz~^85^5^0 +~05722~^2^1^~thigh~^348^10^ +~05723~^1^3^~oz~^28^12^0 +~05723~^2^1^~drumstick~^275^35^ +~05724~^1^4^~oz~^114^^ +~05724~^2^1^~drumstick~^359^22^56.46 +~05725~^1^3^~oz~^85^^ +~05725~^2^1^~drumstick~^217^22^34.88 +~05726~^1^3^~oz~^85^1^ +~05726~^2^1^~thigh~^424^22^94 +~05727~^1^3^~oz~^85^4^0 +~05727~^2^1^~breast~^1171^4^269.718 +~05728~^1^3^~oz~^85^^ +~05728~^2^1^~thigh~^327^22^48.27 +~05729~^1^3^~oz~^85^^ +~05729~^2^1^~wing~^358^22^40.25 +~05730~^1^3^~oz~^85^^ +~05730~^2^1^~wing~^219^22^25.11 +~05732~^1^3^~oz~^85^4^0 +~05732~^2^1^~breast~^1150^4^244.183 +~05733~^1^3^~oz~^85^4^0 +~05733~^2^1^~breast~^863^4^116.235 +~05734~^1^3^~oz~^85^8^0 +~05734~^2^1^~wing~^518^21^ +~05735~^1^3^~oz~^85^8^0 +~05735~^2^1^~wing~^375^31^ +~05736~^1^3^~oz~^85^12^0 +~05736~^2^1^~drumstick~^356^33^ +~05737~^1^3^~oz~^85^12^0 +~05737~^2^1^~drumstick~^275^35^ +~05738~^1^3^~oz~^85^^ +~05738~^2^1^~drumstick~^337^16^40.36 +~05739~^1^3^~oz~^85^^ +~05739~^2^1^~drumstick~^206^16^43.03 +~05740~^1^3^~oz~^85^^ +~05740~^2^1^~thigh~^367^16^79.35 +~05741~^1^3^~oz~^85^^ +~05741~^2^1^~thigh~^319^16^86.76 +~05742~^1^3^~oz~^85^5^0 +~05742~^2^1^~thigh~^454^10^ +~05743~^1^3^~oz~^85^12^0 +~05743~^2^1^~thigh~^348^10^ +~05744~^1^4^~oz~^114^^ +~05744~^2^1^~back~^1245^11^251.39 +~05745~^1^3^~oz~^85^^ +~05745~^2^1^~back~^949^11^121.52 +~05746~^1^3^~oz~^85^^ +~05746~^2^1^~piece~^181^55^ +~05747~^1^3^~oz~^85^^ +~05747~^2^1^~piece~^196^74^ +~05748~^1^3^~oz~^85^^ +~05748~^2^1^~piece~^195^54^ +~05749~^1^3^~oz~^85^^ +~05749~^2^1^~piece~^192^59^ +~06001~^1^.5^~cup (4 fl oz)~^126^^ +~06001~^2^1^~can (10.75 oz)~^305^^ +~06002~^1^1^~cup (8 fl oz)~^257^^ +~06002~^2^1^~can (11 oz), undiluted~^312^^ +~06003~^1^1^~serving 1/2 cup~^126^1^ +~06004~^1^.5^~cup~^130^^ +~06004~^2^1^~can 11.5 oz~^326^^ +~06006~^1^1^~cup (8 fl oz)~^263^^ +~06006~^2^1^~can (11.25 oz)~^319^^ +~06007~^1^1^~cup (8 fl oz)~^243^^ +~06007~^2^1^~can (19.25 oz)~^546^^ +~06008~^1^1^~cup~^240^^ +~06008~^2^1^~can 14.5 oz~^435^^ +~06008~^3^1^~container 32 oz~^960^^ +~06009~^1^.5^~cup~^125^^ +~06009~^2^1^~can (10.75 oz)~^305^^ +~06010~^1^.5^~cup~^126^^ +~06010~^2^1^~can (10.75 oz)~^305^^ +~06011~^1^.5^~cup~^124^1^ +~06013~^1^.5^~cup (4 fl oz)~^126^^ +~06013~^2^1^~can (10.75 oz)~^305^^ +~06014~^1^1^~serving 1/2 cup~^124^1^ +~06015~^1^1^~cup~^245^^ +~06016~^1^.5^~cup (4 fl oz)~^126^^ +~06016~^2^1^~can (10.75 oz)~^305^^ +~06017~^1^.5^~cup (4 fl oz)~^126^^ +~06017~^2^1^~can (10.75 oz)~^305^^ +~06018~^1^1^~can~^530^18^7.046 +~06018~^2^1^~cup~^243^18^3.734 +~06019~^1^.5^~cup~^124^24^6.049 +~06022~^1^1^~cup~^240^^ +~06022~^2^1^~can 19 oz~^539^^ +~06023~^1^.5^~cup~^126^^ +~06024~^1^1^~cup~^255^16^11.763 +~06025~^1^.5^~cup~^121^^ +~06025~^2^1^~can (10.7 oz)~^303^^ +~06026~^1^1^~cup (8 fl oz)~^263^^ +~06026~^2^1^~can (11.25 oz)~^319^^ +~06027~^1^1^~cup (8 fl oz)~^240^^ +~06027~^2^1^~can (19 oz)~^539^^ +~06028~^1^.5^~cup (4 fl oz)~^126^^ +~06028~^2^1^~can (10.75 oz)~^305^^ +~06029~^1^.5^~cup~^126^1^ +~06030~^1^.5^~cup~^126^1^ +~06030~^2^1^~can (10.7 oz)~^303^^ +~06032~^1^.5^~cup~^124^1^ +~06032~^2^1^~can (10.5 oz)~^310^^ +~06037~^1^1^~cup (8 fl oz)~^248^^ +~06037~^2^1^~can (20 oz)~^567^^ +~06038~^1^.5^~cup condensed~^124^1^ +~06039~^1^1^~cup~^240^^ +~06039~^2^1^~can (19 oz)~^539^^ +~06040~^1^.5^~cup (4 fl oz)~^123^^ +~06040~^2^1^~can (10.5 oz)~^298^^ +~06041~^1^1^~serving 1/2 cup~^126^1^ +~06042~^1^.5^~cup (4 fl oz)~^126^^ +~06042~^2^1^~can (10.75 oz)~^305^^ +~06043~^1^.5^~cup~^126^23^4.295 +~06044~^1^.5^~cup (4 fl oz)~^126^^ +~06044~^2^1^~can (10.75 oz)~^305^^ +~06045~^1^.5^~cup (4 fl oz)~^123^^ +~06045~^2^1^~can (10.5 oz)~^298^^ +~06046~^1^.5^~cup~^126^^ +~06046~^2^1^~can (10.75 oz)~^305^^ +~06047~^1^1^~serving 1/2 cup~^126^1^ +~06048~^1^.5^~cup (4 fl oz)~^123^^ +~06048~^2^1^~can (10.5 oz)~^298^^ +~06049~^1^.5^~cup~^128^^ +~06049~^2^1^~can (11.2 oz)~^319^^ +~06050~^1^1^~cup~^240^^ +~06050~^2^1^~can (19 oz)~^539^^ +~06051~^1^.5^~cup (4 fl oz)~^135^^ +~06051~^2^1^~can (11.5 oz)~^326^^ +~06053~^1^.5^~cup~^124^1^ +~06054~^1^.5^~cup~^126^1^ +~06056~^1^.5^~cup~^126^^ +~06056~^2^1^~can~^305^^ +~06057~^1^1^~serving 1/2 cup~^124^1^ +~06058~^1^1^~serving 1/2 cup~^126^1^ +~06061~^1^1^~cup (8 fl oz)~^251^^ +~06061~^2^1^~can (10.75 oz)~^305^^ +~06062~^1^.5^~cup~^123^12^7.441 +~06063~^1^.5^~cup (4 fl oz)~^129^^ +~06063~^2^1^~can (11 oz), undiluted~^312^^ +~06064~^1^1^~cup (8 fl oz)~^236^^ +~06064~^2^1^~can (18.75 oz)~^532^^ +~06067~^1^1^~cup~^230^20^8.753 +~06068~^1^.5^~cup~^126^^ +~06068~^2^1^~can (10.5 oz)~^298^^ +~06070~^1^1^~cup~^245^1^ +~06070~^2^1^~can (19 oz)~^539^^ +~06071~^1^.5^~cup~^126^^ +~06071~^2^1^~can (10.75 oz)~^305^^ +~06072~^1^.5^~cup~^123^^ +~06072~^2^1^~can (10.5 oz)~^298^^ +~06075~^1^1^~cube~^3.6^^ +~06075~^2^1^~packet~^6.0^^ +~06076~^1^1^~cube~^3.6^^ +~06080~^1^1^~cube~^4.0^^ +~06080~^2^1^~teaspoon~^2.0^^ +~06081~^1^1^~cube~^4.8^^ +~06082~^1^1^~serving 1/2 cup~^126^1^ +~06084~^1^1^~serving 1/2 cup~^126^1^ +~06091~^1^1^~serving 1/2 cup~^124^1^ +~06094~^1^1^~serving 1 tbsp~^7.5^1^ +~06094~^2^1^~packet~^39^^ +~06097~^1^1^~serving 1/2 cup~^124^1^ +~06101~^1^1^~packet~^18^^ +~06112~^1^1^~tbsp~^18^^ +~06112~^2^1^~fl oz~^36.0^^ +~06112~^3^1^~cup~^288^^ +~06114~^1^.25^~cup~^59^^ +~06114~^2^1^~can~^298^^ +~06115~^1^1^~tsp~^3.0^^ +~06116~^1^1^~cup~^233^^ +~06116~^2^1^~can~^291^^ +~06117~^1^1^~serving 1/2 cup~^128^1^ +~06118~^1^1^~tbsp~^6.0^^ +~06119~^1^.25^~cup~^57^^ +~06119~^2^1^~cup~^228^8^2 +~06119~^3^1^~jar 10.5 oz~^273^27^ +~06119~^4^1^~jar 12 oz~^324^36^ +~06120~^1^1^~tbsp~^8.0^^ +~06120~^2^1^~serving~^8.0^^ +~06121~^1^1^~cup~^238^^ +~06121~^2^1^~can~^298^^ +~06122~^1^1^~cup (8 fl oz)~^21^^ +~06123~^1^1^~cup (8 fl oz)~^24^^ +~06124~^1^1^~serving~^6.7^^ +~06125~^1^1^~cup~^238^^ +~06125~^2^1^~tbsp~^14.9^^ +~06125~^3^1^~tsp~^5.0^^ +~06125~^4^1^~can~^298^^ +~06126~^1^1^~serving~^7.0^^ +~06127~^1^1^~cup (8 fl oz)~^25^^ +~06128~^1^1^~packet~^74^^ +~06128~^2^1^~packet (6 fl oz)~^11.1^^ +~06142~^1^.5^~cup~^103^^ +~06145~^1^1^~serving 1/2 cup~^126^1^ +~06146~^1^1^~serving 1/2 cup~^126^1^ +~06147~^1^.5^~cup (4 fl oz)~^126^^ +~06147~^2^1^~can (10.75 oz)~^305^^ +~06149~^1^.5^~cup~^124^^ +~06150~^1^1^~tbsp~^17^54^1.204 +~06150~^2^.5^~cup~^143^54^6.154 +~06150~^3^1^~cup~^279^54^13.399 +~06151~^1^1^~tbsp~^19^^ +~06151~^2^1^~cup~^305^^ +~06152~^1^.25^~cup~^63^^ +~06158~^1^.5^~cup (4 fl oz)~^129^^ +~06158~^2^1^~can (11 oz), undiluted~^312^^ +~06159~^1^1^~cup~^148^12^4.496 +~06159~^2^1^~can~^294^12^3.502 +~06164~^1^2^~tbsp~^36^24^1.646 +~06164~^2^.5^~cup~^130^^ +~06164~^3^1^~cup~^259^^ +~06165~^1^1^~cup~^250^^ +~06165~^2^.5^~cup~^125^^ +~06166~^1^1^~cup~^250^^ +~06166~^2^.5^~cup~^125^^ +~06167~^1^1^~cup~^250^^ +~06167~^2^.5^~cup~^125^^ +~06168~^1^1^~tsp~^4.7^^ +~06168~^2^.25^~tsp~^1.2^^ +~06169~^1^1^~tsp~^4.7^^ +~06169~^2^.25^~tsp~^1.2^^ +~06170~^1^1^~cup~^240^^ +~06172~^1^1^~cup~^240^^ +~06174~^1^1^~cup~^233^^ +~06175~^1^1^~tbsp~^16^^ +~06176~^1^1^~tbsp~^18^^ +~06177~^1^1^~cup~^245^^ +~06179~^1^1^~tbsp~^18^^ +~06180~^1^1^~cup~^216^^ +~06182~^1^1^~cup~^251^^ +~06183~^1^1^~cup~^240^^ +~06188~^1^1^~cup~^219^35^4.409 +~06188~^2^1^~can (14.5 oz)~^407^21^8.308 +~06188~^3^1^~carton (32 oz)~^923^23^12.407 +~06189~^1^2^~Tbsp~^36^^ +~06190~^1^1^~cup~^245^^ +~06192~^1^1^~cup~^253^^ +~06193~^1^1^~cup~^245^^ +~06194~^1^1^~cup~^249^28^9.102 +~06195~^1^.5^~cup condensed~^124^1^ +~06201~^1^1^~cup (8 fl oz)~^248^^ +~06201~^2^1^~can (10.75 oz), prepared~^602^^ +~06208~^1^1^~cup~^245^^ +~06209~^1^.5^~cup condensed~^124^1^ +~06210~^1^1^~cup (8 fl oz)~^248^^ +~06210~^2^1^~can (10.75 oz), prepared~^602^^ +~06211~^1^1^~cup~^251^^ +~06211~^2^1^~can (11 oz), prepared~^609^^ +~06212~^1^.5^~cup condensed~^126^1^ +~06213~^1^1^~serving 1/2 cup~^124^1^ +~06214~^1^.5^~cup condensed~^124^1^ +~06215~^1^.5^~cup condensed~^124^1^ +~06216~^1^1^~cup (8 fl oz)~^248^^ +~06216~^2^1^~fl oz~^31.0^^ +~06216~^3^1^~can (10.75 oz), prepared~^602^^ +~06217~^1^.5^~cup~^126^^ +~06218~^1^.5^~cup condensed~^124^1^ +~06219~^1^.5^~cup condensed~^124^1^ +~06220~^1^1^~serving 1/2 cup~^130^1^ +~06221~^1^1^~serving 1/2 cup~^130^1^ +~06222~^1^1^~serving 1/2 cup~^130^1^ +~06223~^1^1^~serving 1/2 cup~^130^1^ +~06224~^1^1^~serving 1/2 cup~^130^1^ +~06225~^1^1^~serving 1/2 cup~^130^1^ +~06226~^1^1^~serving 1/2 cup~^125^1^ +~06228~^1^1^~serving 1/2 cup~^130^1^ +~06229~^1^1^~serving 1/2 cup~^130^1^ +~06230~^1^1^~serving 1 cup~^252^^ +~06230~^2^1^~fl oz~^31.5^^ +~06231~^1^1^~serving 1/2 cup~^125^1^ +~06232~^1^1^~serving 1/2 cup~^125^1^ +~06233~^1^1^~serving 1/2 cup~^125^1^ +~06234~^1^1^~serving 1/2 cup~^125^1^ +~06235~^1^1^~serving 1/2 cup~^130^1^ +~06236~^1^1^~serving 1/2 cup~^130^1^ +~06237~^1^1^~serving 1/2 cup~^125^1^ +~06239~^1^1^~serving 1/2 cup~^125^1^ +~06240~^1^1^~serving 1/2 cup~^130^1^ +~06241~^1^1^~serving 1 cup~^245^1^ +~06242~^1^1^~serving 1 cup~^245^1^ +~06243~^1^1^~serving 1 cup~^252^^ +~06243~^2^1^~fl oz~^31.5^^ +~06244~^1^1^~serving 1 cup~^245^1^ +~06245~^1^1^~serving 1 cup~^245^1^ +~06246~^1^1^~cup (8 fl oz)~^248^^ +~06246~^2^1^~can (10.75 oz), prepared~^602^^ +~06248~^1^1^~cup (8 fl oz)~^245^^ +~06248~^2^1^~can (10.5 oz), prepared~^595^^ +~06249~^1^1^~cup (8 fl oz)~^254^^ +~06249~^2^1^~can (11.25 oz), prepared~^616^^ +~06250~^1^1^~serving 1 cup~^245^1^ +~06251~^1^1^~serving 1 cup~^245^1^ +~06252~^1^1^~serving 1 cup~^245^1^ +~06253~^1^1^~cup (8 fl oz)~^248^^ +~06253~^2^1^~can (10.75 oz), prepared~^602^^ +~06256~^1^1^~cup (8 fl oz)~^253^^ +~06256~^2^1^~fl oz~^31.6^^ +~06307~^1^1^~tbsp~^16^12^.455 +~06307~^2^.5^~cup~^146^12^3.297 +~06307~^3^1^~cup~^283^12^8.151 +~06309~^1^.5^~cup condensed~^126^1^ +~06311~^1^1^~serving 1/2 cup~^126^1^ +~06312~^1^1^~serving 1/2 cup~^124^1^ +~06314~^1^1^~serving 1 cup~^243^1^ +~06315~^1^1^~serving 1 cup~^240^2^ +~06316~^1^1^~serving 1 cup~^246^1^ +~06317~^1^.25^~cup~^59^1^ +~06318~^1^.25^~cup~^59^1^ +~06319~^1^.25^~cup~^59^1^ +~06320~^1^.25^~cup~^59^1^ +~06321~^1^.25^~cup~^59^1^ +~06322~^1^.25^~cup~^59^1^ +~06323~^1^.25^~cup~^60^1^ +~06324~^1^.25^~cup~^59^1^ +~06325~^1^.25^~cup~^60^1^ +~06326~^1^.25^~cup~^59^1^ +~06327~^1^.25^~cup~^59^1^ +~06328~^1^.25^~cup~^59^1^ +~06329~^1^.25^~cup~^59^1^ +~06330~^1^.25^~cup~^59^1^ +~06331~^1^.25^~cup~^59^1^ +~06332~^1^.25^~cup~^60^1^ +~06333~^1^1^~serving 1/2 cup~^124^1^ +~06334~^1^1^~serving 1/2 cup~^124^1^ +~06336~^1^.5^~cup condensed~^124^1^ +~06337~^1^.5^~cup condensed~^124^1^ +~06338~^1^.5^~cup condensed~^129^12^2.267 +~06339~^1^.5^~cup condensed~^124^1^ +~06340~^1^1^~serving 1/2 cup~^124^1^ +~06341~^1^.5^~cup condensed~^124^1^ +~06342~^1^1^~serving 1/ 2 cup~^124^1^ +~06343~^1^1^~serving 1/2 cup~^124^1^ +~06349~^1^1^~serving 1/2 cup~^126^1^ +~06350~^1^1^~serving 1/ 2 cup~^126^1^ +~06351~^1^1^~serving 1/2 cup~^126^1^ +~06353~^1^1^~serving 1/2 cup~^124^1^ +~06354~^1^1^~serving 1/2 cup~^126^1^ +~06355~^1^1^~serving 1/2 cup~^124^1^ +~06357~^1^1^~serving 1/2 cup~^126^1^ +~06358~^1^1^~cup (8 fl oz)~^251^^ +~06358~^2^1^~can (11 oz), prepared~^609^^ +~06359~^1^1^~serving 1 cup~^252^^ +~06359~^2^1^~fl oz~^31.5^^ +~06361~^1^1^~serving 1/2 cup~^128^1^ +~06363~^1^.5^~cup condensed~^126^1^ +~06364~^1^1^~serving 1/2 cup~^126^1^ +~06365~^1^1^~serving 1/2 cup~^126^1^ +~06366~^1^1^~serving 1/2 cup~^126^1^ +~06367~^1^1^~serving 1/2 cup~^126^1^ +~06373~^1^1^~serving 1/2 cup~^126^1^ +~06374~^1^1^~serving 1/2 cup~^126^1^ +~06375~^1^.5^~cup condensed~^126^1^ +~06377~^1^.5^~cup condensed~^124^1^ +~06379~^1^1^~serving 1/2 cup~^126^1^ +~06380~^1^1^~serving 1/2 cup~^128^1^ +~06383~^1^1^~cup~^245^1^ +~06384~^1^1^~cup~^245^1^ +~06387~^1^1^~cup~^245^1^ +~06388~^1^1^~cup~^245^1^ +~06389~^1^1^~cup~^245^1^ +~06391~^1^1^~cup~^245^1^ +~06392~^1^1^~cup~^245^1^ +~06393~^1^1^~cup~^245^1^ +~06395~^1^1^~cup~^243^11^2.691 +~06395~^2^1^~can~^526^11^5.025 +~06396~^1^1^~cup~^245^1^ +~06398~^1^1^~cup~^245^1^ +~06399~^1^1^~cup~^245^1^ +~06400~^1^1^~cup~^245^1^ +~06401~^1^1^~cup (8 fl oz)~^244^^ +~06401~^2^1^~can (10.75 oz), prepared~^593^^ +~06402~^1^1^~cup~^247^^ +~06402~^2^1^~can (11 oz), prepared~^600^^ +~06403~^1^1^~cup~^245^1^ +~06404~^1^1^~serving 1 cup~^266^^ +~06404~^2^1^~fl oz~^33.3^^ +~06405~^1^1^~cup~^245^1^ +~06406~^1^1^~cup (8 fl oz)~^250^^ +~06406~^2^1^~can (11.25 oz), prepared~^607^^ +~06408~^1^1^~cup~^245^1^ +~06409~^1^1^~cup (8 fl oz)~^244^^ +~06409~^2^1^~can (10.75 oz), prepared~^593^^ +~06410~^1^1^~cup~^248^^ +~06410~^2^1^~can (10.75 oz), prepared~^593^^ +~06411~^1^1^~cup (8 fl oz)~^247^^ +~06411~^2^1^~can (11 oz), prepared~^600^^ +~06413~^1^1^~cup (8 fl oz)~^244^^ +~06413~^2^1^~can (10.75 oz), prepared~^593^^ +~06414~^1^1^~cup~^245^1^ +~06415~^1^1^~cup~^206^5^7.759 +~06415~^2^1^~can~^527^21^6.183 +~06416~^1^1^~cup~^244^^ +~06416~^2^1^~fl oz~^30.5^^ +~06416~^3^1^~can (10.75 oz), prepared~^593^^ +~06417~^1^1^~cup~^244^^ +~06417~^2^1^~can (10.75 oz), prepared~^593^^ +~06418~^1^1^~serving~^245^1^ +~06419~^1^1^~serving 1 cup~^248^^ +~06423~^1^1^~serving 1 cup~^243^^ +~06426~^1^1^~cup~^261^^ +~06426~^2^1^~fl oz~^32.6^^ +~06428~^1^1^~serving 1 cup~^249^^ +~06428~^2^1^~fl oz~^31.1^^ +~06429~^1^1^~cup~^245^1^ +~06430~^1^1^~serving 1 cup~^248^^ +~06430~^2^1^~fl oz~^31.0^^ +~06431~^1^1^~cup~^251^12^9.511 +~06431~^2^1^~can~^519^12^6.135 +~06432~^1^1^~cup (8 fl oz)~^241^^ +~06432~^2^1^~can (10.5 oz), prepared~^586^^ +~06433~^1^1^~cup~^245^1^ +~06434~^1^1^~cup~^247^9^1.994 +~06434~^2^1^~can~^529^9^7.726 +~06437~^1^1^~cup~^245^1^ +~06438~^1^1^~serving~^245^1^ +~06439~^1^1^~cup~^245^1^ +~06440~^1^1^~cup (8 fl oz)~^241^^ +~06440~^2^1^~can (10.5 oz), prepared~^586^^ +~06441~^1^1^~cup~^245^1^ +~06442~^1^1^~cup (8 fl oz)~^244^^ +~06442~^2^1^~can (10.75 oz), prepared~^593^^ +~06443~^1^1^~serving 1 cup~^248^^ +~06443~^2^1^~fl oz~^31.0^^ +~06444~^1^1^~cup (8 fl oz)~^244^^ +~06444~^2^1^~can (10.75 oz), prepared~^593^^ +~06446~^1^1^~cup (8 fl oz)~^244^^ +~06446~^2^1^~can (10.75 oz), prepared~^593^^ +~06447~^1^1^~cup~^245^1^ +~06448~^1^1^~cup (8 fl oz)~^241^^ +~06448~^2^1^~can (10.5 oz), prepared~^586^^ +~06449~^1^1^~serving 1 cup~^259^^ +~06449~^2^1^~fl oz~^32.4^^ +~06451~^1^1^~cup (8 fl oz)~^253^^ +~06451~^2^1^~can (11.5 oz), prepared~^614^^ +~06453~^1^1^~cup (8 fl oz)~^244^^ +~06453~^2^1^~can (10.75 oz), prepared~^593^^ +~06454~^1^1^~cup~^245^1^ +~06456~^1^1^~cup~^244^^ +~06456~^2^1^~can (10.75 oz), prepared~^593^^ +~06457~^1^1^~cup~^245^1^ +~06459~^1^1^~cup~^245^1^ +~06461~^1^1^~cup~^244^^ +~06461~^2^1^~can (10.75 oz), prepared~^593^^ +~06462~^1^1^~cup~^245^1^ +~06463~^1^1^~cup~^247^^ +~06463~^2^1^~can (11 oz), prepared~^600^^ +~06465~^1^1^~cup~^244^^ +~06465~^2^1^~fl oz~^30.5^^ +~06465~^3^1^~can (10.75 oz), prepared~^593^^ +~06466~^1^1^~cup (8 fl oz)~^241^^ +~06466~^2^1^~fl oz~^30.1^^ +~06466~^3^1^~can (10.5 oz), prepared~^586^^ +~06468~^1^1^~cup~^241^^ +~06468~^2^1^~can (10.5 oz), prepared~^586^^ +~06470~^1^1^~serving 1 container~^298^1^ +~06471~^1^1^~cup (8 fl oz)~^244^^ +~06471~^2^1^~can (10.75 oz), prepared~^593^^ +~06472~^1^1^~cup (8 fl oz)~^241^^ +~06472~^2^1^~can (10.5 oz), prepared~^586^^ +~06475~^1^1^~serving 1 cup~^240^^ +~06475~^2^1^~fl oz~^29.9^^ +~06476~^1^1^~serving 1 cup~^240^^ +~06476~^2^1^~fl oz~^29.9^^ +~06480~^1^1^~cup 8 fl oz~^241^^ +~06480~^2^1^~fl oz~^30.1^^ +~06481~^1^1^~cup (8 fl oz)~^243^^ +~06481~^2^1^~cube (6 fl oz prepared)~^182^^ +~06482~^1^1^~serving 1 container~^305^1^ +~06483~^1^1^~cup 8 fl oz~^261^^ +~06483~^2^1^~fl oz~^32.6^^ +~06487~^1^1^~serving 1 container~^298^1^ +~06494~^1^1^~serving 1 cup~^230^^ +~06494~^2^1^~fl oz~^28.7^^ +~06497~^1^1^~cup~^245^1^ +~06497~^2^1^~serving~^245^1^ +~06498~^1^1^~cup 8 fl oz~^265^^ +~06502~^1^1^~cup~^245^1^ +~06502~^2^1^~serving~^245^1^ +~06503~^1^1^~cup~^245^1^ +~06503~^2^1^~serving~^245^1^ +~06504~^1^1^~cup~^245^1^ +~06504~^2^1^~serving~^245^1^ +~06505~^1^1^~cup~^245^1^ +~06505~^2^1^~serving~^245^1^ +~06509~^2^1^~serving~^245^1^ +~06528~^1^1^~cup~^245^^ +~06529~^1^1^~cup~^245^1^ +~06537~^1^1^~cup~^245^1^ +~06541~^1^1^~cup~^245^1^ +~06543~^1^1^~cup~^245^1^ +~06544~^1^1^~cup~^245^1^ +~06545~^1^1^~cup~^256^7^7.522 +~06545~^2^1^~can~^519^7^3.198 +~06546~^1^1^~cup~^245^1^ +~06547~^1^1^~cup (8 fl oz)~^244^^ +~06547~^2^1^~can (10.75 oz), prepared~^593^^ +~06548~^1^1^~cup~^245^1^ +~06549~^1^1^~cup (8 fl oz)~^244^^ +~06549~^2^1^~can (10.75 oz), prepared~^593^^ +~06558~^1^1^~cup (8 fl oz)~^247^^ +~06558~^2^1^~can (11 oz), prepared~^600^^ +~06559~^1^1^~serving 1 cup~^248^^ +~06559~^2^1^~fl oz~^31.0^^ +~06580~^1^1^~cup~^245^1^ +~06583~^1^1^~package without flavor packet~^81^45^3.072 +~06583~^2^1^~packet~^5.8^45^.517 +~06584~^1^1^~serving 1/2 cup~^121^^ +~06584~^2^1^~can 10.7 oz (10.75 oz)~^303^^ +~06585~^1^1^~container~^305^1^ +~06586~^1^1^~container~^305^1^ +~06587~^1^1^~container~^305^1^ +~06588~^1^1^~container~^305^1^ +~06589~^1^1^~container~^305^1^ +~06590~^1^1^~container~^305^1^ +~06592~^1^1^~container~^305^1^ +~06594~^1^1^~container~^305^1^ +~06595~^1^1^~container~^305^1^ +~06596~^1^1^~container~^305^1^ +~06597~^1^1^~serving~^32^1^ +~06597~^2^2^~tbsp~^32^1^ +~06598~^1^1^~serving~^32^1^ +~06598~^2^2^~tbsp~^32^1^ +~06599~^1^.25^~cup~^60^1^ +~06599~^2^1^~serving~^60^1^ +~06600~^1^1^~serving~^16^1^ +~06600~^2^2^~tbsp~^16^1^ +~06601~^1^1^~serving~^32^1^ +~06601~^2^2^~tbsp~^32^1^ +~06602~^1^1^~serving~^32^1^ +~06602~^2^2^~tbsp~^32^1^ +~06603~^1^1^~serving~^32^1^ +~06603~^2^2^~tbsp~^32^1^ +~06604~^1^1^~tbsp~^16^1^ +~06604~^2^1^~serving~^16^1^ +~06605~^1^1^~serving~^32^1^ +~06605~^2^2^~tbsp~^32^1^ +~06609~^1^1^~cup~^235^1^ +~06609~^2^1^~serving~^235^1^ +~06611~^1^1^~cup~^213^5^3.114 +~06611~^2^1^~can 14.5 oz~^413^10^5.272 +~06611~^3^1^~carton 32 oz~^925^15^14.306 +~06615~^1^1^~cup~^220^5^2.588 +~06615~^2^1^~carton 32 oz~^928^20^5.829 +~06617~^1^1^~cup~^245^1^ +~06618~^1^1^~tbsp~^17^5^.344 +~06619~^1^10^~oz 1 pouch~^283^1^ +~06620~^1^10^~oz 1 pouch~^283^1^ +~06621~^1^10^~oz 1 pouch~^283^1^ +~06622~^1^10^~oz 1 pouch~^283^1^ +~06623~^1^10^~oz 1 pouch~^283^1^ +~06624~^1^10^~oz 1 pouch~^283^1^ +~06625~^1^10^~oz 1 pouch~^283^1^ +~06626~^1^.25^~cup~^63^6^1.293 +~06627~^1^.25^~cup~^61^22^1.962 +~06628~^1^.25^~cup~^63^6^1.293 +~06629~^1^.25^~cup~^62^11^1.926 +~06630~^1^.25^~cup~^60^6^2.499 +~06631~^1^1^~tsp~^6.5^16^.672 +~06632~^1^1^~tsp~^6.9^5^.277 +~06633~^1^1^~tsp~^6.2^9^.754 +~06700~^1^1^~cup~^221^40^2.952 +~06700~^2^1^~can~^390^8^4.302 +~06700~^3^1^~carton (32 oz)~^926^28^5.929 +~06725~^1^1^~serving~^240^^ +~06725~^2^1^~package yields~^539^^ +~06726~^1^1^~serving~^240^^ +~06726~^2^1^~package yields~^539^^ +~06728~^1^1^~serving~^240^^ +~06728~^2^1^~package yields~^539^^ +~06729~^1^1^~serving~^240^^ +~06729~^2^1^~package yields~^539^^ +~06730~^1^1^~serving~^243^^ +~06730~^2^1^~package yields~^539^^ +~06731~^1^1^~serving 1/2 cup~^128^^ +~06733~^1^1^~serving~^127^^ +~06733~^2^1^~package yields~^312^^ +~06734~^1^1^~serving~^125^^ +~06734~^2^1^~package yields~^298^^ +~06736~^1^1^~serving~^126^^ +~06736~^2^1^~package yields~^305^^ +~06738~^1^1^~serving~^135^^ +~06738~^2^1^~package yields~^326^^ +~06739~^1^1^~serving~^136^^ +~06739~^2^1^~package yields~^298^^ +~06740~^1^1^~serving~^240^^ +~06740~^2^1^~package yields~^454^^ +~06742~^1^1^~serving~^292^^ +~06742~^2^1^~package yields~^292^^ +~06748~^1^1^~cup~^210^5^7.19 +~06748~^2^1^~can~^526^18^7.842 +~06749~^1^1^~cup~^250^15^4.641 +~06749~^2^1^~can~^528^15^7.164 +~06930~^1^.25^~cup~^63^^ +~06931~^1^1^~serving 1/2 cup~^132^36^10.729 +~06932~^1^1^~serving 1/2 cup~^130^1^ +~06955~^1^.5^~cup~^124^^ +~06956~^1^1^~serving 1/2 cup~^121^^ +~06956~^2^1^~can 10.7 oz~^303^^ +~06957~^1^1^~serving~^6.7^^ +~06957~^2^1^~package~^454^^ +~06958~^1^1^~serving~^6.7^^ +~06958~^2^1^~package (16 oz)~^454^^ +~06959~^1^1^~serving~^6.7^^ +~06959~^2^1^~package (16 oz)~^454^^ +~06961~^1^1^~tbsp~^15^^ +~06961~^2^1^~cup~^245^^ +~06962~^1^1^~tbsp~^15^^ +~06962~^2^1^~cup~^245^^ +~06963~^1^1^~cup~^244^^ +~06963~^2^1^~fl oz~^30.5^^ +~06964~^1^1^~serving 1 cup~^248^^ +~06964~^2^1^~fl oz~^31.0^^ +~06965~^1^1^~cup~^259^^ +~06965~^2^1^~fl oz~^32.4^^ +~06966~^1^1^~serving 1 cup~^248^^ +~06966~^2^1^~fl oz~^31.0^^ +~06967~^1^1^~cup~^253^^ +~06968~^1^1^~cup~^244^^ +~06968~^2^1^~can (10.75 oz)~^305^^ +~06969~^1^1^~serving 1/3 cup~^39^^ +~06970~^1^1^~cup~^240^^ +~06971~^1^1^~tbsp~^17^^ +~06971~^2^1^~cup~^275^^ +~06972~^1^1^~packet~^6.0^^ +~06972~^2^1^~cup~^273^^ +~06974~^1^1^~cup~^241^^ +~06976~^1^1^~serving 1/2 cup~^128^1^ +~06976~^2^1^~cup~^257^1^ +~06977~^1^1^~cup~^236^^ +~06978~^1^1^~cup~^251^^ +~06980~^1^1^~cup~^240^^ +~06981~^1^1^~tsp~^2.6^^ +~06981~^2^1^~cube~^3.6^^ +~06982~^1^1^~package without flavor packet~^82^23^2.649 +~06982~^2^1^~packet~^5.6^23^.59 +~06983~^1^1^~package without flavor packet~^81^22^3.43 +~06983~^2^1^~packet~^6.0^22^.309 +~06984~^1^1^~serving 1 cup 8 oz~^227^1^ +~06985~^1^1^~serving 1/4 cup 2 oz~^57^1^ +~06986~^1^.5^~cup condensed~^126^1^ +~06987~^1^1^~serving 1/2 cup~^124^1^ +~06988~^1^.5^~cup condensed~^124^1^ +~06989~^1^.5^~cup condensed~^126^1^ +~06990~^1^1^~serving 1/2 cup~^120^1^ +~06991~^1^1^~serving 1/2 cup~^124^1^ +~06992~^1^1^~serving 1/2 cup~^126^1^ +~06994~^1^1^~serving 1/2 cup~^130^1^ +~06995~^1^1^~serving 1/2 cup~^130^1^ +~06996~^1^.25^~cup~^59^1^ +~06997~^1^.25^~cup~^59^1^ +~06998~^1^.25^~cup~^59^1^ +~06999~^1^.25^~cup~^56^1^ +~06999~^2^1^~cup~^226^4^.492 +~06999~^3^1^~can 10.5 oz~^273^27^ +~07001~^1^1^~oz~^28.35^^ +~07001~^2^1^~slice (5-7/8" x 3-1/2" x 1/16")~^23^^ +~07002~^1^2^~oz~^56^1^ +~07003~^1^1^~slice (4" dia x 1/8" thick)~^23^^ +~07003~^2^1^~slice (2-3/4" dia x 1/16")~^6.0^^ +~07004~^1^1^~slice~^23^^ +~07004~^2^1^~oz~^28.35^^ +~07005~^1^4^~slices~^100^1^ +~07006~^1^1^~sausage~^91^1^ +~07007~^1^1^~slice~^30^63^4.827 +~07007~^2^1^~serving~^28^2^ +~07008~^1^3.527^~oz~^100^2^ +~07010~^1^1^~slice, medium (4-1/2" dia x 1/8" thick) (1 oz)~^28^^ +~07010~^2^1^~slice (4" dia x 1/8" thick)~^23^^ +~07011~^1^.99^~oz 1 serving~^28^^0 +~07011~^2^1^~serving~^28^^ +~07011~^3^1^~package~^454^^ +~07013~^1^1^~link cooked~^85^1^ +~07014~^1^1^~oz~^28.35^^ +~07014~^2^1^~slice (2-1/2" dia x 1/4" thick)~^18^^ +~07015~^1^1^~link~^70^^ +~07016~^1^2.33^~links~^100^1^ +~07018~^1^1^~serving (1 serving)~^56^^ +~07019~^1^1^~oz~^28.35^^ +~07019~^2^1^~link (4" long)~^60^^ +~07020~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07020~^2^2^~slices~^57^^ +~07021~^1^1^~slice~^38^^ +~07022~^1^1^~frankfurter~^50^35^5.748 +~07022~^2^1^~package~^446^35^26.463 +~07024~^1^3^~oz~^85^^ +~07024~^2^1^~link~^45^22^9.062 +~07025~^1^1^~oz~^28.35^^ +~07025~^2^1^~frankfurter~^45^^ +~07026~^1^1^~oz~^28.35^^ +~07026~^2^1^~slice (4-1/4" x 4-1/4" x 1/16")~^21^^ +~07027~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07027~^2^1^~slice (4-1/4" x 4-1/4" x 1/16")~^21^^ +~07028~^1^1^~slice~^23^20^6.218 +~07029~^1^56^~grams 1 serving~^56^^ +~07029~^2^1^~slice~^28^^ +~07030~^1^1^~oz~^28.35^^ +~07030~^2^1^~slice (4-1/4" x 4-1/4" x 1/16")~^21^^ +~07031~^1^1^~tbsp~^15.0^^ +~07031~^2^1^~oz~^28.35^^ +~07032~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07032~^2^2^~slices~^57^^ +~07033~^1^1^~tbsp~^15.0^^ +~07033~^2^1^~oz~^28.35^^ +~07034~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07034~^2^45^~g~^45^1^ +~07036~^1^1^~link, 4/lb~^113^^ +~07036~^2^1^~link, 5/lb~^91^^ +~07038~^1^1^~link~^72^^ +~07038~^2^1^~oz~^28.35^^ +~07039~^1^1^~serving 2 slices~^57^^ +~07039~^2^1^~oz~^28.35^^ +~07039~^3^2^~oz~^57^1^ +~07040~^1^1^~oz~^28.35^^ +~07040~^2^1^~slice~^38^^ +~07041~^1^1^~slice (2-1/2" dia x 1/4" thick)~^18^^ +~07041~^2^1^~oz~^28.35^^ +~07043~^1^1^~slice oval~^9.3^24^1.316 +~07043~^2^1^~slice rectangle~^13.8^12^1.843 +~07044~^1^1^~serving~^45^6^3.447 +~07044~^2^1^~can~^830^6^3.01 +~07045~^1^1^~oz~^28.35^^ +~07045~^2^1^~slice (4-1/4" x 4-1/4" x 1/16")~^21^^ +~07046~^1^1^~slice~^28^1^ +~07046~^2^1^~slice NFS~^28^1^ +~07046~^3^1^~cup wafer slices or shaved~^81^1^ +~07046~^4^1^~cubic inch~^14.0^1^ +~07046~^5^2^~oz~^57^1^ +~07050~^1^1^~oz~^28.35^^ +~07050~^2^1^~slice (15 per 8 oz package)~^15.0^^ +~07051~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07051~^2^2^~slices~^57^^ +~07052~^1^2^~slices~^57^^ +~07052~^2^1^~package (8 oz)~^227^^ +~07053~^1^1^~tbsp~^13.0^^ +~07053~^2^1^~oz~^28.35^^ +~07054~^1^1^~tbsp~^13.0^^ +~07054~^2^1^~oz~^28.35^^ +~07055~^1^1^~tbsp~^13.0^^ +~07055~^2^1^~oz~^28.35^^ +~07056~^1^3.52^~slices~^100^1^ +~07057~^1^3^~oz~^85^^ +~07057~^2^1^~piece~^2.0^689^.249 +~07057~^3^1^~oz~^28^^ +~07058~^1^1^~slice~^38^6^0 +~07058~^2^2^~slices~^57^^ +~07059~^1^3^~oz~^85^^ +~07059~^2^1^~sausage (10" long x 1-1/4" dia)~^227^^ +~07060~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07060~^2^2^~slices~^57^^ +~07061~^1^1^~oz~^28.35^^ +~07061~^2^1^~slice (4-1/4" x 4-1/4" x 1/16")~^21^^ +~07062~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~07062~^2^2^~slices~^57^^ +~07063~^1^1^~link~^25^90^ +~07064~^1^1^~patty~^27^90^ +~07064~^2^1^~link~^23^240^ +~07064~^3^1^~serving~^48^^ +~07065~^1^1^~link (raw dimensions: 4" long x 7/8" dia), cooked~^13.0^^ +~07065~^2^1^~patty, cooked (raw dimensions: 3-7/8" dia x 1/4" thick)~^27^^ +~07066~^1^1^~cup~^128^^ +~07067~^1^1^~tbsp~^13.0^^ +~07067~^2^1^~oz~^28.35^^ +~07068~^1^1^~slice~^26^2^ +~07068~^2^1^~oz~^28.35^1^ +~07069~^1^1^~slice round~^12.3^40^12.725 +~07070~^1^1^~serving~^28^1^ +~07071~^1^1^~package (4 oz)~^113^^ +~07071~^2^1^~slice (3-1/8" dia x 1/16" thick)~^10.0^^ +~07072~^1^1^~slice~^9.8^54^6.874 +~07072~^2^1^~oz~^28^1^ +~07072~^3^3^~slices 1 serving~^27^1^ +~07073~^1^1^~tbsp~^15.0^^ +~07073~^2^1^~oz~^28.35^^ +~07074~^1^1^~link (4" long x 1-1/8" dia)~^68^^ +~07074~^2^1^~link, little (2" long x 3/4" dia)~^16^^ +~07075~^1^3^~oz~^85^1^ +~07077~^1^1^~link (4" long x 1-1/8" dia)~^68^^ +~07077~^2^1^~link, little (2" long x 3/4" dia)~^16^^ +~07078~^1^2^~oz 1 serving~^56^4^0 +~07081~^1^1^~slice~^15^24^8.397 +~07083~^1^1^~sausage (7/8" dia x 2" long)~^16^^ +~07083~^2^7^~sausages (drained contents from can, net wt 4 oz)~^113^^ +~07088~^1^1^~slice (4" dia x 1/8" thick)~^23^^ +~07088~^2^1^~oz~^28.35^^ +~07089~^1^1^~link, 4/lb~^83^^ +~07089~^2^1^~link, 5/lb~^67^^ +~07090~^1^1^~slice (4" dia x 1/8" thick)~^23^^ +~07090~^2^1^~oz~^28.35^^ +~07091~^1^1^~slice (4" dia x 1/8" thick)~^23^^ +~07091~^2^1^~oz~^28.35^^ +~07201~^1^1^~serving (1 slice)~^28^^ +~07207~^1^3^~oz~^85^^ +~07207~^2^1^~serving (1 slice)~^28^^ +~07209~^1^1^~serving (4 slices)~^52^^ +~07212~^1^1^~serving (1 slice)~^28^^ +~07230~^1^1^~serving 3 slices~^27^^ +~07230~^2^1^~slice~^9.0^^ +~07236~^1^1^~link~^9.0^^ +~07236~^2^1^~serving~^57^^ +~07241~^1^1^~serving~^45^^ +~07254~^1^1^~serving~^14.0^^ +~07254~^2^1^~slice 12 oz pkg~^16^1329^ +~07254~^3^1^~slice 6 oz pkg~^9.8^160^ +~07278~^1^1^~serving~^30^^ +~07900~^1^3^~oz~^85^^ +~07900~^2^1^~lb 16 oz~^453.6^^ +~07901~^1^1^~oz~^28.35^^ +~07901~^2^1^~link~^48^^ +~07905~^1^1^~frank 1 NLEA serving~^57^1^ +~07906~^1^2^~oz 1 NLEA serving~^56^1^ +~07907~^1^1^~link~^28^^ +~07908~^1^2^~oz 1 NLEA serving~^56^1^ +~07909~^1^2^~oz (1 serving)~^56^^ +~07910~^1^1^~serving 2.96 oz~^84^^ +~07911~^1^.25^~cup~^55^1^ +~07912~^1^1^~serving .25 cup~^57^^ +~07913~^1^3.527^~oz~^100^^ +~07914~^1^1^~link 3 oz~^84^^ +~07915~^1^1^~serving 5 pieces~^55^^ +~07915~^2^5^~pieces~^55^^ +~07916~^1^1^~serving 2.67 oz~^76^^ +~07917~^1^12^~oz serving 2.7 oz~^77^^ +~07918~^1^1^~oz~^28.35^^ +~07919~^1^2^~oz, 2 links~^56^^ +~07920~^1^1^~serving 2.7 oz~^77^^ +~07921~^1^1^~oz~^28^^ +~07922~^1^1^~serving 2.33 oz~^66^^ +~07923~^1^1^~serving 2.96 oz~^84^^ +~07924~^1^1^~serving 2.33 oz~^66^^ +~07925~^1^1^~serving 6 slices~^57^^ +~07926~^1^1^~oz~^28^^ +~07927~^1^1^~serving 2 oz~^56^^ +~07928~^1^1^~link~^84^^ +~07929~^1^2^~oz~^56^^ +~07930~^1^1^~serving 2 oz~^56^^ +~07931~^1^1^~serving 2 oz~^56^^ +~07932~^1^1^~serving 2 slices~^42^^ +~07933~^1^1^~serving 2 slices~^42^^ +~07934~^1^1^~serving 2 oz~^56^^ +~07935~^1^1^~serving 2 oz~^56^^ +~07936~^1^1^~serving 2 oz~^56^^ +~07937~^1^1^~oz~^28.35^1^ +~07938~^1^1.94^~oz (1 serving)~^55^^ +~07939~^1^1^~link~^76^^ +~07940~^1^1^~slice~^38^^ +~07941~^1^1^~serving 5 slices~^28^^ +~07942~^1^1^~serving 2 oz~^56^^ +~07943~^1^1^~slice~^28^^ +~07944~^1^1.69^~oz (1 serving)~^48^1^ +~07945~^1^1^~frankfurter~^48^23^4.516 +~07945~^2^1^~package~^451^23^1.532 +~07949~^1^1^~serving (1 hot dog)~^52^^ +~07950~^1^1^~serving (1 hot dog)~^52^^ +~07951~^1^1^~cubic inch~^17^1^ +~07951~^2^1^~oz cooked~^25^1^ +~07951~^3^2^~oz~^56^3^0 +~07952~^1^1^~serving~^28^2^ +~07952~^2^1^~slice~^28^2^ +~07953~^1^1^~patty~^30^95^ +~07953~^2^1^~link~^21^360^ +~07953~^3^1^~serving~^48^^ +~07954~^1^1^~serving~^48^^ +~07955~^1^1^~serving~^57^^ +~07956~^1^1^~serving~^43^^ +~07957~^1^1^~serving~^57^^ +~07958~^1^1^~serving~^57^^ +~07959~^1^1^~serving~^28^3^0 +~07959~^2^1^~slice~^28^3^0 +~07960~^1^1^~serving~^28^1^ +~07960~^2^1^~slice~^28^1^ +~07961~^1^1^~slice~^12.0^60^3.149 +~07962~^1^1^~frankfurter~^51^180^ +~07963~^1^1^~frankfurter~^50^300^ +~07964~^1^1^~frankfurter~^48^300^ +~07965~^1^3^~oz~^85^^ +~07965~^2^1^~package~^343^21^ +~07966~^1^3^~oz~^85^^ +~07966~^2^1^~package~^343^^ +~07967~^1^1^~link~^23^110^ +~07967~^2^1^~patty~^37^35^ +~07968~^1^3^~oz~^85^^ +~07968~^2^1^~link~^367^100^ +~07969~^1^1^~link~^370^96^ +~07970~^1^3^~oz~^85^^ +~07970~^2^1^~link~^396^57^ +~07971~^1^1^~slice~^33^19^6.646 +~07972~^1^3^~oz~^85^^ +~07972~^2^3^~pieces~^56^23^19.305 +~07973~^1^1^~slice~^8.1^1587^ +~07973~^2^1^~raw pr g~^15^1627^ +~07974~^1^1^~serving~^15.0^1^ +~07978~^1^3^~oz~^85^^ +~07979~^1^3^~oz~^85^^ +~07979~^2^1^~serving~^56^1^ +~08001~^1^.5^~cup (1 NLEA serving)~^31^^ +~08002~^1^1^~cup (1 NLEA serving for adults)~^30^1^ +~08002~^2^.67^~cup (1 serving for children under 4 years)~^20^^ +~08003~^1^1^~cup (1 NLEA serving)~^28^2^ +~08005~^1^.333^~cup (1 NLEA serving)~^30^^ +~08010~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08011~^1^.75^~cup (1 NLEA serving)~^26^1^ +~08012~^1^.75^~cup (1 NLEA serving)~^27^^ +~08013~^1^1^~cup (1 NLEA serving)~^28^1^ +~08014~^1^.75^~cup (1 NLEA serving)~^31^^ +~08015~^1^.75^~cup (1 NLEA serving)~^29^1^ +~08017~^1^.75^~cup (1 NLEA serving)~^26^1^ +~08018~^1^.75^~cup (1 NLEA serving)~^27^^ +~08019~^1^1^~cup (1 NLEA serving)~^31^1^ +~08020~^1^1^~cup (1 NLEA serving)~^28^^ +~08023~^1^.75^~cup (1 NLEA serving)~^49^1^ +~08025~^1^1.25^~cup (1 NLEA serving)~^33^^ +~08025~^2^1^~cup~^28^3^2.722 +~08028~^1^.75^~cup (1 NLEA serving)~^29^^ +~08029~^1^.75^~cup (1 NLEA serving)~^30^^ +~08030~^1^1^~cup (1 NLEA serving)~^29^1^ +~08031~^1^7^~biscuit (1 NLEA serving)~^58^1^ +~08032~^1^.75^~cup (1 NLEA serving)~^30^^ +~08034~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08035~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08037~^1^1^~cup~^122^^ +~08037~^2^1^~oz~^28.35^^ +~08038~^1^.5^~cup (1 NLEA serving)~^58^1^ +~08039~^1^.75^~cup (1 NLEA serving)~^29^1^ +~08045~^1^.75^~cup (1 NLEA serving)~^28^1^ +~08046~^1^1.5^~cup (1 NLEA serving)~^32^^ +~08047~^1^1.5^~cup (1 NLEA serving)~^31^^ +~08048~^1^1.25^~cup (1 NLEA serving)~^30^^ +~08049~^1^.75^~cup (1 NLEA serving)~^32^^ +~08049~^2^.5^~cup~^21^^ +~08050~^1^.75^~cup (1 NLEA serving)~^27^^ +~08054~^1^.5^~cup (1 NLEA serving)~^48^1^ +~08057~^1^.75^~cup (1 NLEA serving)~^32^^ +~08058~^1^1^~cup (1 NLEA serving)~^30^^ +~08059~^1^1^~cup (1 NLEA serving)~^27^^ +~08060~^1^1^~cup ( 1 NLEA serving)~^59^^ +~08061~^1^1^~cup (1 NLEA serving)~^59^^ +~08064~^1^1^~cup (1 NLEA serving)~^27^1^ +~08065~^1^1.25^~cup (1 NLEA serving)~^33^^ +~08065~^2^1^~cup~^29^27^2.914 +~08066~^1^.75^~cup (1 NLEA serving)~^14.0^1^ +~08067~^1^1^~cup (1 NLEA serving)~^31^^ +~08068~^1^1^~cup (1 NLEA serving)~^30^1^ +~08069~^1^.75^~cup ( 1 NLEA serving)~^30^^ +~08069~^2^1^~cup~^42^26^3.017 +~08071~^1^.75^~cup (1 NLEA serving)~^27^^ +~08073~^1^.75^~cup (1 NLEA serving)~^27^^ +~08074~^1^1^~cup (1 NLEA serving)~^28^3^.929 +~08077~^1^.75^~cup (1 NLEA serving)~^30^^ +~08078~^1^1^~cup (1 NLEA serving)~^32^1^ +~08081~^1^1^~cup (1 NLEA serving)~^59^1^ +~08082~^1^.75^~cup (1 NLEA serving)~^47^1^ +~08083~^1^1^~cup (1 NLEA serving)~^31^^ +~08084~^1^1^~oz~^28.35^^ +~08084~^2^1^~cup~^113^^ +~08085~^1^2^~tbsp (1 NLEA serving)~^14.0^1^ +~08087~^1^1^~cup (1 NLEA serving)~^29^1^ +~08089~^1^.75^~cup (1 NLEA serving)~^27^^ +~08090~^1^1^~tbsp~^9.7^^ +~08090~^2^1^~cup~^156^^ +~08091~^1^1^~cup~^257^12^13.413 +~08091~^2^1^~tbsp~^16^^ +~08092~^1^1^~packet~^29^4^.252 +~08092~^2^1^~tbsp~^7.0^4^.1 +~08093~^1^1^~cup~^219^8^43.148 +~08094~^1^1^~packet (1 NLEA serving)~^28^1^ +~08096~^1^1^~packet (1 NLEA serving)~^28^^ +~08100~^1^.25^~cup (1 NLEA serving)~^45^^ +~08101~^1^1^~cup~^244^^ +~08101~^2^1^~tbsp~^15^^ +~08101~^3^.75^~cup~^183^^ +~08102~^1^1^~tbsp~^10.6^^ +~08102~^2^3^~tbsp (1 NLEA serving)~^33^1^ +~08102~^3^1^~cup~^173^^ +~08103~^1^1^~cup (1 serving)~^251^^ +~08103~^2^1^~tbsp~^16^^ +~08104~^1^1^~tbsp~^11.0^^ +~08104~^2^1^~cup~^176^^ +~08105~^1^1^~cup~^240^26^9.402 +~08105~^2^1^~tbsp~^14.9^^ +~08105~^3^.75^~cup~^179^^ +~08106~^1^1^~tbsp~^11.5^^ +~08106~^2^1^~cup~^178^^ +~08107~^1^1^~cup~^241^^ +~08107~^2^1^~tbsp~^15^^ +~08107~^3^.75^~cup~^181^^ +~08113~^1^1^~cup~^240^26^9.402 +~08113~^2^1^~tbsp~^15.0^^ +~08116~^1^3^~tbsp (1 NLEA serving)~^35^1^ +~08120~^1^1^~cup~^81^^ +~08120~^2^.333^~cup~^27^^ +~08121~^1^1^~cup~^234^^ +~08121~^2^1^~tbsp~^14.6^^ +~08121~^3^.75^~cup~^175^^ +~08122~^1^1^~packet~^28^^ +~08123~^1^1^~cup, cooked~^234^^ +~08123~^2^1^~cup, dry, yields~^501^^ +~08123~^3^1^~oz, dry, yields~^177^^ +~08123~^4^1^~packet, dry, yields~^177^^ +~08124~^1^1^~packet (1 NLEA serving)~^43^^ +~08128~^1^1^~packet~^45^14^1.743 +~08129~^1^1^~cup~^240^^ +~08129~^2^1^~tbsp~^15.0^^ +~08129~^3^1^~packet, prepared~^161^^ +~08130~^1^1^~packet~^43^^ +~08132~^1^1^~packet~^44^15^1.75 +~08133~^1^1^~cup~^240^^ +~08133~^2^1^~tbsp~^15.0^^ +~08133~^3^1^~packet, prepared~^158^^ +~08138~^1^1^~cup~^30^^ +~08142~^1^.33^~cup (1 NLEA serving)~^40^^ +~08142~^2^1^~cup~^141^^ +~08142~^3^.25^~cup~^35^^ +~08143~^1^1^~cup~^243^^ +~08143~^2^.75^~cup~^182^^ +~08144~^1^1^~cup~^94^^ +~08144~^2^.333^~cup~^31^^ +~08145~^1^1^~cup~^242^^ +~08145~^2^.75^~cup~^182^^ +~08146~^1^1^~cup (1 NLEA serving)~^15.0^1^ +~08147~^1^2^~biscuits (1 NLEA serving)~^47^1^ +~08148~^1^1^~cup (1 NLEA serving)~^49^^ +~08156~^1^1^~cup~^14.0^^ +~08156~^2^.5^~oz~^14.2^^ +~08157~^1^1^~cup~^12.0^^ +~08157~^2^.5^~oz~^14.2^^ +~08159~^1^1^~cup~^170^2^ +~08160~^1^1^~tbsp~^9.7^^ +~08160~^2^1^~cup~^156^^ +~08161~^1^1^~cup~^257^^ +~08161~^2^1^~tablespoon~^16^^ +~08164~^1^1^~cup~^233^4^2.336 +~08165~^1^1^~cup~^233^^ +~08168~^1^1^~cup~^244^^ +~08168~^2^.75^~cup~^183^^ +~08169~^1^1^~cup (1 serving)~^251^^ +~08172~^1^1^~tbsp~^10.9^^ +~08172~^2^1^~cup~^176^^ +~08173~^1^1^~cup~^233^^ +~08177~^1^3^~tbsp (1 NLEA serving)~^35^1^ +~08180~^1^1^~cup~^234^^ +~08180~^2^.75^~cup~^175^^ +~08182~^1^1^~cup~^243^^ +~08182~^2^.75^~cup~^182^^ +~08183~^1^1^~cup~^242^^ +~08183~^2^.75^~cup~^182^^ +~08189~^1^.5^~cup (1 NLEA serving)~^49^^ +~08191~^1^1^~cup (1 NLEA serving)~^52^^ +~08192~^1^1.25^~cup (1 NLEA serving)~^55^^ +~08194~^1^.75^~cup (1 NLEA serving)~^29^^ +~08200~^1^.5^~cup (1 NLEA serving)~^40^^ +~08202~^1^1^~cup (1 NLEA serving)~^60^1^ +~08204~^1^1^~cup~^30^^ +~08206~^1^.75^~cup (1 NLEA serving)~^30^^ +~08210~^1^.75^~cup (1 NLEA serving)~^32^^ +~08211~^1^.75^~cup (1 NLEA serving)~^27^^ +~08214~^1^1^~cup (1 NLEA serving)~^56^^ +~08215~^1^1^~cup (1 NLEA serving)~^56^1^ +~08216~^1^1.25^~cup (1 NLEA serving)~^57^^ +~08218~^1^.5^~cup (1 NLEA serving)~^51^^ +~08220~^1^.666^~cup (1 NLEA serving)~^55^1^ +~08221~^1^1^~packet (1 NLEA serving)~^28^^ +~08225~^1^1^~packet~^35^^ +~08228~^1^1^~packet~^37^^ +~08231~^1^.5^~cup (1 NLEA serving)~^40^^ +~08239~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08243~^1^1^~cup (1 NLEA serving)~^57^1^ +~08244~^1^.5^~cup (1 NLEA serving)~^30^1^ +~08245~^1^1^~cup (1 NLEA serving)~^62^^ +~08247~^1^1^~cup (1 NLEA serving)~^53^^ +~08259~^1^1^~cup (1 NLEA serving)~^29^^ +~08261~^1^.75^~cup (1 NLEA serving)~^49^1^ +~08262~^1^1^~cup (1 NLEA serving)~^55^^ +~08263~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08267~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08268~^1^1^~cup (1 NLEA serving)~^33^1^ +~08270~^1^.75^~cup (1 NLEA serving)~^27^^ +~08271~^1^.75^~cup (1 NLEA serving)~^27^^ +~08272~^1^.75^~cup (1 NLEA serving)~^31^^ +~08273~^1^1^~cup (1 NLEA serving)~^33^^ +~08274~^1^1.25^~cup (1 NLEA serving)~^33^1^ +~08277~^1^.667^~cup (1 NLEA serving)~^55^^ +~08284~^1^.667^~cup (1 NLEA serving)~^60^^ +~08286~^1^.67^~cup (1 NLEA serving)~^55^^ +~08288~^1^.75^~cup (1 NLEA serving)~^30^^ +~08290~^1^.75^~cup (1 NLEA serving)~^31^^ +~08305~^1^1^~cup (1 NLEA serving)~^30^^ +~08309~^1^.75^~cup (1 NLEA serving)~^30^^ +~08314~^1^.25^~cup~^37^^ +~08316~^1^.25^~cup (1 NLEA serving)~^41^^ +~08318~^1^1^~cup (1 NLEA serving)~^50^^ +~08319~^1^21^~biscuits (1 NLEA serving)~^54^1^ +~08346~^1^.75^~cup (1 NLEA serving)~^30^^ +~08347~^1^.75^~cup (1 NLEA serving)~^30^^ +~08348~^1^1.25^~cup (1 NLEA serving)~^33^1^ +~08349~^1^1^~cup (1 NLEA serving)~^32^^ +~08351~^1^1^~cup (1 NLEA serving)~^33^^ +~08352~^1^.75^~cup (1 NLEA serving)~^32^^ +~08353~^1^1^~cup (1 NLEA serving)~^60^^ +~08354~^1^.75^~cup (1 NLEA serving)~^28^^ +~08355~^1^1^~cup (1 NLEA serving)~^33^^ +~08363~^1^.25^~cup (1 NLEA serving)~^16^^ +~08365~^1^3^~biscuits (1 NLEA serving)~^63^1^ +~08366~^1^2^~tbsp (1 NLEA serving)~^14.0^1^ +~08370~^1^1^~bowl (3/4 cup) (1 NLEA serving)~^21^1^ +~08376~^1^1^~cup (1 NLEA serving)~^29^1^ +~08380~^1^1^~cup (1 NLEA serving)~^53^1^ +~08383~^1^1^~cup (1 NLEA serving)~^31^1^ +~08384~^1^30^~biscuits (1 NLEA serving)~^55^1^ +~08386~^1^.75^~Cup (1 NLEA serving)~^53^1^ +~08387~^1^.75^~cup (1 NLEA serving)~^33^1^ +~08388~^1^1^~cup (1 NLEA serving)~^19^1^ +~08389~^1^1^~cup (1 NLEA serving)~^30^1^ +~08390~^1^1^~cup (1 NLEA serving)~^53^1^ +~08393~^1^1^~cup (1 NLEA serving)~^52^1^ +~08402~^1^.5^~cup~^40^^ +~08409~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08410~^1^1^~packet (1 NLEA serving)~^43^1^ +~08411~^1^1^~packet (1 NLEA serving)~^50^^ +~08417~^1^1^~packet (1 NLEA serving)~^41^^ +~08435~^1^.75^~cup (1 NLEA serving)~^55^^ +~08436~^1^1^~packet (1 NLEA serving)~^43^1^ +~08444~^1^1^~packet (1 NLEA serving)~^28^^ +~08449~^1^1^~packet (1 NLEA serving)~^28^^ +~08450~^1^1^~packet (1 NLEA serving)~^28^^ +~08451~^1^.5^~cup~^40^1^ +~08452~^1^.5^~cup~^40^1^ +~08453~^1^.75^~Cup (1 NLEA serving)~^29^1^ +~08459~^1^25^~biscuits (1 NLEA serving)~^55^1^ +~08462~^1^29^~biscuits (1 NLEA serving)~^54^1^ +~08463~^1^1^~cup (1 NLEA serving)~^55^1^ +~08469~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08471~^1^.75^~cup (1 NLEA serving)~^32^1^ +~08476~^1^1.333^~cup~^29^1^ +~08478~^1^.75^~cup (1 NLEA serving)~^27^^ +~08478~^2^1^~cup~^37^3^3.724 +~08481~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08484~^1^1^~cup (1 NLEA serving)~^59^1^ +~08487~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08488~^1^3^~tbsp (1 NLEA serving)~^35^1^ +~08489~^1^.25^~cup (1 NLEA serving)~^45^1^ +~08491~^1^1^~cup (1 NLEA serving)~^30^1^ +~08493~^1^1^~cup (1 NLEA serving)~^33^1^ +~08494~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08495~^1^.75^~cup (1 NLEA serving)~^29^1^ +~08500~^1^1^~cup (1 NLEA serving)~^55^1^ +~08501~^1^.75^~cup~^27^1^ +~08504~^1^1^~serving (NLEA serving size = 0.75 cup)~^29^^ +~08504~^2^1^~cup~^42^3^1.097 +~08505~^1^1^~cup (NLEA serving)~^30^1^ +~08506~^1^1^~cup (1 NLEA serving)~^28^1^ +~08507~^1^1^~cup (1 NLEA serving)~^29^^ +~08508~^1^1^~cup~^29^6^1.367 +~08508~^2^1^~serving (NLEA serving = 1 cup)~^29^1^ +~08509~^1^1^~cup (1 NLEA serving)~^28^6^1.864 +~08510~^1^1^~bar~^25^2^ +~08511~^1^1^~serving (3 T dry cereal plus 1 cup water)~^268^^ +~08512~^1^1^~serving (3 T dry cereal plus 1 cup water)~^268^^ +~08513~^1^.75^~cup (1 NLEA serving)~^28^1^ +~08531~^1^.75^~cup (1 NLEA serving)~^32^1^ +~08537~^1^1^~cup (1 NLEA serving)~^50^1^ +~08538~^1^1^~cup (1 NLEA serving)~^55^1^ +~08539~^1^28^~biscuits (1 NLEA serving)~^55^1^ +~08542~^1^25^~biscuits (1 NLEA serving)~^55^1^ +~08543~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08544~^1^.75^~cup (1 NLEA serving)~^48^1^ +~08546~^1^1^~bar~^22^1^ +~08549~^1^.75^~cup (1 NLEA serving)~^32^1^ +~08550~^1^.75^~cup (1 NLEA serving)~^26^^ +~08553~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08554~^1^.75^~cup (1 NLEA serving)~^52^1^ +~08560~^1^.67^~Cup (1 NLEA serving)~^53^1^ +~08561~^1^1^~packet (1 NLEA serving)~^40^1^ +~08562~^1^1^~packet (1 NLEA serving)~^40^1^ +~08567~^1^.5^~cup (1 NLEA serving)~^58^1^ +~08568~^1^1^~packet (1 NLEA serving)~^43^1^ +~08569~^1^1^~packet (1 NLEA serving)~^43^1^ +~08571~^1^.75^~cup (1 NLEA serving)~^55^1^ +~08573~^1^3^~tablespoon (1 NLEA serving)~^33^^ +~08573~^2^1^~tbsp~^13.8^4^2.123 +~08573~^3^1^~cup~^174^4^5.429 +~08574~^1^1^~cup~^244^3^10.9 +~08575~^1^1^~cup~^231^4^5.182 +~08576~^1^3^~tablespoon (1 serving)~^33^^ +~08576~^2^1^~tbsp~^13.7^4^.37 +~08576~^3^1^~cup~^194^4^10.069 +~08577~^1^1^~cup~^245^6^15.074 +~08578~^1^1^~cup~^237^6^1.129 +~08579~^1^1^~bowl (3/4 cup) (1 NLEA serving)~^28^1^ +~08580~^1^1^~tbsp~^8.9^8^.089 +~08580~^2^1^~cup~^128^2^ +~08582~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08583~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08584~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08586~^1^1^~cup~^28^1^ +~08587~^1^.5^~cup (1 NLEA serving)~^52^1^ +~08588~^1^1^~cup (1 NLEA serving)~^30^1^ +~08589~^1^.75^~cup (1 NLEA serving)~^51^1^ +~08590~^1^.75^~cup (1 NLEA serving)~^33^1^ +~08591~^1^27^~biscuits (1 NLEA serving)~^55^1^ +~08592~^1^.75^~cup (1 NLEA serving)~^28^1^ +~08593~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08594~^1^.75^~cup (1 NLEA serving)~^32^1^ +~08595~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08596~^1^1^~cup (1 NLEA serving)~^50^1^ +~08598~^1^1^~cup (1 NLEA serving)~^52^1^ +~08599~^1^1^~cup (1 NLEA serving)~^55^1^ +~08602~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08603~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08608~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08610~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08613~^1^.666^~cup (1 NLEA serving)~^29^1^ +~08615~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08617~^1^25^~biscuits (1 NLEA serving)~^55^1^ +~08625~^1^.75^~cup (1 NLEA serving)~^26^1^ +~08627~^1^.5^~cup (1 NLEA serving)~^49^1^ +~08628~^1^.75^~cup (1 NLEA serving)~^32^1^ +~08629~^1^1^~cup (1 NLEA serving)~^32^1^ +~08631~^1^1^~cup (1 NLEA serving)~^56^1^ +~08632~^1^1^~cup (1 NLEA serving)~^56^1^ +~08633~^1^1^~cup (1 NLEA serving)~^56^1^ +~08634~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08635~^1^1^~cup (1 NLEA serving)~^30^1^ +~08637~^1^.75^~cup (1 NLEA serving)~^27^^ +~08639~^1^1^~packet (1 NLEA serving)~^34^1^ +~08640~^1^1^~packet~^41^1^ +~08641~^1^1^~packet~^33^2^ +~08642~^1^1^~packet (1 NLEA serving)~^31^1^ +~08643~^1^1.25^~cup (1 NLEA serving)~^33^^ +~08647~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08648~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08649~^1^.75^~cup (1 NLEA serving)~^51^1^ +~08651~^1^.75^~cup (1 NLEA serving)~^30^^ +~08652~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08653~^1^1^~cup (1 NLEA serving)~^30^1^ +~08655~^1^.75^~cup (1 NLEA serving)~^29^1^ +~08656~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08657~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08658~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08659~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08660~^1^1^~cup (1 NLEA serving)~^28^1^ +~08661~^1^1^~cup (1 NLEA serving)~^28^1^ +~08662~^1^.75^~cup (1 NLEA serving)~^31^1^ +~08663~^1^29^~biscuits (1 NLEA serving)~^55^1^ +~08665~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08666~^1^1^~cup (1 NLEA serving)~^32^^ +~08668~^1^1^~cup (1 NLEA serving)~^55^^ +~08669~^1^.75^~cup (1 NLEA serving)~^30^^ +~08670~^1^.75^~cup (1 NLEA serving)~^30^^ +~08671~^1^.75^~cup (1 NLEA serving)~^27^^ +~08672~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08673~^1^1^~cup (1 NLEA serving)~^55^1^ +~08674~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08675~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08676~^1^1^~cup (1 NLEA serving)~^30^1^ +~08677~^1^24^~biscuits (1 NLEA serving)~^55^1^ +~08678~^1^.75^~cup (1 NLEA serving)~^31^^ +~08679~^1^.75^~cup (1 NLEA serving)~^30^1^ +~08680~^1^1^~packet~^43^23^.981 +~08681~^1^.75^~cup (1 NLEA serving)~^27^1^ +~08682~^1^.75^~cup (1 NLEA serving)~^28^1^ +~08683~^1^1^~cup (1 NLEA serving)~^53^1^ +~08684~^1^1^~cup (1 NLEA serving)~^30^1^ +~08685~^1^.75^~cup (1 NLEA serving)~^28^1^ +~08686~^1^1^~packet (1 NLEA serving)~^45^1^ +~08687~^1^1^~packet (1 NLEA serving)~^45^1^ +~08688~^1^1^~packet (1 NLEA serving)~^45^1^ +~08689~^1^1^~package (1 NLEA serving)~^70^1^ +~08690~^1^1^~package (1 NLEA serving)~^75^1^ +~08691~^1^1^~package (1 NLEA serving)~^70^1^ +~08692~^1^1^~package (1 NLEA serving)~^75^1^ +~08693~^1^1^~package (1 NLEA serving)~^73^1^ +~08694~^1^1^~packet (1 NLEA serving)~^45^1^ +~08695~^1^1^~Cup (1 NLEA serving)~^56^1^ +~08696~^1^1.25^~cup (1 NLEA serving)~^58^1^ +~08697~^1^.75^~Cup (1 NLEA serving)~^50^^ +~08699~^1^.75^~Cup (1 NLEA serving)~^31^^ +~08700~^1^1^~Cup (1 NLEA serving)~^53^^ +~08701~^1^1^~Cup (1 NLEA serving)~^31^^ +~08702~^1^1^~Container (1 NLEA serving)~^52^^ +~08703~^1^1^~Container (1 NLEA serving)~^52^^ +~08704~^1^1^~Container (1 NLEA serving)~^52^^ +~08705~^1^1^~Cup (1 NLEA serving)~^51^^ +~08706~^1^1^~Cup (1 NLEA serving)~^32^^ +~08707~^1^.67^~Cup (1 NLEA serving)~^28^^ +~08708~^1^24^~Biscuits (1 NLEA serving)~^55^^ +~08709~^1^1^~cup (1 NLEA serving)~^55^^ +~08710~^1^1^~Cup (1 NLEA serving)~^49^^ +~08711~^1^.75^~Cup (1 NLEA serving)~^31^^ +~08712~^1^1.25^~Cups (1 NLEA serving)~^59^^ +~09001~^1^1^~cup~^98^^ +~09001~^2^1^~fruit without refuse~^4.8^^ +~09002~^1^1^~cup~^242^^ +~09002~^2^1^~fl oz~^30.2^^ +~09003~^1^1^~cup, quartered or chopped~^125^^ +~09003~^2^1^~cup slices~^109^60^6.953 +~09003~^3^1^~large (3-1/4" dia)~^223^113^32.277 +~09003~^4^1^~medium (3" dia)~^182^113^20.572 +~09003~^5^1^~small (2-3/4" dia)~^149^113^17.362 +~09003~^6^1^~extra small (2-1/2" dia)~^101^^ +~09003~^7^1^~NLEA serving~^242^^ +~09004~^1^1^~cup slices~^110^^ +~09004~^2^1^~large (3-1/4" dia)~^216^20^29.845 +~09004~^3^1^~medium (3" dia)~^161^19^20.523 +~09004~^4^1^~small (2-3/4" dia)~^132^19^14.449 +~09005~^1^1^~cup slices~^171^1^ +~09006~^1^1^~cup slices~^170^^ +~09007~^1^1^~cup slices~^204^^ +~09008~^1^1^~cup slices~^204^^ +~09009~^1^1^~cup~^60^^ +~09010~^1^1^~cup~^193^^ +~09011~^1^1^~cup~^86^^ +~09011~^2^1^~ring~^6.4^^ +~09012~^1^1^~cup~^255^^ +~09013~^1^1^~cup~^280^^ +~09014~^1^1^~cup slices~^173^^ +~09015~^1^1^~cup slices~^206^^ +~09016~^1^1^~cup~^248^^ +~09016~^2^1^~fl oz~^31.0^^ +~09016~^3^1^~drink box (8.45 fl oz)~^262^^ +~09017~^1^1^~can (6 fl oz)~^211^^ +~09018~^1^1^~cup~^239^^ +~09018~^2^1^~fl oz~^29.9^^ +~09019~^1^1^~cup~^244^81^ +~09020~^1^1^~cup~^246^72^ +~09021~^1^1^~cup, halves~^155^^ +~09021~^2^1^~cup, sliced~^165^^ +~09021~^3^1^~apricot~^35^^ +~09022~^1^1^~cup, halves~^243^^ +~09022~^2^1^~apricot half with liquid~^36^^ +~09023~^1^1^~cup, whole, without pits~^227^^ +~09024~^1^1^~cup, halves~^244^^ +~09024~^2^1^~apricot half with liquid~^36^^ +~09025~^1^1^~cup, halves~^247^^ +~09026~^1^1^~cup, halves~^253^^ +~09026~^2^1^~apricot half with liquid~^40^^ +~09027~^1^1^~cup, halves~^258^^ +~09027~^2^1^~cup, whole~^240^^ +~09027~^3^1^~apricot half with liquid~^40^^ +~09028~^1^1^~cup, whole, without pits~^258^^ +~09029~^1^1^~cup, whole, without pits~^246^^ +~09030~^1^1^~cup~^119^^ +~09031~^1^1^~cup~^249^^ +~09032~^1^1^~cup, halves~^130^^ +~09032~^2^1^~half~^3.5^^ +~09033~^1^1^~cup, halves~^250^^ +~09034~^1^1^~cup, halves~^270^^ +~09035~^1^1^~cup~^242^^ +~09036~^1^1^~cup~^251^^ +~09036~^2^1^~fl oz~^31.4^^ +~09037~^1^1^~cup, cubes~^150^^ +~09037~^2^1^~cup, pureed~^230^^ +~09037~^3^1^~cup, sliced~^146^^ +~09037~^4^1^~avocado, NS as to Florida or California~^201^^ +~09038~^1^1^~cup, pureed~^230^^ +~09038~^2^1^~fruit, without skin and seed~^136^22^30.829 +~09038~^3^1^~NLEA serving~^30^^ +~09039~^1^1^~cup, pureed~^230^^ +~09039~^2^1^~fruit without skin and seeds~^304^^ +~09040~^1^1^~cup, mashed~^225^^ +~09040~^2^1^~cup, sliced~^150^^ +~09040~^3^1^~extra small (less than 6" long)~^81^^ +~09040~^4^1^~small (6" to 6-7/8" long)~^101^^ +~09040~^5^1^~medium (7" to 7-7/8" long)~^118^^ +~09040~^6^1^~large (8" to 8-7/8" long)~^136^^ +~09040~^7^1^~extra large (9" or longer)~^152^^ +~09040~^8^1^~NLEA serving~^126^^ +~09041~^1^1^~cup~^100^^ +~09041~^2^1^~tbsp~^6.2^^ +~09042~^1^1^~cup~^144^^ +~09043~^1^1^~cup~^250^^ +~09044~^1^.25^~cup~^40^2^ +~09046~^1^1^~cup~^256^^ +~09048~^1^1^~cup, unthawed~^151^^ +~09048~^2^1^~package (18 oz)~^510^^ +~09050~^1^1^~cup~^148^12^9.108 +~09050~^2^50^~berries~^68^^ +~09052~^1^1^~cup~^256^^ +~09053~^1^1^~cup, frozen~^140^1^ +~09054~^1^1^~cup, unthawed~^155^^ +~09054~^2^1^~package (20 oz)~^567^^ +~09055~^1^1^~cup, thawed~^230^^ +~09055~^2^1^~package (10 oz)~^284^^ +~09056~^1^1^~cup~^256^^ +~09057~^1^1^~cup, unthawed~^132^^ +~09057~^2^1^~package (10 oz)~^284^^ +~09059~^1^1^~cup~^220^^ +~09059~^2^.25^~fruit, small~^96^^ +~09060~^1^1^~cup, cubes~^132^10^5.919 +~09060~^2^1^~cup, sliced~^108^10^7.956 +~09060~^3^1^~large (4-1/2" long)~^124^2^ +~09060~^4^1^~medium (3-5/8" long)~^91^5^4.373 +~09060~^5^1^~small (3-1/8" long)~^70^2^ +~09061~^1^1^~cup slices~^150^^ +~09061~^2^1^~fruit without skin and seeds~^20^^ +~09062~^1^1^~cup, pieces~^160^18^12.676 +~09062~^2^1^~fruit without skin and seeds~^235^17^77.514 +~09063~^1^1^~cup, without pits~^155^^ +~09063~^2^1^~cup, with pits, yields~^103^^ +~09064~^1^1^~cup~^244^^ +~09065~^1^1^~cup~^252^^ +~09066~^1^1^~cup~^256^^ +~09067~^1^1^~cup~^261^^ +~09068~^1^1^~cup, unthawed~^155^^ +~09068~^2^1^~package (18 oz)~^510^^ +~09070~^1^1^~cup, with pits, yields~^138^20^7.641 +~09070~^2^1^~cup, without pits~^154^20^13.63 +~09070~^3^1^~cherry~^8.2^40^1.817 +~09070~^4^1^~NLEA serving~^140^^ +~09071~^1^1^~cup, pitted~^248^^ +~09072~^1^1^~cup, pitted~^250^^ +~09073~^1^1^~cup, pitted~^252^^ +~09074~^1^1^~cup~^253^^ +~09075~^1^1^~cup, pitted~^261^^ +~09076~^1^1^~cup, thawed~^259^^ +~09076~^2^1^~package (10 oz)~^284^^ +~09077~^1^1^~cup slices~^110^^ +~09078~^1^1^~cup, chopped~^110^^ +~09078~^2^1^~cup, whole~^100^12^5.689 +~09079~^1^.25^~cup~^40^3^0 +~09081~^1^1^~cup~^277^^ +~09081~^2^1^~slice (1/2" thick, approx 8 slices per can)~^57^^ +~09082~^1^1^~cup~^275^^ +~09083~^1^1^~cup~^112^^ +~09084~^1^1^~cup~^112^^ +~09085~^1^1^~cup~^144^^ +~09087~^1^1^~cup, chopped~^147^18^22.079 +~09087~^2^1^~date, pitted~^7.1^80^1.433 +~09088~^1^1^~cup~^145^^ +~09089~^1^1^~large (2-1/2" dia)~^64^^ +~09089~^2^1^~medium (2-1/4" dia)~^50^^ +~09089~^3^1^~small (1-1/2" dia)~^40^^ +~09090~^1^1^~cup~^248^^ +~09090~^2^1^~fig with liquid~^27^^ +~09091~^1^1^~cup~^252^^ +~09091~^2^1^~fig with liquid~^28^^ +~09092~^1^1^~cup~^259^^ +~09092~^2^1^~fig with liquid~^28^^ +~09093~^1^1^~cup~^261^^ +~09094~^1^1^~cup~^149^24^20.722 +~09094~^2^1^~fig~^8.4^80^2.53 +~09095~^1^1^~cup~^259^^ +~09096~^1^1^~cup~^237^^ +~09097~^1^1^~cup~^237^^ +~09098~^1^.5^~cup~^123^^ +~09099~^1^1^~cup~^242^^ +~09100~^1^1^~cup~^248^^ +~09101~^1^.5^~cup~^130^^ +~09101~^2^1^~cup~^260^^ +~09102~^1^1^~cup~^245^^ +~09103~^1^1^~cup~^249^^ +~09104~^1^1^~cup~^252^^ +~09105~^1^1^~cup~^255^^ +~09106~^1^1^~cup~^259^^ +~09107~^1^1^~cup~^150^^ +~09109~^1^1^~cup~^252^^ +~09110~^1^5^~tbsp~^28^1^ +~09111~^1^1^~cup sections, with juice~^230^^ +~09111~^2^.5^~large (approx 4-1/2" dia)~^166^^ +~09111~^3^.5^~medium (approx 4" dia)~^128^^ +~09111~^4^.5^~small (approx 3-1/2" dia)~^100^^ +~09112~^1^1^~cup sections, with juice~^230^^ +~09112~^2^.5^~fruit (3-3/4" dia)~^123^^ +~09112~^3^1^~NLEA serving~^154^^ +~09113~^1^1^~cup sections, with juice~^230^^ +~09113~^2^.5^~fruit (3-3/4" dia)~^123^^ +~09114~^1^1^~cup sections, with juice~^230^^ +~09114~^2^.5^~fruit (3-3/4" dia)~^123^^ +~09116~^1^1^~cup sections, with juice~^230^^ +~09116~^2^.5^~fruit (3-3/4" dia)~^118^^ +~09117~^1^1^~cup sections, with juice~^230^^ +~09117~^2^.5^~fruit (3-3/4" dia)~^118^^ +~09118~^1^1^~cup sections, with juice~^230^^ +~09118~^2^.5^~fruit (3-3/4" dia)~^118^^ +~09119~^1^1^~cup~^244^^ +~09120~^1^1^~cup~^249^^ +~09121~^1^1^~cup~^254^^ +~09123~^1^1^~cup~^247^^ +~09123~^2^1^~fl oz~^30.9^^ +~09124~^1^1^~cup~^250^^ +~09124~^2^1^~fl oz~^31.2^^ +~09125~^1^1^~can (6 fl oz)~^207^^ +~09126~^1^1^~cup~^247^^ +~09126~^2^1^~fl oz~^30.9^^ +~09127~^1^8^~fl oz~^240^1^ +~09128~^1^1^~cup~^247^^ +~09128~^2^1^~fl oz~^30.9^^ +~09128~^3^1^~fruit yields~^196^^ +~09129~^1^1^~grape~^6.0^^ +~09130~^1^1^~cup~^253^^ +~09130~^2^1^~fl oz~^31.6^^ +~09131~^1^1^~cup~^92^^ +~09131~^2^1^~grape~^2.4^^ +~09132~^1^1^~cup~^151^24^9.73 +~09132~^2^10^~grapes~^49^24^5.581 +~09132~^3^1^~NLEA serving~^126^^ +~09133~^1^1^~cup~^245^^ +~09134~^1^1^~cup~^256^^ +~09135~^1^1^~cup~^253^^ +~09135~^2^1^~fl oz~^31.6^^ +~09138~^1^1^~cup~^140^^ +~09139~^1^1^~cup~^165^^ +~09139~^2^1^~fruit, without refuse~^55^^ +~09140~^1^1^~cup~^244^^ +~09140~^2^1^~fruit without refuse~^6.0^^ +~09143~^1^1^~cup~^238^^ +~09144~^1^1^~cup, sliced~^165^^ +~09144~^2^1^~cup 1" pieces~^151^2^ +~09145~^1^1^~cup~^135^^ +~09145~^2^3^~fruit~^9.0^^ +~09148~^1^1^~cup, sliced~^180^24^18.404 +~09148~^2^1^~fruit (2" dia)~^69^75^10.268 +~09148~^3^1^~NLEA serving~^148^^ +~09149~^1^1^~fruit without refuse~^19^^ +~09150~^1^1^~cup, sections~^212^^ +~09150~^2^1^~fruit (2-1/8" dia)~^58^^ +~09150~^3^1^~fruit (2-3/8" dia)~^84^^ +~09150~^4^1^~wedge or slice (1/8 of one 2-1/8" dia lemon)~^7.0^^ +~09150~^5^1^~NLEA serving~^58^^ +~09152~^1^1^~cup~^244^^ +~09152~^2^1^~fl oz~^30.5^^ +~09152~^3^1^~lemon yields~^48^70^ +~09152~^4^1^~wedge yields~^5.9^^ +~09153~^1^1^~tbsp~^15^^ +~09153~^2^1^~tsp~^5.0^^ +~09153~^3^1^~fl oz~^30.5^^ +~09153~^4^1^~cup~^244^^ +~09154~^1^1^~cup~^244^^ +~09154~^2^1^~fl oz~^30.5^^ +~09156~^1^1^~tbsp~^6.0^^ +~09156~^2^1^~tsp~^2.0^^ +~09159~^1^1^~fruit (2" dia)~^67^^ +~09159~^2^1^~NLEA serving~^67^^ +~09160~^1^1^~cup~^242^4^13.114 +~09160~^2^1^~fl oz~^30.8^^ +~09160~^3^1^~lime yields~^44^12^11.031 +~09161~^1^1^~cup~^246^^ +~09161~^2^1^~fl oz~^30.8^^ +~09163~^1^.25^~cup~^40^1^ +~09164~^1^1^~cup~^190^^ +~09164~^2^1^~fruit without refuse~^9.6^^ +~09165~^1^1^~fruit~^2.5^^ +~09167~^1^1^~cup, unthawed~^147^^ +~09172~^1^1^~fruit without refuse~^3.2^^ +~09173~^1^1^~fruit~^1.7^16^.29 +~09174~^1^1^~cup, cubed~^149^^ +~09174~^2^1^~large~^20^^ +~09174~^3^1^~medium~^16^^ +~09174~^4^1^~small~^13.6^^ +~09175~^1^1^~fruit without refuse~^846^^ +~09176~^1^1^~cup pieces~^165^3^9.3 +~09176~^2^1^~fruit without refuse~^336^12^143.606 +~09177~^1^1^~cup, drained~^196^^ +~09177~^2^1^~cup~^216^^ +~09181~^1^1^~cup, balls~^177^^ +~09181~^2^1^~cup, cubes~^160^^ +~09181~^3^1^~cup, diced~^156^^ +~09181~^4^1^~melon, large (about 6-1/2" dia)~^814^^ +~09181~^5^1^~wedge, large (1/8 of large melon)~^102^^ +~09181~^6^1^~melon, medium (about 5" dia)~^552^^ +~09181~^7^1^~wedge, medium (1/8 of medium melon)~^69^^ +~09181~^8^1^~melon, small (about 4-1/4" dia)~^441^^ +~09181~^9^1^~wedge, small (1/8 of small melon)~^55^^ +~09181~^10^10^~cantaloupe balls~^138^^ +~09181~^11^1^~NLEA serving~^134^^ +~09183~^1^1^~cup, cubes~^170^^ +~09183~^2^1^~melon~^1640^^ +~09183~^3^.1^~fruit~^164^^ +~09184~^1^1^~cup, diced (approx 20 pieces per cup)~^170^^ +~09184~^2^1^~cup, balls~^177^^ +~09184~^3^1^~melon (5-1/4" dia)~^1000^^ +~09184~^4^1^~melon (6" - 7" dia)~^1280^^ +~09184~^5^1^~wedge (1/8 of 5-1/4" dia melon)~^125^^ +~09184~^6^1^~wedge (1/8 of 6" to 7" dia melon)~^160^^ +~09184~^7^10^~honeydew balls~^138^^ +~09184~^8^1^~NLEA serving~^134^^ +~09185~^1^1^~cup, unthawed~^173^^ +~09190~^1^1^~cup~^140^^ +~09190~^2^10^~fruit~^15.0^^ +~09191~^1^1^~cup slices~^143^24^11.993 +~09191~^2^1^~small (2-1/3" dia)~^129^31^10.069 +~09191~^3^1^~medium (2-1/2" dia)~^142^24^12.534 +~09191~^4^1^~large (2-3/4" dia)~^156^25^16.652 +~09191~^5^1^~NLEA serving~^140^^ +~09192~^1^1^~cup~^140^^ +~09192~^2^10^~fruit~^11.0^^ +~09193~^1^1^~tbsp~^8.4^^ +~09193~^2^1^~large~^4.4^^ +~09193~^3^1^~small~^3.2^^ +~09194~^1^1^~super colossal~^15^^ +~09194~^2^1^~jumbo~^8.3^^ +~09195~^1^1^~olive~^2.7^30^.249 +~09200~^1^1^~cup, sections~^180^^ +~09200~^2^1^~large (3-1/16" dia)~^184^^ +~09200~^3^1^~small (2-3/8" dia)~^96^^ +~09200~^4^1^~fruit (2-5/8" dia)~^131^^ +~09201~^1^1^~cup sections, without membranes~^180^^ +~09201~^2^1^~fruit (2-5/8" dia)~^121^^ +~09202~^1^1^~cup sections, without membranes~^165^^ +~09202~^2^1^~fruit (2-7/8" dia)~^140^^ +~09202~^3^1^~NLEA serving~^154^^ +~09203~^1^1^~cup sections, without membranes~^185^^ +~09203~^2^1^~fruit (2-5/8" dia)~^141^^ +~09203~^3^1^~fruit (2-11/16" dia)~^151^^ +~09205~^1^1^~cup~^170^^ +~09205~^2^1^~fruit without seeds~^159^^ +~09206~^1^1^~cup~^248^^ +~09206~^2^1^~fl oz~^31.0^^ +~09206~^3^1^~fruit yields~^86^^ +~09207~^1^1^~cup~^249^^ +~09207~^2^1^~fl oz~^31.1^^ +~09207~^3^1^~drink box (8.45 fl oz)~^263^^ +~09209~^1^1^~cup~^249^^ +~09209~^2^1^~fl oz~^31.1^^ +~09210~^1^1^~cup~^249^^ +~09210~^2^1^~fl oz~^31.1^^ +~09211~^1^1^~cup~^249^^ +~09211~^2^1^~fl oz~^31.1^^ +~09212~^1^1^~cup~^249^^ +~09212~^2^1^~fl oz~^31.1^^ +~09213~^1^1^~cup~^262^26^12.117 +~09213~^2^1^~fl oz~^33.0^26^2.264 +~09214~^1^1^~cup~^262^26^12.117 +~09214~^2^1^~fl oz~^33.0^26^2.264 +~09215~^1^1^~cup~^249^^ +~09215~^2^1^~fl oz~^31.1^^ +~09216~^1^1^~tbsp~^6.0^^ +~09216~^2^1^~tsp~^2.0^^ +~09217~^1^1^~cup~^247^^ +~09217~^2^1^~fl oz~^30.9^^ +~09218~^1^1^~cup, sections~^195^^ +~09218~^2^1^~small (2-1/4" dia)~^76^4^7.253 +~09218~^3^1^~medium (2-1/2" dia)~^88^4^7.74 +~09218~^4^1^~large (2-3/4" dia)~^120^4^26.241 +~09218~^5^1^~NLEA serving~^109^^ +~09219~^1^1^~cup~^249^^ +~09220~^1^1^~cup~^252^^ +~09221~^1^1^~cup~^247^^ +~09221~^2^1^~fl oz~^30.9^^ +~09223~^1^1^~cup~^249^^ +~09223~^2^1^~fl oz~^31.1^^ +~09226~^1^1^~cup 1" pieces~^145^3^4.041 +~09226~^2^1^~cup, mashed~^230^^ +~09226~^3^1^~fruit, small~^157^^34.323 +~09226~^4^1^~fruit, large~^781^^ +~09228~^1^1^~piece~^39^6^12.012 +~09229~^1^1^~cup~^250^^ +~09229~^2^1^~fl oz~^31.2^^ +~09231~^1^1^~cup~^236^^ +~09231~^2^1^~fruit without refuse~^18^^ +~09232~^1^1^~cup~^247^^ +~09232~^2^1^~fl oz~^30.9^^ +~09233~^1^1^~cup~^247^^ +~09233~^2^1^~fl oz~^30.9^^ +~09236~^1^1^~cup slices~^154^24^19.842 +~09236~^2^1^~small (2-1/2" dia)~^130^20^7.057 +~09236~^3^1^~medium (2-2/3" dia)~^150^20^8.066 +~09236~^4^1^~large (2-3/4" dia)~^175^20^13.707 +~09236~^5^1^~extra large (3" dia)~^224^20^19.294 +~09236~^6^1^~NLEA serving~^147^^ +~09237~^1^1^~cup, halves or slices~^244^^ +~09237~^2^1^~half, with liquid~^98^^ +~09238~^1^1^~cup~^250^^ +~09238~^2^1^~cup, halves or slices~^248^^ +~09238~^3^1^~half, with liquid~^98^^ +~09239~^1^1^~cup, halves or slices~^247^^ +~09240~^1^1^~cup, halves or slices~^251^^ +~09240~^2^1^~half, with liquid~^98^^ +~09241~^1^1^~cup~^262^^ +~09241~^2^1^~half, with liquid~^98^^ +~09242~^1^1^~cup, halves or slices~^262^^ +~09243~^1^1^~cup, whole~^242^^ +~09244~^1^1^~cup~^116^^ +~09245~^1^1^~cup~^242^^ +~09246~^1^1^~cup, halves~^160^^ +~09246~^2^1^~half~^13.0^^ +~09247~^1^1^~cup~^258^^ +~09248~^1^1^~cup~^270^^ +~09250~^1^1^~cup, thawed~^250^^ +~09250~^2^10^~slices~^155^^ +~09250~^3^1^~package (10 oz)~^284^^ +~09251~^1^1^~cup~^249^^ +~09251~^2^1^~fl oz~^31.1^^ +~09252~^1^1^~cup, slices~^140^96^13.35 +~09252~^2^1^~cup, cubes~^161^6^19.789 +~09252~^3^1^~small~^148^64^15.731 +~09252~^4^1^~medium~^178^65^12.076 +~09252~^5^1^~large~^230^125^29.273 +~09252~^6^1^~NLEA serving~^166^^ +~09253~^1^1^~cup, halves~^244^^ +~09253~^2^1^~half, with liquid~^76^^ +~09254~^1^1^~cup, halves~^248^^ +~09254~^2^1^~half, with liquid~^76^^ +~09255~^1^1^~cup, halves~^247^^ +~09255~^2^1^~half, with liquid~^76^^ +~09256~^1^1^~cup, halves~^251^^ +~09256~^2^1^~half, with liquid~^76^^ +~09257~^1^1^~cup~^266^^ +~09257~^2^1^~half, with liquid~^76^^ +~09258~^1^1^~cup, halves~^266^^ +~09258~^2^1^~half, with liquid~^79^^ +~09259~^1^1^~cup, halves~^180^^ +~09259~^2^1^~half~^18^^ +~09259~^3^10^~halves~^175^^ +~09260~^1^1^~cup, halves~^255^^ +~09261~^1^1^~cup, halves~^280^^ +~09262~^1^1^~cup~^250^^ +~09262~^2^1^~fl oz~^31.2^^ +~09263~^1^1^~fruit (2-1/2" dia)~^168^^ +~09264~^1^1^~fruit without refuse~^34^^ +~09265~^1^1^~fruit without refuse~^25^^ +~09266~^1^1^~cup, chunks~^165^34^19.149 +~09266~^2^1^~fruit~^905^26^165.33 +~09266~^3^1^~slice (4-2/3" dia x 3/4" thick)~^166^11^45.494 +~09266~^4^1^~slice (3-1/2" dia x 3/4" thick)~^84^^ +~09266~^5^1^~slice, thin (3-1/2" dia x 1/2" thick)~^56^^ +~09267~^1^1^~cup, crushed, sliced, or chunks~^246^^ +~09267~^2^1^~slice or ring (3" dia) with liquid~^47^^ +~09268~^1^1^~cup, crushed, sliced, or chunks~^249^^ +~09268~^2^1^~slice or ring (3" dia) with liquid~^47^^ +~09269~^1^1^~cup, crushed, sliced, or chunks~^252^^ +~09269~^2^1^~slice or ring (3" dia) with liquid~^48^^ +~09270~^1^1^~cup, crushed, sliced, or chunks~^254^^ +~09270~^2^1^~slice or ring (3" dia) with liquid~^49^^ +~09271~^1^1^~cup, crushed, sliced, or chunks~^260^^ +~09272~^1^1^~cup, chunks~^245^^ +~09273~^1^1^~cup~^250^^ +~09273~^2^1^~fl oz~^31.3^^ +~09274~^1^1^~can (6 fl oz)~^216^^ +~09275~^1^1^~cup~^250^^ +~09275~^2^1^~fl oz~^31.2^^ +~09276~^1^1^~cup~^173^^ +~09276~^2^1^~fruit without refuse~^7.0^^ +~09277~^1^1^~cup, sliced~^148^^ +~09277~^2^1^~medium~^179^^ +~09278~^1^1^~cup, mashed~^200^^ +~09278~^2^1^~cup slices~^154^^ +~09279~^1^1^~cup, sliced~^165^^ +~09279~^2^1^~fruit (2-1/8" dia)~^66^^ +~09279~^3^1^~NLEA serving~^151^^ +~09281~^1^1^~cup, pitted~^249^^ +~09281~^2^1^~plum with liquid~^46^^ +~09282~^1^1^~cup, pitted~^252^^ +~09282~^2^1^~plum with liquid~^46^^ +~09283~^1^1^~cup, pitted~^252^^ +~09283~^2^1^~plum with liquid~^46^^ +~09284~^1^1^~cup, pitted~^258^^ +~09284~^2^1^~plum with liquid~^46^^ +~09285~^1^1^~cup, pitted~^261^^ +~09286~^1^.5^~cup arils (seed/juice sacs)~^87^^ +~09286~^2^1^~pomegranate (4" dia)~^282^^ +~09287~^1^1^~cup~^149^^ +~09287~^2^1^~fruit without refuse~^103^^ +~09288~^1^1^~cup~^234^^ +~09288~^2^5^~prunes with liquid~^86^^ +~09289~^1^1^~cup~^132^^ +~09290~^1^1^~cup~^280^^ +~09291~^1^1^~cup, pitted~^174^24^15.624 +~09291~^2^1^~prune, pitted~^9.5^80^2.327 +~09292~^1^1^~cup, pitted~^248^^ +~09293~^1^1^~cup, pitted~^248^^ +~09294~^1^1^~cup~^256^^ +~09294~^2^1^~fl oz~^32.0^^ +~09295~^1^1^~cup, sections~^190^^ +~09295~^2^1^~fruit without refuse~^609^^ +~09296~^1^1^~fruit without refuse~^92^^ +~09297~^1^1^~cup, packed~^165^^ +~09297~^2^1^~cup (not packed)~^145^^ +~09298~^1^1^~cup, packed~^165^^ +~09298~^2^1^~cup (not packed)~^145^^ +~09298~^3^1^~miniature box (.5 oz)~^14.0^^ +~09298~^4^1^~small box (1.5 oz)~^43^^ +~09298~^5^50^~raisins~^26^^ +~09298~^6^1^~oz (60 raisins)~^28.35^1^ +~09299~^1^1^~cup, packed~^165^^ +~09299~^2^1^~cup (not packed)~^145^^ +~09301~^1^1^~cup, drained~^150^^ +~09301~^2^1^~cup~^214^^ +~09301~^3^1^~fruit~^9.0^^ +~09302~^1^1^~cup~^123^^ +~09302~^2^1^~pint as purchased, yields~^312^^ +~09302~^3^10^~raspberries~^19^^ +~09304~^1^1^~cup~^256^^ +~09306~^1^1^~cup, thawed~^250^^ +~09306~^2^1^~package (10 oz)~^284^^ +~09307~^1^1^~cup, diced~^122^^ +~09307~^2^1^~stalk~^51^^ +~09309~^1^1^~cup, diced~^137^^ +~09310~^1^1^~cup~^240^^ +~09311~^1^1^~cup, without refuse~^57^^ +~09313~^1^1^~cup, pulp~^241^^ +~09313~^2^1^~sapodilla~^170^^ +~09314~^1^1^~cup 1" pieces~^175^3^7.238 +~09314~^2^1^~fruit without refuse~^558^9^245.609 +~09315~^1^1^~cup, pulp~^225^^ +~09315~^2^1^~fruit (7" x 5-1/4" dia)~^625^^ +~09316~^1^1^~cup, halves~^152^^ +~09316~^2^1^~cup, pureed~^232^^ +~09316~^3^1^~cup, sliced~^166^^ +~09316~^4^1^~cup, whole~^144^^ +~09316~^5^1^~extra large (1-5/8" dia)~^27^^ +~09316~^6^1^~large (1-3/8" dia)~^18^^ +~09316~^7^1^~medium (1-1/4" dia)~^12.0^^ +~09316~^8^1^~pint as purchased, yields~^357^^ +~09316~^9^1^~small (1" dia)~^7.0^^ +~09316~^10^1^~NLEA serving~^147^^ +~09317~^1^1^~cup~^254^^ +~09318~^1^1^~cup, thawed~^221^^ +~09318~^2^1^~cup, unthawed~^149^^ +~09318~^3^1^~berry~^10.6^^ +~09318~^4^1^~package (20 oz)~^567^^ +~09319~^1^1^~cup, thawed~^255^^ +~09319~^2^1^~package (10 oz)~^284^^ +~09320~^1^1^~cup, thawed~^255^^ +~09320~^2^1^~package (10 oz)~^284^^ +~09321~^1^1^~cup, pulp~^250^^ +~09321~^2^1^~fruit (2-7/8" dia)~^155^^ +~09322~^1^1^~cup, pulp~^120^^ +~09322~^2^1^~fruit (3" x 1")~^2.0^^ +~09325~^1^1^~cup~^257^^ +~09326~^1^1^~cup, balls~^154^^ +~09326~^2^1^~cup, diced~^152^^ +~09326~^3^1^~melon (15" long x 7-1/2" dia)~^4518^^ +~09326~^4^1^~wedge (approx 1/16 of melon)~^286^^ +~09326~^5^10^~watermelon balls~^122^^ +~09326~^6^1^~NLEA serving~^280^^ +~09328~^1^1^~cherry (NLEA serving)~^5.0^^ +~09334~^1^1^~cup, pureed~^243^^ +~09334~^2^1^~fruit without peel~^42^61^11.808 +~09334~^3^1^~cup 1/2" chunks~^205^3^22.784 +~09340~^1^1^~fruit 2-1/4" high x 2-1/2" dia~^122^^ +~09340~^2^1^~fruit 3-3/8" high x 3" diameter~^275^^ +~09351~^1^1^~cup~^214^^ +~09352~^1^1^~cup~^244^3^46.479 +~09353~^1^1^~cup~^319^4^12.617 +~09354~^1^1^~cup, chunks~^181^^ +~09354~^2^1^~cup, crushed~^195^^ +~09354~^3^1^~cup, sliced~^162^^ +~09354~^5^1^~spear~^26^^ +~09357~^1^1^~cup, halves~^219^^ +~09357~^2^1^~cup, whole~^182^^ +~09362~^1^1^~cup~^168^4^2.309 +~09367~^1^1^~cup~^179^^ +~09370~^1^1^~cup~^222^^ +~09370~^2^1^~half~^73^^ +~09370~^3^1^~slice~^12.7^^ +~09374~^1^1^~cup~^201^^ +~09374~^2^1^~half~^48^^ +~09379~^1^1^~cup, with pits, yields~^183^^ +~09383~^1^1^~cup~^189^^ +~09400~^1^1^~cup~^248^^ +~09400~^2^1^~fl oz~^31.0^^ +~09401~^1^1^~cup~^244^81^ +~09402~^1^1^~cup~^255^^ +~09403~^1^1^~cup~^251^^ +~09403~^2^1^~fl oz~^31.4^^ +~09404~^1^1^~cup~^247^^ +~09404~^2^1^~fruit yields~^196^^ +~09407~^1^1^~cup~^249^^ +~09407~^2^1^~fl oz~^31.1^^ +~09408~^1^1^~cup~^250^^ +~09408~^2^1^~fl oz~^31.2^^ +~09409~^1^1^~cup~^250^^ +~09409~^2^1^~fl oz~^31.3^^ +~09410~^1^1^~can (6 fl oz)~^211^^ +~09411~^1^1^~cup~^239^^ +~09411~^2^1^~fl oz~^29.9^^ +~09412~^1^1^~cup, sliced~^140^^ +~09412~^2^1^~small~^152^16^6.171 +~09412~^3^1^~medium~^177^15^10.476 +~09412~^4^1^~large~^227^32^20.313 +~09413~^1^1^~small~^126^16^10.429 +~09413~^2^1^~medium~^157^17^7.941 +~09413~^3^1^~large~^223^33^40.688 +~09413~^4^1^~cup, sliced~^140^^ +~09414~^1^1^~cup, sliced~^140^^ +~09414~^2^1^~small~^159^19^10.463 +~09414~^3^1^~medium~^179^16^3.874 +~09414~^4^1^~large~^219^33^37.404 +~09415~^1^1^~cup, sliced~^140^^ +~09415~^2^1^~small~^172^13^16.648 +~09415~^3^1^~medium~^202^14^8.864 +~09415~^4^1^~large~^242^29^17.664 +~09416~^1^1^~cup~^247^^ +~09420~^1^1^~cup, drained~^178^^ +~09421~^1^1^~date, pitted~^24^10^1.893 +~09422~^1^1^~cup, chopped or diced~^243^^ +~09422~^2^1^~fruit~^602^^ +~09423~^1^2^~tbsp~^36^^ +~09427~^1^.5^~cup~^114^^ +~09428~^1^.5^~cup~^114^^ +~09429~^1^1^~cup, chunks~^165^34^19.149 +~09429~^2^1^~slice (4-2/3" dia x 3/4" thick)~^175^5^41.872 +~09429~^3^1^~fruit~^1002^5^47.927 +~09429~^4^1^~NLEA serving~^112^^ +~09430~^1^1^~cup, chunks~^165^34^19.149 +~09430~^2^1^~slice (4-2/3" dia x 3/4" thick)~^166^11^45.494 +~09430~^3^1^~fruit~^905^26^165.33 +~09430~^4^1^~NLEA serving~^112^^ +~09433~^1^1^~fruit~^74^32^14.296 +~09434~^1^1^~cup~^251^^ +~09435~^1^1^~cup~^251^^ +~09436~^1^1^~cup~^251^^ +~09437~^1^1^~cup~^251^^ +~09442~^1^1^~cup~^249^3^5.193 +~09442~^2^1^~fl oz~^31.4^3^.351 +~09443~^1^8^~fl oz~^250^^ +~09444~^1^8^~fl oz~^250^^ +~09446~^1^1^~cup~^118^3^7.636 +~09446~^2^10^~slices (1/4" thick)~^53^2^ +~09447~^1^1^~cup~^169^^ +~09448~^1^3^~fruit without pits~^11.1^^ +~09449~^1^1^~cup without pits, thawed~^112^1^ +~09449~^2^3^~fruit without pits, thawed~^9.8^^ +~09450~^1^1^~cup thawed~^120^4^9.43 +~09451~^1^1^~cup~^233^6^4.248 +~09451~^2^1^~fruit (4-2/3" long x 2-3/4" dia)~^209^3^20.621 +~09452~^1^8^~fl oz~^246^1^ +~09500~^1^1^~cup, sliced~^109^^ +~09500~^2^1^~large~^260^21^31.741 +~09500~^3^1^~medium~^212^21^11.659 +~09500~^4^1^~small~^158^22^20.792 +~09501~^1^1^~cup, sliced~^109^^ +~09501~^2^1^~large~^215^24^26.951 +~09501~^3^1^~medium~^169^23^14.901 +~09501~^4^1^~small~^129^23^10.014 +~09502~^1^1^~cup, sliced~^109^^ +~09502~^2^1^~large~^206^23^19.87 +~09502~^3^1^~medium~^167^23^6.801 +~09502~^4^1^~small~^144^22^11.418 +~09503~^1^1^~cup, sliced~^109^^ +~09503~^2^1^~large~^200^22^17.973 +~09503~^3^1^~medium~^172^23^9.058 +~09503~^4^1^~small~^157^23^8.16 +~09504~^1^1^~cup, sliced~^109^^ +~09504~^2^1^~large~^236^23^24.139 +~09504~^3^1^~medium~^192^23^15.101 +~09504~^4^1^~small~^158^23^12.749 +~09506~^1^1^~cup~^249^^ +~09506~^2^1^~fl oz~^31.1^^ +~09507~^1^8^~fl oz~^240^^ +~09508~^1^1^~cup~^275^4^3.126 +~09510~^1^1^~cup~^250^^ +~09510~^2^1^~fl oz~^31.3^^ +~09511~^1^8^~fl oz~^240^^ +~09512~^1^1^~cup~^253^^ +~09512~^2^1^~fl oz~^31.6^^ +~09513~^1^1^~cup~^227^6^ +~09514~^1^1^~cup~^252^^ +~09515~^1^1^~cup~^230^9^ +~09516~^1^1^~cup~^233^10^ +~09517~^1^6^~fl oz~^177^1^ +~09517~^2^10^~fl oz~^295^1^ +~09518~^1^1^~cup, unthawed~^140^1^ +~09519~^1^11.3^~fl oz~^335^1^ +~09520~^1^1^~fruit~^81^100^1.187 +~09522~^1^6.75^~fl oz~^200^2^ +~09522~^2^8^~fl oz~^240^^ +~09523~^1^1^~tbsp~^15^9^1.012 +~09523~^2^1^~tsp~^5.2^9^.583 +~09524~^1^1^~tbsp~^15^11^.862 +~09524~^2^1^~tsp~^5.0^^ +~09525~^1^.25^~cup~^70^1^ +~09526~^1^.25^~cup~^70^1^ +~09528~^1^8^~fl oz~^248^5^.351 +~09530~^1^1^~cup~^233^8^ +~09531~^1^1^~cup~^228^16^ +~10000~^1^3^~oz~^85^^ +~10001~^1^1^~oz~^28.35^^ +~10001~^2^1^~lb~^453.6^^ +~10002~^1^1^~oz~^28.35^^ +~10002~^2^1^~lb~^453.6^^ +~10003~^1^1^~oz~^28.35^^ +~10003~^2^1^~lb~^453.6^^ +~10004~^1^1^~oz~^28.35^^ +~10004~^2^1^~lb~^453.6^^ +~10005~^1^1^~oz~^28.35^^ +~10005~^2^1^~lb~^453.6^^ +~10006~^1^1^~oz~^28.35^^ +~10006~^2^4^~oz~^113^^ +~10007~^1^1^~oz~^28.35^^ +~10007~^2^4^~oz~^113^^ +~10008~^1^1^~oz~^28.35^^ +~10008~^2^1^~lb~^453.6^^ +~10009~^1^1^~cup, diced~^135^^ +~10009~^2^3^~oz~^85^^ +~10010~^1^1^~oz~^28.35^^ +~10010~^2^1^~lb~^453.6^^ +~10011~^1^1^~cup, diced~^135^^ +~10011~^2^3^~oz~^85^^ +~10012~^1^1^~oz~^28.35^^ +~10012~^2^1^~lb~^453.6^^ +~10013~^1^1^~cup, diced~^135^^ +~10013~^2^3^~oz~^85^^ +~10014~^1^3^~oz~^85^^ +~10014~^2^1^~lb~^453.6^^ +~10014~^3^1^~roast~^3952^6^1100.684 +~10015~^1^3^~oz~^85^^ +~10015~^2^1^~roast~^3027^6^663.17 +~10016~^1^3^~oz~^85^^ +~10016~^2^1^~lb~^453.6^^ +~10016~^3^1^~roast~^3868^6^1687.582 +~10017~^1^3^~oz~^85^^ +~10017~^2^1^~roast~^2900^6^639.245 +~10018~^1^3^~oz~^85^^ +~10018~^2^1^~lb~^453.6^^ +~10018~^3^1^~roast~^3868^6^1687.582 +~10019~^1^3^~oz~^85^^ +~10019~^2^1^~roast~^2900^6^639.245 +~10020~^1^3^~oz~^85^^ +~10020~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^117^^ +~10021~^1^3^~oz~^85^^ +~10021~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^89^^ +~10022~^1^3^~oz~^85^^ +~10022~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^87^^ +~10023~^1^3^~oz~^85^^ +~10023~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^89^^ +~10024~^1^3^~oz~^85^^ +~10024~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^106^^ +~10025~^1^3^~oz~^85^^ +~10025~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^80^^ +~10026~^1^3^~oz~^85^^ +~10026~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^79^^ +~10027~^1^3^~oz~^85^^ +~10027~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^81^^ +~10028~^1^3^~oz~^85^^ +~10028~^2^1^~chop~^263^62^63.637 +~10029~^1^3^~oz~^85^^ +~10029~^2^1^~chop~^206^71^59.619 +~10030~^1^3^~oz~^85^^ +~10030~^2^1^~chop~^219^74^56.043 +~10031~^1^3^~oz~^85^^ +~10031~^2^1^~roast~^830^53^234.521 +~10032~^1^3^~oz~^85^^ +~10032~^2^1^~chop~^263^62^63.637 +~10033~^1^3^~oz~^85^^ +~10033~^2^1^~chop~^206^71^59.619 +~10034~^1^3^~oz~^85^^ +~10034~^2^1^~chop~^219^74^56.043 +~10035~^1^3^~oz~^85^^ +~10035~^2^1^~roast~^830^53^234.521 +~10036~^1^3^~oz~^85^^ +~10036~^2^1^~chop without refuse (Yield from 1 raw chop, with refuse, weighing 259g)~^199^131^ +~10037~^1^3^~oz~^85^^ +~10037~^2^1^~chop~^187^56^121.076 +~10038~^1^3^~oz~^85^^ +~10038~^2^1^~chop without refuse (Yield from 1 cooked chop, with refuse, weighing 209g)~^157^77^ +~10039~^1^3^~oz~^85^^ +~10039~^2^1^~roast~^900^31^349.432 +~10040~^1^3^~oz~^85^^ +~10040~^2^1^~chop without refuse (Yield from 1 raw chop, with refuse, weighing 259g)~^178^131^ +~10041~^1^3^~oz~^85^^ +~10041~^2^1^~chop~^187^56^121.076 +~10042~^1^1^~chop without refuse (Yield from 1 cooked chop, with refuse, weighing 209g)~^146^77^ +~10042~^2^3^~oz~^85^^ +~10043~^1^3^~oz~^85^^ +~10043~^2^1^~roast~^900^31^349.432 +~10044~^1^1^~chop without refuse (Yield from 1 raw chop, with refuse, weighing 201g)~^133^198^ +~10044~^2^1^~lb~^453.6^^ +~10045~^1^3^~oz~^85^^ +~10045~^2^1^~chop~^187^57^114.358 +~10046~^1^1^~chop without refuse (Yield from 1 cooked chop, with refuse, weighing 172g)~^112^116^ +~10046~^2^3^~oz~^85^^ +~10047~^1^3^~oz~^85^^ +~10047~^2^1^~roast~^783^31^250.749 +~10048~^1^3^~oz~^85^^ +~10048~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^86^^ +~10049~^1^3^~oz~^85^^ +~10049~^2^1^~chop~^187^57^114.358 +~10050~^1^3^~oz~^85^^ +~10050~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 151 g)~^67^^ +~10051~^1^3^~oz~^85^^ +~10051~^2^1^~roast~^783^31^250.749 +~10052~^1^3^~oz~^85^^ +~10052~^2^1^~lb~^453.6^^ +~10052~^3^1^~roast without refuse (Yield from 1 raw roast, with refuse, weighing 1817g)~^1327^25^ +~10053~^1^3^~oz~^85^^ +~10053~^2^1^~chop~^180^27^74.945 +~10054~^1^3^~oz~^85^^ +~10054~^2^1^~chop~^195^27^76.265 +~10055~^1^3^~oz~^85^^ +~10055~^2^1^~roast without refuse (Yield from 1 cooked roast, with refuse, weighing 1515g)~^1046^13^ +~10056~^1^3^~oz~^85^^ +~10056~^2^1^~lb~^453.6^^ +~10056~^3^1^~roast without refuse (Yield from 1 raw roast, with refuse, weighing 1818g)~^1217^25^ +~10057~^1^3^~oz~^85^^ +~10057~^2^1^~chop~^180^27^74.945 +~10058~^1^3^~oz~^85^^ +~10058~^2^1^~chop~^195^27^76.265 +~10059~^1^3^~oz (Yield from 1 cooked roast, with refuse, weighing 1515g)~^85^^ +~10059~^2^1^~roast without refuse~^985^13^ +~10060~^1^3^~oz~^85^^ +~10060~^2^1^~lb~^453.6^^ +~10060~^3^1^~roast~^505^55^ +~10061~^1^3^~oz~^85^^ +~10061~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^333^^ +~10061~^3^1^~roast~^402^31^ +~10062~^1^3^~oz~^85^^ +~10062~^2^1^~chop~^185^164^ +~10063~^1^1^~chop~^135^60^45.073 +~10064~^1^1^~chop~^145^91^ +~10064~^2^3^~oz~^85^^ +~10065~^1^3^~oz~^85^^ +~10065~^2^1^~roast~^848^20^ +~10066~^1^3^~oz~^85^^ +~10066~^2^1^~chop~^185^164^ +~10066~^3^1^~lb~^453.6^^ +~10067~^1^1^~chop~^135^60^45.073 +~10068~^1^1^~chop~^145^91^ +~10069~^1^3^~oz~^85^^ +~10070~^1^1^~oz~^28.35^^ +~10070~^2^1^~lb~^453.6^^ +~10071~^1^1^~cup, diced~^135^^ +~10071~^2^3^~oz~^85^^ +~10072~^1^1^~oz~^28.35^^ +~10072~^2^1^~lb~^453.6^^ +~10073~^1^1^~cup, diced~^135^^ +~10073~^2^3^~oz~^85^^ +~10074~^1^3^~oz~^85^^ +~10074~^2^1^~roast~^2745^7^1087.593 +~10075~^1^3^~oz~^85^^ +~10075~^2^1^~roast~^2252^7^941.815 +~10076~^1^1^~cup, diced~^135^^ +~10076~^2^3^~oz~^85^^ +~10077~^1^3^~oz~^85^^ +~10077~^2^1^~roast~^2745^7^1087.593 +~10078~^1^3^~oz~^85^^ +~10078~^2^1^~roast~^2252^7^941.815 +~10079~^1^3^~oz~^85^^ +~10079~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^191^^ +~10080~^1^3^~oz~^85^^ +~10080~^2^1^~steak without refuse (Yield from 1 raw steak, with refuse, weighing 380g)~^288^116^ +~10080~^3^1^~lb~^453.6^^ +~10081~^1^3^~oz~^85^^ +~10081~^2^1^~steak without refuse (Yield from 1 cooked steak, with refuse, weighing 249g)~^185^68^ +~10082~^1^3^~oz~^85^^ +~10082~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 300 g)~^169^^ +~10083~^1^3^~oz~^85^^ +~10083~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^262^^ +~10084~^1^3^~oz~^85^^ +~10084~^2^1^~steak without refuse (Yield from 1 raw steak, with refuse, weighing 379g)~^258^116^ +~10085~^1^3^~oz~^85^^ +~10085~^2^1^~steak~^249^68^ +~10086~^1^3^~oz~^85^^ +~10086~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 300 g)~^147^^ +~10087~^1^3^~oz~^85^^ +~10087~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^238^^ +~10088~^1^3^~oz~^85^^ +~10089~^1^3^~oz~^85^^ +~10089~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^177^^ +~10093~^1^3^~oz~^85^^ +~10093~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^231^^ +~10094~^1^4^~oz~^114^^ +~10094~^2^1^~chop~^170^92^ +~10096~^1^1^~oz~^28.35^^ +~10096~^2^4^~oz~^113^^ +~10097~^1^3^~oz~^85^^ +~10098~^1^1^~oz~^28.35^^ +~10099~^1^3^~oz~^85^^ +~10100~^1^1^~oz~^28.35^^ +~10100~^2^1^~ear~^113^^ +~10101~^1^1^~ear (yield after cooking)~^111^^ +~10101~^2^1^~unit, cooked (yield from 1 lb raw meat)~^422^^ +~10102~^1^1^~oz~^28.35^^ +~10103~^1^1^~oz~^28.35^^ +~10103~^2^1^~heart~^226^^ +~10104~^1^1^~cup~^145^^ +~10104~^2^1^~heart~^129^^ +~10105~^1^1^~oz~^28.35^^ +~10105~^2^4^~oz~^113^^ +~10106~^1^1^~oz~^28.35^^ +~10106~^2^1^~kidney~^233^^ +~10107~^1^1^~cup~^140^^ +~10107~^2^3^~oz~^85^^ +~10109~^1^1^~oz~^28.35^^ +~10109~^2^4^~oz~^113^^ +~10110~^1^1^~oz~^28.35^^ +~10110~^2^4^~oz~^113^^ +~10111~^1^3^~oz~^85^^ +~10112~^1^1^~oz~^28.35^^ +~10112~^2^1^~lb~^453.6^^ +~10113~^1^3^~oz~^85^^ +~10114~^1^1^~oz~^28.35^^ +~10114~^2^1^~lb~^453.6^^ +~10115~^1^1^~oz~^28.35^^ +~10115~^2^4^~oz~^113^^ +~10116~^1^3^~oz~^85^^ +~10117~^1^1^~oz~^28.35^^ +~10117~^2^4^~oz~^113^^ +~10118~^1^3^~oz~^85^^ +~10119~^1^1^~oz~^28.35^^ +~10119~^2^4^~oz~^113^^ +~10120~^1^3^~oz~^85^^ +~10120~^2^1^~chop~^215^73^55.229 +~10121~^1^1^~oz~^28.35^^ +~10121~^2^4^~oz~^113^^ +~10122~^1^3^~oz~^85^^ +~10122~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^231^^ +~10123~^1^1^~slice raw~^28^360^5.235 +~10123~^2^1^~package~^442^36^29.953 +~10128~^1^3^~oz~^85^^ +~10128~^2^3^~slices~^68^^ +~10128~^3^1^~package (12 oz)~^340^^ +~10130~^1^3^~oz~^85^^ +~10130~^2^2^~slices (6 per 6-oz pkg.)~^57^^ +~10130~^3^1^~package (6 oz)~^170^^ +~10132~^1^1^~oz~^28.35^^ +~10132~^2^1^~lb~^453.6^^ +~10134~^1^1^~cup~^140^^ +~10134~^2^3^~oz~^85^^ +~10136~^1^1^~cup~^140^^ +~10136~^2^3^~oz~^85^^ +~10137~^1^1^~cup~^140^^ +~10137~^2^1^~oz~^28.35^^ +~10138~^1^1^~cup~^140^^ +~10138~^2^3^~oz~^85^^ +~10140~^1^1^~cup~^140^^ +~10140~^2^3^~oz~^85^^ +~10141~^1^1^~oz~^28.35^^ +~10141~^2^4^~oz~^113^^ +~10142~^1^1^~oz~^28.35^^ +~10142~^2^4^~oz~^113^^ +~10146~^1^1^~oz~^28.35^^ +~10146~^2^1^~patty~^65^^ +~10149~^1^1^~oz~^28.35^^ +~10149~^2^1^~slice~^57^^ +~10150~^1^1^~cup~^140^^ +~10150~^2^1^~oz~^28.35^^ +~10152~^1^1^~cup~^140^^ +~10152~^2^1^~oz~^28.35^^ +~10153~^1^1^~cup~^140^^ +~10153~^2^3^~oz~^85^^ +~10158~^1^3^~oz~^85^^ +~10158~^2^1^~can~^815^3^3.456 +~10163~^1^4^~oz~^114^^ +~10163~^2^1^~chop~^137^97^ +~10164~^1^3^~oz~^85^^ +~10164~^2^1^~chop~^170^92^ +~10165~^1^1^~oz~^28.35^^ +~10165~^2^8^~oz~^227^^ +~10166~^1^1^~oz~^28.35^^ +~10166~^2^3^~oz~^85^^ +~10167~^1^1^~oz~^28.35^^ +~10167~^2^3^~oz~^85^^ +~10168~^1^1^~cup~^140^^ +~10168~^2^3^~oz~^85^^ +~10169~^1^1^~cup~^140^^ +~10169~^2^3^~oz~^85^^ +~10170~^1^1^~oz~^28.35^^ +~10170~^2^4^~oz~^113^^ +~10171~^1^3^~oz~^85^^ +~10171~^2^1^~piece, cooked (yield from 1 lb unheated product)~^376^^ +~10173~^1^3^~oz~^85^^ +~10174~^1^1^~oz~^28.35^^ +~10174~^2^4^~oz~^113^^ +~10175~^1^3^~oz~^85^^ +~10175~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^275^^ +~10176~^1^3^~oz~^85^^ +~10176~^2^1^~chop~^172^59^40.773 +~10177~^1^3^~oz~^85^^ +~10177~^2^1^~chop~^169^58^45.634 +~10178~^1^3^~oz~^85^^ +~10178~^2^1^~chop~^215^73^55.229 +~10179~^1^3^~oz~^85^^ +~10179~^2^1^~chop~^172^59^40.773 +~10180~^1^3^~oz~^85^^ +~10180~^2^1^~chop~^169^58^45.634 +~10181~^1^1^~chop~^142^61^48.518 +~10181~^2^3^~oz~^85^^ +~10182~^1^1^~cup~^140^^ +~10182~^2^1^~slice (6-1/4" x 4" x 1/16") (1 oz)~^28^^ +~10183~^1^1^~cup~^140^^ +~10183~^2^3^~oz~^85^^ +~10184~^1^1^~cup~^140^^ +~10184~^2^1^~oz~^28.35^^ +~10185~^1^1^~cup~^140^^ +~10185~^2^3^~oz~^85^^ +~10186~^1^1^~chop~^142^61^48.518 +~10187~^1^1^~oz~^28.35^^ +~10187~^2^1^~lb~^453.6^^ +~10188~^1^3^~oz~^85^^ +~10188~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^247^^ +~10189~^1^3^~oz~^85^^ +~10189~^2^1^~chop~^137^97^ +~10192~^1^3^~oz~^85^^ +~10193~^1^3^~oz~^85^^ +~10194~^1^3^~oz~^85^^ +~10194~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^101^^ +~10195~^1^3^~oz~^85^^ +~10195~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^81^^ +~10196~^1^3^~oz~^85^^ +~10196~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^80^^ +~10197~^1^3^~oz~^85^^ +~10197~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^75^^ +~10198~^1^3^~oz~^85^^ +~10198~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^317^^ +~10199~^1^3^~oz~^85^^ +~10199~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^88^^ +~10200~^1^3^~oz~^85^^ +~10200~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^72^^ +~10201~^1^3^~oz~^85^^ +~10201~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^71^^ +~10202~^1^3^~oz~^85^^ +~10202~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^66^^ +~10203~^1^3^~oz~^85^^ +~10203~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^283^^ +~10204~^1^1^~rib without refuse (Yield from 1 raw rib, with refuse, weighing 196g)~^128^241^ +~10204~^2^1^~oz~^28.35^^ +~10205~^1^1^~rib without refuse (Yield from 1 cooked rib, with refuse, weighing 140g)~^86^162^ +~10205~^2^3^~oz~^85^^ +~10206~^1^1^~rack~^138^37^93.933 +~10207~^1^3^~oz~^85^^ +~10207~^2^1^~rib~^197^241^ +~10208~^1^1^~rib without refuse (yield from 1 cooked rib, with refuse, weighing 141g)~^80^162^ +~10208~^2^3^~oz~^85^^ +~10209~^1^1^~rack~^138^37^93.933 +~10210~^1^3^~oz~^85^^ +~10210~^2^1^~chop~^210^59^57.316 +~10211~^1^3^~oz~^85^^ +~10211~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^82^^ +~10212~^1^3^~oz~^85^^ +~10212~^2^1^~chop~^159^60^35.997 +~10213~^1^3^~oz~^85^^ +~10213~^2^1^~roast~^638^38^345.211 +~10214~^1^3^~oz~^85^^ +~10214~^2^1^~chop~^210^59^57.316 +~10215~^1^3^~oz~^85^^ +~10215~^2^1^~chop~^161^59^36.644 +~10216~^1^3^~oz~^85^^ +~10216~^2^1^~chop~^159^60^35.997 +~10217~^1^3^~oz~^85^^ +~10217~^2^1^~roast~^638^38^345.211 +~10218~^1^3^~oz~^85^^ +~10218~^2^1^~roast (Yield from 1 raw roast, with refuse, weighing 504g)~^505^55^ +~10219~^1^1^~oz~^28.35^^ +~10219~^2^4^~oz~^113^^ +~10220~^1^3^~oz~^85^^ +~10221~^1^3^~oz~^85^^ +~10221~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^76^^ +~10222~^1^3^~oz~^85^^ +~10222~^2^1^~roast~^402^31^ +~10223~^1^3^~oz~^85^^ +~10223~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 113 g)~^73^^ +~10224~^1^3^~oz~^85^^ +~10224~^2^1^~roast~^2195^33^ +~10225~^1^3^~oz~^85^^ +~10225~^2^1^~roast~^2195^33^ +~10226~^1^1^~oz~^28.35^^ +~10226~^2^1^~lb~^453.6^^ +~10227~^1^3^~oz~^85^^ +~10227~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^261^^ +~10228~^1^1^~oz~^28.35^^ +~10228~^2^1^~lb~^453.6^^ +~10229~^1^3^~oz~^85^^ +~10229~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^236^^ +~10802~^1^1^~oz boneless~^28.35^^ +~10802~^2^1^~cubic inch boneless~^17^^ +~10803~^1^1^~oz grilled patties~^28.35^^ +~10803~^2^3^~oz grilled patties~^85^^ +~10804~^1^1^~oz boneless~^28.35^^ +~10804~^2^1^~cubic inch boneless~^17^^ +~10805~^1^1^~oz crumbles~^113^^ +~10851~^1^1^~serving~^84^^ +~10852~^1^4^~oz~^112^^ +~10853~^1^4^~oz~^112^^ +~10854~^1^1^~oz~^28^^ +~10854~^2^1^~serving~^112^^ +~10854~^3^4^~oz~^112^^ +~10855~^1^1^~oz~^28.35^^ +~10855~^2^1^~serving~^112^^ +~10855~^3^4^~oz~^112^^ +~10856~^1^1^~oz~^28^^ +~10856~^2^1^~serving~^112^^ +~10856~^3^4^~oz~^112^^ +~10857~^1^1^~serving~^56^^ +~10858~^1^1^~chop boneless~^150^12^ +~10859~^1^1^~chop boneless (yield from 189g raw meat)~^150^12^ +~10860~^1^1^~slice cooked~^8.1^77^ +~10861~^1^1^~slice cooked~^9.1^220^2.231 +~10861~^2^1^~slice raw~^28^220^ +~10862~^1^1^~slice~^11.5^216^2.612 +~10863~^1^3^~oz~^85^^ +~10864~^1^3^~oz~^85^^ +~10865~^1^1^~serving (3 oz)~^85^^ +~10865~^2^1^~roast rump~^2970^5^181.709 +~10866~^1^3^~oz~^85^^ +~10867~^1^1^~serving (3 oz)~^85^^ +~10867~^2^1^~roast shank~^3054^6^543.619 +~10868~^1^1^~serving (3 oz)~^85^^ +~10868~^2^1^~slice~^436^9^59.271 +~10869~^1^1^~serving (3 oz)~^85^^ +~10869~^2^1^~slice~^446^6^99.115 +~10870~^1^1^~slice~^138^3^19.809 +~10870~^2^1^~serving (3 oz)~^85^^ +~10871~^1^1^~serving (3 oz)~^85^^ +~10871~^2^1^~roast~^1995^4^487.343 +~10872~^1^3^~oz~^85^^ +~10873~^1^1^~serving (3 oz)~^85^^ +~10873~^2^1^~roast rump~^2673^8^160.075 +~10874~^1^1^~serving (3 oz)~^85^^ +~10874~^2^1^~roast shank~^3170^7^298.025 +~10875~^1^1^~serving (3 oz)~^85^^ +~10875~^2^1^~slice~^445^3^106.535 +~10876~^1^1^~slice~^145^1^ +~10876~^2^1^~roast~^920^2^ +~10876~^3^1^~serving (3 oz)~^85^^ +~10877~^1^1^~serving (3 oz)~^85^^ +~10877~^2^1^~roast rump~^2533^5^530.743 +~10878~^1^1^~serving (3 oz)~^85^^ +~10878~^2^1^~slice~^189^12^59.369 +~10879~^1^3^~oz~^85^^ +~10879~^2^1^~roast whole~^1867^12^777.37 +~10880~^1^3^~oz~^85^^ +~10881~^1^1^~serving (3 oz)~^85^^ +~10881~^2^1^~roast shank~^3204^6^309.749 +~10882~^1^1^~serving (3 oz)~^85^^ +~10882~^2^1^~slice~^277^11^219.831 +~10883~^1^1^~serving (3 oz)~^85^^ +~10883~^2^1^~roast~^1497^9^547.492 +~10884~^1^1^~oz~^28.35^11^0 +~10884~^2^1^~lb~^453.6^11^0 +~10885~^1^3^~oz~^85^^ +~10886~^1^3^~oz~^85^^ +~10887~^1^1^~oz~^28.35^1^ +~10887~^2^1^~lb~^453.6^1^ +~10888~^1^3^~oz~^85^^ +~10889~^1^3^~oz~^85^^ +~10890~^1^3^~oz~^85^^ +~10891~^1^3^~oz~^85^^ +~10892~^1^3^~oz~^85^^ +~10892~^2^1^~slice~^430^1^ +~10893~^1^1^~oz spiral slice~^28.35^1^ +~10893~^2^1^~lb spiral slice~^453.6^1^ +~10894~^1^3^~oz~^85^^ +~10895~^1^4^~oz~^117^^ +~10898~^1^3^~oz~^117^^ +~10899~^1^1^~serving (3 oz)~^85^^ +~10899~^2^1^~slice~^366^6^53.162 +~10900~^1^1^~oz whole~^28.35^11^0 +~10900~^2^1^~lb whole~^453.6^11^0 +~10901~^1^1^~oz spiral slice~^28.35^1^ +~10901~^2^1^~lb spiral slice~^453.6^1^ +~10902~^1^3^~oz~^85^^ +~10903~^1^1^~oz shank~^28.35^1^ +~10903~^2^1^~lb shank~^453.6^1^ +~10904~^1^1^~oz rump~^28.35^1^ +~10904~^2^1^~lb rump~^453.6^1^ +~10905~^1^1^~oz whole~^28.35^4^0 +~10905~^2^1^~lb whole~^453.6^4^0 +~10906~^1^1^~oz~^28.35^1^ +~10906~^2^1^~lb~^453.6^1^ +~10907~^1^1^~oz shank~^28.35^1^ +~10907~^2^1^~lb shank~^453.6^1^ +~10908~^1^1^~oz rump~^28.35^1^ +~10908~^2^1^~lb rump~^453.6^1^ +~10909~^1^1^~oz whole~^28.35^12^0 +~10909~^2^1^~lb whole~^453.6^12^0 +~10910~^1^1^~oz~^28.35^1^ +~10910~^2^1^~lb~^453.6^1^ +~10911~^1^1^~oz~^28.35^1^ +~10911~^2^1^~lb~^453.6^1^ +~10912~^1^1^~oz~^28.35^1^ +~10912~^2^1^~lb~^453.6^1^ +~10913~^1^1^~serving (3 oz)~^85^^ +~10913~^2^1^~roast rump~^2970^5^181.709 +~10914~^1^1^~serving (3 oz)~^85^^ +~10914~^2^1^~roast shank~^3054^6^543.619 +~10915~^1^1^~serving (3 oz)~^85^^ +~10915~^2^1^~slice~^436^9^59.271 +~10916~^1^1^~serving (3 oz)~^85^^ +~10916~^2^1^~slice~^189^12^59.369 +~10917~^1^1^~serving (3 oz)~^85^^ +~10917~^2^1^~roast~^1867^12^777.37 +~10918~^1^1^~serving (3 oz)~^85^^ +~10918~^2^1^~roast rump~^2533^5^530.743 +~10919~^1^1^~serving (3 oz)~^85^^ +~10919~^2^1^~roast shank~^3204^6^309.749 +~10920~^1^1^~serving (3 oz)~^85^^ +~10920~^2^1^~slice~^446^6^99.115 +~10921~^1^1^~slice~^136^1^ +~10921~^2^1^~serving (3 oz)~^85^^ +~10922~^1^1^~serving (3 oz)~^85^^ +~10922~^2^1^~roast~^1995^4^487.343 +~10923~^1^1^~serving (3 oz)~^85^^ +~10923~^2^1^~roast rump~^2673^8^160.075 +~10924~^1^1^~serving (3 oz)~^85^^ +~10924~^2^1^~roast shank~^3170^7^298.025 +~10925~^1^1^~serving (3 oz)~^85^^ +~10925~^2^1^~slice~^445^3^106.535 +~10926~^1^1^~serving (3 oz)~^85^^ +~10926~^2^1^~slice~^277^11^219.831 +~10927~^1^1^~slice~^145^1^ +~10927~^2^1^~roast~^920^2^ +~10927~^3^1^~serving (3 oz)~^85^^ +~10928~^1^1^~serving (3 oz)~^85^^ +~10928~^2^1^~roast~^1497^9^547.492 +~10929~^1^1^~serving (3 oz)~^85^^ +~10929~^2^1^~roast rump~^2874^3^104.472 +~10931~^1^1^~serving (3 oz)~^85^^ +~10931~^2^1^~roast rump~^2874^3^104.472 +~10932~^1^1^~oz~^28.35^3^0 +~10932~^2^1^~lb~^453.6^3^0 +~10933~^1^1^~serving (3 oz)~^85^^ +~10933~^2^1^~roast shank~^2800^3^427.282 +~10934~^1^1^~oz~^28.35^3^0 +~10934~^2^1^~lb~^453.6^3^0 +~10935~^1^1^~serving (3 oz)~^85^^ +~10935~^2^1^~roast shank~^2800^3^427.282 +~10936~^1^1^~oz~^28.35^3^0 +~10936~^2^1^~lb~^453.6^3^0 +~10937~^1^1^~serving (3 oz)~^85^^ +~10937~^2^1^~slice~^366^6^53.162 +~10938~^1^1^~serving (3 oz)~^85^^ +~10938~^2^1^~slice~^425^6^53.843 +~10939~^1^1^~serving (3 oz)~^85^^ +~10939~^2^1^~slice~^425^6^53.843 +~10940~^1^3^~oz~^85^^ +~10942~^1^1^~oz~^28.35^^ +~10942~^2^1^~lb~^453.0^^ +~10943~^1^3^~oz~^85^^ +~10944~^1^3^~oz~^85^^ +~10945~^1^3^~oz~^85^^ +~10946~^1^3^~oz~^85^^ +~10947~^1^1^~chop~^107^79^ +~10948~^1^4^~oz~^114^^ +~10948~^2^1^~chop~^146^76^ +~10949~^1^1^~chop~^146^76^ +~10950~^1^1^~chop~^107^79^ +~10951~^1^3^~oz~^85^^ +~10951~^2^1^~roast~^537^24^ +~10952~^1^3^~oz~^85^^ +~10952~^2^1^~roast~^508^24^ +~10953~^1^3^~oz~^85^^ +~10953~^2^1^~steak~^393^^ +~10954~^1^3^~oz~^85^^ +~10954~^2^1^~steak~^264^24^ +~10955~^1^3^~oz~^85^^ +~10956~^1^3^~oz~^85^^ +~10956~^2^1^~piece~^194^12^30.241 +~10957~^1^3^~oz~^85^^ +~10957~^2^1^~piece~^231^12^40.115 +~10958~^1^3^~oz~^85^^ +~10958~^2^1^~piece~^430^12^51.189 +~10959~^1^3^~oz~^85^^ +~10959~^2^1^~piece~^373^12^51.69 +~10960~^1^1^~piece~^92^12^10.506 +~10961~^1^1^~piece~^105^12^12.142 +~10962~^1^3^~oz~^85^^ +~10962~^2^1^~piece~^609^12^95.268 +~10963~^1^3^~oz~^85^^ +~10963~^2^1^~piece~^765^12^146.184 +~10972~^1^4^~oz~^113^^ +~10973~^1^4^~oz~^113^^ +~10974~^1^4^~oz~^113^^ +~10975~^1^3^~oz grilled patties~^85^^ +~10976~^1^3^~oz grilled patties~^85^^ +~10977~^1^3^~oz grilled patties~^85^^ +~10978~^1^3^~oz grilled patties~^85^^ +~10979~^1^3^~oz grilled patties~^85^^ +~10980~^1^4^~oz~^114^^ +~10980~^2^1^~ribs~^1071^53^146.182 +~10981~^1^3^~oz~^85^^ +~10981~^2^1^~ribs~^878^56^178.865 +~10982~^1^3^~oz~^85^^ +~10982~^2^1^~chop~^176^59^45.049 +~10983~^1^3^~oz~^85^^ +~10983~^2^1^~roast~^848^31^255.67 +~10984~^1^3^~oz~^85^^ +~10984~^2^1^~chop~^131^60^44.247 +~10985~^1^1^~rack~^122^36^78.181 +~10986~^1^1^~rack~^122^36^78.181 +~10987~^1^1^~rack~^138^37^93.933 +~10988~^1^1^~chop~^131^60^44.247 +~10989~^1^3^~oz~^85^^ +~10989~^2^1^~chop~^176^59^45.049 +~10990~^1^3^~oz~^85^^ +~10990~^2^1^~roast~^848^31^255.67 +~10991~^1^1^~rack~^122^36^78.181 +~10992~^1^1^~rack~^122^36^78.181 +~10993~^1^1^~rack~^138^37^93.933 +~10994~^1^1^~slice~^26^120^3.403 +~10994~^2^1^~package~^446^12^9.538 +~10998~^1^1^~slice~^13.8^230^ +~11001~^1^1^~cup~^33^^ +~11001~^2^1^~tbsp~^3.0^^ +~11003~^1^1^~cup~^28^^ +~11003~^2^1^~leaf~^14.0^^ +~11004~^1^1^~cup~^132^^ +~11005~^1^1^~large~^25^^ +~11005~^2^1^~medium~^12.0^^ +~11006~^1^1^~medium~^12.0^^ +~11007~^1^1^~artichoke, medium~^128^^ +~11007~^2^1^~artichoke, large~^162^^ +~11008~^1^1^~artichoke, medium~^120^^ +~11008~^2^.5^~cup hearts~^84^^ +~11009~^1^.33^~package~^84^^ +~11009~^2^1^~package (9 oz)~^255^^ +~11010~^1^1^~cup~^168^^ +~11010~^2^1^~package (9 oz), yields~^240^^ +~11010~^3^.333^~package (9 oz) yields~^80^^ +~11011~^1^1^~cup~^134^^ +~11011~^2^1^~spear, small (5" long or less)~^12.0^^ +~11011~^3^1^~spear, medium (5-1/4" to 7" long)~^16^^ +~11011~^4^1^~spear, large (7-1/4" to 8-1/2")~^20^^ +~11011~^5^1^~spear, extra large (8-3/4" to 10" long)~^24^^ +~11011~^6^1^~spear tip (2" long or less)~^3.5^^ +~11012~^1^.5^~cup~^90^^ +~11012~^2^4^~spears (1/2" base)~^60^^ +~11013~^1^.5^~cup~^122^^ +~11013~^2^1^~can (300 x 407)~^411^^ +~11015~^1^1^~cup~^242^^ +~11015~^2^1^~spear (about 5" long)~^18^^ +~11015~^3^1^~can (300 x 407)~^248^^ +~11018~^1^4^~spears~^58^^ +~11018~^2^1^~package (10 oz)~^284^^ +~11019~^1^1^~cup~^180^^ +~11019~^2^1^~package (10 oz) yields~^293^^ +~11019~^3^4^~spears~^60^^ +~11022~^1^1^~leaf~^4.0^^ +~11022~^2^.5^~cup~^24^^ +~11023~^1^1^~cup~^58^^ +~11024~^1^1^~cup (1/2" pieces)~^93^^ +~11024~^2^1^~balsam-pear~^124^^ +~11025~^1^1^~cup (1/2" pieces)~^124^^ +~11025~^2^.5^~cup (1/2" pieces)~^62^^ +~11026~^1^1^~cup (1/2" slices)~^151^^ +~11026~^2^.5^~cup (1/2" pieces)~^76^^ +~11027~^1^1^~cup (1/2" slices)~^120^^ +~11027~^2^1^~shoot~^144^^ +~11028~^1^1^~cup (1/8" slices)~^131^^ +~11028~^2^1^~can (303 x 406)~^262^^ +~11029~^1^1^~cup~^184^^ +~11031~^1^1^~cup~^156^^ +~11032~^1^1^~cup~^170^^ +~11033~^1^.5^~cup~^124^^ +~11033~^2^1^~can (303 x 406)~^454^^ +~11037~^1^1^~cup~^160^^ +~11037~^2^1^~package (10 oz)~^284^^ +~11038~^1^1^~cup~^170^^ +~11038~^2^1^~package (10 oz) yields~^311^^ +~11039~^1^1^~cup~^164^^ +~11039~^2^1^~package (10 oz)~^284^^ +~11040~^1^1^~cup~^180^^ +~11040~^2^1^~package (10 oz) yields~^311^^ +~11043~^1^1^~cup~^104^^ +~11043~^2^1^~package (12 oz)~^340^^ +~11044~^1^1^~cup~^124^^ +~11045~^1^1^~cup~^124^^ +~11046~^1^1^~cup~^104^^ +~11048~^1^.333^~package (10 oz)~^94^^ +~11048~^2^1^~package (10 oz)~^284^^ +~11049~^1^.333^~package (10 oz) yields~^94^^ +~11049~^2^1^~package (10 oz) yields~^284^^ +~11050~^1^1^~cup~^245^^ +~11052~^1^1^~cup 1/2" pieces~^100^11^6.222 +~11052~^2^10^~beans (4" long)~^55^^ +~11053~^1^1^~cup~^125^^ +~11054~^1^1^~cup~^240^^ +~11054~^2^1^~can total can contents~^423^4^6.152 +~11056~^1^1^~cup~^135^^ +~11056~^2^10^~beans~^62^^ +~11056~^3^1^~can (303 x 406)~^262^^ +~11058~^1^.5^~cup~^114^^ +~11058~^2^1^~can (303 x 406)~^439^^ +~11060~^1^1^~cup~^121^10^2.526 +~11060~^2^1^~package (10 oz)~^284^^ +~11061~^1^1^~cup~^135^^ +~11062~^1^1^~cup~^111^9^3.215 +~11063~^1^1^~cup 1/2" pieces~^116^11^7.028 +~11080~^1^1^~cup~^136^^ +~11080~^2^1^~beet (2" dia)~^82^^ +~11081~^1^.5^~cup slices~^85^^ +~11081~^2^2^~beets (2" dia, sphere)~^100^^ +~11082~^1^1^~cup~^246^^ +~11084~^1^1^~cup, diced~^157^^ +~11084~^2^1^~cup, shredded~^195^^ +~11084~^3^1^~cup slices~^170^^ +~11084~^4^1^~cup, whole~^163^^ +~11084~^5^1^~slice~^8.0^^ +~11084~^6^1^~beet~^24^^ +~11084~^7^1^~can (303 x 406)~^294^^ +~11086~^1^1^~cup~^38^^ +~11086~^2^1^~leaf~^32^^ +~11086~^3^.5^~cup (1" pieces)~^19^^ +~11087~^1^1^~cup (1" pieces)~^144^^ +~11087~^2^.5^~cup (1" pieces)~^72^^ +~11088~^1^1^~cup~^109^^ +~11088~^2^1^~broadbean~^8.0^^ +~11090~^1^1^~cup chopped~^91^9^6.164 +~11090~^2^1^~bunch~^608^^ +~11090~^3^1^~spear (about 5" long)~^31^^ +~11090~^4^1^~stalk~^151^^ +~11090~^5^.5^~cup, chopped or diced~^44^^ +~11090~^6^1^~NLEA serving~^148^^ +~11091~^1^.5^~cup, chopped~^78^^ +~11091~^2^1^~stalk, large (11"-12" long)~^280^^ +~11091~^3^1^~stalk, medium (7-1/2" - 8" long)~^180^^ +~11091~^4^1^~stalk, small (5" long)~^140^^ +~11091~^5^1^~spear (about 5" long)~^37^^ +~11092~^1^1^~cup~^156^^ +~11092~^2^1^~package (10 oz)~^284^^ +~11093~^1^1^~cup~^184^^ +~11094~^1^.33^~package (10 oz)~^95^^ +~11094~^2^1^~package (10 oz)~^284^^ +~11094~^3^1^~package (2 lb)~^907^^ +~11095~^1^.5^~cup~^92^^ +~11095~^2^1^~package (10 oz) yields~^250^^ +~11096~^1^1^~cup chopped~^40^1^ +~11096~^2^1^~stalk~^19^4^4.144 +~11097~^1^1^~NLEA serving~^85^^ +~11097~^2^1^~bunch cooked~^437^3^30.621 +~11098~^1^1^~cup~^88^^ +~11098~^2^1^~sprout~^19^^ +~11099~^1^1^~sprout~^21^^ +~11099~^2^.5^~cup~^78^^ +~11100~^1^.33^~package (10 oz)~^95^^ +~11100~^2^1^~package (10 oz)~^284^^ +~11100~^3^1^~package (2 lb)~^907^^ +~11101~^1^1^~cup~^155^^ +~11104~^1^1^~cup (1" pieces)~^118^^ +~11104~^2^1^~root~^156^^ +~11105~^1^1^~cup (1" pieces)~^125^^ +~11105~^2^1^~root~^166^^ +~11106~^1^1^~cup~^94^^ +~11106~^2^1^~petiole~^5.0^^ +~11108~^1^1^~cup, chopped~^124^^ +~11108~^2^3^~stalks~^45^^ +~11109~^1^1^~cup, chopped~^89^^ +~11109~^2^1^~cup, shredded~^70^^ +~11109~^3^1^~head, large (about 7" dia)~^1248^^ +~11109~^4^1^~leaf, large~^33^^ +~11109~^5^1^~head, medium (about 5-3/4" dia)~^908^^ +~11109~^6^1^~leaf, medium~^23^^ +~11109~^7^1^~head, small (about 4-1/2" dia)~^714^^ +~11109~^8^1^~leaf~^15.0^^ +~11110~^1^.5^~cup, shredded~^75^^ +~11110~^2^1^~head~^1262^^ +~11112~^1^1^~cup, chopped~^89^^ +~11112~^2^1^~cup, shredded~^70^^ +~11112~^3^1^~head, large (about 5-1/2" dia)~^1134^^ +~11112~^4^1^~leaf~^23^^ +~11112~^5^1^~head, medium (about 5" dia)~^839^^ +~11112~^6^1^~head, small (4" dia)~^567^^ +~11113~^1^1^~leaf~^22^^ +~11113~^2^.5^~cup, shredded~^75^^ +~11114~^1^1^~cup, shredded~^70^^ +~11115~^1^1^~cup, shredded~^145^^ +~11116~^1^1^~cup, shredded~^70^^ +~11116~^2^1^~head~^840^^ +~11116~^3^1^~leaf~^14.0^^ +~11117~^1^1^~cup, shredded~^170^^ +~11118~^1^1^~cup~^150^^ +~11119~^1^1^~cup, shredded~^76^^ +~11120~^1^1^~cup, shredded~^119^^ +~11120~^2^1^~leaf~^14.0^^ +~11122~^1^1^~cup, shredded~^178^^ +~11124~^1^1^~cup chopped~^128^^ +~11124~^2^1^~cup grated~^110^^ +~11124~^3^1^~cup strips or slices~^122^^ +~11124~^4^1^~large (7-1/4" to 8-/1/2" long)~^72^^ +~11124~^5^1^~medium~^61^^ +~11124~^6^1^~small (5-1/2" long)~^50^^ +~11124~^7^1^~slice~^3.0^^ +~11124~^8^1^~strip large (3" long)~^7.0^^ +~11124~^9^1^~strip medium~^4.0^^ +~11125~^1^1^~tbsp~^9.7^^ +~11125~^2^.5^~cup slices~^78^^ +~11125~^3^1^~carrot~^46^^ +~11126~^1^.5^~cup slices~^123^^ +~11126~^2^1^~can (303 x 406)~^454^^ +~11128~^1^1^~cup, sliced~^146^^ +~11128~^2^1^~cup, mashed~^228^^ +~11128~^3^1^~slice~^2.8^^ +~11128~^4^1^~can (303 x 406)~^284^^ +~11130~^1^.5^~cup slices~^64^^ +~11130~^2^1^~package (10 oz)~^284^^ +~11131~^1^1^~cup, sliced~^146^^ +~11134~^1^1^~cup~^206^^ +~11134~^2^1^~root~^408^^ +~11135~^1^1^~cup chopped (1/2" pieces)~^107^6^4.999 +~11135~^2^1^~floweret~^13.0^1^ +~11135~^3^1^~head large (6-7" dia.)~^840^^ +~11135~^4^1^~head medium (5-6" dia.)~^588^6^282.197 +~11135~^5^1^~head small (4" dia.)~^265^^ +~11136~^1^.5^~cup (1" pieces)~^62^^ +~11136~^2^3^~flowerets~^54^^ +~11137~^1^.5^~cup (1" pieces)~^66^^ +~11137~^2^1^~package (10 oz)~^284^^ +~11138~^1^1^~cup (1" pieces)~^180^^ +~11141~^1^1^~cup~^156^^ +~11142~^1^1^~cup pieces~^155^^ +~11143~^1^1^~cup chopped~^101^12^6.584 +~11143~^2^1^~NLEA serving~^110^^ +~11143~^3^1^~tbsp~^7.5^^ +~11143~^4^1^~stalk, large (11"-12" long)~^64^^ +~11143~^5^1^~stalk, medium (7-1/2" - 8" long)~^40^^ +~11143~^6^1^~stalk, small (5" long)~^17^^ +~11143~^7^1^~strip (4" long)~^4.0^^ +~11144~^1^1^~cup, diced~^150^^ +~11144~^2^2^~stalks~^75^^ +~11145~^1^1^~leaf~^8.0^^ +~11147~^1^1^~cup~^36^^ +~11147~^2^1^~leaf~^48^^ +~11148~^1^1^~cup, chopped~^175^^ +~11149~^1^1^~cup (1" pieces)~^132^^ +~11149~^2^1^~chayote (5-3/4")~^203^^ +~11150~^1^1^~cup (1" pieces)~^160^^ +~11151~^1^1^~head~^53^^ +~11151~^2^.5^~cup~^45^^ +~11152~^1^1^~cup, chopped~^29^^ +~11154~^1^1^~root~^60^^ +~11154~^2^.5^~cup (1" pieces)~^45^^ +~11156~^1^1^~tbsp chopped~^3.0^^ +~11156~^2^1^~tsp chopped~^1.0^^ +~11157~^1^1^~cup (1" pieces)~^25^^ +~11157~^2^1^~stem (8-3/4" long)~^14.0^^ +~11158~^1^1^~cup (1" pieces)~^100^^ +~11161~^1^1^~cup, chopped~^36^^ +~11162~^1^1^~cup, chopped~^190^^ +~11163~^1^.33^~package (10 oz)~^95^^ +~11163~^2^1^~package (10 oz)~^284^^ +~11163~^3^1^~package (3 lb)~^1361^^ +~11164~^1^1^~cup, chopped~^170^^ +~11165~^1^.25^~cup~^4.0^^ +~11165~^2^9^~sprigs~^20^^ +~11167~^1^1^~cup~^145^5^11.273 +~11167~^2^1^~ear, large (7-3/4" to 9" long) yields~^143^^ +~11167~^3^1^~ear, medium (6-3/4" to 7-1/2" long) yields~^102^3^36.51 +~11167~^4^1^~ear, small (5-1/2" to 6-1/2" long)~^73^^ +~11168~^1^1^~ear small (5-1/2" to 6-1/2" long)~^89^^ +~11168~^2^1^~ear medium (6-3/4" to 7-1/2" long)~^103^^ +~11168~^3^1^~ear large (7-3/4" to 9" long)~^118^^ +~11168~^4^1^~cup cut~^149^6^5.999 +~11168~^5^1^~baby ear~^8.0^^ +~11170~^1^1^~cup~^256^1^ +~11170~^2^1^~can (303 x 406)~^482^^ +~11172~^1^1^~cup~^164^1^ +~11172~^2^1^~can (12 oz) yields~^211^^ +~11172~^3^1^~can (303 x 406)~^298^^ +~11174~^1^1^~cup~^256^^ +~11174~^2^1^~can (303 x 406)~^482^^ +~11176~^1^1^~cup~^210^^ +~11176~^2^1^~can, 15 oz (303 x 406)~^425^^ +~11176~^3^1^~can (303 x 406)~^340^^ +~11177~^1^1^~cup drained, rinsed~^150^4^4.571 +~11177~^2^1^~can drained, rinsed~^266^4^7.657 +~11178~^1^1^~cup~^136^9^4.178 +~11178~^2^1^~package~^284^1^ +~11179~^1^1^~cup~^165^^ +~11179~^2^1^~package (10 oz) yields~^284^^ +~11180~^1^1^~cup kernels~^165^^ +~11180~^2^1^~ear, yields~^125^^ +~11181~^1^1^~cup kernels~^165^^ +~11181~^2^1^~ear, yields~^63^^ +~11182~^1^1^~cup~^141^9^5.832 +~11184~^1^1^~cup~^227^^ +~11190~^1^1^~cup~^56^^ +~11191~^1^1^~cup~^145^^ +~11192~^1^1^~cup~^165^^ +~11195~^1^1^~cup~^160^^ +~11195~^2^1^~package (10 oz)~^284^^ +~11196~^1^1^~cup~^170^^ +~11197~^1^1^~cup~^94^^ +~11197~^2^1^~pod~^12.0^^ +~11198~^1^1^~cup~^95^^ +~11199~^1^1^~cup slices~^91^^ +~11199~^2^1^~pod~^12.0^^ +~11200~^1^1^~cup slices~^104^^ +~11200~^2^1^~pod~^14.0^^ +~11201~^1^1^~cup, chopped~^36^^ +~11201~^2^1^~leaf~^3.0^^ +~11202~^1^1^~cup, chopped~^53^^ +~11203~^1^1^~cup~^50^^ +~11203~^2^1^~sprig~^1.0^^ +~11204~^1^1^~cup~^135^^ +~11204~^2^.5^~cup~^68^^ +~11205~^1^.5^~cup slices~^52^^ +~11205~^2^1^~cucumber (8-1/4")~^301^^ +~11206~^1^1^~cup, pared, chopped~^133^^ +~11206~^2^1^~cup, sliced~^119^^ +~11206~^3^1^~large (8-1/4" long)~^280^^ +~11206~^4^1^~medium~^201^^ +~11206~^5^1^~slice~^7.0^^ +~11206~^6^1^~small (6-3/8" long)~^158^^ +~11206~^7^1^~stick (4" long)~^9.0^^ +~11207~^1^1^~cup, chopped~^55^^ +~11208~^1^1^~cup, chopped~^105^^ +~11209~^1^1^~cup, cubes~^82^^ +~11209~^2^1^~eggplant, peeled (yield from 1-1/4 lb)~^458^^ +~11209~^3^1^~eggplant, unpeeled (approx 1-1/4 lb)~^548^^ +~11210~^1^1^~cup (1" cubes)~^99^^ +~11211~^1^1^~cup~^118^4^24.23 +~11211~^2^1^~package~^432^4^55.569 +~11212~^1^1^~cup~^155^2^ +~11213~^1^.5^~cup, chopped~^25^^ +~11213~^2^1^~head~^513^^ +~11214~^1^1^~cup~^150^^ +~11215~^1^1^~cup~^136^^ +~11215~^2^1^~tsp~^2.8^^ +~11215~^3^1^~clove~^3.0^^ +~11215~^4^3^~cloves~^9.0^^ +~11216~^1^1^~tsp~^2.0^^ +~11216~^2^.25^~cup slices (1" dia)~^24^^ +~11216~^3^5^~slices (1" dia)~^11.0^^ +~11218~^1^.5^~cup (1" pieces)~^58^^ +~11218~^2^1^~gourd~^771^^ +~11219~^1^1^~cup (1" cubes)~^146^^ +~11220~^1^1^~cup (1" pieces)~^95^^ +~11220~^2^1^~gourd~^178^^ +~11221~^1^1^~cup (1" pieces)~^178^^ +~11221~^2^.5^~cup (1" slices)~^89^^ +~11222~^1^1^~cup, chopped~^21^^ +~11223~^1^1^~cup, chopped~^42^^ +~11224~^1^1^~cup~^80^^ +~11225~^1^1^~cup~^87^^ +~11226~^1^1^~cup slices~^150^^ +~11228~^1^1^~cup slices~^99^^ +~11228~^2^1^~piece~^6.0^^ +~11230~^1^1^~cup~^24^^ +~11231~^1^1^~cup~^28^^ +~11232~^1^1^~cup~^87^^ +~11233~^1^1^~cup 1" pieces, loosely packed~^16^49^3.52 +~11234~^1^1^~cup, chopped~^130^^ +~11235~^1^.333^~package (10 oz)~^94^^ +~11235~^2^1^~package (10 oz)~^284^^ +~11236~^1^1^~cup, chopped~^130^^ +~11236~^2^.5^~cup, chopped or diced~^65^^ +~11237~^1^1^~strip~^6.3^^ +~11237~^2^.5^~cup~^27^^ +~11238~^1^1^~piece whole~^19^4^7.291 +~11239~^1^1^~cup~^54^2^ +~11239~^2^1^~piece~^5.4^6^.6 +~11240~^1^1^~cup~^66^4^4.8 +~11240~^2^1^~piece~^12.9^12^1.8 +~11241~^1^1^~cup~^135^^ +~11241~^2^1^~slice~^16^^ +~11242~^1^1^~cup slices~^165^^ +~11243~^1^1^~cup sliced~^121^3^8.69 +~11245~^1^1^~cup, chopped~^180^^ +~11246~^1^1^~cup~^89^^ +~11246~^2^1^~leek~^89^^ +~11246~^3^1^~slice~^6.0^^ +~11247~^1^1^~leek~^124^^ +~11247~^2^.25^~cup, chopped or diced~^26^^ +~11248~^1^1^~cup~^77^^ +~11250~^1^1^~cup, shredded or chopped~^55^^ +~11250~^2^1^~head (5" dia)~^163^^ +~11250~^3^1^~leaf, large~^15.0^^ +~11250~^4^1^~leaf, medium~^7.5^^ +~11250~^5^1^~leaf~^5.0^^ +~11251~^1^1^~cup shredded~^47^4^5.605 +~11251~^2^1^~leaf inner~^6.0^23^4.131 +~11251~^3^1^~leaf outer~^28^22^8.542 +~11251~^4^1^~head~^626^16^121.754 +~11251~^5^1^~NLEA serving~^85^^ +~11252~^1^1^~cup shredded~^72^4^12.615 +~11252~^2^1^~cup, chopped (1/2" pieces, loosely packed)~^57^^ +~11252~^3^1^~head, large~^755^^ +~11252~^4^1^~head, medium (6" dia)~^539^^ +~11252~^5^1^~head, small~^324^^ +~11252~^6^1^~leaf, large~^15.0^^ +~11252~^7^1^~leaf, medium~^8.0^^ +~11252~^8^1^~leaf, small~^5.0^^ +~11252~^9^1^~NLEA Serving~^89^^ +~11253~^1^1^~cup shredded~^36^^9.345 +~11253~^2^1^~head~^360^^174.527 +~11253~^3^1^~leaf inner~^4.8^^4.02 +~11253~^4^1^~leaf outer~^24^^8.645 +~11254~^1^10^~slices (2-1/2" dia)~^81^^ +~11254~^2^1^~root (9-1/2" long)~^115^^ +~11255~^1^.5^~cup~^60^^ +~11255~^2^10^~slices (2-1/2" dia)~^89^^ +~11257~^1^1^~cup shredded~^28^3^2.454 +~11257~^2^1^~leaf inner~^2.6^24^1.47 +~11257~^3^1^~leaf outer~^17^24^6.146 +~11257~^4^1^~head~^309^16^69.182 +~11257~^5^1^~NLEA serving~^85^^ +~11258~^1^.5^~cup, cubes~^68^^ +~11258~^2^1^~yam~^420^^ +~11259~^1^1^~cup, cubes~^145^^ +~11260~^1^1^~cup, pieces or slices~^70^^ +~11260~^2^1^~cup, whole~^96^^ +~11260~^3^1^~large~^23^^ +~11260~^4^1^~medium~^18^^ +~11260~^5^1^~slice~^6.0^^ +~11260~^6^1^~small~^10.0^^ +~11260~^7^.5^~cup pieces~^35^^ +~11261~^1^1^~cup pieces~^156^^ +~11261~^2^1^~tbsp~^9.8^^ +~11261~^3^1^~mushroom~^12.0^^ +~11263~^1^1^~cup sliced~^108^24^17.752 +~11264~^1^1^~cup~^156^^ +~11264~^2^1^~can~^132^^ +~11264~^3^1^~large~^16^^ +~11264~^4^1^~medium~^12.0^^ +~11264~^5^1^~small~^7.0^^ +~11264~^6^10^~slices~^40^^ +~11264~^7^8^~caps~^47^^ +~11264~^8^.5^~cup pieces~^78^^ +~11265~^1^1^~cup diced~^86^2^ +~11265~^2^1^~piece whole~^84^20^26.751 +~11266~^1^1^~cup whole~^87^4^.963 +~11266~^2^1^~cup sliced~^72^4^3.008 +~11266~^3^1^~piece whole~^20^30^6.355 +~11267~^1^1^~cup whole~^89^4^21.061 +~11267~^2^1^~cup sliced~^97^4^29.33 +~11267~^3^1^~piece whole~^19^4^7.291 +~11268~^1^1^~mushroom~^3.6^^ +~11268~^2^4^~mushrooms~^15.0^^ +~11269~^1^1^~cup pieces~^145^^ +~11269~^2^4^~mushrooms~^72^^ +~11270~^1^1^~cup, chopped~^56^1^ +~11271~^1^1^~cup, chopped~^140^1^ +~11272~^1^1^~cup, chopped~^146^^ +~11272~^2^1^~package (10 oz)~^284^^ +~11273~^1^1^~cup, chopped~^150^^ +~11273~^2^1^~package (10 oz) yields~^212^^ +~11274~^1^1^~cup, chopped~^150^^ +~11275~^1^1^~cup, chopped~^180^^ +~11276~^1^1^~cup, chopped~^56^^ +~11277~^1^1^~cup, chopped~^180^^ +~11278~^1^1^~cup~^100^^ +~11278~^2^8^~pods (3" long)~^95^^ +~11279~^1^.5^~cup slices~^80^^ +~11279~^2^8^~pods (3" long)~^85^^ +~11280~^1^.33^~package (10 oz)~^95^^ +~11280~^2^1^~package (10 oz)~^284^^ +~11280~^3^1^~package (3 lb)~^1361^^ +~11281~^1^.5^~cup slices~^92^^ +~11281~^2^1^~package (10 oz) yields~^255^^ +~11282~^1^1^~cup, chopped~^160^^ +~11282~^2^1^~cup, sliced~^115^^ +~11282~^3^1^~tbsp chopped~^10.0^^ +~11282~^4^1^~large~^150^^ +~11282~^5^1^~slice, large (1/4" thick)~^38^^ +~11282~^6^1^~medium (2-1/2" dia)~^110^^ +~11282~^7^1^~slice, medium (1/8" thick)~^14.0^^ +~11282~^8^1^~small~^70^^ +~11282~^9^1^~slice, thin~^9.0^^ +~11282~^10^10^~rings~^60^^ +~11283~^1^1^~cup~^210^^ +~11283~^2^1^~tbsp chopped~^15.0^^ +~11283~^3^1^~large~^128^^ +~11283~^4^1^~slice, large (1/4" thick)~^32^^ +~11283~^5^1^~medium~^94^^ +~11283~^6^1^~slice, medium (1/8" thick)~^12.0^^ +~11283~^7^1^~small~^60^^ +~11283~^8^1^~slice, thin~^8.0^^ +~11284~^1^1^~tbsp~^5.0^^ +~11284~^2^.25^~cup~^14.0^^ +~11285~^1^1^~onion~^63^^ +~11285~^2^.5^~cup, chopped or diced~^112^^ +~11286~^1^1^~cup chopped~^87^4^8.485 +~11287~^1^.33^~package (10 oz)~^95^^ +~11287~^2^1^~package (10 oz)~^284^^ +~11288~^1^1^~tbsp chopped~^15.0^^ +~11288~^2^.5^~cup, chopped or diced~^105^^ +~11289~^1^.33^~package (10 oz)~^95^^ +~11289~^2^1^~package (10 oz)~^284^^ +~11290~^1^1^~cup~^210^^ +~11291~^1^1^~cup, chopped~^100^^ +~11291~^2^1^~tbsp chopped~^6.0^^ +~11291~^3^1^~large~^25^^ +~11291~^4^1^~medium (4-1/8" long)~^15.0^^ +~11291~^5^1^~small (3" long)~^5.0^^ +~11292~^1^1^~tbsp~^6.0^^ +~11292~^2^1^~stalk~^12.0^^ +~11292~^3^1^~cup chopped~^71^12^19.062 +~11294~^1^1^~NLEA serving~^148^^ +~11294~^2^1^~onion~^331^24^145.55 +~11295~^1^6^~rings~^85^^ +~11295~^2^1^~package (16 oz)~^454^^ +~11295~^3^1^~package (9 oz)~^255^^ +~11296~^1^1^~cup~^48^^ +~11296~^2^10^~rings, large (3-4" dia)~^71^^ +~11296~^3^10^~rings, medium (2-3" dia)~^60^^ +~11296~^4^10^~rings, small (1-2" dia)~^48^^ +~11297~^1^1^~cup chopped~^60^^ +~11297~^2^1^~tbsp~^3.8^^ +~11297~^3^10^~sprigs~^10.0^^ +~11298~^1^1^~cup slices~^133^^ +~11299~^1^.5^~cup slices~^78^^ +~11299~^2^1^~parsnip (9" long)~^160^^ +~11300~^1^1^~cup, chopped~^98^^ +~11300~^2^1^~cup, whole~^63^^ +~11300~^3^10^~pea pods~^34^^ +~11301~^1^1^~cup~^160^^ +~11302~^1^1^~cup~^144^^ +~11302~^2^1^~package (10 oz)~^284^^ +~11303~^1^1^~cup~^160^^ +~11303~^2^1^~package (10 oz) yields~^253^^ +~11304~^1^1^~cup~^145^^ +~11305~^1^1^~cup~^160^^ +~11306~^1^.5^~cup~^124^^ +~11306~^2^1^~can (303 x 406)~^482^^ +~11308~^1^1^~cup~^175^5^14.382 +~11308~^2^1^~can (303 x 406)~^313^^ +~11310~^1^1^~cup~^227^^ +~11310~^2^.5^~cup~^114^^ +~11311~^1^1^~can~^257^4^4.764 +~11311~^2^1^~cup~^163^4^5.005 +~11312~^1^1^~cup~^134^9^6.196 +~11312~^2^1^~package~^284^1^ +~11313~^1^.5^~cup~^80^^ +~11313~^2^1^~package (10 oz) yields~^253^^ +~11316~^1^1^~cup~^120^^ +~11318~^1^1^~cup~^255^^ +~11322~^1^.5^~cup~^70^^ +~11322~^2^1^~package (10 oz)~^284^^ +~11323~^1^1^~package (10 oz) yields~^278^^ +~11323~^2^.5^~cup~^80^^ +~11324~^1^1^~cup~^120^^ +~11326~^1^.5^~cup~^69^^ +~11326~^2^1^~package (10 oz)~^284^^ +~11327~^1^1^~cup~^180^^ +~11329~^1^1^~pepper~^73^^ +~11329~^2^.5^~cup, chopped or diced~^68^^ +~11333~^1^1^~cup, chopped~^149^^ +~11333~^2^1^~cup, sliced~^92^^ +~11333~^3^1^~tbsp~^9.3^^ +~11333~^4^1^~large (2-1/4 per lb, approx 3-3/4" long, 3" dia)~^164^^ +~11333~^5^1^~medium (approx 2-3/4" long, 2-1/2" dia)~^119^^ +~11333~^6^1^~ring (3" dia, 1/4" thick)~^10.0^^ +~11333~^7^1^~small~^74^^ +~11333~^8^10^~strips~^27^^ +~11334~^1^1^~cup, chopped or strips~^135^^ +~11334~^2^1^~tablespoon, chopped~^11.6^^ +~11335~^1^1^~cup, halves~^140^^ +~11337~^1^.33^~package (10 oz)~^95^^ +~11337~^2^1^~package (10 oz)~^284^^ +~11339~^1^1^~cup chopped~^115^4^18.956 +~11344~^1^1^~cup~^154^^ +~11344~^2^10^~seeds~^4.0^^ +~11345~^1^1^~cup~^153^^ +~11349~^1^1^~cup~^240^^ +~11350~^1^1^~cup~^160^^ +~11351~^1^1^~cup~^165^^ +~11351~^2^1^~tbsp~^10.0^^ +~11352~^1^.5^~cup, diced~^75^^ +~11352~^2^1^~Potato large (3" to 4-1/4" dia)~^369^^ +~11352~^3^1^~Potato medium (2-1/4" to 3-1/4" dia)~^213^^ +~11352~^4^1^~Potato small (1-3/4" to 2-1/2" dia)~^170^^ +~11353~^1^.5^~cup, diced~^75^^ +~11353~^2^1^~potato large (3" to 4-1/4" dia)~^369^^ +~11353~^3^1^~Potato medium (2-1/4" to 3-1/4" dia)~^213^^ +~11353~^4^1^~Potato small (1-3/4" to 2-1/4" dia)~^170^^ +~11354~^1^.5^~cup, diced~^75^^ +~11354~^2^1^~large (3" to 4-1/4" dia.)~^369^^ +~11354~^3^1^~medium (2+-1/4" to 3-1/4" dia.)~^213^^ +~11354~^4^1^~small (1-3/4" to 2-1/4" dia.)~^92^^ +~11355~^1^.5^~cup, diced~^75^^ +~11355~^2^1^~potato large (3" to 4-1/4" dia)~^369^^ +~11355~^3^1^~potato medium (2-1/4" to 3-1/4" dia)~^213^^ +~11355~^4^1^~potato small (1-3/4" to 2-1/4" dia)~^170^^ +~11356~^1^1^~potato large (3" to 4-1/4" dia.~^299^^ +~11356~^2^1^~potato medium (2-1/4" to 3-1/4" dia.)~^173^^ +~11356~^3^1^~potato small (1-3/4" to 2-1/2" dia.)~^138^^ +~11357~^1^1^~potato large (3" to 4-1/4" dia)~^299^^ +~11357~^2^1^~potato medium (2-1/4" to 3-1/4" dia)~^173^^ +~11357~^3^1^~potato small (1-3/4" to 2-1/2" dia)~^138^^ +~11358~^1^1^~potato large (3" to 4-1/4" dia.~^299^^ +~11358~^2^1^~potato medium (2-1/4" to 3-1/4" dia.)~^173^^ +~11358~^3^1^~potato small (1-3/4" to 2-1/2" dia.)~^138^^ +~11359~^1^10^~strip~^82^6^11.557 +~11359~^2^3^~oz~^85^9^0 +~11360~^1^10^~strip~^69^6^9.755 +~11361~^1^3^~oz~^85^3^0 +~11362~^1^1^~skin~^38^^ +~11363~^1^.5^~cup~^61^^ +~11363~^2^1^~potato (2-1/3" x 4-3/4")~^156^^ +~11364~^1^1^~skin~^58^^ +~11365~^1^.5^~cup~^78^^ +~11365~^2^1^~potato (2-1/2" dia, sphere)~^136^^ +~11366~^1^1^~skin~^34^^ +~11367~^1^.5^~cup~^78^^ +~11367~^2^1^~large (3" to 4-1/4" dia.)~^300^^ +~11367~^3^1^~medium (2-1/4" to 3-1/4" dia.)~^167^^ +~11367~^4^1^~small (1-3/4" to 2-1/2" dia.)~^125^^ +~11368~^1^.5^~cup~^78^^ +~11368~^2^1^~potato (2-1/3" x 4-3/4")~^156^^ +~11369~^1^1^~skin~^58^^ +~11370~^1^1^~cup~^156^^ +~11371~^1^1^~cup~^210^^ +~11372~^1^1^~cup~^245^^ +~11373~^1^1^~cup~^245^^ +~11374~^1^1^~cup, whole~^300^^ +~11374~^2^1^~can (303 x 406)~^454^^ +~11376~^1^1^~cup~^180^^ +~11376~^2^1^~potato~^35^^ +~11378~^1^1^~cup~^60^4^8.248 +~11379~^1^1^~cup~^210^^ +~11380~^1^1^~cup~^200^^ +~11381~^1^1^~cup~^210^^ +~11382~^1^1^~cup~^200^^ +~11383~^1^1^~cup~^210^^ +~11384~^1^.167^~package (5.5 oz)~^26^^ +~11384~^2^1^~package (5.5 oz)~^156^^ +~11385~^1^.167^~package (5.5 oz) yields~^137^^ +~11385~^2^1^~package yield, 5.5 oz~^822^^ +~11386~^1^.167^~package (5.5 oz)~^26^^ +~11386~^2^1^~package (5.5 oz)~^156^^ +~11387~^1^1^~cup (unprepared)~^245^^ +~11387~^2^.167^~package (5.5 oz) yields~^137^^ +~11387~^3^1^~package yield, 5.5 oz~^822^^ +~11390~^1^.5^~cup~^105^^ +~11390~^2^1^~package (12 oz)~^340^^ +~11391~^1^1^~cup prepared~^150^14^17.353 +~11391~^2^1^~patty, oval (approx 3" x 1-1/2" x 1/2")~^29^^ +~11391~^3^1^~package yield, 12 oz~^205^^ +~11392~^1^1^~package (6 oz)~^170^^ +~11394~^1^10^~strip~^30^6^3.997 +~11395~^1^10^~strip~^21^6^4.18 +~11398~^1^1^~cup~^120^24^5.806 +~11398~^2^10^~pieces~^91^30^4.017 +~11399~^1^10^~puffs~^79^^ +~11399~^2^10^~Crispy Crowns~^60^^ +~11399~^3^1^~puff~^7.0^^ +~11399~^4^1^~cup~^128^^ +~11400~^1^1^~cup~^182^^ +~11402~^1^10^~strip~^89^18^53.024 +~11402~^2^1^~package (9 oz)~^255^^ +~11403~^1^10^~fries~^76^42^36.031 +~11403~^2^1^~package (9 oz), yields~^198^^ +~11406~^1^10^~strips~^65^^ +~11406~^2^1^~package (9 oz)~^255^^ +~11407~^1^10^~strips~^50^^ +~11407~^2^1^~package (9 oz), yields~^198^^ +~11408~^1^10^~strips~^65^^ +~11408~^2^1^~package (9 oz)~^255^^ +~11409~^1^10^~strips~^50^^ +~11409~^2^1^~package (9 oz), yields~^198^^ +~11411~^1^10^~strip~^153^6^16.262 +~11412~^1^10^~strip~^133^6^17.485 +~11413~^1^1^~cup~^160^^ +~11414~^1^1^~cup~^250^^ +~11416~^1^1^~cup~^33^^ +~11416~^2^1^~flower~^2.0^^ +~11417~^1^1^~cup~^134^^ +~11418~^1^1^~cup~^39^^ +~11419~^1^1^~cup~^71^^ +~11422~^1^1^~cup (1" cubes)~^116^^ +~11423~^1^1^~cup, mashed~^245^^ +~11424~^1^1^~cup~^245^^ +~11426~^1^1^~cup~^270^^ +~11427~^1^1^~cup~^43^^ +~11427~^2^1^~plant~^3.0^^ +~11428~^1^1^~cup~^115^^ +~11428~^2^1^~squash~^431^^ +~11429~^1^1^~cup slices~^116^^ +~11429~^2^1^~large (1" to 1-1/4" dia)~^9.0^^ +~11429~^3^1^~medium (3/4" to 1" dia)~^4.5^^ +~11429~^4^1^~slice~^1.0^^ +~11429~^5^1^~small~^2.0^^ +~11429~^6^.5^~cup slices~^58^^ +~11430~^1^1^~cup slices~^116^^ +~11430~^2^1^~radish (7" long)~^338^^ +~11431~^1^1^~cup, sliced~^147^^ +~11432~^1^1^~cup~^116^^ +~11435~^1^1^~cup, cubes~^140^^ +~11435~^2^1^~large~^772^^ +~11435~^3^1^~medium~^386^^ +~11435~^4^1^~small~^192^^ +~11436~^1^1^~cup, cubes~^170^^ +~11436~^2^1^~cup, mashed~^240^^ +~11437~^1^1^~cup slices~^133^^ +~11438~^1^1^~cup, sliced~^135^^ +~11439~^1^1^~cup~^142^^ +~11439~^2^1^~cup, undrained~^236^^ +~11442~^1^2^~tbsp (1/8 cup)~^10.0^^ +~11444~^1^2^~tbsp (1/8 cup)~^10.0^^ +~11445~^1^2^~tbsp (1/8 cup)~^10.0^^ +~11446~^1^10^~sheets~^26^^ +~11446~^2^2^~tbsp (1/8 cup)~^10.0^^ +~11447~^1^1^~flower~^3.0^^ +~11447~^2^1^~cup flowers~^20^^ +~11448~^1^1^~cup~^104^^ +~11450~^1^1^~cup~^256^^ +~11451~^1^1^~cup~^180^^ +~11452~^1^.5^~cup~^35^^ +~11452~^2^10^~sprouts~^10.0^^ +~11453~^1^1^~cup~^94^^ +~11457~^1^1^~cup~^30^^ +~11457~^2^1^~bunch~^340^^ +~11457~^3^1^~leaf~^10.0^^ +~11457~^4^1^~package (10 oz)~^284^^ +~11458~^1^1^~cup~^180^^ +~11459~^1^1^~cup~^234^^ +~11461~^1^1^~cup~^214^^ +~11463~^1^1^~cup~^156^^ +~11463~^2^1^~package (10 oz)~^284^^ +~11464~^1^.5^~cup~^95^^ +~11464~^2^1^~package (10 oz) yields~^220^^ +~11467~^1^1^~cup sliced~^127^8^8.46 +~11468~^1^1^~cup, sliced~^180^^ +~11468~^2^.5^~cup slices~^90^^ +~11471~^1^1^~cup, diced~^210^^ +~11471~^2^1^~cup, mashed~^240^^ +~11471~^3^1^~cup slices~^216^^ +~11471~^4^1^~slice~^8.0^^ +~11471~^5^1^~can (303 x 406)~^241^^ +~11473~^1^1^~cup slices~^130^^ +~11474~^1^1^~cup slices~^192^^ +~11475~^1^1^~cup slices~^130^^ +~11476~^1^1^~cup, mashed~^240^^ +~11476~^2^1^~cup, sliced~^180^^ +~11477~^1^1^~cup, chopped~^124^^ +~11477~^2^1^~cup, sliced~^113^^ +~11477~^3^1^~large~^323^^ +~11477~^4^1^~medium~^196^^ +~11477~^5^1^~slice~^9.9^^ +~11477~^6^1^~small~^118^^ +~11478~^1^1^~cup, sliced~^180^^ +~11478~^2^.5^~cup, mashed~^120^^ +~11479~^1^.33^~package (10 oz)~^95^^ +~11479~^2^1^~package (10 oz)~^284^^ +~11479~^3^1^~package (3 lb)~^1361^^ +~11480~^1^1^~cup~^223^^ +~11481~^1^1^~cup~^227^^ +~11482~^1^1^~cup, cubes~^140^^ +~11482~^2^1^~squash (4 inch dia)~^431^^ +~11483~^1^1^~cup, cubes~^205^^ +~11484~^1^1^~cup, mashed~^245^^ +~11485~^1^1^~cup, cubes~^140^^ +~11486~^1^1^~cup, cubes~^205^^ +~11487~^1^.33^~package (12 oz)~^113^^ +~11487~^2^1^~package (12 oz)~^340^^ +~11487~^3^1^~package (4 lb)~^1814^^ +~11488~^1^1^~cup, mashed~^240^^ +~11489~^1^1^~cup, cubes~^116^^ +~11490~^1^1^~cup, cubes~^205^^ +~11491~^1^1^~cup, mashed~^236^^ +~11492~^1^1^~cup, cubes~^101^^ +~11493~^1^1^~cup~^155^^ +~11496~^1^1^~cup~^192^^ +~11497~^1^1^~cup~^266^^ +~11499~^1^1^~cup~^255^^ +~11501~^1^1^~cup~^156^^ +~11501~^2^1^~package (10 oz)~^284^^ +~11502~^1^1^~cup~^170^^ +~11503~^1^1^~cup, chopped~^56^^ +~11503~^2^1^~shoot~^13.0^^ +~11504~^1^1^~cup, chopped~^98^^ +~11505~^1^1^~cup, chopped~^35^^ +~11505~^2^1^~leaf (12-1/4" long)~^16^^ +~11506~^1^1^~cup~^64^^ +~11507~^1^1^~cup, cubes~^133^^ +~11507~^2^1^~sweetpotato, 5" long~^130^^ +~11508~^1^1^~cup~^200^^ +~11508~^2^1^~large~^180^^ +~11508~^3^1^~medium (2" dia, 5" long, raw)~^114^^ +~11508~^4^1^~small~^60^^ +~11510~^1^1^~cup, mashed~^328^^ +~11510~^2^1^~medium~^151^^ +~11512~^1^1^~cup, mashed~^255^^ +~11512~^2^1^~cup pieces~^200^^ +~11514~^1^1^~cup~^255^^ +~11514~^2^1^~can (404 x 307)~^496^^ +~11516~^1^1^~cup, cubes~^176^^ +~11517~^1^1^~cup, cubes~^176^^ +~11518~^1^1^~cup, sliced~^104^^ +~11519~^1^1^~cup, sliced~^132^^ +~11520~^1^1^~cup~^28^^ +~11520~^2^1^~leaf (11" x 6-1/2")~^10.0^^ +~11521~^1^1^~cup~^145^^ +~11522~^1^.5^~cup slices~^43^^ +~11522~^2^1^~shoot~^83^^ +~11523~^1^1^~cup slices~^140^^ +~11525~^1^1^~cup slices~^125^^ +~11526~^1^1^~cup slices~^137^^ +~11527~^1^1^~cup~^180^^ +~11527~^2^1^~large~^182^^ +~11527~^3^1^~medium~^123^^ +~11527~^4^1^~slice or wedge~^20^^ +~11527~^5^1^~small~^91^^ +~11529~^1^1^~cup cherry tomatoes~^149^^ +~11529~^2^1^~cup, chopped or sliced~^180^^ +~11529~^3^1^~Italian tomato~^62^^ +~11529~^4^1^~cherry~^17^^ +~11529~^5^1^~large whole (3" dia)~^182^^ +~11529~^6^1^~medium whole (2-3/5" dia)~^123^^ +~11529~^7^1^~slice, medium (1/4" thick)~^20^^ +~11529~^8^1^~plum tomato~^62^^ +~11529~^9^1^~small whole (2-2/5" dia)~^91^^ +~11529~^10^1^~slice, thick/large (1/2" thick)~^27^^ +~11529~^11^1^~wedge (1/4 of medium tomato)~^31^^ +~11529~^12^1^~slice, thin/small~^15.0^^ +~11529~^13^1^~NLEA serving~^148^^ +~11530~^1^1^~cup~^240^^ +~11530~^2^2^~medium~^246^^ +~11531~^1^1^~cup~^240^^ +~11531~^2^1^~tbsp~^15.0^^ +~11531~^3^1^~can~^190^^ +~11531~^4^1^~large~^164^^ +~11531~^5^1^~medium~^111^^ +~11531~^6^1^~small~^82^^ +~11533~^1^1^~cup~^255^^ +~11537~^1^1^~cup~^241^^ +~11540~^1^1^~cup~^243^^ +~11540~^2^6^~fl oz~^182^^ +~11546~^1^.25^~cup~^66^^ +~11546~^2^1^~cup~^262^^ +~11546~^3^1^~tbsp~^16^^ +~11546~^4^1^~can (6 oz)~^170^^ +~11547~^1^1^~cup~^250^^ +~11547~^2^1^~can (29 oz) (401 x 411)~^822^^ +~11549~^1^1^~cup~^245^^ +~11551~^1^1^~cup~^245^^ +~11553~^1^1^~cup~^245^^ +~11555~^1^.5^~cup~^122^^ +~11555~^2^1^~can, 15 oz (303 x 406)~^425^^ +~11557~^1^1^~cup~^250^^ +~11557~^2^1^~can, 15 oz (303 x 406)~^411^^ +~11559~^1^1^~cup~^244^^ +~11559~^2^1^~can, 15 oz (303 x 406)~^425^^ +~11563~^1^.5^~cup, chopped~^71^^ +~11563~^2^1^~frond (6-1/2" long)~^31^^ +~11564~^1^1^~cup, cubes~^130^^ +~11564~^2^1^~large~^183^^ +~11564~^3^1^~medium~^122^^ +~11564~^4^1^~slice~^15.0^^ +~11564~^5^1^~small~^61^^ +~11564~^6^.5^~cup, cubes~^65^^ +~11565~^1^1^~cup, cubes~^156^^ +~11565~^2^1^~cup, mashed~^230^^ +~11566~^1^.333^~package, mashed (10 oz)~^94^^ +~11566~^2^1^~package, mashed (10 oz)~^284^^ +~11567~^1^1^~cup~^156^^ +~11568~^1^1^~cup, chopped~^55^^ +~11569~^1^1^~cup, chopped~^144^^ +~11570~^1^.5^~cup~^117^^ +~11570~^2^1^~can, 15 oz (303 x 406)~^425^^ +~11574~^1^.5^~cup, chopped or diced~^82^^ +~11574~^2^1^~package (10 oz)~^284^^ +~11575~^1^1^~cup~^164^^ +~11575~^2^1^~package (10 oz) yields~^220^^ +~11576~^1^.33^~package (10 oz)~^95^^ +~11576~^2^1^~package (10 oz)~^284^^ +~11576~^3^1^~package (3 lb)~^1361^^ +~11577~^1^1^~cup~^163^^ +~11578~^1^1^~cup~^253^20^4.938 +~11578~^2^6^~fl oz~^182^^ +~11579~^1^1^~cup~^245^^ +~11581~^1^1^~cup~^163^^ +~11583~^1^.33^~package (10 oz)~^95^^ +~11583~^2^1^~package (10 oz)~^284^^ +~11583~^3^1^~pack (2-1/2 lb)~^1134^^ +~11584~^1^.5^~cup~^91^^ +~11584~^2^1^~package (10 oz) yields~^275^^ +~11585~^1^1^~cup~^254^24^5.03 +~11585~^2^6^~fl oz~^182^^ +~11588~^1^.5^~cup slices~^62^^ +~11588~^2^4^~waterchestnuts~^36^^ +~11590~^1^.5^~cup slices~^70^^ +~11590~^2^4^~waterchestnuts~^28^^ +~11591~^1^1^~cup, chopped~^34^^ +~11591~^2^1^~sprig~^2.5^^ +~11591~^3^10^~sprigs~^25^^ +~11593~^1^1^~cup, cubes~^132^^ +~11593~^2^1^~waxgourd~^5700^^ +~11594~^1^1^~cup, cubes~^175^^ +~11595~^1^1^~cup slices~^44^^ +~11595~^2^1^~pod~^16^^ +~11596~^1^1^~cup~^62^^ +~11601~^1^1^~cup, cubes~^150^^ +~11602~^1^1^~cup, cubes~^136^^ +~11602~^2^.5^~cup, cubes~^68^^ +~11603~^1^1^~cup slices~^120^^ +~11603~^2^1^~cup~^130^^ +~11603~^3^1^~large~^1200^^ +~11603~^4^1^~medium~^659^^ +~11603~^5^1^~slice~^6.0^^ +~11603~^6^1^~small~^365^^ +~11605~^1^1^~cup slices~^246^^ +~11609~^1^1^~cup slices~^227^^ +~11613~^1^1^~cup (1" pieces)~^89^^ +~11615~^1^1^~tbsp~^0.2^^ +~11615~^2^.25^~cup~^0.8^^ +~11616~^1^1^~cup, chopped~^133^^ +~11618~^1^1^~cup~^100^^ +~11620~^1^1^~cup slices~^100^^ +~11620~^2^1^~pod (15-1/3" long)~^11.0^^ +~11621~^1^1^~cup slices~^118^^ +~11622~^1^1^~cup, chopped~^67^^ +~11623~^1^1^~cup, chopped~^130^^ +~11624~^1^1^~tbsp~^0.2^^ +~11624~^2^.25^~cup~^0.8^^ +~11625~^1^1^~tbsp~^0.4^^ +~11625~^2^.25^~cup~^1.4^^ +~11626~^1^1^~cup~^125^^ +~11632~^1^1^~cup, chopped~^136^^ +~11632~^2^1^~cup, sliced~^104^^ +~11632~^3^1^~pepper~^22^^ +~11634~^1^1^~tbsp~^0.4^^ +~11634~^2^.25^~cup~^1.6^^ +~11637~^1^.5^~cup slices~^50^^ +~11637~^2^1^~radish (7" long)~^17^^ +~11640~^1^1^~tbsp~^0.9^^ +~11640~^2^.25^~cup~^3.6^^ +~11641~^1^1^~cup, sliced~^113^^ +~11641~^2^1^~large~^323^^ +~11641~^3^1^~medium~^196^^ +~11641~^4^1^~slice~^9.9^^ +~11641~^5^1^~small~^118^^ +~11642~^1^1^~cup, sliced~^180^^ +~11643~^1^1^~cup, cubes~^116^^ +~11644~^1^1^~cup, cubes~^205^^ +~11645~^1^1^~cup~^228^^ +~11645~^2^1^~can (404 x 307)~^638^^ +~11647~^1^1^~cup~^196^^ +~11649~^1^1^~cup~^244^^ +~11649~^2^1^~can, 15 oz (303 x 406)~^425^^ +~11655~^1^1^~cup~^236^^ +~11655~^2^1^~fl oz~^29.5^^ +~11656~^1^1^~cup~^250^^ +~11656~^2^.667^~cup (#6 scoop)~^167^^ +~11657~^1^1^~cup~^210^^ +~11658~^1^1^~cup~^136^^ +~11658~^2^1^~recipe yield~^813^^ +~11659~^1^1^~piece (2-1/2" x 2" dia)~^105^^ +~11660~^1^1^~cup~^101^^ +~11660~^2^1^~recipe yield~^604^^ +~11667~^1^1^~cup~^112^^ +~11667~^2^1^~tablespoon~^7.0^^ +~11669~^1^2^~tbsp (1/8 cup)~^10.0^^ +~11670~^1^1^~pepper~^45^^ +~11670~^2^.5^~cup, chopped or diced~^75^^ +~11671~^1^1^~cup~^194^^ +~11671~^2^1^~recipe yield~^1162^^ +~11672~^1^1^~small 2-3/4 in. dia., 5/8 in. thick.~^22^^ +~11672~^2^1^~medium 3-1/4 in. x 3-5/8 in., 5/8 in. thick.~^37^^ +~11674~^1^1^~NLEA serving~^148^^ +~11674~^2^1^~potato large~^299^3^0 +~11674~^3^1^~potato medium~^173^3^0 +~11674~^4^1^~potato small~^138^3^0 +~11675~^1^1^~potato (2-3/4" dia by 4-3/4" long)~^202^^ +~11676~^1^1^~cup~^38^^ +~11677~^1^1^~tbsp chopped~^10.0^^ +~11683~^1^1^~cup~^74^^ +~11693~^1^.5^~cup~^121^^ +~11695~^1^1^~cup, chopped~^158^^ +~11695~^2^1^~tomato~^111^^ +~11696~^1^1^~cup, chopped~^139^^ +~11696~^2^1^~tomato~^212^^ +~11697~^1^1^~cup, sliced~^120^^ +~11697~^2^1^~root~^33^^ +~11698~^1^1^~cup, chopped~^51^^ +~11698~^2^1^~leaf~^18^^ +~11700~^1^1^~cup~^132^^ +~11701~^1^1^~corm, medium~^12.0^^ +~11702~^1^1^~artichoke, medium~^120^^ +~11702~^2^.5^~cup hearts~^84^^ +~11703~^1^1^~cup~^168^^ +~11703~^2^1^~package (9 oz), yields~^240^^ +~11703~^3^.333^~package (9 oz) yields~^80^^ +~11705~^1^.5^~cup~^90^^ +~11705~^2^4^~spears (1/2" base)~^60^^ +~11707~^1^.5^~cup~^122^^ +~11707~^2^1^~can (300 x 407)~^411^^ +~11709~^1^1^~cup~^180^^ +~11709~^2^1^~package (10 oz) yields~^293^^ +~11709~^3^4^~spears~^60^^ +~11710~^1^1^~cup~^58^^ +~11711~^1^1^~cup (1/2" pieces)~^124^^ +~11712~^1^1^~cup (1/2" slices)~^120^^ +~11712~^2^1^~shoot~^144^^ +~11714~^1^1^~cup~^170^^ +~11715~^1^1^~cup~^248^^ +~11715~^2^1^~can (303 x 406)~^454^^ +~11716~^1^1^~cup~^180^^ +~11716~^2^1^~package (10 oz) yields~^311^^ +~11717~^1^1^~cup~^170^^ +~11717~^2^1^~package (10 oz) yields~^311^^ +~11718~^1^1^~cup~^124^^ +~11720~^1^.333^~package (10 oz) yields~^94^^ +~11720~^2^1^~package (10 oz) yields~^284^^ +~11722~^1^1^~cup 1/2" pieces~^100^11^6.222 +~11722~^2^10^~beans (4" long)~^55^^ +~11723~^1^1^~cup~^125^^ +~11724~^1^1^~cup~^125^^ +~11725~^1^1^~cup~^125^^ +~11726~^1^.5^~cup~^120^^ +~11726~^2^1^~can (303 x 406)~^439^^ +~11727~^1^.5^~cup~^120^^ +~11727~^2^1^~can (303 x 406)~^439^^ +~11728~^1^.5^~cup~^120^^ +~11728~^2^1^~can (303 x 406)~^439^^ +~11729~^1^1^~cup~^153^4^28.092 +~11729~^2^10^~beans~^62^^ +~11729~^3^1^~can (303 x 406)~^262^^ +~11730~^1^1^~cup~^121^10^2.526 +~11730~^2^1^~package (10 oz)~^284^^ +~11731~^1^1^~cup~^135^^ +~11732~^1^1^~cup~^135^^ +~11733~^1^1^~cup~^135^^ +~11734~^1^.5^~cup slices~^85^^ +~11734~^2^2^~beets (2" dia, sphere)~^100^^ +~11735~^1^1^~cup~^246^^ +~11736~^1^1^~cup (1" pieces)~^144^^ +~11740~^1^1^~cup flowerets~^71^^ +~11740~^2^1^~floweret~^11.0^^ +~11741~^1^1^~stalk~^114^^ +~11742~^1^.5^~cup, chopped~^78^^ +~11742~^2^1^~stalk, large (11"-12" long)~^280^^ +~11742~^3^1^~stalk, medium (7-1/2" - 8" long)~^180^^ +~11742~^4^1^~stalk, small (5" long)~^140^^ +~11742~^5^1^~spear (about 5" long)~^37^^ +~11743~^1^1^~cup~^184^^ +~11744~^1^.5^~cup~^92^^ +~11744~^2^1^~package (10 oz) yields~^250^^ +~11745~^1^1^~sprout~^21^^ +~11745~^2^.5^~cup~^78^^ +~11746~^1^1^~cup~^155^^ +~11747~^1^1^~cup (1" pieces)~^125^^ +~11747~^2^1^~root~^166^^ +~11749~^1^.5^~cup, shredded~^35^^ +~11749~^2^1^~head~^908^^ +~11750~^1^.5^~cup, shredded~^35^^ +~11750~^2^1^~head~^908^^ +~11751~^1^.5^~cup, shredded~^75^^ +~11751~^2^1^~head~^1262^^ +~11752~^1^1^~leaf~^22^^ +~11752~^2^.5^~cup, shredded~^75^^ +~11753~^1^1^~cup, shredded~^145^^ +~11754~^1^1^~cup, shredded~^170^^ +~11755~^1^1^~cup, shredded~^119^^ +~11755~^2^1^~leaf~^14.0^^ +~11757~^1^1^~tbsp~^9.7^^ +~11757~^2^.5^~cup slices~^78^^ +~11757~^3^1^~carrot~^46^^ +~11758~^1^.5^~cup slices~^123^^ +~11758~^2^1^~can (303 x 406)~^454^^ +~11759~^1^1^~cup, sliced~^146^^ +~11759~^2^1^~cup, mashed~^228^^ +~11759~^3^1^~slice~^2.8^^ +~11759~^4^1^~can (303 x 406)~^284^^ +~11760~^1^1^~cup slices~^146^^ +~11761~^1^.5^~cup (1" pieces)~^62^^ +~11761~^2^3^~flowerets~^54^^ +~11762~^1^1^~cup (1" pieces)~^180^^ +~11763~^1^1^~cup pieces~^155^^ +~11764~^1^1^~cup, diced~^150^^ +~11764~^2^2^~stalks~^75^^ +~11765~^1^1^~cup, chopped~^175^^ +~11766~^1^1^~cup (1" pieces)~^160^^ +~11767~^1^1^~cup (1" pieces)~^100^^ +~11768~^1^1^~cup, chopped~^190^^ +~11769~^1^1^~cup, chopped~^170^^ +~11770~^1^1^~ear small (5-1/2" to 6-1/2" long)~^89^^ +~11770~^2^1^~ear medium (6-3/4" to 7-1/2" long)~^103^^ +~11770~^3^1^~ear large (7-3/4" to 9" long)~^118^^ +~11770~^4^1^~cup~^149^6^5.999 +~11770~^5^1^~baby ear~^8.0^^ +~11770~^6^1^~ear, yields~^77^^ +~11771~^1^1^~cup~^256^^ +~11771~^2^1^~can (303 x 406)~^482^^ +~11772~^1^1^~cup~^256^^ +~11772~^2^1^~can (303 x 406)~^482^^ +~11773~^1^1^~cup~^210^^ +~11773~^2^1^~can (303 x 406)~^340^^ +~11774~^1^1^~cup~^165^^ +~11774~^2^1^~package (10 oz) yields~^284^^ +~11775~^1^1^~cup kernels~^165^^ +~11775~^2^1^~ear, yields~^63^^ +~11777~^1^1^~cup~^165^^ +~11778~^1^1^~cup~^170^^ +~11779~^1^1^~cup~^95^^ +~11780~^1^1^~cup, chopped~^53^^ +~11781~^1^1^~cup~^135^^ +~11782~^1^1^~cup, chopped~^105^^ +~11783~^1^1^~cup (1" cubes)~^99^^ +~11784~^1^1^~cup (1" cubes)~^146^^ +~11785~^1^1^~cup (1" pieces)~^178^^ +~11785~^2^.5^~cup (1" slices)~^89^^ +~11786~^1^1^~cup, chopped~^42^^ +~11787~^1^1^~cup slices~^118^^ +~11788~^1^1^~cup~^87^^ +~11789~^1^1^~cup~^87^^ +~11790~^1^1^~cup, chopped~^130^^ +~11791~^1^1^~cup, chopped~^130^^ +~11792~^1^1^~cup, chopped~^130^^ +~11793~^1^1^~cup slices~^165^^ +~11794~^1^1^~cup, chopped~^180^^ +~11795~^1^1^~leek~^124^^ +~11795~^2^.25^~cup, chopped~^26^^ +~11796~^1^.5^~cup~^60^^ +~11796~^2^10^~slices (2-1/2" dia)~^89^^ +~11797~^1^1^~cup pieces~^156^^ +~11797~^2^1^~tbsp~^9.8^^ +~11797~^3^1^~mushroom~^12.0^^ +~11798~^1^1^~cup pieces~^145^^ +~11798~^2^4^~mushrooms~^72^^ +~11799~^1^1^~cup, chopped~^140^1^ +~11800~^1^1^~cup, chopped or diced~^150^^ +~11800~^2^1^~package (10 oz) yields~^212^^ +~11801~^1^1^~cup, chopped~^180^^ +~11802~^1^1^~cup, chopped~^180^^ +~11803~^1^.5^~cup slices~^80^^ +~11803~^2^8^~pods (3" long)~^85^^ +~11804~^1^.5^~cup slices~^92^^ +~11804~^2^1^~package (10 oz) yields~^255^^ +~11805~^1^1^~cup~^210^^ +~11805~^2^1^~tbsp chopped~^15.0^^ +~11805~^3^1^~large~^128^^ +~11805~^4^1^~slice large (1/4" thick)~^32^^ +~11805~^5^1^~medium~^94^^ +~11805~^6^1^~slice medium (1/8" thick)~^12.0^^ +~11805~^7^1^~small~^60^^ +~11805~^8^1^~slice thin~^8.0^^ +~11806~^1^1^~tbsp chopped~^15.0^^ +~11806~^2^.5^~cup, chopped or diced~^105^^ +~11807~^1^1^~cup~^210^^ +~11808~^1^.5^~cup slices~^78^^ +~11808~^2^1^~parsnip (9" long)~^160^^ +~11809~^1^1^~cup~^160^^ +~11810~^1^1^~cup~^160^^ +~11810~^2^1^~package (10 oz) yields~^253^^ +~11811~^1^1^~cup~^160^^ +~11812~^1^.5^~cup~^124^^ +~11812~^2^1^~can (303 x 406)~^482^^ +~11813~^1^.5^~cup~^85^^ +~11813~^2^1^~can (303 x 406)~^313^^ +~11814~^1^.5^~cup~^80^^ +~11814~^2^1^~package (10 oz) yields~^253^^ +~11816~^1^1^~cup~^255^^ +~11817~^1^.5^~cup~^80^^ +~11817~^2^1^~package (10 oz) yields~^278^^ +~11818~^1^1^~cup~^180^^ +~11819~^1^1^~pepper~^45^^ +~11819~^2^.5^~cup, chopped or diced~^75^^ +~11820~^1^1^~pepper~^73^^ +~11820~^2^.5^~cup, chopped or diced~^68^^ +~11821~^1^1^~cup, chopped~^149^^ +~11821~^2^1^~cup, sliced~^92^^ +~11821~^3^1^~tablespoon~^9.3^^ +~11821~^4^1^~large (2-1/4 per pound, approx 3-3/4" long, 3" dia.)~^164^^ +~11821~^5^1^~medium (approx 2-3/4" long, 2-1/2 dia.)~^119^^ +~11821~^6^1^~small~^74^^ +~11821~^7^1^~ring (3" dia., 1/4" thick)~^10.0^^ +~11822~^1^1^~tbsp~^11.6^^ +~11822~^2^1^~pepper~^73^^ +~11822~^3^.5^~cup, chopped~^92^^ +~11823~^1^1^~cup, strips~^135^^ +~11823~^2^1^~tbsp~^11.6^^ +~11823~^3^.5^~cup, chopped~^68^^ +~11824~^1^1^~tbsp~^12.0^^ +~11824~^2^1^~pepper~^73^^ +~11824~^3^.5^~cup, chopped~^92^^ +~11825~^1^1^~cup, chopped or strips~^135^^ +~11825~^2^1^~tablespoon, chopped~^11.6^^ +~11826~^1^1^~cup~^153^^ +~11827~^1^1^~cup~^165^^ +~11828~^1^.5^~cup~^61^^ +~11828~^2^1^~potato large (3" to 4-1/4" dia)~^299^3^0 +~11828~^3^1^~potato medium (2-1/4" to 3-1/4" dia)~^173^3^0 +~11828~^4^1^~potato small (1-3/4" to 2-1/2" dia)~^138^3^0 +~11828~^5^1^~NLEA serving~^148^^ +~11829~^1^.5^~cup~^61^^ +~11829~^2^1^~potato (2-1/3" x 4-3/4")~^156^^ +~11830~^1^1^~skin~^58^^ +~11831~^1^.5^~cup~^78^^ +~11831~^2^1^~potato (2-1/2" dia, sphere)~^136^^ +~11832~^1^1^~skin~^34^^ +~11833~^1^.5^~cup~^78^^ +~11833~^2^1^~large (3" to 4-1/4" dia.)~^300^^ +~11833~^3^1^~medium (2-1/4" to 2-1/4" dia.)~^167^^ +~11833~^4^1^~small (1-3/4" to 2-1/2" dia.)~^125^^ +~11834~^1^1^~potato (2-1/3" x 4-3/4")~^202^^ +~11835~^1^.5^~cup~^78^^ +~11835~^2^1^~potato (2-1/3" x 4-3/4")~^156^^ +~11836~^1^1^~skin~^58^^ +~11840~^1^10^~strips~^50^^ +~11840~^2^1^~package (9 oz) yields~^198^^ +~11841~^1^10^~strip~^74^18^48.34 +~11842~^1^10^~strips~^65^^ +~11842~^2^1^~package (9 oz)~^255^^ +~11843~^1^1^~cup~^245^^ +~11844~^1^1^~cup~^245^^ +~11845~^1^1^~cup, mashed~^245^^ +~11846~^1^1^~cup~^245^^ +~11847~^1^1^~cup~^134^^ +~11848~^1^1^~cup~^71^^ +~11849~^1^1^~cup~^115^^ +~11850~^1^1^~cup slices~^147^^ +~11851~^1^.5^~cup, mashed~^120^^ +~11852~^1^1^~cup slices~^135^^ +~11853~^1^1^~cup~^180^^ +~11854~^1^1^~cup~^180^^ +~11855~^1^1^~cup~^234^^ +~11856~^1^.5^~cup~^95^^ +~11856~^2^1^~package (10 oz) yields~^220^^ +~11857~^1^1^~cup slices~^180^^ +~11858~^1^1^~cup slices~^180^^ +~11859~^1^1^~cup slices~^192^^ +~11860~^1^.5^~cup slices~^90^^ +~11860~^2^.5^~cup, mashed~^120^^ +~11861~^1^.5^~cup slices~^90^^ +~11861~^2^.5^~cup, mashed~^120^^ +~11862~^1^1^~cup~^223^^ +~11863~^1^1^~cup, cubes~^205^^ +~11864~^1^1^~cup, cubes~^205^^ +~11865~^1^1^~cup, mashed~^245^^ +~11866~^1^1^~cup, cubes~^205^^ +~11867~^1^1^~cup, mashed~^240^^ +~11868~^1^1^~cup, cubes~^205^^ +~11869~^1^1^~cup, mashed~^236^^ +~11870~^1^1^~cup~^155^^ +~11871~^1^1^~cup~^192^^ +~11872~^1^1^~cup~^170^^ +~11873~^1^1^~cup, chopped~^98^^ +~11874~^1^1^~cup~^64^^ +~11875~^1^1^~medium (2" dia, 5" long, raw)~^114^^ +~11875~^2^.5^~cup, mashed~^100^^ +~11876~^1^1^~cup, mashed~^328^^ +~11876~^2^1^~medium~^151^^ +~11877~^1^1^~cup, cubes~^176^^ +~11878~^1^1^~cup slices~^132^^ +~11879~^1^1^~cup~^145^^ +~11880~^1^1^~cup slices~^140^^ +~11881~^1^1^~cup slices~^137^^ +~11884~^1^1^~cup~^240^^ +~11884~^2^.5^~cup~^120^^ +~11884~^3^1^~NLEA serving~^121^^ +~11885~^1^1^~cup~^240^^ +~11885~^2^1^~tbsp~^15.0^^ +~11885~^3^1^~can~^190^^ +~11885~^4^1^~large~^164^^ +~11885~^5^1^~medium~^111^^ +~11885~^6^1^~small~^82^^ +~11885~^7^.5^~cup~^120^^ +~11886~^1^1^~cup~^243^^ +~11886~^2^1^~fl oz~^30.4^^ +~11886~^3^6^~fl oz~^182^^ +~11888~^1^1^~cup~^250^^ +~11888~^2^1^~can (29 oz) (401 x 411)~^822^^ +~11889~^1^1^~cup, cubes~^156^^ +~11889~^2^1^~cup, mashed~^230^^ +~11890~^1^1^~cup~^156^^ +~11891~^1^1^~cup, chopped~^144^^ +~11892~^1^.5^~cup~^82^^ +~11892~^2^1^~package (10 oz) yields~^220^^ +~11893~^1^1^~cup~^163^^ +~11893~^2^.5^~cup~^86^^ +~11894~^1^.5^~cup~^91^^ +~11894~^2^1^~package (10 oz) yields~^275^^ +~11895~^1^1^~cup, cubes~^175^^ +~11896~^1^1^~cup~^62^^ +~11896~^2^.5^~cup~^31^^ +~11897~^1^1^~cup, cubes~^136^^ +~11897~^2^.5^~cup, cubes~^68^^ +~11899~^1^1^~cup slices~^104^^ +~11899~^2^1^~pod~^14.0^^ +~11900~^1^1^~ear, small (5-1/2" to 6-1/2" long)~^73^^ +~11900~^2^1^~ear, medium (6-3/4" to 7-1/2" long)~^90^^ +~11900~^3^1^~ear, large (7-3/4" to 9" long)~^143^^ +~11900~^4^1^~cup kernels~^154^^ +~11901~^1^1^~ear, small (5-1/2" to 6-1/2" long)~^89^^ +~11901~^2^1^~ear, medium (6-3/4" to 7-1/2" long)~^103^^ +~11901~^3^1^~ear, large (7-3/4" to 9" long)~^116^^ +~11901~^4^1^~cup cut~^157^7^8.875 +~11901~^5^1^~ear, yields~^77^^ +~11902~^1^1^~ear, small (5-1/2" to 6-1/2" long)~^89^^ +~11902~^2^1^~ear, medium (6-3/4" to 7-1/2" long)~^103^^ +~11902~^3^1^~ear, large (7-3/4" to 9" long)~^118^^ +~11902~^4^1^~cup cut~^157^7^8.875 +~11902~^5^1^~ear, yields~^77^^ +~11903~^1^1^~cup~^256^^ +~11903~^2^1^~can (303 x 406)~^482^^ +~11904~^1^1^~cup~^256^^ +~11904~^2^1^~can (303 x 406)~^482^^ +~11905~^1^1^~cup~^164^^ +~11905~^2^1^~can (303 x 406)~^298^^ +~11906~^1^1^~cup~^256^^ +~11906~^2^1^~can (303 x 406)~^482^^ +~11907~^1^1^~cup~^256^^ +~11907~^2^1^~can (303 x 406)~^482^^ +~11908~^1^1^~cup~^210^^ +~11908~^2^1^~can (303 x 406)~^340^^ +~11909~^1^1^~cup~^210^^ +~11909~^2^1^~can (303 x 406)~^340^^ +~11910~^1^1^~cup~^165^^ +~11910~^2^1^~package (10 oz)~^284^^ +~11911~^1^1^~cup~^165^^ +~11911~^2^1^~package (10 oz) yields~^284^^ +~11912~^1^1^~cup~^165^^ +~11912~^2^1^~package (10 oz) yields~^284^^ +~11913~^1^1^~cup kernels~^165^^ +~11913~^2^1^~ear, yields~^125^^ +~11914~^1^1^~cup kernels~^165^^ +~11914~^2^1^~ear, yields~^63^^ +~11915~^1^1^~cup kernels~^165^^ +~11915~^2^1^~ear, yields~^63^^ +~11916~^1^1^~cup, halves~^140^^ +~11916~^2^.5^~cup, halves~^70^^ +~11917~^1^.33^~package (10 oz)~^95^^ +~11917~^2^1^~package (10 oz)~^284^^ +~11918~^1^1^~cup, chopped or strips~^135^^ +~11918~^2^1^~tablespoon, chopped~^11.6^^ +~11919~^1^1^~cup, chopped or strips~^135^^ +~11919~^2^1^~tablespoon, chopped~^11.6^^ +~11921~^1^1^~cup chopped~^106^4^7.33 +~11922~^1^1^~cup~^104^^ +~11923~^1^1^~cup~^94^^ +~11927~^1^1^~cup, cubes~^145^^ +~11928~^1^1^~frond (6-1/2" long)~^31^^ +~11928~^2^.5^~cup, chopped or diced~^71^^ +~11929~^1^1^~cup~^210^^ +~11930~^1^1^~cup~^210^^ +~11931~^1^1^~tbsp~^0.4^^ +~11931~^2^.25^~cup~^1.6^^ +~11932~^1^1^~cup~^153^4^28.092 +~11932~^2^10^~beans~^62^^ +~11932~^3^1^~can (303 x 406)~^262^^ +~11933~^1^1^~cup~^153^4^28.092 +~11933~^2^10^~beans~^62^1^ +~11933~^3^1^~can (303 x 406)~^262^^ +~11934~^1^1^~cup~^210^^ +~11935~^1^1^~tbsp~^17^36^1.486 +~11935~^2^1^~packet~^9.0^^ +~11935~^3^1^~cup~^240^^ +~11936~^1^1^~cup whole~^87^4^.963 +~11936~^2^1^~cup sliced~^72^4^3.008 +~11936~^3^1^~piece whole~^20^30^6.355 +~11937~^1^1^~spear, small~^35^11^8.895 +~11937~^2^1^~slice~^7.0^^ +~11937~^3^1^~large (4" long)~^135^^ +~11937~^4^1^~cup, chopped or diced~^143^^ +~11937~^5^1^~cup (about 23 slices)~^155^^ +~11938~^1^1^~cup pieces or slices~^70^^ +~11938~^2^1^~cup whole~^96^^ +~11938~^3^1^~large~^23^^ +~11938~^4^1^~slice~^6.0^^ +~11938~^5^1^~medium~^18^^ +~11938~^6^1^~small~^10.0^^ +~11939~^1^1^~cup sliced~^121^3^8.69 +~11940~^1^1^~cup, chopped~^160^^ +~11940~^2^1^~cup sliced or chips~^153^12^10.227 +~11940~^3^1^~large Gherkin (3" long)~^35^^ +~11940~^4^1^~Gherkin (2-3/4" long)~^25^^ +~11940~^5^1^~midget Gherkin (2-1/8" long)~^6.0^^ +~11940~^6^1^~chip~^7.5^12^2.601 +~11940~^7^1^~small Gherkin (2-1/2" long)~^15.0^^ +~11940~^8^1^~spear Gherkin~^20^^ +~11941~^1^1^~cup~^155^^ +~11941~^2^1^~large (4" long)~^135^^ +~11941~^3^1^~medium (3-3/4" long)~^65^^ +~11941~^4^1^~slice~^7.0^^ +~11941~^5^1^~small~^37^^ +~11941~^6^1^~spear~^30^^ +~11943~^1^1^~tbsp~^12.0^^ +~11943~^2^1^~cup~^192^^ +~11943~^3^1^~slice~^1.0^^ +~11943~^4^1^~pimiento, whole~^66^^ +~11944~^1^1^~tbsp~^15.0^^ +~11944~^2^.5^~cup~^122^^ +~11945~^1^1^~tbsp~^15.0^^ +~11945~^2^1^~packet (2/3 tbsp)~^10.0^^ +~11945~^3^1^~cup~^245^^ +~11946~^1^1^~cup, chopped or diced~^143^^ +~11946~^2^1^~cup (about 23 slices)~^155^^ +~11946~^3^1^~large (4" long)~^135^^ +~11946~^4^1^~medium (3-3/4" long)~^65^^ +~11946~^5^1^~slice~^6.0^^ +~11946~^6^1^~small~^37^^ +~11946~^7^1^~spear~^30^^ +~11947~^1^1^~spear, small~^35^11^8.895 +~11947~^2^1^~slice~^7.0^^ +~11947~^3^1^~large (4" long)~^135^^ +~11947~^4^1^~cup, chopped or diced~^143^^ +~11947~^5^1^~cup, (about 23 slices)~^155^^ +~11948~^1^1^~slice~^6.0^^ +~11948~^2^1^~medium~^35^^ +~11948~^3^1^~small~^15.0^^ +~11948~^4^1^~large~^35^^ +~11948~^5^1^~cup, sliced~^170^^ +~11948~^6^1^~cup, chopped or diced~^160^^ +~11949~^1^1^~tbsp~^17^36^1.486 +~11949~^2^1^~packet~^9.0^^ +~11949~^3^1^~cup~^240^^ +~11950~^1^1^~large~^5.0^^ +~11950~^2^1^~medium~^3.0^^ +~11950~^3^1^~cup whole~^64^4^25.365 +~11950~^4^1^~cup sliced~^65^4^19.157 +~11951~^1^1^~pepper, large (3-3/4" long, 3" dia)~^186^^ +~11951~^2^10^~strips~^52^^ +~11952~^1^1^~cup, shredded~^40^^ +~11952~^2^1^~leaf~^8.0^^ +~11953~^1^1^~large~^16^^ +~11953~^2^1^~medium~^11.0^^ +~11954~^1^1^~medium~^34^^ +~11954~^2^.5^~cup, chopped or diced~^66^^ +~11955~^1^1^~cup~^54^^ +~11955~^2^1^~piece~^2.0^^ +~11956~^1^1^~cup~^110^^ +~11956~^2^1^~piece~^3.0^^ +~11957~^1^1^~cup, sliced~^87^^ +~11957~^2^1^~bulb~^234^^ +~11958~^1^1^~tbsp~^15.0^^ +~11958~^2^.5^~cup~^122^^ +~11959~^1^1^~leaf~^2.0^^ +~11959~^2^.5^~cup~^10.0^^ +~11960~^1^1^~large~^15.0^^ +~11960~^2^1^~medium~^10.0^^ +~11960~^3^1^~NLEA serving~^85^^ +~11961~^1^1^~cup~^146^^ +~11961~^2^1^~piece~^33^^ +~11962~^1^1^~cup~^37^^ +~11962~^2^1^~pepper~^0.5^^ +~11963~^1^1^~cup, sliced~^86^^ +~11964~^1^1^~cup~^149^^ +~11964~^2^1^~pad~^29^^ +~11965~^1^1^~cup~^64^^ +~11965~^2^1^~floweret~^25^^ +~11965~^3^1^~head, large (6-7" dia)~^511^^ +~11965~^4^1^~head, medium (5-6" dia)~^431^^ +~11965~^5^1^~head, small (4" dia)~^325^^ +~11967~^1^.2^~head~^90^^ +~11968~^1^.5^~cup (1" pieces)~^62^^ +~11969~^1^1^~cup~^88^^ +~11970~^1^1^~cup~^109^^ +~11972~^1^1^~cup~^67^^ +~11972~^2^1^~tbsp~^4.8^^ +~11973~^1^1^~cup~^126^^ +~11973~^2^1^~pod~^6.1^^ +~11974~^1^1^~cup~^14.0^^ +~11974~^2^1^~leaf~^3.0^^ +~11975~^1^1^~leaf~^4.0^^ +~11976~^1^1^~cup~^124^^ +~11976~^2^1^~small (4" long)~^33^^ +~11976~^3^1^~medium (4-1/2" long)~^46^^ +~11976~^4^1^~large (5" long)~^75^^ +~11977~^1^1^~cup, chopped~^105^^ +~11977~^2^1^~pepper~^6.1^^ +~11978~^1^1^~pepper~^17^^ +~11979~^1^1^~cup, sliced~^90^^ +~11979~^2^1^~pepper~^14.0^^ +~11980~^1^1^~cup~^139^^ +~11981~^1^1^~pepper~^27^^ +~11982~^1^1^~pepper~^7.0^^ +~11983~^1^1^~cup~^245^^ +~11984~^1^1^~tbsp~^0.8^^ +~11984~^2^1^~sprig~^2.0^^ +~11985~^1^1^~cup, chopped~^23^^ +~11985~^2^1^~plant~^22^^ +~11986~^1^1^~cup~^44^^ +~11986~^2^1^~bunch~^17^^ +~11987~^1^1^~large~^148^^ +~11987~^2^1^~small~^15.0^^ +~11987~^3^1^~cup sliced~^86^2^ +~11988~^1^1^~cup~^28^^ +~11988~^2^1^~piece~^4.5^^ +~11989~^1^1^~cup~^182^^ +~11989~^2^1^~piece~^5.5^^ +~11990~^1^1^~cup, sliced~^130^^ +~11990~^2^1^~root~^169^^ +~11991~^1^1^~cup, sliced~^135^^ +~11991~^2^1^~root~^305^^ +~11993~^1^1^~cup diced~^70^2^ +~11993~^2^1^~piece whole~^1.1^20^.936 +~11998~^1^1^~cup diced~^86^2^ +~11998~^2^1^~piece whole~^84^20^26.751 +~12001~^1^1^~oz~^28.35^^ +~12003~^1^1^~oz~^28.35^^ +~12004~^1^1^~oz (8-14 seeds)~^28.35^^ +~12005~^1^1^~cup~^160^^ +~12005~^2^1^~oz~^28.35^^ +~12006~^1^1^~oz~^28.35^^ +~12007~^1^1^~cup~^94^^ +~12007~^2^1^~tbsp~^5.0^^ +~12008~^1^1^~oz~^28.35^^ +~12011~^1^1^~oz~^28.35^^ +~12012~^1^3^~tbsp~^30^1^ +~12013~^1^1^~cup~^32^^ +~12013~^2^1^~oz (42 medium seeds)~^28.35^^ +~12014~^1^1^~cup~^129^3^5.076 +~12014~^2^1^~oz~^28.35^^ +~12016~^1^1^~cup~^118^^ +~12016~^2^1^~oz~^28.35^^ +~12021~^1^1^~oz~^28.35^^ +~12022~^1^1^~oz~^28.35^^ +~12023~^1^1^~cup~^144^^ +~12023~^2^1^~tbsp~^9.0^^ +~12024~^1^1^~oz~^28.35^^ +~12029~^1^1^~cup~^128^^ +~12029~^2^1^~oz~^28.35^^ +~12032~^1^1^~oz~^28.35^^ +~12033~^1^1^~oz~^28.35^^ +~12034~^1^1^~oz~^28.35^^ +~12036~^1^1^~cup, with hulls, edible yield~^46^^ +~12036~^2^1^~cup~^140^6^2.57 +~12037~^1^1^~cup~^128^^ +~12037~^2^1^~oz~^28.35^^ +~12038~^1^1^~cup~^135^^ +~12038~^2^1^~oz~^28.35^^ +~12039~^1^1^~cup~^134^^ +~12039~^2^1^~oz~^28.35^^ +~12040~^1^1^~tbsp~^16^9^.981 +~12040~^2^1^~oz~^28.35^^ +~12041~^1^1^~cup~^64^^ +~12041~^2^1^~tbsp~^4.0^^ +~12058~^1^1^~oz~^28.35^^ +~12059~^1^1^~oz~^28.35^^ +~12060~^1^1^~oz~^28.35^^ +~12061~^1^1^~cup, whole~^143^23^6.098 +~12061~^2^1^~cup, sliced~^92^4^32.082 +~12061~^3^1^~cup, slivered~^108^^ +~12061~^4^1^~cup, ground~^95^^ +~12061~^5^1^~oz (23 whole kernels)~^28.35^^ +~12061~^6^1^~almond~^1.2^^ +~12062~^1^1^~cup whole kernels~^145^^ +~12062~^2^1^~tbsp~^9.1^^ +~12062~^3^1^~oz~^28.35^^ +~12063~^1^1^~cup whole kernels~^138^^ +~12063~^2^1^~oz (22 whole kernels)~^28.35^^ +~12065~^1^1^~cup whole kernels~^157^^ +~12065~^2^1^~oz (22 whole kernels)~^28.35^^ +~12071~^1^1^~oz~^28.35^^ +~12071~^2^1^~cup, firmly packed~^227^^ +~12077~^1^1^~oz~^28.35^^ +~12078~^1^1^~cup, whole~^133^15^7.701 +~12078~^2^1^~kernel~^5.0^59^1.295 +~12078~^3^1^~oz (6 kernels)~^28.35^^ +~12084~^1^1^~cup~^120^^ +~12084~^2^1^~oz~^28.35^^ +~12084~^3^1^~nutmeat~^3.0^^ +~12085~^1^1^~cup, halves and whole~^137^^ +~12085~^2^1^~tbsp~^8.6^^ +~12085~^3^1^~oz~^28.35^^ +~12086~^1^1^~cup, whole~^129^24^6.829 +~12086~^2^1^~cup, halves and pieces~^129^21^5.867 +~12086~^3^1^~oz (18 kernels)~^28.35^^ +~12087~^1^1^~oz~^28.35^^ +~12088~^1^1^~tbsp~^16^^ +~12088~^2^1^~oz~^28.35^^ +~12093~^1^1^~oz~^28.35^^ +~12094~^1^1^~oz~^28.35^^ +~12095~^1^1^~oz~^28.35^^ +~12096~^1^1^~oz~^28.35^^ +~12097~^1^1^~cup~^145^^ +~12097~^2^1^~oz~^28.35^^ +~12098~^1^1^~oz~^28.35^^ +~12099~^1^1^~oz~^28.35^^ +~12100~^1^1^~oz~^28.35^^ +~12101~^1^1^~oz~^28.35^^ +~12104~^1^1^~cup, shredded~^80^^ +~12104~^2^1^~medium~^397^^ +~12104~^3^1^~piece (2" x 2" x 1/2")~^45^^ +~12108~^1^1^~oz~^28.35^^ +~12109~^1^1^~cup~^85^9^13.358 +~12109~^2^1^~oz~^28.35^^ +~12110~^1^1^~cup~^77^^ +~12110~^2^4^~oz~^114^^ +~12114~^1^1^~oz~^28.35^^ +~12115~^1^1^~tbsp~^15.0^^ +~12115~^2^1^~cup~^240^^ +~12116~^1^1^~tbsp~^19^^ +~12116~^2^1^~cup~^296^^ +~12117~^1^1^~cup~^240^^ +~12117~^2^1^~tbsp~^15.0^^ +~12118~^1^1^~cup~^226^^ +~12118~^2^1^~tbsp~^15.0^^ +~12119~^1^1^~cup~^240^^ +~12119~^2^1^~tbsp~^15.0^^ +~12119~^3^1^~coconut yields~^206^^ +~12120~^1^1^~cup, chopped~^115^^ +~12120~^2^1^~cup, ground~^75^^ +~12120~^3^1^~cup, whole~^135^^ +~12120~^4^1^~oz (21 whole kernels)~^28.35^^ +~12120~^5^10^~nuts~^14.0^^ +~12121~^1^1^~oz~^28.35^^ +~12122~^1^1^~oz~^28.35^^ +~12127~^1^1^~oz~^28.35^^ +~12128~^1^1^~oz~^28.35^^ +~12129~^1^1^~cup (78 kernels)~^155^^ +~12129~^2^1^~oz (14 kernels)~^28.35^^ +~12130~^1^1^~cup~^120^^ +~12130~^2^1^~oz~^28.35^^ +~12130~^3^1^~nut~^3.0^^ +~12131~^1^1^~cup, whole or halves~^134^^ +~12131~^2^1^~oz (10-12 kernels)~^28.35^^ +~12132~^1^1^~cup, whole or halves~^132^24^5.779 +~12132~^2^1^~oz (10-12 kernels)~^28.35^^ +~12135~^1^1^~cup~^131^1^ +~12135~^2^1^~oz~^28.35^^ +~12136~^1^1^~cup~^147^4^.618 +~12137~^1^1^~cup~^134^10^4.982 +~12137~^2^1^~oz~^28.35^^ +~12138~^1^1^~cup~^144^^ +~12138~^2^1^~oz~^28.35^^ +~12140~^1^1^~oz~^28.35^^ +~12141~^1^1^~cup~^132^^ +~12142~^1^1^~cup, chopped~^109^24^6.18 +~12142~^2^1^~cup, halves~^99^18^4.192 +~12142~^3^1^~oz (19 halves)~^28.35^^ +~12143~^1^1^~oz~^28.35^^ +~12144~^1^1^~cup~^110^^ +~12144~^2^1^~oz (15 halves)~^28.35^^ +~12145~^1^1^~cup~^120^^ +~12145~^2^1^~oz (15 kernels)~^28.35^^ +~12147~^1^1^~cup~^135^24^4.617 +~12147~^2^1^~oz (167 kernels)~^28.35^^ +~12147~^3^10^~nuts~^1.7^^ +~12149~^1^1^~oz~^28.35^^ +~12149~^2^10^~nuts~^1.0^^ +~12151~^1^1^~cup~^123^^ +~12151~^2^1^~oz (49 kernels)~^28.35^^ +~12151~^3^1^~kernel~^0.7^^ +~12152~^1^1^~cup~^123^24^8.47 +~12152~^2^1^~oz (49 kernels)~^28.35^^ +~12152~^3^1^~kernel~^0.7^82^.141 +~12154~^1^1^~cup, chopped~^125^^ +~12154~^2^1^~tbsp~^7.8^^ +~12154~^3^1^~oz~^28.35^^ +~12155~^1^1^~cup, chopped~^117^12^ +~12155~^2^1^~cup, ground~^80^^ +~12155~^3^1^~cup, in shell, edible yield (7 nuts)~^28^^ +~12155~^4^1^~cup shelled (50 halves)~^100^^ +~12155~^5^1^~cup pieces or chips~^120^^ +~12155~^6^1^~oz (14 halves)~^28.35^^ +~12156~^1^1^~oz~^28^1^ +~12157~^1^1^~oz~^28^1^ +~12158~^1^1^~oz~^28.35^^ +~12160~^1^1^~cup~^149^^ +~12160~^2^1^~tbsp~^10.0^^ +~12163~^1^1^~cup~^64^^ +~12163~^2^1^~oz (85 seeds)~^28.35^^ +~12166~^1^1^~tbsp~^15.0^^ +~12166~^2^1^~oz~^28.35^^ +~12167~^1^1^~cup~^143^^ +~12167~^2^1^~oz~^28.35^^ +~12167~^3^10^~kernels~^84^^ +~12169~^1^1^~tbsp~^16^^ +~12170~^1^1^~oz~^28.35^^ +~12171~^1^1^~tbsp~^14.0^^ +~12171~^2^1^~oz~^28.35^^ +~12174~^1^1^~cup~^108^^ +~12174~^2^1^~oz~^28.35^^ +~12175~^1^1^~cup~^155^^ +~12175~^2^1^~oz~^28.35^^ +~12176~^1^1^~cup~^240^^ +~12176~^2^1^~tbsp~^15.0^^ +~12177~^1^1^~oz~^28.35^^ +~12179~^1^1^~cup, shredded~^93^^ +~12179~^2^1^~package (7 oz)~^199^^ +~12193~^1^1^~cup~^74^^ +~12193~^2^1^~oz~^28.35^^ +~12195~^1^1^~tbsp~^16^^ +~12195~^2^1^~cup~^250^^ +~12198~^1^1^~tbsp~^15.0^^ +~12198~^2^1^~oz~^28.35^^ +~12200~^1^1^~oz~^28.35^^ +~12201~^1^1^~cup~^150^^ +~12201~^2^1^~tbsp~^8.0^^ +~12201~^3^1^~tsp~^2.7^^ +~12202~^1^1^~oz~^28.35^^ +~12203~^1^1^~oz~^28.35^^ +~12204~^1^1^~oz~^28.35^^ +~12205~^1^1^~oz~^28.35^^ +~12206~^1^1^~cup whole kernels~^144^^ +~12206~^2^1^~oz~^28.35^^ +~12220~^1^1^~tbsp, whole~^10.3^6^ +~12220~^2^1^~cup, whole~^168^9^ +~12220~^3^1^~tbsp, ground~^7.0^6^ +~12220~^4^1^~tsp, whole~^3.4^^ +~12220~^5^1^~tsp, ground~^2.5^^ +~12516~^1^1^~cup~^118^^ +~12516~^2^1^~oz~^28.35^^ +~12529~^1^1^~cup~^128^^ +~12529~^2^1^~oz~^28.35^^ +~12536~^1^1^~cup~^128^^ +~12536~^2^1^~oz~^28.35^^ +~12536~^3^1^~package (1.875 oz) yields~^27^1^ +~12537~^1^1^~cup~^128^^ +~12537~^2^1^~oz~^28.35^^ +~12538~^1^1^~cup~^135^^ +~12538~^2^1^~oz~^28.35^^ +~12539~^1^1^~cup~^134^^ +~12539~^2^1^~oz~^28.35^^ +~12540~^1^1^~tbsp~^16^9^.981 +~12540~^2^1^~oz~^28.35^^ +~12563~^1^1^~cup whole kernels~^138^^ +~12563~^2^1^~oz (22 whole kernels)~^28.35^^ +~12565~^1^1^~cup whole kernels~^157^^ +~12565~^2^1^~oz (22 whole kernels)~^28.35^^ +~12567~^1^1^~oz (28 almonds)~^28^1^ +~12585~^1^1^~cup, halves and whole~^137^^ +~12585~^2^1^~oz~^28.35^^ +~12586~^1^1^~cup, whole~^129^24^6.829 +~12586~^2^1^~cup, halves and pieces~^129^21^5.867 +~12586~^3^1^~oz (18 kernels)~^28.35^^ +~12588~^1^1^~tbsp~^16^^ +~12588~^2^1^~oz~^28.35^^ +~12632~^1^1^~cup, whole or halves~^132^24^5.779 +~12632~^2^1^~oz (10-12 kernels)~^28.35^^ +~12635~^1^1^~cup~^137^^ +~12635~^2^1^~oz~^28.35^^ +~12637~^1^1^~cup~^134^10^4.982 +~12637~^2^1^~oz~^28.35^^ +~12637~^3^10^~nuts, assorted~^14.0^^ +~12638~^1^1^~cup~^144^^ +~12638~^2^1^~oz~^28.35^^ +~12643~^1^1^~oz~^28.35^^ +~12644~^1^1^~cup~^110^^ +~12644~^2^1^~oz (15 halves)~^28.35^^ +~12652~^1^1^~cup~^123^24^8.47 +~12652~^2^1^~oz (49 kernels)~^28.35^^ +~12652~^3^1^~kernel~^0.7^82^.141 +~12663~^1^1^~cup~^64^^ +~12663~^2^1^~oz (85 seeds)~^28.35^^ +~12665~^1^1^~cup whole kernels~^157^^ +~12665~^2^1^~oz (22 whole kernels)~^28.35^^ +~12695~^1^1^~tbsp~^16^^ +~12695~^2^1^~cup~^250^^ +~12698~^1^1^~tbsp~^15.0^^ +~12737~^1^1^~oz~^28.35^0^ +~12738~^1^1^~oz~^28.35^1^ +~13000~^1^3^~oz~^85^^ +~13000~^2^1^~steak~^214^212^ +~13001~^1^1^~oz~^28.35^^ +~13001~^2^1^~lb~^453.6^^ +~13002~^1^1^~oz~^28.35^^ +~13002~^2^1^~lb~^453.6^^ +~13019~^1^1^~oz~^28.35^^ +~13019~^2^4^~oz~^113^^ +~13020~^1^1^~oz~^28.35^^ +~13020~^2^3^~oz~^85^^ +~13023~^1^1^~oz~^28.35^^ +~13023~^2^1^~lb~^453.6^^ +~13047~^1^1^~serving~^85^^ +~13055~^1^3^~oz~^85^^ +~13055~^2^1^~steak~^350^10^ +~13065~^1^1^~oz~^28.35^^ +~13065~^2^4^~oz~^113^^ +~13065~^3^1^~steak~^202^10^ +~13066~^1^3^~oz~^85^^ +~13066~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^262^^ +~13067~^1^3^~oz~^85^^ +~13067~^2^1^~steak (yield from 483 g raw meat)~^387^10^ +~13068~^1^1^~oz~^28.35^^ +~13068~^2^1^~steak~^202^10^ +~13069~^1^3^~oz~^85^^ +~13069~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^246^^ +~13070~^1^3^~oz~^85^^ +~13070~^2^1^~steak~^387^10^ +~13095~^1^1^~oz~^28.35^^ +~13095~^2^1^~lb~^453.6^^ +~13096~^1^3^~oz~^85^^ +~13096~^2^1^~steak (yield from 297 g raw meat)~^236^10^ +~13097~^1^1^~oz~^28.35^^ +~13097~^2^1^~lb~^453.6^^ +~13098~^1^3^~oz~^85^^ +~13098~^2^1^~steak (yield from 297g raw meat)~^236^10^ +~13147~^1^1^~oz~^28.35^^ +~13147~^2^1^~lb~^453.6^^ +~13148~^1^3^~oz~^85^^ +~13148~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^225^^ +~13149~^1^1^~oz~^28.35^^ +~13149~^2^1^~lb~^453.6^^ +~13150~^1^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^121^^ +~13150~^2^3^~oz~^85^^ +~13156~^1^3^~oz~^85^^ +~13156~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^285^^ +~13158~^1^3^~oz~^85^^ +~13158~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^282^^ +~13165~^1^3^~oz~^85^^ +~13165~^2^1^~steak (Yield from 448 g raw meat)~^293^10^ +~13166~^1^1^~serving~^45^6^2.356 +~13166~^2^1^~can~^801^3^8.945 +~13227~^1^1^~oz~^28.35^^ +~13227~^2^1^~lb~^453.6^^ +~13228~^1^3^~oz~^85^^ +~13228~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^170^^ +~13231~^1^3^~oz~^85^^ +~13231~^2^1^~steak~^539^24^29.849 +~13232~^1^3^~oz~^85^^ +~13232~^2^1^~steak~^417^24^30.685 +~13235~^1^3^~oz~^85^^ +~13235~^2^1^~steak~^461^24^30.173 +~13236~^1^3^~oz~^85^1^ +~13236~^2^1^~steak~^360^24^28.858 +~13284~^1^3^~oz~^85^^ +~13285~^1^3^~oz~^85^^ +~13285~^2^1^~roast~^647^11^103.2 +~13293~^1^3^~oz~^85^^ +~13293~^2^1^~steak~^679^11^ +~13293~^3^1^~roast~^960^11^ +~13294~^1^3^~oz~^85^^ +~13294~^2^1^~steak~^648^7^ +~13294~^3^1^~roast~^949^7^ +~13317~^1^3^~oz~^85^^ +~13317~^2^1^~unit, cooked (yield from 1 lb raw meat)~^313^^ +~13318~^1^1^~oz~^28.35^^ +~13318~^2^4^~oz~^113^^ +~13319~^1^3^~oz~^85^^ +~13319~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^351^^ +~13320~^1^3^~oz~^85^^ +~13320~^2^1^~piece, cooked, excluding refuse~^391^1^ +~13321~^1^1^~oz~^28.35^^ +~13321~^2^4^~oz~^113^^ +~13322~^1^3^~oz~^85^^ +~13323~^1^1^~oz~^28.35^^ +~13323~^2^4^~oz~^113^^ +~13324~^1^3^~oz~^85^^ +~13325~^1^3^~oz~^85^^ +~13326~^1^1^~slice~^68^14^12.558 +~13327~^1^1^~slice~^81^15^ +~13328~^1^1^~oz~^28.35^^ +~13328~^2^4^~oz~^113^^ +~13329~^1^3^~oz~^85^^ +~13329~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^303^^ +~13330~^1^1^~oz~^28.35^^ +~13330~^2^8^~oz~^227^^ +~13331~^1^1^~oz~^28.35^^ +~13331~^2^4^~oz~^113^^ +~13332~^1^3^~oz~^85^^ +~13332~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^222^^ +~13333~^1^1^~oz~^28.35^^ +~13333~^2^4^~oz~^113^^ +~13334~^1^3^~oz~^85^^ +~13334~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^308^^ +~13335~^1^1^~oz~^28.35^^ +~13335~^2^4^~oz~^113^^ +~13337~^1^1^~oz~^28.35^^ +~13337~^2^4^~oz~^113^^ +~13338~^1^3^~oz~^85^^ +~13338~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^381^^ +~13339~^1^1^~oz~^28.35^^ +~13339~^2^4^~oz~^113^^ +~13340~^1^3^~oz~^85^^ +~13341~^1^1^~oz~^28.35^^ +~13341~^2^4^~oz~^113^^ +~13342~^1^3^~oz~^85^^ +~13342~^2^1^~steak~^56^^ +~13342~^3^1^~package~^396^^ +~13343~^1^3^~oz~^85^^ +~13343~^2^1^~steak~^293^10^ +~13344~^1^3^~slices~^68^^ +~13344~^2^1^~package (net weight, 12 oz)~^340^^ +~13345~^1^3^~slices~^34^^ +~13345~^2^1^~package, cooked (yield from 12 oz raw product)~^170^^ +~13346~^1^1^~oz~^28.35^^ +~13346~^2^1^~lb~^453.6^^ +~13347~^1^3^~oz~^85^^ +~13347~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^320^^ +~13348~^1^1^~oz~^28.35^^ +~13348~^2^1^~slice (3/4 oz)~^21^^ +~13349~^1^3^~oz~^85^^ +~13349~^2^1^~steak~^732^4^ +~13349~^3^1^~roast~^977^4^ +~13350~^1^10^~slices~^28^1^ +~13351~^1^3^~oz~^85^^ +~13351~^2^1^~steak~^353^26^74.7 +~13352~^1^3^~oz~^85^^ +~13352~^2^1^~steak~^356^17^74.2 +~13353~^1^1^~slice (1 oz) (4" x 4" x 3/32" thick)~^28^^ +~13354~^1^3^~oz~^85^^ +~13354~^2^1^~steak~^349^9^80.3 +~13355~^1^1^~package, 2.5 oz~^71^1^ +~13355~^2^1^~slice (1 oz)~^28^^ +~13356~^1^3^~oz~^85^^ +~13356~^2^1^~steak~^473^26^ +~13357~^1^1^~sausage~^43^^ +~13357~^2^1^~oz~^28.35^^ +~13358~^1^1^~slice (1 oz)~^28^^ +~13359~^1^3^~oz~^85^^ +~13359~^2^1^~steak~^483^17^ +~13361~^1^3^~oz~^85^^ +~13362~^1^3^~oz~^85^^ +~13363~^1^3^~oz~^85^^ +~13364~^1^3^~oz~^85^^ +~13365~^1^3^~oz~^85^^ +~13366~^1^3^~oz~^85^^ +~13367~^1^3^~oz~^85^^ +~13367~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^314^^ +~13368~^1^3^~oz~^85^^ +~13368~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^264^^ +~13369~^1^3^~oz~^85^^ +~13369~^2^1^~steak (Yield from 418 g raw meat)~^270^20^ +~13370~^1^3^~oz~^85^^ +~13370~^2^1^~steak (yield from 418g raw meat)~^270^20^ +~13371~^1^3^~oz~^85^^ +~13371~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^314^^ +~13372~^1^3^~oz~^85^^ +~13372~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^232^^ +~13373~^1^3^~oz~^85^^ +~13373~^2^1^~roast (yield from 1601 g raw meat)~^1166^20^ +~13375~^1^3^~oz~^85^^ +~13375~^2^1^~roast (yield from 1675 g raw meat)~^1236^10^ +~13377~^1^3^~oz~^85^^ +~13377~^2^1^~roast (yield from 1528g raw meat)~^1095^10^ +~13378~^1^3^~oz~^85^^ +~13378~^2^1^~roast (yield from 1675 g raw meat)~^1236^10^ +~13379~^1^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^235^^ +~13379~^2^3^~oz~^85^^ +~13380~^1^3^~oz~^85^^ +~13380~^2^1^~roast~^658^7^113.9 +~13381~^1^3^~oz~^85^^ +~13381~^2^1^~roast~^629^4^94.1 +~13382~^1^3^~oz~^85^^ +~13382~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^191^^ +~13383~^1^3^~oz~^85^^ +~13383~^2^1^~roast~^658^7^113.9 +~13384~^1^3^~oz~^85^^ +~13384~^2^1^~roast~^629^4^94.1 +~13386~^1^3^~oz~^85^^ +~13386~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^290^^ +~13387~^1^3^~oz~^85^^ +~13387~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^286^^ +~13388~^1^3^~oz~^85^^ +~13388~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^214^^ +~13389~^1^3^~oz~^85^^ +~13389~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^207^^ +~13390~^1^3^~oz~^85^^ +~13390~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^217^^ +~13391~^1^3^~oz~^85^^ +~13391~^2^1^~steak (yield from 233 g raw meat)~^233^20^ +~13392~^1^3^~oz~^85^^ +~13392~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^272^^ +~13393~^1^3^~oz~^85^^ +~13393~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^265^^ +~13394~^1^3^~oz~^85^^ +~13394~^2^1^~steak (yield from 296 g raw meat)~^233^20^ +~13395~^1^3^~oz~^85^^ +~13395~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^220^^ +~13396~^1^3^~oz~^85^^ +~13396~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^220^^ +~13398~^1^3^~oz~^85^^ +~13398~^2^1^~steak (yield from 290 g raw meat)~^185^20^ +~13399~^1^3^~oz~^85^^ +~13399~^2^1^~roast (yield from 600 g raw meat)~^489^20^ +~13401~^1^3^~oz~^85^^ +~13401~^2^1^~steak (yield from 299 g raw meat)~^191^10^ +~13402~^1^3^~oz~^85^^ +~13402~^2^1^~roast (yield from 627 g raw meat)~^515^10^ +~13404~^1^3^~oz~^85^^ +~13404~^2^1^~steak (yield from 281 g raw meat)~^179^10^ +~13405~^1^3^~oz~^85^^ +~13405~^2^1^~roast (yield from 572 g raw meat)~^464^10^ +~13407~^1^3^~oz~^85^^ +~13407~^2^1^~steak (yield from 290 g raw meat)~^185^20^ +~13408~^1^3^~oz~^85^^ +~13408~^2^1^~roast (yield from 600 g raw meat)~^489^20^ +~13410~^1^3^~oz~^85^^ +~13410~^2^1^~steak (yield from 299 g raw meat)~^191^10^ +~13411~^1^3^~oz~^85^^ +~13411~^2^1^~roast (yield from 627 g raw meat)~^515^10^ +~13413~^1^3^~oz~^85^^ +~13413~^2^1^~steak (yield from 281 g raw meat)~^179^10^ +~13414~^1^3^~oz~^85^^ +~13414~^2^1^~roast (yield from 572 g raw meat)~^464^10^ +~13415~^1^3^~oz~^85^^ +~13415~^2^1^~roast (yield from 436 g raw meat)~^346^20^ +~13415~^3^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^333^^ +~13416~^1^3^~oz~^85^^ +~13416~^2^1^~roast (yield from 445 g raw meat)~^355^10^ +~13417~^1^3^~oz~^85^^ +~13417~^2^1^~roast (yield from 426 g raw meat)~^337^10^ +~13418~^1^3^~oz~^85^^ +~13418~^2^1^~roast (yield from 436 g raw meat)~^346^20^ +~13418~^3^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^330^^ +~13419~^1^3^~oz~^85^^ +~13419~^2^1^~roast (yield from 445 g raw meat)~^355^10^ +~13419~^3^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^331^^ +~13420~^1^3^~oz~^85^^ +~13420~^2^1^~roast (yield from 426 g raw meat)~^337^10^ +~13420~^3^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^296^^ +~13421~^1^3^~oz~^85^^ +~13421~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^330^^ +~13422~^1^3^~oz~^85^^ +~13422~^2^1^~roast (yield from 1405 g raw meat)~^1138^10^ +~13423~^1^3^~oz~^85^^ +~13423~^2^1^~roast (yield from 1388 g raw meat)~^1141^10^ +~13424~^1^3^~oz~^85^^ +~13424~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^320^^ +~13425~^1^3^~oz~^85^^ +~13425~^2^1^~roast (yield from 1405 g raw meat)~^1138^10^ +~13426~^1^3^~oz~^85^^ +~13426~^2^1^~roast (yield from 1388 g raw meat)~^1141^10^ +~13428~^1^3^~oz~^85^^ +~13428~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13430~^1^3^~oz~^85^^ +~13430~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13432~^1^3^~oz~^85^^ +~13432~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13436~^1^3^~oz~^85^^ +~13436~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^261^^ +~13438~^1^3^~oz~^85^^ +~13438~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^261^^ +~13439~^1^3^~oz~^85^^ +~13439~^2^1^~steak~^117^20^ +~13440~^1^3^~oz~^85^^ +~13440~^2^1^~steak (yield from 161 g raw meat)~^126^10^ +~13441~^1^3^~oz~^85^^ +~13441~^2^1^~steak (yield from 136 g raw meat)~^108^10^ +~13442~^1^3^~oz~^85^^ +~13442~^2^1^~steak~^119^36^18.642 +~13443~^1^3^~oz~^85^^ +~13443~^2^1^~steak~^121^24^17.377 +~13444~^1^3^~oz~^85^^ +~13444~^2^1^~steak~^117^12^20.842 +~13445~^1^3^~oz~^85^^ +~13445~^2^1^~steak~^119^36^18.642 +~13446~^1^3^~oz~^85^^ +~13446~^2^1^~steak (yield from 203 g raw meat)~^164^10^ +~13447~^1^3^~oz~^85^^ +~13447~^2^1^~steak (yield from 186 g raw meat)~^150^10^ +~13448~^1^3^~oz~^85^^ +~13448~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 223 g)~^150^^ +~13449~^1^3^~oz~^85^^ +~13449~^2^1^~steak (yield from 203 g raw meat)~^164^10^ +~13450~^1^3^~oz~^85^^ +~13450~^2^1^~steak (yield from 186 g raw meat)~^150^10^ +~13451~^1^3^~oz~^85^^ +~13451~^2^1^~steak (yield from 518 g raw meat)~^384^20^ +~13452~^1^3^~oz~^85^^ +~13452~^2^1^~steak (yield from 532 g raw meat)~^393^10^ +~13453~^1^3^~oz~^85^^ +~13453~^2^1^~steak (yield from 505 g raw meat)~^375^10^ +~13454~^1^3^~oz~^85^^ +~13454~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^292^^ +~13455~^1^3^~oz~^85^^ +~13455~^2^1^~steak (yield from 532 g raw meat)~^393^10^ +~13456~^1^3^~oz~^85^^ +~13456~^2^1^~steak (yield from 505 g raw meat)~^375^10^ +~13459~^1^3^~oz~^85^^ +~13459~^2^1^~lb~^453.6^^ +~13460~^1^3^~oz~^85^^ +~13460~^2^1^~lb~^453.6^^ +~13463~^1^3^~oz ( 1serving )~^85^^ +~13463~^2^1^~lb~^453.6^^ +~13464~^1^3^~oz~^85^^ +~13464~^2^1^~steak~^534^36^30.734 +~13465~^1^3^~oz~^85^^ +~13465~^2^1^~steak~^421^36^31.383 +~13466~^1^3^~oz~^85^^ +~13466~^2^1^~lb~^453.6^^ +~13467~^1^3^~oz~^85^^ +~13467~^2^1^~serving~^85^^ +~13467~^3^1^~piece, cooked, excluding refuse~^266^1^ +~13468~^1^3^~oz~^85^^ +~13468~^2^1^~steak~^526^12^32.614 +~13469~^1^3^~oz~^85^^ +~13469~^2^1^~steak~^426^12^33.689 +~13470~^1^3^~oz~^85^^ +~13470~^2^1^~serving~^85^^ +~13470~^3^1^~piece, cooked, excluding refuse~^256^1^ +~13473~^1^3^~oz~^85^^ +~13473~^2^1^~lb~^453.6^^ +~13474~^1^3^~oz~^85^^ +~13474~^2^1^~lb~^453.6^^ +~13477~^1^3^~oz~^85^^ +~13477~^2^1^~lb~^453.6^^ +~13478~^1^3^~oz~^85^^ +~13478~^2^1^~steak~^460^36^31.973 +~13479~^1^3^~oz~^85^^ +~13479~^2^1^~steak~^363^36^28.19 +~13481~^1^3^~oz~^85^^ +~13481~^2^1^~serving~^85^^ +~13481~^3^1^~piece, cooked, excluding refuse~^271^1^ +~13482~^1^3^~oz~^85^^ +~13482~^2^1^~steak~^458^12^36.718 +~13483~^1^3^~oz~^85^^ +~13483~^2^1^~steak~^368^12^27.393 +~13484~^1^3^~oz~^85^^ +~13484~^2^1^~serving~^85^^ +~13484~^3^1^~piece, cooked, excluding refuse~^264^1^ +~13485~^1^3^~oz~^85^^ +~13485~^2^1^~steak~^247^10^ +~13486~^1^3^~oz~^85^^ +~13486~^2^1^~roast~^1289^20^ +~13487~^1^3^~oz~^85^^ +~13487~^2^1^~roast~^1392^10^ +~13488~^1^3^~oz~^85^^ +~13488~^2^1^~roast~^1187^10^ +~13490~^1^3^~oz~^85^^ +~13490~^2^1^~steak~^231^10^ +~13491~^1^3^~oz~^85^^ +~13491~^2^1^~steak~^277^20^ +~13492~^1^3^~oz~^85^^ +~13492~^2^1^~steak~^284^10^ +~13493~^1^3^~oz~^85^^ +~13493~^2^1^~steak~^269^10^ +~13494~^1^3^~oz~^85^1^ +~13494~^2^1^~portion (yield from 1/2 lb raw meat )~^139^18^4.947 +~13495~^1^3^~oz~^85^1^ +~13495~^2^1^~loaf ( yield from 1 lb raw meat )~^284^6^4.014 +~13496~^1^3^~oz~^85^1^ +~13496~^2^1^~patty~^77^18^3.232 +~13497~^1^3^~oz~^85^1^ +~13497~^2^1^~patty~^70^42^2.946 +~13498~^1^4^~oz~^113^^ +~13498~^2^1^~oz~^28.35^1^ +~13499~^1^3^~oz~^85^^ +~13499~^2^1^~steak~^458^9^ +~13500~^1^3^~oz~^85^^ +~13500~^2^1^~steak~^186^25^28.1 +~13501~^1^3^~oz~^85^^ +~13501~^2^1^~steak~^177^17^27.7 +~13502~^1^3^~oz~^85^^ +~13502~^2^1^~steak~^199^8^27.3 +~13519~^1^3^~oz~^85^^ +~13519~^2^1^~steak~^1438^36^397 +~13520~^1^3^~oz~^85^^ +~13520~^2^1^~steak~^1432^24^409 +~13523~^1^3^~oz~^85^^ +~13523~^2^1^~steak~^1446^12^388 +~13595~^1^3^~oz~^85^^ +~13595~^2^1^~piece~^1855^36^369 +~13596~^1^3^~oz~^85^^ +~13596~^2^1^~piece~^1780^24^251 +~13597~^1^3^~oz~^85^^ +~13597~^2^1^~piece~^1967^12^514 +~13598~^1^3^~oz~^85^^ +~13598~^2^1^~steak~^186^25^28.1 +~13647~^1^3^~oz~^85^^ +~13647~^2^1^~steak~^1027^72^269 +~13647~^3^1^~roast~^1316^70^296 +~13648~^1^3^~oz~^85^^ +~13649~^1^3^~oz~^85^^ +~13649~^2^1^~steak~^1106^24^318 +~13649~^3^1^~roast~^1320^24^268 +~13650~^1^3^~oz~^85^^ +~13650~^2^1^~steak~^177^17^27.7 +~13786~^1^3^~oz~^85^^ +~13786~^2^1^~roast~^723^1^ +~13788~^1^3^~oz~^85^^ +~13788~^2^1^~roast~^698^1^ +~13791~^1^3^~oz~^85^^ +~13791~^2^1^~roast~^761^1^ +~13795~^1^4^~oz~^114^^ +~13796~^1^3^~oz~^85^^ +~13797~^1^4^~oz~^114^^ +~13798~^1^3^~oz~^85^^ +~13799~^1^4^~oz~^114^^ +~13800~^1^3^~oz~^85^^ +~13803~^1^1^~oz~^28.35^^ +~13803~^2^1^~lb~^453.6^^ +~13804~^1^3^~oz~^85^^ +~13804~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^329^^ +~13805~^1^3^~oz~^85^^ +~13805~^2^1^~steak~^452^20^ +~13806~^1^3^~oz~^85^^ +~13806~^2^1^~steak (yield from raw steak weighing 550 g)~^380^20^ +~13807~^1^1^~oz~^28.35^^ +~13807~^2^1^~lb~^453.6^^ +~13808~^1^3^~oz~^85^^ +~13808~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^332^^ +~13809~^1^1^~oz~^28.35^^ +~13809~^2^1^~lb~^453.6^^ +~13810~^1^3^~oz~^85^^ +~13810~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^258^^ +~13811~^1^1^~oz~^28.35^^ +~13811~^2^1^~roast~^1801^10^ +~13811~^3^1^~lb~^453.6^^ +~13812~^1^3^~oz~^85^^ +~13812~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^258^^ +~13813~^1^1^~oz~^28.35^^ +~13813~^2^1^~roast~^1783^10^ +~13813~^3^1^~lb~^453.6^^ +~13814~^1^3^~oz~^85^^ +~13814~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^257^^ +~13815~^1^1^~oz~^28.35^^ +~13815~^2^1^~lb~^453.6^^ +~13816~^1^3^~oz~^85^^ +~13816~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^247^^ +~13817~^1^1^~oz~^28.35^^ +~13817~^2^1^~lb~^453.6^^ +~13818~^1^3^~oz~^85^^ +~13818~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^247^^ +~13819~^1^1^~oz~^28.35^^ +~13819~^2^1^~lb~^453.6^^ +~13820~^1^3^~oz~^85^^ +~13820~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^247^^ +~13821~^1^3^~oz~^85^^ +~13821~^2^1^~roast~^609^11^78.6 +~13822~^1^3^~oz~^85^^ +~13822~^2^1^~roast~^586^7^30.6 +~13823~^1^3^~oz~^85^^ +~13823~^2^1^~roast~^645^4^126.7 +~13824~^1^1^~oz~^28.35^^ +~13824~^2^1^~lb~^453.6^^ +~13825~^1^3^~oz~^85^^ +~13825~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13826~^1^3^~oz~^85^^ +~13826~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^289^^ +~13827~^1^1^~oz~^28.35^^ +~13827~^2^1^~lb~^453.6^^ +~13828~^1^3^~oz~^85^^ +~13828~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13829~^1^3^~oz~^85^^ +~13829~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^289^^ +~13830~^1^1^~oz~^28.35^^ +~13830~^2^1^~lb~^453.6^^ +~13831~^1^3^~oz~^85^^ +~13831~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^264^^ +~13832~^1^3^~oz~^85^^ +~13832~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^289^^ +~13833~^1^1^~oz~^28.35^^ +~13833~^2^1^~lb~^453.6^^ +~13834~^1^3^~oz~^85^^ +~13834~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^274^^ +~13835~^1^3^~oz~^85^^ +~13835~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^278^^ +~13838~^1^1^~oz~^28.35^^ +~13838~^2^1^~lb~^453.6^^ +~13839~^1^3^~oz~^85^^ +~13839~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13840~^1^3^~oz~^85^^ +~13840~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^292^^ +~13841~^1^1^~oz~^28.35^^ +~13841~^2^1^~lb~^453.6^^ +~13842~^1^3^~oz~^85^^ +~13842~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13843~^1^3^~oz~^85^^ +~13843~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^296^^ +~13844~^1^1^~oz~^28.35^^ +~13844~^2^1^~lb~^453.6^^ +~13845~^1^3^~oz~^85^^ +~13845~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~13846~^1^3^~oz~^85^^ +~13846~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^292^^ +~13847~^1^1^~oz~^28.35^^ +~13847~^2^1^~lb~^453.6^^ +~13848~^1^3^~oz~^85^^ +~13848~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^278^^ +~13849~^1^3^~oz~^85^^ +~13849~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^281^^ +~13850~^1^1^~oz~^28.35^^ +~13850~^2^1^~lb~^453.6^^ +~13851~^1^3^~oz~^85^^ +~13851~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^268^^ +~13852~^1^3^~oz~^85^^ +~13852~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^282^^ +~13853~^1^1^~oz~^28.35^^ +~13853~^2^1^~lb~^453.6^^ +~13854~^1^3^~oz~^85^^ +~13854~^2^1^~steak (yield from 320 g raw meat)~^256^10^ +~13855~^1^3^~oz~^85^^ +~13855~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^278^^ +~13856~^1^3^~oz~^85^^ +~13856~^2^1^~steak~^335^10^ +~13857~^1^3^~oz~^85^^ +~13857~^2^1^~steak (yield from 1 raw steak weighing 321g)~^245^10^ +~13858~^1^3^~oz~^85^^ +~13858~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^285^^ +~13859~^1^1^~oz~^28.35^^ +~13859~^2^1^~lb~^453.6^^ +~13860~^1^3^~oz~^85^^ +~13860~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^268^^ +~13861~^1^3^~oz~^85^^ +~13861~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^276^^ +~13862~^1^3^~oz~^85^^ +~13862~^2^1^~steak~^199^8^27.3 +~13863~^1^3^~oz~^85^^ +~13863~^2^1^~steak~^239^1^ +~13864~^1^1^~oz~^28.35^^ +~13864~^2^1^~lb~^453.6^^ +~13865~^1^3^~oz~^85^^ +~13865~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^313^^ +~13866~^1^1^~oz~^28.35^^ +~13866~^2^1^~lb~^453.6^^ +~13867~^1^3^~oz~^85^^ +~13867~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^313^^ +~13868~^1^1^~oz~^28.35^^ +~13868~^2^1^~lb~^453.6^^ +~13869~^1^3^~oz~^85^^ +~13869~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^281^^ +~13870~^1^3^~oz~^85^^ +~13870~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^338^^ +~13870~^3^1^~roast (yield from 1 raw roast weighing 776g)~^632^20^ +~13871~^1^1^~oz~^28.35^^ +~13871~^2^1^~lb~^453.6^^ +~13872~^1^3^~oz~^85^^ +~13872~^2^1^~steak (yield from 341 g raw meat)~^227^10^ +~13873~^1^3^~oz~^85^^ +~13873~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^338^^ +~13873~^3^1^~roast (yield from raw roast weighing 766g)~^627^10^ +~13874~^1^3^~oz~^85^^ +~13874~^2^1^~steak~^312^10^ +~13875~^1^3^~oz~^85^^ +~13875~^2^1^~steak (yield from raw steak weighing 340g)~^226^10^ +~13876~^1^3^~oz~^85^^ +~13876~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^338^^ +~13876~^3^1^~roast (yield from 1 raw roast weighing 786g)~^636^10^ +~13877~^1^1^~oz~^28.35^^ +~13877~^2^1^~lb~^453.6^^ +~13878~^1^3^~oz~^85^^ +~13878~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^333^^ +~13879~^1^1^~oz~^28.35^^ +~13879~^2^1^~lb~^453.6^^ +~13880~^1^3^~oz~^85^^ +~13880~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^333^^ +~13881~^1^1^~oz~^28.35^^ +~13881~^2^1^~lb~^453.6^^ +~13882~^1^3^~oz~^85^^ +~13882~^2^1^~roast (yield from 530 g raw meat)~^417^10^ +~13883~^1^1^~oz~^28.35^^ +~13883~^2^1^~lb~^453.6^^ +~13884~^1^3^~oz~^85^^ +~13884~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^326^^ +~13885~^1^1^~oz~^28.35^^ +~13885~^2^1^~lb~^453.6^^ +~13886~^1^3^~oz~^85^^ +~13886~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^325^^ +~13887~^1^1^~oz~^28.35^^ +~13887~^2^1^~lb~^453.6^^ +~13888~^1^3^~oz~^85^^ +~13888~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^327^^ +~13889~^1^3^~oz~^85^^ +~13889~^2^1^~steak~^231^1^ +~13890~^1^3^~oz~^85^1^ +~13890~^2^1^~piece cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^283^1^ +~13891~^1^1^~oz~^28.35^^ +~13891~^2^1^~lb~^453.6^^ +~13892~^1^3^~oz~^85^^ +~13892~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^286^^ +~13893~^1^3^~oz~^85^^ +~13893~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^326^^ +~13894~^1^1^~oz~^28.35^^ +~13894~^2^1^~lb~^453.6^^ +~13895~^1^3^~oz~^85^^ +~13895~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^289^^ +~13896~^1^3^~oz~^85^^ +~13896~^2^1^~steak (yield from raw steak weighing 492 g)~^347^10^ +~13896~^3^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^326^^ +~13897~^1^3^~oz~^85^^ +~13897~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^283^^ +~13898~^1^1^~oz~^28.35^^ +~13898~^2^1^~lb~^453.6^^ +~13899~^1^3^~oz~^85^^ +~13899~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^286^^ +~13900~^1^3^~oz~^85^^ +~13900~^2^1^~steak (yield from raw steak weighing 491g)~^359^10^ +~13900~^3^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^329^^ +~13901~^1^1^~oz~^28.35^^ +~13901~^2^1^~lb~^453.6^^ +~13902~^1^3^~oz~^85^^ +~13902~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^332^^ +~13903~^1^3^~oz~^85^^ +~13903~^2^1^~steak~^252^1^ +~13904~^1^3^~oz~^85^^ +~13904~^2^1^~piece~^1855^36^ +~13905~^1^3^~oz~^85^^ +~13905~^2^1^~steak~^539^24^29.849 +~13906~^1^3^~oz~^85^^ +~13906~^2^1^~steak~^417^24^30.685 +~13907~^1^3^~oz~^85^^ +~13907~^2^1^~steak~^461^24^30.173 +~13908~^1^3^~oz~^85^^ +~13908~^2^1^~steak~^360^24^28.858 +~13909~^1^3^~oz~^85^^ +~13910~^1^3^~oz~^85^^ +~13910~^2^1^~steak~^213^20^ +~13911~^1^3^~oz~^85^^ +~13911~^2^1^~steak~^301^24^39.947 +~13912~^1^3^~oz~^85^^ +~13912~^2^1^~steak (yield from 270 g raw meat)~^221^10^ +~13913~^1^3^~oz~^85^^ +~13914~^1^3^~oz~^85^^ +~13915~^1^3^~oz~^85^^ +~13915~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 242 g)~^227^^ +~13916~^1^3^~oz~^85^^ +~13916~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 242 g)~^167^^ +~13917~^1^3^~oz~^85^^ +~13917~^2^1^~steak~^164^21^ +~13918~^1^3^~oz~^85^^ +~13918~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 154 g)~^104^^ +~13919~^1^3^~oz~^85^^ +~13919~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^330^^ +~13920~^1^3^~oz~^85^^ +~13920~^2^1^~steak~^177^11^ +~13921~^1^1^~steak (yield from 181 g raw meat)~^140^9^ +~13921~^2^3^~oz~^85^^ +~13922~^1^3^~oz~^85^^ +~13922~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^329^^ +~13923~^1^1^~steak (yield from 1 raw steak weighing149g)~^149^10^ +~13923~^2^1^~oz~^28.35^^ +~13923~^3^1^~lb~^453.6^^ +~13924~^1^1^~steak (yield from 1 raw steak weighing 151g)~^119^10^ +~13924~^2^3^~oz~^85^^ +~13924~^3^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 154 g)~^104^^ +~13925~^1^3^~oz~^85^^ +~13925~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^329^^ +~13926~^1^1^~oz~^28.35^^ +~13926~^2^1^~lb~^453.6^^ +~13927~^1^3^~oz~^85^^ +~13927~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 154 g)~^106^^ +~13928~^1^3^~oz~^85^^ +~13928~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^326^^ +~13929~^1^3^~oz~^85^^ +~13929~^2^1^~steak~^608^20^ +~13930~^1^3^~oz~^85^^ +~13930~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^306^^ +~13931~^1^1^~oz~^28.35^^ +~13931~^2^1^~lb~^453.6^^ +~13932~^1^3^~oz~^85^^ +~13932~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^306^^ +~13933~^1^3^~oz~^85^^ +~13933~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^307^^ +~13934~^1^3^~oz~^85^^ +~13934~^2^1^~steak~^594^10^ +~13935~^1^3^~oz~^85^^ +~13935~^2^1^~steak (yield from 1 raw steak weighing 624g)~^485^10^ +~13937~^1^3^~oz~^85^^ +~13940~^1^3^~oz~^85^^ +~13943~^1^3^~oz ( 1 serving )~^85^^ +~13946~^1^3^~oz~^85^^ +~13948~^1^3^~oz~^85^^ +~13948~^2^1^~steak (yield from 475 g raw meat)~^383^20^ +~13949~^1^3^~oz~^85^^ +~13949~^2^1^~steak (yield from 467 g raw meat)~^379^10^ +~13950~^1^3^~oz~^85^^ +~13950~^2^1^~steak (yield from 388 g raw meat)~^247^10^ +~13951~^1^3^~oz~^85^^ +~13951~^2^1^~steak (yield from 294 g raw meat)~^231^10^ +~13952~^1^3^~oz~^85^^ +~13952~^2^1^~steak (yield from 295 g raw meat)~^233^20^ +~13953~^1^1^~roast (yield from 690g raw meat)~^569^20^ +~13954~^1^3^~oz~^85^^ +~13954~^2^1^~roast~^261^19^ +~13955~^1^3^~oz~^85^^ +~13955~^2^1^~roast (yield from 714 g raw meat)~^591^10^ +~13956~^1^3^~oz~^85^^ +~13956~^2^1^~roast~^271^9^ +~13957~^1^3^~oz~^85^^ +~13957~^2^1^~roast (yield from 666 g raw meat)~^547^10^ +~13958~^1^3^~oz~^85^^ +~13958~^2^1^~roast~^252^10^ +~13959~^1^3^~oz~^85^^ +~13959~^2^1^~steak (yield from 381 g raw meat)~^277^20^ +~13961~^1^3^~oz (1 serving)~^85^^ +~13963~^1^3^~oz~^85^^ +~13965~^1^3^~oz~^85^^ +~13967~^1^3^~oz~^85^^ +~13968~^1^3^~oz~^85^^ +~13968~^2^1^~steak (yield from 396 g raw meat)~^284^10^ +~13969~^1^3^~oz~^85^^ +~13969~^2^1^~steak (yield from 368 g meat)~^269^10^ +~13970~^1^3^~oz~^85^^ +~13970~^2^1^~steak~^188^20^ +~13971~^1^3^~oz~^85^^ +~13971~^2^1^~steak~^173^10^ +~13972~^1^3^~oz~^85^^ +~13972~^2^1^~roast~^1289^36^298 +~13973~^1^3^~oz~^85^^ +~13973~^2^1^~roast~^1263^24^227 +~13974~^1^3^~oz~^85^^ +~13974~^2^1^~roast~^1327^12^407 +~13975~^1^3^~oz~^85^^ +~13975~^2^1^~piece~^1780^24^ +~13977~^1^3^~oz~^85^^ +~13979~^1^3^~oz~^85^^ +~13980~^1^3^~oz~^85^^ +~13980~^2^1^~piece~^272^7^51.1 +~13981~^1^3^~oz~^85^^ +~13981~^2^1^~piece~^315^4^51.9 +~13982~^1^3^~oz~^85^^ +~13982~^2^1^~piece~^289^11^52 +~13983~^1^3^~oz~^85^^ +~13983~^2^1^~piece~^514^12^ +~13985~^1^1^~serving~^85^1^ +~13985~^2^1^~roast~^569^20^ +~14003~^1^1^~fl oz~^29.7^1^ +~14003~^2^1^~can~^356^1^ +~14004~^1^1^~fl oz~^29.8^1^ +~14004~^2^12^~fl oz~^357^^ +~14005~^1^1^~fl oz~^29.5^1^ +~14005~^2^12^~fl oz~^355^1^ +~14006~^1^1^~fl oz~^29.5^^ +~14006~^2^1^~can or bottle (12 fl oz)~^354^^ +~14007~^1^1^~fl oz~^29.5^1^ +~14007~^2^12^~fl oz~^354^1^ +~14009~^1^1^~fl oz~^30.5^^ +~14009~^2^1^~can (6.8 fl oz, 200 ml)~^207^^ +~14010~^1^1^~fl oz~^30.2^^ +~14010~^2^1^~cocktail (2 fl oz)~^60^^ +~14013~^1^1^~fl oz~^29.5^1^ +~14013~^2^12^~fl oz~^354^1^ +~14015~^1^1^~fl oz~^32.6^^ +~14015~^2^1^~can (6.8 fl oz, 200 ml)~^222^^ +~14016~^1^8^~fl oz~^240^1^ +~14016~^2^1^~cup~^240^1^ +~14017~^1^1^~fl oz~^31.4^^ +~14017~^2^1^~cocktail (4.5 fl oz)~^141^^ +~14019~^1^1^~fl oz~^31.1^^ +~14019~^2^1^~can (6.8 fl oz, 200 ml)~^211^^ +~14021~^1^8^~fl oz~^240^1^ +~14022~^1^8^~fl oz~^240^1^ +~14024~^1^1^~packet~^17^^ +~14025~^1^1^~fl oz~^29.4^^ +~14025~^2^1^~packet prepared~^103^^ +~14026~^1^16^~fl oz~^480^1^ +~14027~^1^1^~fl oz~^30.8^^ +~14027~^2^1^~can (6.8 fl oz, 200 ml)~^209^^ +~14028~^1^1^~fl oz~^32.3^^ +~14028~^2^2^~fl oz~^65^^ +~14029~^1^1^~fl oz~^30.4^^ +~14029~^2^1^~portion (2 oz mix + 1.5 oz whiskey)~^106^^ +~14030~^1^16^~fl oz~^480^1^ +~14031~^1^8^~fl oz~^240^1^ +~14033~^1^2^~scoop~^39^1^ +~14034~^1^1^~fl oz~^33.6^^ +~14034~^2^1^~jigger 1.5 fl oz~^50^^ +~14035~^1^1^~scoop~^44^1^ +~14036~^1^14^~fl oz~^414^1^ +~14037~^1^1^~fl oz~^27.8^^ +~14037~^2^1^~jigger (1.5 fl oz)~^42^^ +~14038~^1^1^~can~^250^10^2.58 +~14041~^1^1^~bottle~^237^1^ +~14044~^1^1^~bottle~^295^1^ +~14045~^1^1^~bottle~^295^1^ +~14047~^1^1^~scoop~^26^1^ +~14048~^1^1^~bottle~^500^1^ +~14049~^1^1^~fl oz~^27.8^^ +~14049~^2^1^~jigger (1.5 fl oz)~^42^^ +~14050~^1^1^~fl oz~^27.8^^ +~14050~^2^1.5^~fl oz~^42^^ +~14051~^1^1^~fl oz~^27.8^^ +~14051~^2^1.5^~fl oz~^42^^ +~14052~^1^1^~fl oz~^27.8^1^ +~14052~^2^1^~jigger (1.5 fl oz)~^42^1^ +~14054~^1^8^~fl oz~^240^1^ +~14054~^2^1^~cup~^240^1^ +~14055~^1^1^~scoop~^26^1^ +~14056~^1^8^~fl oz~^266^1^ +~14056~^2^2^~fl oz~^60^1^ +~14057~^1^1^~fl oz~^29.5^^ +~14057~^2^1^~glass (3.5 fl oz)~^103^^ +~14058~^1^3^~scoop~^86^1^ +~14059~^1^1^~serving~^296^1^ +~14060~^1^8^~fl oz~^240^1^ +~14061~^1^8^~fl oz~^240^1^ +~14062~^1^8^~fl oz~^254^1^ +~14063~^1^2^~tbsp~^11.0^1^ +~14064~^1^8^~fl oz~^240^1^ +~14065~^1^6.75^~fl oz~^200^1^ +~14066~^1^.33^~cup~^32^1^ +~14067~^1^1^~scoop~^45^1^ +~14068~^1^1^~packet~^14.5^2^ +~14073~^1^1^~can~^355^1^ +~14074~^1^1^~can~^355^1^ +~14075~^1^8^~fl oz~^240^1^ +~14076~^1^1^~serving~^100^1^ +~14079~^1^16^~fl oz~^473^1^ +~14080~^1^2^~tbsp~^11.0^1^ +~14083~^1^1^~serving~^256^1^ +~14084~^1^1^~serving (5 fl oz)~^148^^ +~14084~^2^1^~fl oz~^29.5^1^ +~14086~^1^1^~serving 8 oz~^245^1^ +~14087~^1^1^~serving 8 oz~^245^1^ +~14088~^1^1^~serving 8 oz~^246^1^ +~14090~^1^1^~cup~^245^19^7.599 +~14091~^1^1^~cup~^262^7^7.92 +~14092~^1^1^~cup~^240^1^ +~14093~^1^20^~fl oz~^591^1^ +~14095~^1^8^~fl oz~^240^1^ +~14096~^1^1^~fl oz~^29.4^^ +~14096~^2^1^~serving (5 fl oz)~^147^^ +~14097~^1^1^~fl oz~^29.4^^ +~14097~^2^1^~serving (5 fl oz)~^147^^ +~14098~^1^1^~fl oz~^29.4^^ +~14098~^2^1^~serving (5 fl oz)~^147^^ +~14099~^1^1^~fl oz~^29.4^^ +~14099~^2^1^~serving (5 fl oz)~^147^^ +~14100~^1^1^~fl oz~^29.4^^ +~14100~^2^1^~serving (5 fl oz)~^147^^ +~14101~^1^1^~fl oz~^29.4^^ +~14101~^2^1^~serving (5 fl oz)~^147^^ +~14102~^1^1^~fl oz~^29.4^^ +~14102~^2^1^~serving (5 fl oz)~^147^^ +~14103~^1^1^~fl oz~^29.5^^ +~14103~^2^1^~serving (5 fl oz)~^147^^ +~14105~^1^1^~fl oz~^29.4^^ +~14105~^2^1^~serving (5 fl oz)~^147^^ +~14106~^1^1^~fl oz~^29.4^^ +~14106~^2^1^~serving (5 fl oz)~^147^^ +~14107~^1^1^~fl oz~^29.4^^ +~14107~^2^1^~serving (5 fl oz)~^147^^ +~14108~^1^1^~fl oz~^29.4^^ +~14108~^2^1^~serving (5 fl oz)~^147^^ +~14109~^1^1^~fl oz~^29.4^^ +~14109~^2^1^~serving (5 fl oz)~^147^^ +~14113~^1^1^~fl oz~^29.3^^ +~14113~^2^1^~serving (5 fl oz)~^147^^ +~14116~^1^1^~fl oz~^29.5^^ +~14116~^2^1^~serving (5 fl oz)~^148^^ +~14117~^1^1^~fl oz~^29.3^^ +~14117~^2^1^~serving (5 fl oz)~^147^^ +~14119~^1^8^~fl oz~^247^1^ +~14120~^1^1^~fl oz~^29.5^^ +~14120~^2^1^~serving (5 fl oz)~^148^^ +~14121~^1^1^~fl oz~^29.6^^ +~14121~^2^1^~can or bottle (16 fl oz)~^474^^ +~14121~^3^1^~can or bottle (12 fl oz)~^355^^ +~14124~^1^1^~fl oz~^29.5^^ +~14124~^2^1^~serving (5 fl oz)~^147^^ +~14125~^1^1^~fl oz~^30.5^^ +~14125~^2^1^~serving (5 fl oz)~^152^^ +~14126~^1^1^~fl oz~^29.5^^ +~14126~^2^1^~serving (5 fl oz)~^147^^ +~14130~^1^1^~fl oz~^30.9^^ +~14130~^2^1^~can or bottle (16 fl oz)~^494^^ +~14130~^3^1^~can or bottle (12 fl oz)~^371^^ +~14132~^1^1^~fl oz~^29.6^^ +~14132~^2^1^~serving (5 fl oz)~^148^^ +~14134~^1^1^~fl oz~^29.3^^ +~14134~^2^1^~serving (5 fl oz)~^147^^ +~14135~^1^1^~fl oz~^30.8^^ +~14135~^2^1^~serving (5 fl oz)~^154^^ +~14136~^1^1^~fl oz~^30.5^^ +~14136~^2^1^~can or bottle (16 fl oz)~^488^^ +~14136~^3^1^~can or bottle (12 fl oz)~^366^^ +~14137~^1^1^~fl oz~^30.6^^ +~14137~^2^1^~serving (8 fl oz)~^245^^ +~14137~^3^1^~serving (12 fl oz)~^368^^ +~14137~^4^1^~serving (16.9 fl oz)~^518^^ +~14138~^1^1^~fl oz~^29.3^^ +~14138~^2^1^~serving (5 fl oz)~^147^^ +~14140~^1^1^~fl oz~^30.0^^ +~14140~^2^1^~serving (5 fl oz)~^150^^ +~14142~^1^1^~fl oz~^31.0^^ +~14142~^2^1^~can or bottle (12 fl oz)~^372^^ +~14143~^1^1^~fl oz~^29.6^^ +~14143~^2^1^~can (12 fl oz)~^355^^ +~14144~^1^1^~fl oz~^30.8^^ +~14144~^4^1^~drink (12 fl oz)~^368^^ +~14144~^5^1^~drink, small (16 fl oz)~^491^^ +~14144~^6^1^~drink, medium (22 fl oz)~^675^^ +~14144~^7^1^~drink, large (32 fl oz)~^982^^ +~14144~^8^1^~drink, extra large (44 fl oz)~^1351^^ +~14145~^1^1^~fl oz~^30.8^^ +~14145~^2^1^~serving 12 fl oz~^369^^ +~14145~^3^1^~serving 16 fl oz~^492^^ +~14145~^4^1^~cup 12 fl oz 12 fl oz~^258^^ +~14146~^1^1^~fl oz~^29.6^^ +~14146~^2^1^~can or bottle (16 fl oz)~^474^^ +~14146~^3^1^~can (12 fl oz)~^355^^ +~14146~^4^1^~drink, small (16 fl oz)~^474^^ +~14146~^5^1^~drink, medium (22 fl oz)~^651^^ +~14146~^6^1^~drink, large (32 fl oz)~^947^^ +~14146~^7^1^~drink, extra large (44 fl oz)~^1302^^ +~14147~^1^1^~fl oz~^30.7^^ +~14147~^2^1^~serving 12 fl oz~^368^^ +~14147~^3^1^~serving 16 fl oz~^491^^ +~14148~^1^1^~fl oz~^30.7^^ +~14148~^2^1^~can or bottle (12 fl oz)~^370^^ +~14148~^3^1^~can or bottle (16 fl oz)~^492^^ +~14148~^4^1^~drink, small (16 fl oz)~^492^^ +~14148~^5^1^~drink, medium (22 fl oz)~^676^^ +~14148~^6^1^~drink, large (32 fl oz)~^984^^ +~14148~^7^1^~drink, extra large (44 fl oz)~^1353^^ +~14149~^1^1^~fl oz~^29.6^^ +~14149~^2^1^~can (8 fl oz)~^355^^ +~14150~^1^1^~fl oz~^31.0^^ +~14150~^2^1^~can or bottle (16 fl oz)~^496^^ +~14150~^3^1^~can or bottle (12 fl oz)~^372^^ +~14151~^1^1^~fl oz~^29.6^^ +~14151~^2^1^~can (12 fl oz)~^355^^ +~14152~^1^1^~fl oz~^29.5^^ +~14152~^2^1^~serving 5 fl oz~^148^^ +~14153~^1^1^~fl oz~^30.7^^ +~14153~^2^1^~can or bottle (16 fl oz)~^491^^ +~14153~^3^1^~can or bottle (12 fl oz)~^368^^ +~14154~^1^1^~can 8.4 fl oz~^258^1^ +~14154~^2^1^~serving 12 fl oz~^369^^ +~14154~^3^1^~serving 16 fl oz~^492^^ +~14155~^1^1^~fl oz~^30.5^^ +~14155~^2^1^~bottle (11 fl oz)~^336^^ +~14155~^3^1^~can or bottle (16 fl oz)~^488^^ +~14155~^4^1^~can or bottle (12 fl oz)~^366^^ +~14156~^1^1^~serving 8.3 fl oz can~^250^^ +~14157~^1^1^~fl oz~^30.8^^ +~14157~^2^1^~can or bottle (16 fl oz)~^493^^ +~14157~^3^1^~can or bottle (12 fl oz)~^370^^ +~14158~^1^1^~fl oz~^29.4^^ +~14158~^2^1^~serving 5 fl oz~^147^^ +~14159~^1^1^~fl oz~^29.4^^ +~14159~^2^1^~serving 5 fl oz~^147^^ +~14160~^1^1^~fl oz~^29.3^^ +~14160~^2^1^~serving 5 fl oz~^147^^ +~14161~^1^16^~fl oz~^473^1^ +~14162~^1^8^~fl oz~^240^1^ +~14163~^1^8^~fl oz~^237^1^ +~14164~^1^1^~cup dry mix~^98^11^3.695 +~14164~^2^1^~cup prepared~^251^11^15.489 +~14165~^1^1^~cup~^253^12^2.79 +~14166~^1^1^~fl oz~^29.6^^ +~14166~^2^1^~bottle (16 fl oz)~^474^^ +~14166~^3^1^~can (12 fl oz)~^355^^ +~14167~^1^12^~fl oz~^360^1^ +~14168~^1^1^~tbsp~^12.0^^ +~14169~^1^1^~cup (8 fl oz)~^256^^ +~14171~^1^1^~cup~^240^1^ +~14173~^1^9.5^~fl oz~^281^1^ +~14174~^1^8^~fl oz~^240^1^ +~14177~^1^1^~cup (8 fl oz)~^266^^ +~14179~^1^1^~cup~^262^10^2.859 +~14180~^1^1^~cup~^248^11^3.116 +~14181~^1^1^~serving 2 tbsp~^39^1^ +~14181~^2^1^~cup~^300^1^ +~14182~^1^1^~cup (8 fl oz)~^282^^ +~14183~^1^1^~cup~^265^11^2.751 +~14187~^1^1^~fl oz~^30.2^^ +~14187~^2^1^~can (5.5 oz)~^166^^ +~14188~^1^1^~cup~^260^12^4.352 +~14189~^1^8^~fl oz~^240^1^ +~14190~^1^1^~cup~^269^10^1.185 +~14191~^1^1^~cup~^265^11^1.82 +~14192~^1^1^~serving (3 heaping tsp or 1 envelope)~^28^^ +~14194~^1^1^~fl oz~^34.3^^ +~14194~^2^1^~serving 6 fl oz~^206^^ +~14195~^1^1^~serving 1 envelope~^20^1^ +~14196~^1^1^~envelope Alba (.675 oz)~^19^^ +~14196~^2^1^~envelope Swiss Miss (.53 oz)~^15.0^^ +~14197~^1^1^~serving 1 envelope~^20^1^ +~14199~^1^1^~cup~^271^11^2.32 +~14201~^1^1^~fl oz~^29.6^^ +~14201~^2^6^~fl oz~^178^^ +~14201~^3^1^~cup (8 fl oz)~^237^^ +~14202~^1^1^~fl oz~^29.6^^ +~14203~^1^1^~tsp~^1.0^^ +~14203~^2^1^~packet~^2.0^^ +~14204~^1^1^~tsp dry~^6.4^^ +~14206~^1^1^~cup~^270^12^1.717 +~14207~^1^1^~cup~^266^5^1.281 +~14207~^2^16^~fl oz~^473^1^ +~14209~^1^1^~fl oz~^29.6^^ +~14209~^2^6^~fl oz~^178^^ +~14209~^3^1^~cup (8 fl oz)~^237^^ +~14210~^1^1^~fl oz~^29.6^^ +~14211~^1^1^~cup~^265^6^2.968 +~14214~^1^1^~tsp~^1.0^^ +~14214~^2^1^~packet~^2.0^^ +~14215~^1^1^~fl oz~^29.8^^ +~14215~^2^1^~serving 6 fl oz~^179^^ +~14216~^1^8^~fl oz~^240^1^ +~14217~^1^8^~fl oz~^240^1^ +~14218~^1^1^~tsp rounded~^1.8^^ +~14219~^1^1^~fl oz~^29.9^^ +~14219~^2^1^~serving 6 fl oz~^179^^ +~14220~^1^8^~fl oz~^249^1^ +~14221~^1^8^~fl oz~^237^1^ +~14222~^1^1^~tsp, rounded~^1.8^^ +~14223~^1^1^~fl oz~^29.9^^ +~14223~^2^1^~serving 6 fl oz~^179^^ +~14224~^1^1^~serving 2 tbsp~^13.0^1^ +~14226~^1^8^~fl oz~^242^1^ +~14227~^1^8^~fl oz~^247^1^ +~14231~^1^1^~NLEA Serving~^14.0^^ +~14233~^1^8^~fl oz~^248^1^ +~14234~^1^8^~fl oz~^247^1^ +~14235~^1^8^~fl oz~^237^1^ +~14236~^1^1^~tsp (1 serving)~^3.0^^ +~14237~^1^1^~fl oz~^30.1^^ +~14237~^2^1^~serving 6 fl oz~^180^^ +~14238~^1^1^~fl oz~^30.6^^ +~14238~^2^1^~cup (8 fl oz)~^245^^ +~14239~^1^11.2^~fl oz~^335^1^ +~14240~^1^1^~fl oz~^30.6^^ +~14240~^2^1^~cup (8 fl oz)~^245^^ +~14241~^1^1^~fl oz~^30.6^^ +~14241~^2^1^~cup (8 fl oz)~^245^^ +~14242~^1^1^~fl oz~^31.6^^ +~14242~^2^1^~cup (8 fl oz)~^253^^ +~14243~^1^1^~fl oz~^29.6^^ +~14243~^2^1^~cup (8 fl oz)~^237^^ +~14245~^1^1^~cup (8 fl oz)~^272^^ +~14246~^1^2^~tbsp~^4.5^1^ +~14247~^1^16^~fl oz~^473^1^ +~14248~^1^12^~fl oz~^356^1^ +~14250~^1^12^~fl oz~^355^1^ +~14251~^1^1^~fl oz~^30.6^2^ +~14251~^2^1^~bottle~^355^2^ +~14252~^1^1^~bottle~^1184^1^ +~14253~^1^1^~fl oz~^30.3^3^.058 +~14255~^1^8^~fl oz~^248^1^ +~14256~^1^8^~fl oz~^248^1^ +~14257~^1^8^~fl oz~^248^2^ +~14258~^1^8^~fl oz~^247^1^ +~14259~^1^8^~fl oz~^248^1^ +~14260~^1^240^~ml~^240^1^ +~14261~^1^16^~fl oz~^473^1^ +~14262~^1^1^~fl oz~^35.2^^ +~14262~^2^1^~can (12 fl oz)~^423^^ +~14263~^1^1^~fl oz~^31.0^^ +~14263~^2^1^~serving 8 fl oz~^248^^ +~14264~^1^6.75^~fl oz~^210^2^ +~14264~^2^1^~cup (8 fl oz)~^248^^ +~14267~^1^1^~fl oz~^31.0^^ +~14267~^2^1^~cup (8 fl oz)~^248^^ +~14268~^1^1^~fl oz~^34.8^^ +~14268~^2^1^~can (12 fl oz)~^418^^ +~14269~^1^1^~fl oz~^30.9^^ +~14269~^2^1^~cup~^247^^ +~14270~^1^1^~serving~^15.0^1^ +~14276~^1^1^~NLEA Serving~^210^^ +~14276~^2^200^~ml~^200^1^ +~14277~^1^1^~fl oz~^31.3^^ +~14277~^2^1^~cup (8 fl oz)~^250^^ +~14278~^1^1^~cup~^245^23^ +~14278~^2^1^~fl oz~^29.6^23^ +~14279~^1^1^~cup~^268^3^.737 +~14280~^1^1^~cup~^240^1^ +~14281~^1^1^~cup~^240^1^ +~14282~^1^1^~fl oz~^31.3^^ +~14282~^2^6^~fl oz~^188^^ +~14282~^3^8^~fl oz~^250^^ +~14282~^4^1^~serving~^227^1^ +~14284~^1^1^~cup~^271^30^2.796 +~14285~^1^8^~fl oz~^227^1^ +~14287~^1^1^~serving~^18^1^ +~14287~^2^1^~cup~^218^^ +~14288~^1^1^~fl oz~^33.0^^ +~14288~^2^1^~cup 8 fl oz~^264^^ +~14292~^1^1^~fl oz~^36.5^^ +~14292~^2^1^~can (12 fl oz)~^438^^ +~14292~^3^1^~can (6 fl oz)~^219^^ +~14293~^1^1^~fl oz~^30.9^^ +~14293~^2^1^~cup 8 fl oz~^247^^ +~14296~^1^1^~serving~^18^1^ +~14296~^2^.5^~scoop (2 tbsp)~^29^^ +~14297~^1^1^~fl oz~^31.8^^ +~14297~^2^1^~cup 8 fl oz~^255^^ +~14303~^1^1^~fl oz~^30.9^^ +~14303~^2^1^~cup 8 fl oz~^247^^ +~14305~^1^1^~fl oz~^29.6^^ +~14305~^2^1^~cup~^237^^ +~14309~^1^1^~serving (4 tbsp or 1 envelope)~^21^^ +~14309~^2^1^~individual serving (4-5 heaping tsp or 1 envelope)~^21^^ +~14310~^1^1^~cup (8 fl oz)~^265^^ +~14311~^1^1^~serving (3 heaping tsp or 1 envelope)~^21^^ +~14312~^1^1^~cup (8 fl oz)~^265^^ +~14315~^1^1^~cup~^78^^ +~14315~^2^1^~serving (4 tbsp or 1 envelope)~^21^^ +~14316~^1^1^~cup (8 fl oz)~^265^^ +~14317~^1^1^~serving (3 heaping tsp or 1 envelope)~^21^^ +~14318~^1^1^~cup (8 fl oz)~^265^^ +~14323~^1^1^~fl oz~^31.0^^ +~14323~^2^1^~cup (8 fl oz)~^248^^ +~14327~^1^1^~fl oz~^31.2^^ +~14327~^2^1^~cup (8 fl oz)~^250^^ +~14334~^1^1^~fl oz~^31.3^^ +~14334~^2^1^~cup (8 fl oz)~^250^^ +~14341~^1^1^~fl oz~^31.3^^ +~14341~^2^1^~cup (8 fl oz)~^250^^ +~14347~^1^1^~fl oz~^20.8^^ +~14347~^2^1^~cup (8 fl oz)~^166^^ +~14347~^3^1^~milkshake (10 fl oz)~^208^^ +~14347~^4^1^~small McDonald's shake (12 fl oz)~^250^^ +~14347~^5^1^~medium McDonald's shake (16 fl oz)~^333^^ +~14347~^6^1^~large McDonald's shake (22 fl oz)~^458^^ +~14350~^1^1^~serving (2-3 heaping tsp)~^22^^ +~14351~^1^1^~cup (8 fl oz)~^266^^ +~14352~^1^1^~fl oz~^29.6^^ +~14352~^2^6^~fl oz~^178^^ +~14352~^3^1^~cup (8 fl oz)~^237^^ +~14353~^1^1^~serving 2 tsp~^0.7^^ +~14355~^1^1^~fl oz~^29.6^^ +~14355~^2^6^~fl oz~^178^^ +~14355~^3^1^~cup (8 fl oz)~^237^^ +~14356~^1^2^~tsp~^1.6^^ +~14357~^1^1^~serving (3 heaping tsp)~^23^^ +~14357~^2^1^~cup~^182^^ +~14366~^1^1^~serving 1 tsp~^0.7^1^ +~14367~^1^1^~fl oz~^29.7^^ +~14367~^2^1^~serving 6 fl oz~^178^^ +~14367~^3^1^~serving 8 fl oz~^238^^ +~14368~^1^1^~tsp, rounded~^1.4^^ +~14368~^2^2^~tbsp, rounded~^11.3^^ +~14370~^1^1^~serving (3 heaping tsp)~^23^^ +~14370~^2^1^~cup~^182^^ +~14371~^1^1^~cup (8 fl oz)~^259^^ +~14375~^1^2^~tsp~^1.6^^ +~14375~^2^4^~tbsp (1/4 cup)~^14.4^^ +~14376~^1^1^~fl oz~^29.8^^ +~14376~^2^1^~serving 6 fl oz~^179^^ +~14376~^3^1^~serving 8 fl oz~^238^^ +~14381~^1^1^~fl oz~^29.6^^ +~14381~^2^6^~fl oz~^178^^ +~14381~^3^1^~cup (8 fl oz)~^237^^ +~14384~^1^1^~fl oz~^29.6^^ +~14384~^2^1^~bottle 6.5 fl oz~^192^^ +~14384~^3^1^~bottle 11 fl oz~^325^^ +~14384~^4^1^~cup 8 fl oz~^237^^ +~14385~^1^1^~fl oz~^29.6^^ +~14385~^2^1^~bottle 16.9 fl oz~^500^^ +~14385~^3^1^~bottle 24 fl oz~^710^^ +~14385~^4^1^~bottle 8 fl oz~^237^^ +~14390~^1^1^~fl oz~^32.1^^ +~14390~^2^1^~serving dry mix with 6 fl oz water~^192^^ +~14400~^1^1^~serving child 12 fl oz, without ice~^258^^ +~14400~^2^1^~serving small 16 fl oz, without ice~^347^^ +~14400~^3^1^~serving medium 21 fl oz, without ice~^486^^ +~14400~^4^1^~serving large 32 fl oz, without ice~^722^^ +~14405~^1^1^~fl oz~^35.2^^ +~14405~^2^1^~can (12 fl oz)~^423^^ +~14406~^1^1^~fl oz~^29.3^^ +~14406~^2^8^~fl oz~^234^^ +~14407~^1^1^~serving 2 tbsp~^26^1^ +~14408~^1^1^~fl oz~^33.9^^ +~14408~^2^6^~fl oz~^203^^ +~14409~^1^1^~portion, amount of dry mix to make 8 fl oz prepared~^2.5^^ +~14411~^1^1^~fl oz~^29.6^^ +~14411~^2^1^~serving 8 fl oz~^237^^ +~14411~^3^1^~liter~^1000^^ +~14412~^1^1^~fl oz~^29.6^^ +~14412~^2^1^~serving 8 fl oz 8 fl oz~^237^^ +~14412~^3^1^~liter~^1000^^ +~14414~^1^1^~fl oz~^34.8^^ +~14414~^2^1^~serving 1.5 fl oz~^52^^ +~14415~^1^1^~fl oz~^31.1^^ +~14415~^2^1.5^~fl oz~^47^^ +~14416~^1^1^~fl oz~^29.6^1^ +~14416~^2^1^~can can 12 fl oz~^355^^ +~14416~^3^1^~bottle bottle 16 fl oz~^473^^ +~14416~^4^1^~serving child 12 fl oz~^258^^ +~14416~^5^1^~serving small 16 fl oz~^347^^ +~14416~^6^1^~serving medium 21 fl oz~^486^^ +~14416~^7^1^~serving large 32 fl oz~^722^^ +~14421~^1^6^~fl oz~^185^^ +~14422~^1^1^~packet (.75 oz)~^21^^ +~14422~^2^1^~envelope~^21^1^ +~14423~^1^1^~serving~^243^^ +~14424~^1^1^~fl oz~^35.3^^ +~14424~^2^1^~can~^424^^ +~14425~^1^1^~fl oz~^31.0^^ +~14425~^2^8^~fl oz~^248^^ +~14426~^1^1^~fl oz~^36.3^^ +~14426~^2^1^~can~^436^^ +~14427~^1^1^~fl oz~^31.3^^ +~14427~^2^8^~fl oz~^250^^ +~14428~^1^1^~fl oz~^23.5^^ +~14428~^2^1^~serving small 12 fl oz~^282^^ +~14428~^3^1^~serving medium 16 fl oz~^376^^ +~14428~^4^1^~serving large 21 fl oz~^494^^ +~14429~^1^1^~fl oz~^29.6^^ +~14429~^2^1^~bottle 8 fl oz~^237^^ +~14429~^3^1^~liter~^1000^^ +~14429~^4^3^~ice cube (3/4 fl oz)~^64^^ +~14430~^1^1^~fl oz~^36.2^^ +~14430~^2^1^~can (12 fl oz)~^435^^ +~14431~^1^1^~fl oz~^29.6^^ +~14431~^2^8^~fl oz~^237^^ +~14432~^1^1^~fl oz~^29.6^^ +~14432~^2^1^~bottle 11.2 fl oz~^331^^ +~14432~^3^1^~bottle 500 ml~^500^^ +~14432~^4^1^~bottle 25 fl oz~^739^^ +~14433~^1^1^~fl oz~^29.6^^ +~14433~^2^1^~bottle 16.9 fl oz i~^500^^ +~14433~^3^1^~bottle 24 fl oz~^710^^ +~14434~^1^1^~fl oz~^29.6^^ +~14434~^2^1^~bottle 16.9 fl oz~^500^^ +~14434~^3^1^~bottle 12 fl oz~^355^^ +~14434~^4^1^~bottle 20 fl oz~^591^^ +~14436~^1^1^~fl oz~^31.6^^ +~14436~^2^1^~cup (8 fl oz)~^253^^ +~14437~^1^1^~fl oz~^29.6^^ +~14437~^2^1^~bottle 16.9 fl oz~^500^^ +~14437~^3^1^~bottle 24 fl oz~^710^^ +~14438~^1^1^~fl oz~^29.6^^ +~14438~^2^1^~bottle 8 fl oz~^237^^ +~14438~^3^1^~bottle 500 ml~^500^^ +~14439~^1^1^~fl oz~^29.6^^ +~14440~^1^1^~fl oz~^29.6^^ +~14440~^2^1^~bottle 8.5 fl oz~^251^^ +~14450~^1^1^~scoop powder~^23^9^1.009 +~14450~^2^1^~cup powder~^207^9^6.466 +~14460~^1^1^~fl oz~^30.5^^ +~14460~^2^8^~fl oz~^244^1^ +~14460~^3^1^~bottle~^609^^ +~14461~^1^1^~fl oz~^30.5^^ +~14461~^2^8^~fl oz~^244^2^ +~14461~^3^12^~fl oz~^365^1^ +~14462~^1^1^~fl oz~^29.6^^ +~14462~^2^1^~bottle 16.9 fl oz~^501^^ +~14462~^3^1^~bottle 12 fl oz~^356^^ +~14462~^4^1^~bottle 23.7 fl oz~^703^^ +~14475~^1^1^~fl oz~^30.6^^ +~14475~^2^8^~bottle 8 fl oz~^227^1^ +~14475~^3^1^~bottle 12 fl oz~^368^^ +~14475~^4^1^~bottle 20 fl oz~^613^^ +~14476~^1^1^~fl oz~^30.6^^ +~14476~^2^1^~bottle 8 fl oz~^245^2^ +~14476~^3^1^~bottle 12 fl oz~^367^1^ +~14530~^1^1^~fl oz~^32.3^^ +~14531~^1^1^~fl oz~^30.4^^ +~14531~^2^1^~portion (2 oz mix + 1.5 oz whiskey)~^106^^ +~14531~^3^2^~fl oz~^65^^ +~14532~^1^1^~fl oz~^27.8^^ +~14532~^2^1.5^~fl oz~^42^^ +~14533~^1^1^~fl oz~^27.8^^ +~14533~^2^1.5^~fl oz~^42^^ +~14534~^1^1^~fl oz~^34.8^^ +~14534~^2^1.5^~fl oz~^52^^ +~14536~^1^1^~fl oz~^29.5^^ +~14536~^2^1^~glass (3.5 fl oz)~^103^^ +~14537~^1^1^~fl oz~^29.6^^ +~14537~^2^1^~can (12 fl oz)~^355^^ +~14538~^1^1^~envelope Swiss Miss (.53 oz)~^15.0^^ +~14538~^2^1^~packet (0.675 oz)~^19^^ +~14541~^1^1^~fl oz~^32.7^^ +~14541~^2^8^~fl oz~^262^^ +~14542~^1^1^~fl oz~^36.4^^ +~14542~^2^1^~can (12 fl oz)~^437^^ +~14542~^3^1^~can (6 fl oz)~^218^^ +~14543~^1^1^~fl oz~^30.9^^ +~14543~^2^1^~bottle 8 fl oz~^247^^ +~14544~^1^1^~fl oz~^29.6^^ +~14544~^2^6^~fl oz~^178^^ +~14545~^1^1^~fl oz~^29.6^^ +~14545~^2^6^~fl oz~^178^^ +~14545~^3^1^~cup (8 fl oz)~^237^^ +~14548~^1^1^~serving (3 heaping tsp)~^23^^ +~14548~^2^1^~cup~^182^^ +~14550~^1^1^~fl oz~^27.8^^ +~14550~^2^1^~Jigger 1.5 fl oz~^42^^ +~14551~^1^1^~fl oz~^27.8^^ +~14551~^2^1.5^~fl oz~^42^^ +~14552~^1^1^~fl oz~^31.0^^ +~14552~^2^1^~can or bottle (16 fl oz)~^492^^ +~14552~^3^1^~can (12 fl oz)~^369^^ +~14553~^1^1^~fl oz~^29.0^^ +~14555~^1^1^~fl oz~^29.6^1^ +~14555~^2^1^~cup~^237^2^ +~14555~^3^1^~ml~^1.0^28^ +~14557~^1^1^~serving~^22^1^ +~14558~^1^1^~serving~^266^^ +~14559~^1^1^~fl oz~^29.6^^ +~14559~^2^1^~bottle 11.2 fl oz~^331^^ +~14559~^3^1^~bottle 16.9 fl oz~^500^^ +~14599~^1^8^~fl oz~^237^4^0 +~14599~^2^12^~fl oz~^355^1^ +~14601~^1^1^~fl oz~^29.6^^ +~14602~^1^1^~fl oz~^29.4^^ +~14602~^2^1^~serving 5 fl oz~^147^^ +~14604~^1^1^~fl oz~^29.6^^ +~14604~^2^1^~serving (8 fl oz)~^237^^ +~14604~^3^1^~ml~^1.1^4^0 +~14605~^1^8^~fl oz (1 NLEA serving)~^237^1^ +~14605~^2^1^~serving~^237^2^ +~14607~^1^8^~fl oz~^243^1^ +~14608~^1^1^~serving 8 oz~^238^1^ +~14609~^1^1^~serving~^238^1^ +~14610~^1^1^~serving 8 oz~^238^1^ +~14611~^1^1^~serving 8 oz~^243^1^ +~14612~^1^1^~serving 8 oz~^243^1^ +~14613~^1^1^~serving 8 oz~^243^1^ +~14614~^1^1^~serving 8 oz~^243^1^ +~14615~^1^1^~serving 8 oz~^243^1^ +~14616~^1^1^~serving 8 oz~^243^1^ +~14617~^1^1^~serving 8 oz~^243^1^ +~14618~^1^1^~serving 8 oz~^243^1^ +~14619~^1^1^~serving 8 oz~^243^1^ +~14620~^1^1^~serving 8 oz~^246^1^ +~14621~^1^1^~serving 8 oz~^246^1^ +~14622~^1^1^~serving 8 oz~^246^1^ +~14623~^1^1^~serving 8 oz~^246^1^ +~14625~^1^1^~serving~^240^1^ +~14626~^1^1^~serving 8 fluid oz~^240^1^ +~14626~^2^1^~can~^480^1^ +~14627~^1^1^~serving~^240^1^ +~14628~^1^8^~fl oz~^240^^ +~14629~^1^1^~fl oz~^31.0^10^.149 +~14629~^2^8^~fl oz~^240^1^ +~14629~^3^1^~can~^480^1^ +~14630~^1^8^~fl oz~^240^1^ +~14631~^1^1^~tbsp~^7.8^9^.232 +~14631~^2^1^~cup~^118^3^.252 +~14632~^1^1^~cup~^158^3^.361 +~14632~^2^1^~can~^391^8^.763 +~14633~^1^1^~serving~^238^1^ +~14634~^1^1^~cup~^244^1^ +~14635~^1^1^~serving 8 oz~^246^3^0 +~14636~^1^1^~container~^209^1^ +~14636~^2^1^~ml~^1.0^256^ +~14637~^1^1^~pouch~^200^1^ +~14638~^1^1^~cup~^228^3^10.815 +~14639~^1^8^~fl oz (approximate weight, 1 serving)~^240^3^0 +~14640~^1^1^~oz~^31^^ +~14640~^2^8^~fl oz (1 serving)~^246^1^ +~14641~^1^1^~serving (8 fl oz)~^246^1^ +~14641~^2^12^~fl oz~^360^1^ +~14644~^1^8^~fl oz~^237^5^0 +~14645~^1^1^~cup (8 fl oz)~^238^^ +~14646~^1^1^~cup (8 fl oz)~^238^^ +~14647~^1^8^~fl oz~^240^1^ +~14647~^2^1^~fl oz~^31.1^8^.407 +~14648~^1^8^~fl oz~^237^4^1.705 +~14649~^1^8^~fl oz~^237^^ +~14651~^1^1^~cup (8 fl oz)~^238^^ +~14654~^1^1^~tbsp~^10.0^^ +~14654~^2^1^~serving~^20^^ +~15001~^1^3^~oz~^85^^ +~15002~^1^1^~oz, boneless~^28.35^^ +~15002~^2^1^~anchovy~^4.0^^ +~15002~^3^1^~can (2 oz)~^45^^ +~15002~^4^5^~anchovies~^20^^ +~15003~^1^1^~fillet~^79^^ +~15003~^2^3^~oz~^85^^ +~15004~^1^3^~oz~^85^^ +~15004~^2^1^~fillet~^159^^ +~15005~^1^1^~fillet~^150^^ +~15005~^2^3^~oz~^85^^ +~15006~^1^1^~fillet~^116^^ +~15006~^2^3^~oz~^85^^ +~15007~^1^1^~fillet~^32^^ +~15007~^2^3^~oz~^85^^ +~15008~^1^3^~oz~^85^^ +~15008~^2^1^~fillet~^218^^ +~15009~^1^3^~oz~^85^^ +~15009~^2^1^~fillet~^170^^ +~15010~^1^3^~oz~^85^^ +~15010~^2^1^~fillet~^159^^ +~15011~^1^1^~fillet~^87^^ +~15011~^2^3^~oz~^85^^ +~15012~^1^1^~tbsp~^16^^ +~15012~^2^1^~oz~^28.35^^ +~15013~^1^1^~fillet~^79^^ +~15013~^2^3^~oz~^85^^ +~15014~^1^1^~oz~^28.35^^ +~15014~^2^3^~oz~^85^^ +~15015~^1^3^~oz~^85^^ +~15015~^2^1^~fillet~^231^^ +~15016~^1^3^~oz~^85^^ +~15016~^2^1^~fillet~^180^^ +~15017~^1^3^~oz~^85^^ +~15017~^2^1^~can~^312^^ +~15018~^1^1^~oz~^28.35^^ +~15018~^2^1^~piece (5-1/2" x 1-1/2" x 1/2")~^80^^ +~15018~^3^3^~oz~^85^^ +~15019~^1^1^~fillet~^116^^ +~15019~^2^3^~oz~^85^^ +~15020~^1^1^~fillet~^79^^ +~15020~^2^3^~oz~^85^^ +~15021~^1^1^~fillet~^87^^ +~15021~^2^3^~oz~^85^^ +~15022~^1^1^~fillet~^122^^ +~15022~^2^3^~oz~^85^^ +~15023~^1^3^~oz~^85^^ +~15023~^2^1^~fillet~^204^^ +~15024~^1^3^~oz~^85^^ +~15024~^2^1^~fillet~^198^^ +~15025~^1^3^~oz~^85^^ +~15025~^2^1^~fillet~^204^^ +~15026~^1^1^~oz, boneless~^28.35^^ +~15026~^2^1^~oz with bone (yield after bone removed)~^22^^ +~15026~^3^1^~cubic inch, boneless~^17^^ +~15026~^4^1^~fillet~^159^^ +~15026~^5^3^~oz~^85^^ +~15027~^1^1^~piece (4" x 2" x 1/2")~^57^^ +~15027~^2^1^~stick (4" x 1" x 1/2")~^28^^ +~15028~^1^1^~oz, boneless~^28.35^^ +~15028~^2^1^~fillet~^163^^ +~15028~^3^3^~oz~^85^^ +~15029~^1^1^~fillet~^127^^ +~15029~^2^3^~oz~^85^^ +~15030~^1^1^~piece~^42^^ +~15031~^1^3^~oz~^85^^ +~15031~^2^1^~fillet~^259^^ +~15032~^1^3^~oz~^85^^ +~15032~^2^1^~fillet~^202^^ +~15033~^1^3^~oz~^85^^ +~15033~^2^1^~fillet~^193^^ +~15034~^1^1^~fillet~^150^^ +~15034~^2^3^~oz~^85^^ +~15035~^1^1^~oz, boneless~^28.35^^ +~15035~^2^1^~cubic inch, boneless~^17^^ +~15035~^3^3^~oz~^85^^ +~15036~^1^3^~oz~^85^^ +~15036~^2^.5^~fillet~^204^^ +~15037~^1^3^~oz~^85^^ +~15037~^2^.5^~fillet~^159^^ +~15038~^1^3^~oz~^85^^ +~15038~^2^.5^~fillet~^204^^ +~15039~^1^1^~oz, boneless~^28.35^^ +~15039~^2^1^~fillet~^184^^ +~15039~^3^3^~oz~^85^^ +~15040~^1^1^~fillet~^143^^ +~15040~^2^3^~oz~^85^^ +~15041~^1^1^~cup~^140^^ +~15041~^2^1^~oz, boneless~^28.35^^ +~15041~^3^1^~cubic inch~^20^^ +~15041~^4^1^~piece (1-3/4" x 7/8" x 1/2")~^15.0^^ +~15042~^1^1^~oz, boneless~^28.35^^ +~15042~^2^1^~cubic inch, boneless~^17^^ +~15042~^3^1^~fillet, large (7" x 2-1/4" x 1/4")~^65^^ +~15042~^4^1^~fillet, medium (5" x 1-3/4" x 1/4")~^40^^ +~15042~^5^1^~fillet, small (2-3/8" x 1-3/8" x 1/4")~^20^^ +~15043~^1^3^~oz~^85^^ +~15043~^2^1^~fillet~^184^^ +~15044~^1^3^~oz~^85^^ +~15044~^2^1^~fillet~^193^^ +~15045~^1^3^~oz~^85^^ +~15045~^2^.5^~fillet~^193^^ +~15046~^1^1^~fillet~^112^^ +~15046~^2^3^~oz~^85^^ +~15047~^1^1^~fillet~^88^^ +~15047~^2^3^~oz~^85^^ +~15048~^1^1^~oz, boneless~^28.35^^ +~15048~^2^1^~cup~^190^^ +~15048~^3^1^~cubic inch~^16^^ +~15048~^4^1^~can (15 oz)~^361^^ +~15049~^1^3^~oz~^85^^ +~15049~^2^.5^~fillet~^198^^ +~15050~^1^3^~oz~^85^^ +~15050~^2^1^~fillet~^225^^ +~15051~^1^3^~oz~^85^^ +~15051~^2^1^~fillet~^187^^ +~15052~^1^1^~fillet~^146^^ +~15052~^2^3^~oz~^85^^ +~15053~^1^3^~oz~^85^^ +~15054~^1^3^~oz~^85^^ +~15055~^1^1^~oz~^28.35^^ +~15055~^2^1^~fillet~^119^^ +~15055~^3^3^~oz~^85^^ +~15056~^1^1^~fillet~^93^^ +~15056~^2^3^~oz~^85^^ +~15057~^1^1^~oz, boneless~^28.35^^ +~15057~^2^1^~fillet~^64^^ +~15057~^3^3^~oz~^85^^ +~15058~^1^1^~fillet~^50^^ +~15058~^2^3^~oz~^85^^ +~15059~^1^3^~oz~^85^^ +~15059~^2^.5^~fillet~^176^^ +~15060~^1^1^~fillet~^60^^ +~15060~^2^3^~oz~^85^^ +~15061~^1^1^~fillet~^46^^ +~15061~^2^3^~oz~^85^^ +~15062~^1^3^~oz~^85^^ +~15062~^2^.5^~fillet~^198^^ +~15063~^1^3^~oz~^85^^ +~15063~^2^.5^~fillet~^155^^ +~15064~^1^3^~oz~^85^^ +~15064~^2^1^~fillet~^159^^ +~15065~^1^3^~oz~^85^^ +~15065~^2^.5^~fillet~^193^^ +~15066~^1^1^~fillet~^77^^ +~15066~^2^3^~oz~^85^^ +~15067~^1^1^~fillet~^60^^ +~15067~^2^3^~oz~^85^^ +~15068~^1^1^~oz, boneless~^28.35^^ +~15068~^2^1^~fillet~^112^^ +~15068~^3^3^~oz~^85^^ +~15069~^1^1^~fillet~^88^^ +~15069~^2^3^~oz~^85^^ +~15070~^1^3^~oz~^85^^ +~15070~^2^1^~fillet~^191^^ +~15071~^1^1^~fillet~^149^^ +~15071~^2^3^~oz~^85^^ +~15072~^1^1^~tbsp~^14.0^^ +~15072~^2^1^~oz~^28.35^^ +~15072~^3^1^~can (8 oz), solids and liquid~^227^^ +~15072~^4^3^~oz~^85^^ +~15073~^1^3^~oz~^85^^ +~15074~^1^3^~oz~^85^^ +~15074~^2^.5^~fillet~^193^^ +~15075~^1^1^~oz~^28.35^^ +~15075~^2^3^~oz~^85^^ +~15076~^1^3^~oz~^85^^ +~15076~^2^.5^~fillet~^198^^ +~15077~^1^1^~oz, boneless~^28.35^^ +~15077~^2^3^~oz~^85^^ +~15077~^3^1^~cubic inch, boneless~^17^^ +~15077~^4^1^~cup, cooked~^136^^ +~15078~^1^3^~oz~^85^^ +~15078~^2^.5^~fillet~^198^^ +~15079~^1^3^~oz~^85^^ +~15079~^2^.5^~fillet~^198^^ +~15080~^1^3^~oz~^85^^ +~15080~^2^1^~can~^369^^ +~15081~^1^3^~oz~^85^^ +~15081~^2^.5^~fillet~^198^^ +~15082~^1^3^~oz~^85^^ +~15082~^2^.5^~fillet~^155^^ +~15083~^1^3^~oz~^85^^ +~15083~^2^.5^~fillet~^159^^ +~15084~^1^3^~oz~^85^^ +~15084~^2^1^~can~^411^17^7.575 +~15085~^1^1^~oz, boneless~^28.35^^ +~15085~^2^.5^~fillet~^198^^ +~15085~^3^3^~oz~^85^^ +~15086~^1^3^~oz~^85^^ +~15086~^2^.5^~fillet~^155^^ +~15087~^1^3^~oz~^85^^ +~15087~^2^1^~can~^337^12^35.383 +~15088~^1^1^~cup, drained~^149^^ +~15088~^2^1^~oz~^28.35^^ +~15088~^3^1^~cubic inch~^16^^ +~15088~^4^1^~can (3.75 oz)~^92^^ +~15088~^5^1^~small (2-2/3" x 1/2" x 1/4")~^12.0^^ +~15088~^6^2^~sardines~^24^^ +~15089~^1^1^~cup~^89^^ +~15089~^2^1^~can~^370^^ +~15089~^3^1^~sardine~^38^^ +~15090~^1^3^~oz~^85^^ +~15090~^2^1^~oz, boneless~^28.35^^ +~15090~^3^1^~fillet~^64^^ +~15090~^4^1^~cup~^166^^ +~15091~^1^1^~fillet~^129^^ +~15091~^2^3^~oz~^85^^ +~15092~^1^1^~fillet~^101^^ +~15092~^2^3^~oz~^85^^ +~15093~^1^3^~oz~^85^^ +~15093~^2^1^~fillet~^238^^ +~15094~^1^3^~oz~^85^^ +~15094~^2^1^~fillet~^184^^ +~15095~^1^3^~oz~^85^^ +~15096~^1^3^~oz~^85^^ +~15097~^1^3^~oz~^85^^ +~15097~^2^1^~fillet~^238^^ +~15098~^1^3^~oz~^85^^ +~15098~^2^1^~fillet~^186^^ +~15099~^1^3^~oz~^85^^ +~15100~^1^3^~oz~^85^^ +~15101~^1^3^~oz~^85^^ +~15101~^2^1^~fillet~^218^^ +~15102~^1^3^~oz~^85^^ +~15102~^2^1^~fillet~^170^^ +~15103~^1^1^~fillet~^64^^ +~15103~^2^3^~oz~^85^^ +~15104~^1^3^~oz~^85^^ +~15105~^1^3^~oz~^85^^ +~15105~^2^1^~cup, cooked~^136^^ +~15105~^3^1^~piece (4-1/2" x 2-1/8" x 7/8")~^145^^ +~15105~^4^1^~oz, boneless~^28.35^^ +~15105~^5^1^~cubic inch, boneless~^17^^ +~15106~^1^1^~oz~^28.35^^ +~15106~^2^3^~oz~^85^^ +~15107~^1^3^~oz~^85^^ +~15107~^2^1^~fillet~^159^^ +~15108~^1^1^~fillet~^48^^ +~15108~^2^3^~oz~^85^^ +~15109~^1^1^~oz~^28.35^^ +~15109~^2^3^~oz~^85^^ +~15110~^1^3^~oz~^85^^ +~15110~^2^1^~piece (4-1/2" x 2-1/8" x 7/8")~^136^^ +~15111~^1^3^~oz~^85^^ +~15111~^2^1^~piece~^106^^ +~15112~^1^3^~oz~^85^^ +~15112~^2^.5^~fillet~^193^^ +~15113~^1^.5^~fillet~^150^^ +~15113~^2^3^~oz~^85^^ +~15114~^1^1^~fillet~^79^^ +~15114~^2^3^~oz~^85^^ +~15115~^1^3^~oz~^85^^ +~15115~^2^1^~fillet~^159^^ +~15116~^1^1^~fillet~^143^^ +~15116~^2^3^~oz~^85^^ +~15117~^1^3^~oz~^85^^ +~15118~^1^3^~oz~^85^^ +~15119~^1^1^~cup, solid or chunks~^146^^ +~15119~^2^1^~oz~^28.35^^ +~15119~^3^1^~can~^171^^ +~15119~^4^3^~oz~^85^^ +~15119~^5^1^~can (12.5 oz), drained~^321^^ +~15121~^1^1^~oz~^28.35^^ +~15121~^2^3^~oz~^85^^ +~15121~^3^1^~can~^165^^ +~15121~^4^1^~cup, solid or chunks~^154^^ +~15121~^5^1^~can (12.5 oz), drained~^315^^ +~15123~^1^3^~oz~^85^^ +~15123~^2^.5^~fillet~^198^^ +~15124~^1^3^~oz~^85^^ +~15124~^2^1^~can~^178^^ +~15126~^1^3^~oz~^85^^ +~15126~^2^1^~can~^172^^ +~15127~^1^1^~oz, boneless~^28.35^^ +~15127~^2^1^~cubic inch, boneless~^16^^ +~15127~^3^3^~oz~^85^^ +~15128~^1^3^~oz~^85^^ +~15128~^2^1^~cup~^205^^ +~15129~^1^3^~oz~^85^^ +~15129~^2^.5^~fillet~^204^^ +~15130~^1^3^~oz~^85^^ +~15130~^2^1^~fillet~^198^^ +~15131~^1^1^~cup, cooked~^136^^ +~15131~^2^1^~oz, boneless~^28.35^^ +~15131~^3^1^~cubic inch, boneless~^17^^ +~15131~^4^3^~oz~^85^^ +~15132~^1^1^~fillet~^92^^ +~15132~^2^3^~oz~^85^^ +~15133~^1^1^~fillet~^72^^ +~15133~^2^3^~oz~^85^^ +~15134~^1^3^~oz~^85^^ +~15134~^2^.5^~fillet~^153^^ +~15135~^1^3^~oz~^85^^ +~15135~^2^.5^~fillet~^187^^ +~15136~^1^3^~oz~^85^^ +~15136~^2^1^~leg~^172^^ +~15137~^1^1^~leg~^134^^ +~15137~^2^3^~oz~^85^^ +~15138~^1^3^~oz~^85^^ +~15139~^1^3^~oz~^85^^ +~15139~^2^1^~crab~^21^^ +~15140~^1^1^~cup, flaked and pieces~^118^^ +~15140~^2^1^~cup (not packed)~^135^^ +~15140~^3^1^~oz~^28.35^^ +~15140~^4^3^~oz~^85^^ +~15141~^1^1^~cup~^135^^ +~15141~^2^1^~oz~^28.35^^ +~15141~^3^1^~can (6.5 oz), drained~^125^^ +~15141~^4^3^~oz~^85^^ +~15142~^1^1^~cake~^60^^ +~15143~^1^3^~oz~^85^^ +~15143~^2^1^~crab~^163^^ +~15144~^1^3^~oz~^85^^ +~15145~^1^3^~oz~^85^^ +~15145~^2^8^~crayfish~^27^^ +~15146~^1^3^~oz~^85^^ +~15147~^1^1^~lobster~^150^^ +~15147~^2^3^~oz~^85^^ +~15148~^1^1^~cup~^145^^ +~15148~^2^3^~oz~^85^^ +~15149~^1^1^~medium~^6.0^^ +~15149~^2^1^~small~^5.0^^ +~15149~^3^3^~oz~^85^^ +~15149~^4^4^~large~^28^^ +~15150~^1^3^~oz~^85^^ +~15150~^2^4^~large~^30^^ +~15151~^1^3^~oz~^85^^ +~15151~^2^4^~large~^22^^ +~15152~^1^1^~cup~^128^^ +~15152~^2^1^~oz~^28.35^^ +~15152~^3^1^~can (4.5 oz), drained~^128^^ +~15152~^4^10^~shrimp~^32^^ +~15152~^5^3^~oz~^85^^ +~15153~^1^3^~oz~^85^^ +~15154~^1^3^~oz~^85^^ +~15154~^2^1^~lobster~^209^^ +~15155~^1^3^~oz~^85^^ +~15156~^1^3^~oz~^85^^ +~15157~^1^3^~oz~^85^^ +~15157~^2^1^~large~^20^^ +~15157~^3^1^~lb (with shell), yield after shell removed~^68.0^^ +~15157~^4^1^~medium~^14.5^^ +~15157~^5^1^~small~^9.0^^ +~15157~^6^1^~cup (with liquid and clams)~^227^^ +~15158~^1^3^~oz~^85^^ +~15158~^2^20^~small~^188^^ +~15159~^1^3^~oz~^85^^ +~15159~^2^20^~small~^190^^ +~15160~^1^3^~oz~^85^^ +~15160~^2^1^~cup~^160^^ +~15162~^1^3^~oz~^85^^ +~15162~^2^1^~cup~^240^^ +~15163~^1^3^~oz~^85^^ +~15164~^1^1^~cup~^150^^ +~15164~^2^1^~oz~^28.35^^ +~15164~^3^1^~large~^20^^ +~15164~^4^1^~medium~^16^^ +~15164~^5^1^~small~^10.0^^ +~15164~^6^3^~oz~^85^^ +~15165~^1^3^~oz~^85^^ +~15166~^1^3^~oz~^85^^ +~15167~^1^6^~medium~^84^^ +~15167~^2^1^~cup~^248^^ +~15168~^1^3^~oz~^85^^ +~15168~^2^6^~medium~^88^^ +~15169~^1^3^~oz~^85^^ +~15169~^2^6^~medium~^42^^ +~15170~^1^3^~oz~^85^^ +~15170~^2^1^~cup, undrained~^248^^ +~15170~^3^1^~oz, drained~^23^^ +~15170~^4^1^~can (12 oz), oysters and liquid~^272^^ +~15170~^5^1^~oyster~^8.0^^ +~15170~^6^1^~cup, drained~^162^^ +~15171~^1^1^~medium~^50^^ +~15171~^2^3^~oz~^85^^ +~15172~^1^1^~unit 2 large or 5 small~^30^^ +~15172~^2^3^~oz~^85^^ +~15173~^1^2^~large~^31^^ +~15174~^1^3^~oz~^85^^ +~15175~^1^1^~oz, boneless~^28.35^^ +~15175~^2^3^~oz~^85^^ +~15176~^1^3^~oz~^85^^ +~15177~^1^3^~oz~^85^^ +~15178~^1^3^~oz~^85^^ +~15179~^1^1^~oz~^28.35^^ +~15179~^2^3^~oz~^85^^ +~15180~^1^3^~oz~^85^^ +~15180~^2^1^~can~^369^^ +~15181~^1^3^~oz~^85^^ +~15181~^2^1^~can~^454^^ +~15182~^1^3^~oz~^85^^ +~15182~^2^1^~can~^369^^ +~15183~^1^3^~oz~^85^^ +~15183~^2^1^~can~^171^^ +~15184~^1^3^~oz~^85^^ +~15184~^2^1^~can~^165^^ +~15185~^1^3^~oz~^85^^ +~15185~^2^1^~can~^178^^ +~15186~^1^3^~oz~^85^^ +~15186~^2^1^~can~^172^^ +~15187~^1^1^~fillet~^62^^ +~15187~^2^3^~oz~^85^^ +~15188~^1^1^~fillet~^124^^ +~15188~^2^3^~oz~^85^^ +~15189~^1^1^~fillet~^117^^ +~15189~^2^3^~oz~^85^^ +~15190~^1^1^~fillet~^90^^ +~15190~^2^3^~oz~^85^^ +~15191~^1^1^~fillet~^25^^ +~15191~^2^3^~oz~^85^^ +~15192~^1^1^~fillet~^90^^ +~15192~^2^3^~oz~^85^^ +~15193~^1^1^~fillet~^95^^ +~15193~^2^3^~oz~^85^^ +~15194~^1^3^~oz~^85^^ +~15194~^2^1^~fillet~^159^^ +~15195~^1^3^~oz~^85^^ +~15195~^2^1^~fillet~^154^^ +~15196~^1^3^~oz~^85^^ +~15196~^2^.5^~fillet~^159^^ +~15197~^1^1^~fillet~^144^^ +~15197~^2^3^~oz~^85^^ +~15198~^1^3^~oz~^85^^ +~15198~^2^1^~fillet~^151^^ +~15199~^1^3^~oz~^85^^ +~15199~^2^.5^~fillet~^151^^ +~15200~^1^3^~oz~^85^^ +~15200~^2^.5^~fillet~^154^^ +~15201~^1^1^~oz, boneless~^28.35^^ +~15201~^2^1^~cubic inch, boneless~^17^^ +~15201~^3^1^~fillet~^176^^ +~15201~^4^3^~oz~^85^^ +~15202~^1^3^~oz~^85^^ +~15203~^1^3^~oz~^85^^ +~15204~^1^1^~fillet~^124^^ +~15204~^2^3^~oz~^85^^ +~15205~^1^3^~oz~^85^^ +~15205~^2^.5^~fillet~^151^^ +~15206~^1^.5^~fillet~^137^^ +~15206~^2^3^~oz~^85^^ +~15207~^1^1^~oz~^28.35^^ +~15207~^2^3^~oz~^85^^ +~15208~^1^3^~oz~^85^^ +~15208~^2^.5^~fillet~^151^^ +~15209~^1^3^~oz~^85^^ +~15209~^2^.5^~fillet~^154^^ +~15210~^1^3^~oz~^85^^ +~15210~^2^.5^~fillet~^154^^ +~15211~^1^3^~oz~^85^^ +~15211~^2^.5^~fillet~^154^^ +~15212~^1^3^~oz~^85^^ +~15212~^2^.5^~fillet~^124^^ +~15213~^1^1^~fillet~^50^^ +~15213~^2^3^~oz~^85^^ +~15214~^1^3^~oz~^85^^ +~15214~^2^1^~fillet~^186^^ +~15215~^1^1^~fillet~^144^^ +~15215~^2^3^~oz~^85^^ +~15216~^1^1^~fillet~^50^^ +~15216~^2^3^~oz~^85^^ +~15217~^1^1^~fillet~^124^^ +~15217~^2^3^~oz~^85^^ +~15218~^1^1^~fillet~^37^^ +~15218~^2^3^~oz~^85^^ +~15219~^1^1^~fillet~^62^^ +~15219~^2^3^~oz~^85^^ +~15220~^1^3^~oz~^85^^ +~15220~^2^.5^~fillet~^154^^ +~15221~^1^3^~oz~^85^^ +~15222~^1^3^~oz~^85^^ +~15222~^2^.5^~fillet~^159^^ +~15223~^1^3^~oz~^85^^ +~15223~^2^1^~fillet~^154^^ +~15224~^1^.5^~fillet~^119^^ +~15224~^2^3^~oz~^85^^ +~15225~^1^.5^~fillet~^146^^ +~15225~^2^3^~oz~^85^^ +~15226~^1^3^~oz~^85^^ +~15226~^2^1^~crab~^127^^ +~15227~^1^3^~oz~^85^^ +~15228~^1^3^~oz~^85^^ +~15228~^2^1^~lobster~^163^^ +~15229~^1^3^~oz~^85^^ +~15230~^1^3^~oz~^85^^ +~15231~^1^1^~medium~^25^^ +~15231~^2^3^~oz~^85^^ +~15232~^1^3^~oz~^85^^ +~15233~^1^1^~fillet~^143^^ +~15233~^2^3^~oz~^85^^ +~15234~^1^3^~oz~^85^^ +~15234~^2^1^~fillet~^159^^ +~15235~^1^1^~fillet~^143^^ +~15235~^2^3^~oz~^85^^ +~15236~^1^3^~oz~^85^^ +~15236~^2^.5^~fillet~^198^^ +~15237~^1^3^~oz~^85^^ +~15237~^2^.5^~fillet~^178^^ +~15238~^1^3^~oz~^85^^ +~15238~^2^1^~fillet~^159^^ +~15239~^1^1^~fillet~^143^^ +~15239~^2^3^~oz~^85^^ +~15240~^1^1^~fillet~^79^^ +~15240~^2^3^~oz~^85^^ +~15241~^1^1^~fillet~^71^^ +~15241~^2^3^~oz~^85^^ +~15242~^1^3^~oz~^85^^ +~15242~^2^8^~crayfish~^27^^ +~15243~^1^3^~oz~^85^^ +~15244~^1^3^~oz~^85^^ +~15244~^2^6^~medium~^59^^ +~15245~^1^3^~oz~^85^^ +~15245~^2^6^~medium~^84^^ +~15246~^1^3^~oz~^85^^ +~15246~^2^6^~medium~^59^^ +~15247~^1^3^~oz~^85^^ +~15247~^2^.5^~fillet~^178^^ +~15250~^1^1^~cup, sliced~^127^^ +~15250~^2^1^~oz cooked, yield~^17^^ +~15251~^1^1^~oz~^28.35^^ +~15252~^1^1^~oz~^28.35^^ +~15253~^1^3^~oz~^85^^ +~15253~^2^1^~can total can contents~^417^12^6.621 +~15260~^1^3^~oz~^85^^ +~15260~^2^1^~can drained solids (total)~^315^17^12.987 +~15261~^1^1^~fillet~^116^43^35.949 +~15262~^1^1^~fillet~^87^21^33.94 +~15264~^1^3^~oz~^85^^ +~15264~^2^1^~can drained solids, bone and skin removed~^247^12^15.86 +~15265~^1^3^~oz~^85^^ +~15265~^2^1^~can drained solids, bone and skin removed~^242^17^25.225 +~15266~^1^3^~oz~^85^^ +~15267~^1^3^~oz~^85^^ +~15268~^1^3^~oz~^85^^ +~15269~^1^3^~oz~^85^^ +~15270~^1^3^~oz~^85^^ +~15271~^1^3^~oz~^85^^ +~15274~^1^1^~filet~^149^29^89.043 +~15274~^2^1^~fish~^332^29^191.505 +~16001~^1^1^~cup~^197^^ +~16002~^1^1^~cup~^230^^ +~16003~^1^1^~cup~^296^^ +~16004~^1^1^~slice~^14.0^^ +~16005~^1^1^~cup~^253^^ +~16006~^1^1^~cup~^254^^ +~16007~^1^1^~cup~^266^^ +~16008~^1^1^~cup~^259^^ +~16009~^1^1^~cup~^253^^ +~16010~^1^1^~cup~^249^35^8.832 +~16011~^1^1^~cup~^246^71^ +~16014~^1^1^~cup~^194^^ +~16014~^2^1^~tbsp~^12.1^^ +~16015~^1^1^~cup~^172^^ +~16016~^1^1^~cup~^184^^ +~16017~^1^1^~cup~^185^^ +~16018~^1^1^~cup~^240^^ +~16019~^1^1^~cup~^195^^ +~16020~^1^1^~cup~^177^^ +~16021~^1^1^~cup~^260^^ +~16022~^1^1^~cup~^184^^ +~16023~^1^1^~cup~^177^^ +~16024~^1^1^~cup~^183^^ +~16025~^1^1^~cup~^177^^ +~16026~^1^1^~cup~^262^^ +~16027~^1^1^~cup~^184^^ +~16028~^1^1^~cup~^177^^ +~16028~^2^1^~tbsp~^11.0^^ +~16029~^1^1^~cup~^256^^ +~16030~^1^1^~cup~^184^^ +~16031~^1^1^~cup~^177^^ +~16032~^1^1^~cup~^184^^ +~16032~^2^1^~tbsp~^12.2^^ +~16033~^1^1^~cup~^177^^ +~16033~^2^1^~tbsp~^11.0^^ +~16034~^1^1^~cup~^256^1^ +~16034~^2^1^~tbsp~^16^1^ +~16034~^3^1^~can~^436^4^10.552 +~16035~^1^1^~cup~^184^^ +~16036~^1^1^~cup~^177^^ +~16037~^1^1^~cup~^208^^ +~16038~^1^1^~cup~^182^^ +~16039~^1^1^~cup~^262^^ +~16040~^1^1^~cup~^210^^ +~16041~^1^1^~cup~^169^^ +~16042~^1^1^~cup~^193^^ +~16042~^2^1^~tbsp~^12.0^^ +~16043~^1^1^~cup~^171^^ +~16043~^2^1^~tbsp~^10.6^^ +~16044~^1^1^~cup~^240^^ +~16044~^2^1^~can~^442^4^11.707 +~16045~^1^1^~cup~^215^^ +~16046~^1^1^~cup~^179^^ +~16047~^1^1^~cup~^196^^ +~16048~^1^1^~cup~^177^^ +~16049~^1^1^~cup~^202^^ +~16049~^2^1^~tbsp~^12.6^^ +~16050~^1^1^~cup~^179^^ +~16050~^2^1^~tbsp~^11.2^^ +~16051~^1^1^~cup~^262^^ +~16052~^1^1^~cup~^150^^ +~16052~^2^1^~tbsp~^9.4^^ +~16053~^1^1^~cup~^170^^ +~16054~^1^1^~cup~^256^^ +~16055~^1^1^~cup~^103^^ +~16055~^2^1^~tbsp~^6.0^^ +~16056~^1^1^~cup~^200^^ +~16056~^2^1^~tbsp~^12.5^^ +~16057~^1^1^~cup~^164^^ +~16058~^1^1^~cup~^240^^ +~16058~^2^1^~can (total can contents)~^448^4^6.339 +~16059~^1^1^~cup~^256^^ +~16059~^2^1^~tbsp~^16^^ +~16060~^1^1^~cup~^167^^ +~16061~^1^1^~cup~^171^^ +~16062~^1^1^~cup~^167^^ +~16062~^2^1^~tbsp~^10.5^^ +~16063~^1^1^~cup~^171^^ +~16064~^1^1^~cup~^240^^ +~16065~^1^1^~cup~^240^^ +~16067~^1^1^~cup~^210^^ +~16068~^1^1^~cup~^194^^ +~16069~^1^1^~cup~^192^^ +~16069~^2^1^~tablespoon~^12.0^^ +~16070~^1^1^~cup~^198^^ +~16070~^2^1^~tbsp~^12.3^^ +~16071~^1^1^~cup~^178^^ +~16071~^2^1^~tbsp~^11.1^^ +~16072~^1^1^~cup~^188^^ +~16072~^2^1^~tbsp~^11.7^^ +~16073~^1^1^~cup~^241^^ +~16074~^1^1^~cup~^202^^ +~16075~^1^1^~cup~^182^^ +~16076~^1^1^~cup~^180^^ +~16077~^1^1^~cup~^166^^ +~16078~^1^1^~cup~^196^^ +~16079~^1^1^~cup~^177^^ +~16080~^1^1^~cup~^207^^ +~16080~^2^1^~tbsp~^13.0^^ +~16081~^1^1^~cup~^202^^ +~16082~^1^1^~cup~^140^^ +~16083~^1^1^~cup~^207^^ +~16084~^1^1^~cup~^180^^ +~16084~^2^1^~oz dry, yield after cooking~^69^^ +~16085~^1^1^~cup~^197^^ +~16085~^2^1^~lb~^453.6^^ +~16086~^1^1^~cup~^196^^ +~16086~^2^1^~tbsp~^12.2^^ +~16087~^1^1^~oz~^28.35^3^0 +~16087~^2^1^~cup~^146^3^0 +~16088~^1^1^~cup in shell, edible yield~^63^^ +~16088~^2^1^~cup, shelled~^180^^ +~16088~^3^1^~oz shelled~^28.35^^ +~16088~^4^33^~nuts~^28^^ +~16089~^1^1^~cup, chopped~^144^^ +~16089~^2^1^~oz shelled (32 nuts)~^28.35^^ +~16090~^1^1^~oz~^28.35^^ +~16090~^2^1^~peanut~^1.0^^ +~16091~^1^1^~cup~^146^^ +~16091~^2^1^~oz~^28.35^^ +~16092~^1^1^~cup~^147^^ +~16092~^2^1^~oz~^28.35^^ +~16093~^1^1^~cup~^146^^ +~16093~^2^1^~oz~^28.35^^ +~16094~^1^1^~cup~^144^^ +~16094~^2^1^~oz~^28.35^^ +~16095~^1^1^~cup~^146^1^ +~16095~^2^1^~oz~^28.35^^ +~16096~^1^1^~cup~^143^^ +~16096~^2^1^~oz~^28.35^^ +~16097~^1^2^~tbsp~^32^1^ +~16097~^2^1^~cup~^258^1^ +~16098~^1^2^~tbsp~^32^7^0 +~16098~^2^1^~cup~^258^1^ +~16099~^1^1^~cup~^60^^ +~16099~^2^1^~oz~^28.35^^ +~16100~^1^1^~cup~^60^^ +~16100~^2^1^~oz~^28.35^^ +~16101~^1^1^~cup~^205^^ +~16102~^1^1^~cup~^168^^ +~16103~^1^1^~cup~^238^110^ +~16103~^2^1^~can~^442^13^6.748 +~16104~^1^1^~cup~^144^^ +~16104~^2^1^~oz cooked, yield~^16^^ +~16104~^3^1^~strip~^5.0^^ +~16106~^1^1^~cup~^88^^ +~16106~^2^1^~oz~^28.35^^ +~16107~^1^1^~link~^25^^ +~16107~^2^1^~patty~^38^^ +~16107~^3^1^~slice~^28^^ +~16108~^1^1^~cup~^186^1^ +~16109~^1^1^~cup~^172^^ +~16109~^2^1^~tbsp~^10.7^^ +~16110~^1^1^~cup~^172^^ +~16111~^1^1^~cup~^93^^ +~16112~^1^1^~tbsp~^17^^ +~16112~^2^1^~cup~^275^^ +~16113~^1^1^~cup~^175^^ +~16114~^1^1^~cup~^166^^ +~16115~^1^1^~cup, stirred~^84^^ +~16115~^2^1^~tbsp~^5.2^^ +~16116~^1^1^~cup, stirred~^85^^ +~16117~^1^1^~cup~^105^6^3.534 +~16117~^2^1^~tbsp~^6.6^2^ +~16118~^1^1^~cup, stirred~^88^^ +~16118~^2^1^~tbsp~^5.5^^ +~16119~^1^1^~cup~^122^^ +~16120~^1^1^~cup~^243^7^0 +~16120~^2^1^~fl oz~^30.6^^ +~16121~^1^1^~oz~^28.35^^ +~16122~^1^1^~oz~^28.35^^ +~16123~^1^1^~tbsp~^16^1^ +~16123~^2^1^~tsp~^5.3^1^ +~16123~^3^1^~cup~^255^1^ +~16123~^4^1^~individual packet~^8.9^1^ +~16124~^1^1^~tbsp~^18^^ +~16124~^2^1^~tsp~^6.0^^ +~16125~^1^1^~tbsp~^18^^ +~16125~^2^1^~tsp~^6.0^^ +~16125~^3^.25^~cup~^58^^ +~16126~^1^.5^~cup~^126^^ +~16126~^2^.25^~block~^81^^ +~16126~^3^.2^~block~^91^^ +~16127~^1^1^~piece (2-1/2" x 2-3/4" x 1")~^120^^ +~16127~^2^1^~cup (1/2" cubes)~^248^^ +~16127~^3^1^~cubic inch~^18^^ +~16127~^4^.25^~block~^116^^ +~16127~^5^.2^~block~^90^^ +~16128~^1^1^~piece~^17^^ +~16129~^1^1^~oz~^28.35^^ +~16129~^2^1^~piece~^13.0^^ +~16130~^1^1^~cup~^122^^ +~16132~^1^1^~block~^11.0^^ +~16133~^1^1^~cup~^167^^ +~16134~^1^1^~cup~^171^^ +~16135~^1^1^~cup~^182^^ +~16136~^1^1^~cup~^172^^ +~16137~^1^1^~tablespoon~^15.0^^ +~16137~^2^1^~cup~^246^^ +~16138~^1^1^~patty (approx 2-1/4" dia)~^17^^ +~16139~^1^1^~cup~^243^15^0 +~16139~^2^1^~fl oz~^30.6^^ +~16144~^1^1^~cup~^192^^ +~16145~^1^1^~can drained solids~^266^4^8.549 +~16146~^1^1^~can drained solids~^277^4^13.827 +~16147~^1^1^~pattie~^70^16^2.309 +~16149~^1^2^~tbsp~^31^^ +~16150~^1^2^~tablespoon~^36^^ +~16155~^1^2^~tbsp~^32^^ +~16155~^2^1^~cup~^258^^ +~16156~^1^2^~tbsp~^32^^ +~16156~^2^1^~cup~^258^^ +~16157~^1^1^~cup~^92^^ +~16158~^1^1^~tbsp~^15.0^^ +~16158~^2^1^~cup~^246^^ +~16159~^1^.2^~block~^91^^ +~16160~^1^.25^~block~^122^^ +~16161~^1^1^~slice~^84^^ +~16162~^1^1^~slice~^84^^ +~16163~^1^1^~slice~^84^^ +~16164~^1^1^~slice~^84^^ +~16165~^1^1^~slice~^84^^ +~16166~^1^1^~cup~^243^7^0 +~16166~^2^1^~fl oz~^30.6^^ +~16167~^1^2^~tbsp~^32^^ +~16167~^2^1^~cup~^258^^ +~16168~^1^1^~cup~^243^9^0 +~16168~^2^1^~fl oz~^30.6^^ +~16171~^1^1^~cup~^242^6^12.64 +~16171~^2^1^~can~^444^6^7.245 +~16172~^1^1^~cup~^231^6^5.755 +~16172~^2^1^~can~^445^6^5.87 +~16173~^1^1^~cup~^233^12^4.896 +~16173~^2^1^~tbsp~^15^12^.742 +~16200~^1^.5^~cup~^130^1^ +~16200~^2^1^~serving~^130^1^ +~16201~^1^.5^~cup~^130^1^ +~16201~^2^1^~serving~^130^1^ +~16202~^1^.5^~cup~^120^1^ +~16202~^2^1^~serving~^120^1^ +~16203~^1^.5^~cup~^120^1^ +~16203~^2^1^~serving~^120^1^ +~16204~^1^.5^~cup~^120^1^ +~16204~^2^1^~serving~^120^1^ +~16210~^1^.2^~package~^79^1^ +~16211~^1^.2^~package~^79^1^ +~16212~^1^.2^~package~^79^1^ +~16213~^1^.2^~package~^79^1^ +~16214~^1^.2^~package~^91^1^ +~16215~^1^1^~cup~^243^1^ +~16215~^2^1^~serving~^243^1^ +~16216~^1^1^~cup~^243^1^ +~16216~^2^1^~serving~^243^1^ +~16219~^1^1^~cup~^243^1^ +~16219~^2^1^~serving~^243^1^ +~16222~^1^1^~cup~^243^6^0 +~16223~^1^1^~cup~^243^4^0 +~16225~^1^1^~cup~^243^6^0 +~16227~^1^1^~cup~^243^4^0 +~16228~^1^1^~cup~^243^2^ +~16229~^1^1^~cup~^243^2^ +~16230~^1^1^~cup~^243^4^0 +~16231~^1^1^~cup~^243^4^0 +~16235~^1^1^~cup~^243^1^ +~16236~^1^1^~cup~^243^1^ +~16237~^1^1^~cup~^243^1^ +~16238~^1^1^~cup~^243^1^ +~16239~^1^1^~cup~^243^1^ +~16240~^1^1^~cup~^243^1^ +~16241~^1^1^~cup~^243^1^ +~16242~^1^1^~cup~^243^1^ +~16243~^1^1^~cup~^243^1^ +~16244~^1^1^~cup~^243^1^ +~16245~^1^1^~cup~^243^1^ +~16246~^1^.5^~cup~^122^1^ +~16247~^1^1^~cup~^243^1^ +~16248~^1^1^~cup~^243^1^ +~16249~^1^1^~cup~^243^1^ +~16250~^1^1^~container~^227^1^ +~16251~^1^1^~container~^170^1^ +~16252~^1^1^~container~^227^1^ +~16253~^1^1^~container~^170^1^ +~16254~^1^1^~container~^170^1^ +~16255~^1^1^~container~^170^1^ +~16256~^1^1^~container~^170^1^ +~16257~^1^1^~container~^170^1^ +~16258~^1^1^~container~^170^1^ +~16259~^1^1^~container~^170^1^ +~16260~^1^1^~tbsp~^15.0^1^ +~16261~^1^1^~tbsp~^15.0^1^ +~16262~^1^1^~tbsp~^15.0^1^ +~16271~^1^.2^~package~^79^1^ +~16272~^1^.2^~package~^91^1^ +~16273~^1^3^~oz~^85^1^ +~16274~^1^3^~oz~^85^1^ +~16275~^1^3^~oz~^85^1^ +~16276~^1^.2^~package~^79^1^ +~16277~^1^.2^~package~^79^1^ +~16278~^1^.2^~package~^91^1^ +~16279~^1^2^~oz~^56^1^ +~16279~^2^3^~oz~^84^1^ +~16281~^1^2^~oz~^56^1^ +~16281~^2^3^~oz~^84^1^ +~16302~^1^1^~cup~^230^^ +~16315~^1^1^~cup~^172^^ +~16316~^1^1^~cup~^240^^ +~16317~^1^1^~cup~^185^^ +~16320~^1^1^~cup~^177^^ +~16323~^1^1^~cup~^177^^ +~16325~^1^1^~cup~^177^^ +~16326~^1^1^~cup~^262^^ +~16328~^1^1^~cup~^177^^ +~16331~^1^1^~cup~^177^^ +~16333~^1^1^~cup~^177^^ +~16335~^1^1^~cup cup rinsed solids~^158^4^8.084 +~16336~^1^1^~cup~^177^^ +~16337~^1^1^~cup~^256^1^ +~16337~^2^1^~can total can contents~^436^4^10.552 +~16338~^1^1^~cup~^182^^ +~16341~^1^1^~cup~^169^^ +~16343~^1^1^~cup~^171^^ +~16345~^1^1^~cup~^169^4^1.711 +~16345~^2^1^~can~^258^4^3.69 +~16346~^1^1^~cup~^179^^ +~16347~^1^1^~cup~^240^^ +~16347~^2^1^~can total can contents~^442^4^11.707 +~16348~^1^1^~cup~^177^^ +~16350~^1^1^~cup~^179^^ +~16353~^1^1^~cup~^170^^ +~16357~^1^1^~cup~^164^^ +~16358~^1^1^~can drained~^253^4^6.506 +~16359~^1^1^~can drained, rinsed~^254^4^1.996 +~16359~^2^1^~cup drained, rinsed~^152^4^2.391 +~16360~^1^1^~cup~^240^1^ +~16360~^2^1^~can total can contents~^448^4^6.339 +~16361~^1^1^~cup~^171^^ +~16363~^1^1^~cup~^171^^ +~16368~^1^1^~cup~^194^^ +~16370~^1^1^~cup~^198^^ +~16372~^1^1^~cup~^188^^ +~16375~^1^1^~cup~^182^^ +~16377~^1^1^~cup~^166^^ +~16379~^1^1^~cup~^177^^ +~16381~^1^1^~cup~^202^^ +~16384~^1^1^~cup~^180^^ +~16386~^1^1^~cup~^196^^ +~16389~^1^1^~cup,~^144^^ +~16389~^2^1^~oz shelled (32 nuts)~^28.35^^ +~16390~^1^1^~cup~^146^^ +~16390~^2^1^~oz~^28.35^^ +~16390~^3^1^~peanut~^1.0^^ +~16392~^1^1^~cup~^147^^ +~16392~^2^1^~oz~^28.35^^ +~16394~^1^1^~cup~^144^^ +~16394~^2^1^~oz~^28.35^^ +~16396~^1^1^~cup~^143^^ +~16396~^2^1^~oz~^28.35^^ +~16397~^1^2^~tbsp~^32^1^ +~16397~^2^1^~cup~^258^1^ +~16398~^1^2^~tbsp~^32^^ +~16398~^2^1^~cup~^258^^ +~16399~^1^1^~tbsp~^16^4^1.06 +~16402~^1^1^~cup~^168^^ +~16403~^1^1^~cup~^238^84^ +~16403~^2^1^~tablespoon~^16^^ +~16409~^1^1^~cup~^172^^ +~16410~^1^1^~cup~^172^^ +~16420~^1^1^~oz~^28.35^^ +~16422~^1^1^~oz~^28.35^^ +~16424~^1^1^~tbsp~^14.2^11^1.471 +~16424~^2^1^~tsp~^4.5^11^.82 +~16424~^3^1^~cup~^255^^ +~16425~^1^1^~tbsp~^15^7^1.604 +~16425~^2^1^~tsp~^4.9^7^.69 +~16425~^3^.25^~cup~^58^^ +~16426~^1^.5^~cup~^126^^ +~16426~^2^.25^~block~^81^^ +~16427~^1^.5^~cup~^124^^ +~16427~^2^.25^~block~^116^^ +~16428~^1^1^~piece~^17^^ +~16429~^1^1^~piece~^13.0^^ +~16432~^1^1^~block~^11.0^^ +~16434~^1^1^~cup~^171^^ +~16436~^1^1^~cup~^172^^ +~16500~^1^2^~links~^46^1^ +~16502~^1^1^~link~^51^1^ +~16504~^1^6^~pieces~^80^1^ +~16505~^1^1^~piece~^92^1^ +~16506~^1^.25^~cup~^55^1^ +~16507~^1^1^~slice , 5/8"~^85^1^ +~16508~^1^6^~pieces~^85^1^ +~16509~^1^1^~link~^35^1^ +~16510~^1^1^~cup~^230^1^ +~16511~^1^2^~slices~^92^1^ +~16512~^1^.25^~cup~^55^1^ +~16513~^1^2^~pieces~^90^1^ +~16514~^1^2^~pieces~^85^1^ +~16515~^1^1^~link~^31^1^ +~16516~^1^2^~slices~^92^1^ +~16517~^1^1^~piece~^92^1^ +~16518~^1^1^~link~^38^1^ +~16519~^1^1^~link~^48^1^ +~16521~^1^.5^~cup~^85^1^ +~16522~^1^2^~slices~^72^1^ +~16523~^1^.25^~cup~^55^1^ +~16524~^1^1^~link~^31^^ +~16525~^1^2^~slices (3/8" thick)~^55^1^ +~16526~^1^1^~slices , 3/8"~^55^1^ +~16527~^1^2^~slices , 3/8"~^55^1^ +~16528~^1^1^~slice , 3/4"~^85^1^ +~16529~^1^1^~patty~^64^1^ +~16531~^1^2^~links~^45^1^ +~16532~^1^1^~slice , 5/8"~^55^1^ +~16533~^1^1^~slice , 3/8"~^55^1^ +~16534~^1^1^~piece~^71^1^ +~16535~^1^2^~strip~^16^1^ +~16536~^1^1^~slice , 3/8"~^55^1^ +~16538~^1^1^~Patty~^38^1^ +~16542~^1^2^~strips~^16^1^ +~16546~^1^2^~links~^45^1^ +~16548~^1^1^~burger~^64^1^ +~16549~^1^1^~burger~^71^1^ +~16551~^1^1^~burger~^67^1^ +~16552~^1^1^~burger~^64^1^ +~16554~^1^1^~burger~^67^1^ +~16555~^1^5^~Wings~^85^1^ +~16556~^1^4^~nuggets~^86^1^ +~16557~^1^1^~patty~^71^1^ +~16560~^1^1^~dog~^71^1^ +~16561~^1^4^~pieces~^76^1^ +~16565~^1^.667^~cup~^55^1^ +~16570~^1^1^~patty~^71^1^ +~16579~^1^1^~patty~^71^1^ +~16581~^1^1^~patty~^96^1^ +~16584~^1^1^~patty~^71^1^ +~16585~^1^1^~patty~^71^1^ +~16586~^1^1^~patty~^71^1^ +~16588~^1^1^~patty~^67^1^ +~16590~^1^1^~sauce~^142^1^ +~16591~^1^1^~link~^40^1^ +~16592~^1^1^~burger~^64^1^ +~16593~^1^1^~patty~^38^1^ +~16594~^1^1^~entree~^284^1^ +~16596~^1^1^~burger~^114^1^ +~16600~^1^1^~package~^269^1^ +~16601~^1^1^~patty~^67^1^ +~16602~^1^5^~meatballs~^80^1^ +~16603~^1^1^~biscuit~^105^1^ +~16606~^1^1^~Burger~^67^1^ +~16607~^1^1^~patty~^71^1^ +~16608~^1^1^~patty~^71^1^ +~16609~^1^1^~pattie~^38^1^ +~16610~^1^1^~burger~^67^1^ +~16611~^1^5^~Wings~^85^1^ +~16615~^1^.5^~cup~^56^^ +~16616~^1^5^~nuggets~^80^^ +~16617~^1^1^~entree~^255^^ +~16618~^1^1^~burger~^67^^ +~16619~^1^1^~entree~^241^^ +~17000~^1^3^~oz~^85^^ +~17000~^2^1^~roast with bone~^325^14^103.1 +~17001~^1^1^~oz~^28.35^^ +~17001~^2^1^~lb~^453.6^^ +~17002~^1^3^~oz~^85^^ +~17002~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^242^^ +~17003~^1^1^~oz~^28.35^^ +~17003~^2^1^~lb~^453.6^^ +~17004~^1^3^~oz~^85^^ +~17004~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^187^^ +~17005~^1^1^~oz~^28.35^^ +~17005~^2^1^~lb~^453.6^^ +~17006~^1^3^~oz~^85^^ +~17006~^2^1^~unit, cooked (yield from 1 lb raw meat)~^286^^ +~17007~^1^1^~oz~^28.35^^ +~17007~^2^1^~lb~^453.6^^ +~17008~^1^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^148^^ +~17008~^2^3^~oz~^85^^ +~17009~^1^1^~oz~^28.35^^ +~17009~^2^1^~lb~^453.6^^ +~17010~^1^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^128^^ +~17010~^2^3^~oz~^85^^ +~17011~^1^1^~oz~^28.35^^ +~17011~^2^1^~lb~^453.6^^ +~17012~^1^3^~oz~^85^^ +~17012~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^265^^ +~17013~^1^1^~oz~^28.35^^ +~17013~^2^1^~lb~^453.6^^ +~17014~^1^3^~oz~^85^^ +~17014~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^218^^ +~17015~^1^1^~oz~^28.35^^ +~17015~^2^1^~lb~^453.6^^ +~17016~^1^3^~oz~^85^^ +~17016~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^269^^ +~17017~^1^1^~oz~^28.35^^ +~17017~^2^1^~lb~^453.6^^ +~17018~^1^3^~oz~^85^^ +~17018~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^238^^ +~17019~^1^1^~oz~^28.35^^ +~17019~^2^1^~lb~^453.6^^ +~17020~^1^3^~oz~^85^^ +~17020~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^262^^ +~17021~^1^1^~oz~^28.35^^ +~17021~^2^1^~lb~^453.6^^ +~17022~^1^3^~oz~^85^^ +~17022~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^201^^ +~17023~^1^1^~oz~^28.35^^ +~17023~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 120 g)~^95^^ +~17024~^1^3^~oz~^85^^ +~17024~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 120 g)~^64^^ +~17025~^1^3^~oz~^85^^ +~17025~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^269^^ +~17026~^1^1^~oz~^28.35^^ +~17026~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 120 g)~^65^^ +~17027~^1^3^~oz~^85^^ +~17027~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 120 g)~^46^^ +~17028~^1^3^~oz~^85^^ +~17028~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^193^^ +~17029~^1^1^~oz~^28.35^^ +~17029~^2^1^~lb~^453.6^^ +~17030~^1^3^~oz~^85^^ +~17030~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^229^^ +~17031~^1^3^~oz~^85^^ +~17031~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^255^^ +~17032~^1^1^~oz~^28.35^^ +~17032~^2^1^~lb~^453.6^^ +~17033~^1^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^147^^ +~17033~^2^3^~oz~^85^^ +~17034~^1^3^~oz~^85^^ +~17034~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^159^^ +~17035~^1^1^~oz~^28.35^^ +~17035~^2^1^~lb~^453.6^^ +~17036~^1^3^~oz~^85^^ +~17036~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^218^^ +~17037~^1^3^~oz~^85^^ +~17037~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^248^^ +~17038~^1^3^~oz~^85^^ +~17038~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^269^^ +~17039~^1^1^~oz~^28.35^^ +~17039~^2^1^~lb~^453.6^^ +~17040~^1^3^~oz~^85^^ +~17040~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^174^^ +~17041~^1^3^~oz~^85^^ +~17041~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^202^^ +~17042~^1^3^~oz~^85^^ +~17042~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^217^^ +~17043~^1^1^~oz~^28.35^^ +~17043~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 160 g)~^133^^ +~17044~^1^3^~oz~^85^^ +~17044~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 160 g)~^70^^ +~17045~^1^3^~oz~^85^^ +~17045~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 160 g)~^93^^ +~17046~^1^3^~oz~^85^^ +~17046~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^286^^ +~17047~^1^1^~oz~^28.35^^ +~17047~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 160 g)~^101^^ +~17048~^1^3^~oz~^85^^ +~17048~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 160 g)~^55^^ +~17049~^1^3^~oz~^85^^ +~17049~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 160 g)~^74^^ +~17050~^1^3^~oz~^85^^ +~17050~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^224^^ +~17051~^1^1^~oz~^28.35^^ +~17051~^2^1^~lb~^453.6^^ +~17052~^1^3^~oz~^85^^ +~17052~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^209^^ +~17053~^1^3^~oz~^85^^ +~17053~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^252^^ +~17054~^1^3^~oz~^85^^ +~17054~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^258^^ +~17055~^1^1^~oz~^28.35^^ +~17055~^2^1^~lb~^453.6^^ +~17056~^1^3^~oz~^85^^ +~17056~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^168^^ +~17057~^1^3^~oz~^85^^ +~17057~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^207^^ +~17058~^1^3^~oz~^85^^ +~17058~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^210^^ +~17059~^1^1^~oz~^28.35^^ +~17059~^2^1^~lb~^453.6^^ +~17060~^1^3^~oz~^85^^ +~17060~^2^1^~unit, cooked (yield from 1 lb raw meat)~^272^^ +~17061~^1^3^~oz~^85^^ +~17061~^2^1^~unit, cooked (yield from 1 lb raw meat)~^327^^ +~17062~^1^1^~oz~^28.35^^ +~17062~^2^1^~lb~^453.6^^ +~17063~^1^3^~oz~^85^^ +~17063~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^222^^ +~17064~^1^1^~oz~^28.35^^ +~17064~^2^1^~lb~^453.6^^ +~17065~^1^3^~oz~^85^^ +~17065~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^164^^ +~17066~^1^1^~oz~^28.35^^ +~17066~^2^1^~lb~^453.6^^ +~17067~^1^3^~oz~^85^^ +~17067~^2^1^~unit, cooked (yield from 1 lb raw meat)~^286^^ +~17068~^1^1^~serving~^115^1^ +~17069~^1^1^~serving~^85^1^ +~17070~^1^1^~serving~^115^1^ +~17071~^1^1^~serving~^85^1^ +~17072~^1^1^~serving~^115^1^ +~17073~^1^3^~oz~^85^^ +~17073~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^258^^ +~17074~^1^1^~serving~^115^1^ +~17075~^1^3^~oz~^85^^ +~17075~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^218^^ +~17076~^1^1^~serving~^115^1^ +~17077~^1^3^~oz~^85^^ +~17077~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 85 g)~^43^^ +~17078~^1^1^~serving~^115^1^ +~17079~^1^3^~oz~^85^^ +~17079~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 85 g)~^30^^ +~17080~^1^1^~serving~^115^1^ +~17081~^1^1^~serving~^85^1^ +~17082~^1^1^~serving~^115^1^ +~17083~^1^1^~serving~^85^1^ +~17084~^1^1^~serving~^115^1^ +~17085~^1^3^~oz~^85^^ +~17085~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^206^^ +~17086~^1^1^~serving~^115^1^ +~17087~^1^3^~oz~^85^^ +~17087~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^157^^ +~17088~^1^1^~oz~^28.35^^ +~17088~^2^1^~lb~^453.6^^ +~17089~^1^3^~oz~^85^^ +~17089~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^209^^ +~17090~^1^1^~oz~^28.35^^ +~17090~^2^1^~lb~^453.6^^ +~17091~^1^3^~oz~^85^^ +~17091~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^192^^ +~17092~^1^1^~oz~^28.35^^ +~17092~^2^1^~lb~^453.6^^ +~17093~^1^3^~oz~^85^^ +~17093~^2^1^~unit, cooked (yield from 1 lb raw meat)~^290^^ +~17094~^1^1^~oz~^28.35^^ +~17094~^2^1^~lb~^453.6^^ +~17095~^1^3^~oz~^85^^ +~17095~^2^1^~unit, cooked (yield from 1 lb raw meat)~^272^^ +~17096~^1^3^~oz~^85^^ +~17096~^2^1^~unit, cooked (yield from 1 lb raw meat)~^295^^ +~17097~^1^3^~oz~^85^^ +~17097~^3^1^~unit, cooked (yield from 1 lb raw meat)~^304^^ +~17098~^1^3^~oz~^85^^ +~17098~^2^1^~unit, cooked (yield from 1 lb raw meat)~^358^^ +~17099~^1^1^~oz~^28.35^^ +~17099~^2^1^~lb~^453.6^^ +~17100~^1^3^~oz~^85^^ +~17100~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~17101~^1^3^~oz~^85^^ +~17101~^2^1^~unit, cooked (yield from 1 lb raw meat)~^295^^ +~17102~^1^3^~oz~^85^^ +~17102~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^289^^ +~17103~^1^3^~oz~^85^^ +~17103~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^351^^ +~17104~^1^3^~oz~^85^6^0 +~17104~^2^1^~roast~^1495^6^327.402 +~17105~^1^3^~oz~^85^^ +~17105~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 195 g)~^80^^ +~17106~^1^3^~oz~^85^^ +~17106~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^229^^ +~17107~^1^3^~oz~^85^6^0 +~17107~^2^1^~roast~^1495^6^327.402 +~17107~^3^1^~oz~^28.35^^ +~17108~^1^3^~oz~^85^^ +~17108~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 195 g)~^69^^ +~17109~^1^3^~oz~^85^^ +~17109~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^208^^ +~17110~^1^1^~oz~^28.35^^ +~17110~^2^1^~lb~^453.6^^ +~17111~^1^3^~oz~^85^^ +~17111~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^177^^ +~17112~^1^3^~oz~^85^^ +~17112~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^240^^ +~17113~^1^1^~oz~^28.35^^ +~17113~^2^1^~lb~^453.6^^ +~17114~^1^3^~oz~^85^^ +~17114~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^163^^ +~17115~^1^3^~oz~^85^^ +~17115~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^215^^ +~17116~^1^1^~oz~^28.35^^ +~17116~^2^1^~lb~^453.6^^ +~17117~^1^3^~oz~^85^^ +~17117~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^191^^ +~17118~^1^3^~oz~^85^^ +~17118~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^258^^ +~17119~^1^1^~oz~^28.35^^ +~17119~^2^1^~lb~^453.6^^ +~17120~^1^3^~oz~^85^^ +~17120~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^182^^ +~17121~^1^3^~oz~^85^^ +~17121~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^251^^ +~17122~^1^1^~oz~^28.35^^ +~17122~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 385 g)~^304^^ +~17123~^1^3^~oz~^85^^ +~17123~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 385 g)~^173^^ +~17124~^1^3^~oz~^85^^ +~17124~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^283^^ +~17125~^1^1^~oz~^28.35^^ +~17125~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 385 g)~^289^^ +~17126~^1^3^~oz~^85^^ +~17126~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 385 g)~^160^^ +~17127~^1^3^~oz~^85^^ +~17127~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^272^^ +~17128~^1^3^~oz~^85^6^0 +~17128~^2^1^~chop~^450^6^95.376 +~17129~^1^3^~oz~^85^^ +~17129~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^186^^ +~17130~^1^3^~oz~^85^^ +~17130~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^244^^ +~17131~^1^3^~oz~^85^6^0 +~17131~^2^1^~chop~^450^6^95.376 +~17131~^3^1^~oz~^28.35^^ +~17132~^1^3^~oz~^85^^ +~17132~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^174^^ +~17133~^1^3^~oz~^85^^ +~17133~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^236^^ +~17134~^1^1^~oz~^28.35^^ +~17134~^2^1^~lb~^453.6^^ +~17135~^1^3^~oz~^85^^ +~17135~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^205^^ +~17136~^1^3^~oz~^85^^ +~17136~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^269^^ +~17137~^1^1^~oz~^28.35^^ +~17137~^2^1^~lb~^453.6^^ +~17138~^1^3^~oz~^85^^ +~17138~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^183^^ +~17139~^1^3^~oz~^85^^ +~17139~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^251^^ +~17140~^1^1^~oz~^28.35^^ +~17140~^2^1^~lb~^453.6^^ +~17141~^1^3^~oz~^85^^ +~17141~^2^1^~unit, cooked (yield from 1 lb raw meat)~^263^^ +~17142~^1^3^~oz~^85^^ +~17142~^2^1^~oz~^28.35^^ +~17142~^3^4^~oz~^113^^ +~17143~^1^3^~oz~^85^^ +~17143~^2^1^~unit, cooked (yield from 1 lb raw meat)~^299^^ +~17144~^1^1^~oz~^28.35^^ +~17144~^2^1^~lb~^453.6^^ +~17145~^1^3^~oz~^85^^ +~17145~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17146~^1^1^~oz~^28.35^^ +~17146~^2^1^~lb~^453.6^^ +~17147~^1^3^~oz~^85^^ +~17147~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^277^^ +~17148~^1^3^~oz~^85^^ +~17149~^1^1^~patty (cooked from 4 oz raw)~^85^^ +~17149~^2^1^~oz~^28.35^^ +~17150~^1^1^~oz~^28.35^^ +~17150~^2^1^~lb~^453.6^^ +~17151~^1^3^~oz~^85^^ +~17151~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^313^^ +~17152~^1^1^~oz~^28.35^^ +~17152~^2^1^~lb~^453.6^^ +~17153~^1^3^~oz~^85^^ +~17153~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17154~^1^1^~oz~^28^^ +~17155~^1^3^~oz~^85^^ +~17155~^2^1^~roast with bone~^325^^ +~17156~^1^1^~oz~^28.35^^ +~17156~^2^1^~lb~^453.6^^ +~17157~^1^3^~oz~^85^^ +~17157~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17158~^1^1^~oz~^28.35^^ +~17158~^2^1^~lb~^453.6^^ +~17159~^1^3^~oz~^85^^ +~17159~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17160~^1^1^~oz~^28.35^^ +~17160~^2^1^~lb~^453.6^^ +~17161~^1^3^~oz~^85^^ +~17161~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17162~^1^1^~oz~^28.35^^ +~17162~^2^1^~lb~^453.6^^ +~17163~^1^3^~oz~^85^^ +~17163~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17164~^1^1^~oz~^28.35^^ +~17164~^2^1^~lb~^453.6^^ +~17165~^1^3^~oz~^85^^ +~17165~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17166~^1^1^~oz~^28.35^^ +~17166~^2^1^~lb~^453.6^^ +~17167~^1^3^~oz~^85^^ +~17167~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17168~^1^1^~oz~^28.35^^ +~17168~^2^1^~lb~^453.6^^ +~17169~^1^3^~oz~^85^^ +~17169~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17170~^1^1^~oz~^28.35^^ +~17170~^2^1^~lb~^453.6^^ +~17171~^1^3^~oz~^85^^ +~17171~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17172~^1^1^~oz~^28.35^^ +~17172~^2^1^~lb~^453.6^^ +~17173~^1^3^~oz~^85^^ +~17173~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^340^^ +~17174~^1^1^~oz~^28.35^^ +~17174~^2^1^~lb~^453.6^^ +~17175~^1^3^~oz~^85^^ +~17175~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^313^^ +~17176~^1^3^~oz~^85^^ +~17176~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^399^^ +~17177~^1^1^~oz~^28.35^^ +~17177~^2^1^~lb~^453.6^^ +~17178~^1^3^~oz~^85^^ +~17178~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^313^^ +~17179~^1^3^~oz~^85^^ +~17179~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^299^^ +~17180~^1^1^~oz~^28.35^^ +~17180~^2^1^~lb~^453.6^^ +~17181~^1^3^~oz~^85^^ +~17181~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^299^^ +~17182~^1^3^~oz~^85^^ +~17182~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^399^^ +~17183~^1^1^~oz~^28.35^^ +~17183~^2^1^~lb~^453.6^^ +~17184~^1^3^~oz~^85^^ +~17184~^2^1^~piece, cooked (yield from 1 lb raw meat, boneless)~^313^^ +~17185~^1^1^~oz~^28.35^^ +~17185~^2^4^~oz~^113^^ +~17186~^1^3^~oz~^85^^ +~17186~^2^1^~unit, cooked (yield from 1 lb raw meat)~^347^^ +~17187~^1^3^~oz~^85^^ +~17187~^2^1^~unit, cooked (yield from 1 lb raw meat)~^240^^ +~17188~^1^1^~oz~^28.35^^ +~17188~^2^4^~oz~^113^^ +~17189~^1^3^~oz~^85^^ +~17189~^2^1^~unit, cooked (yield from 1 lb raw meat)~^339^^ +~17190~^1^3^~oz~^85^^ +~17190~^2^1^~unit, cooked (yield from 1 lb raw meat)~^330^^ +~17191~^1^1^~oz~^28.35^^ +~17191~^2^4^~oz~^113^^ +~17192~^1^3^~oz~^85^^ +~17192~^2^1^~unit, cooked (yield from 1 lb raw meat)~^191^^ +~17193~^1^1^~oz~^28.35^^ +~17193~^2^4^~oz~^113^^ +~17194~^1^3^~oz~^85^^ +~17194~^2^1^~unit, cooked (yield from 1 lb raw meat)~^198^^ +~17195~^1^1^~oz~^28.35^^ +~17195~^2^4^~oz~^113^^ +~17196~^1^3^~oz~^85^^ +~17196~^2^1^~unit, cooked (yield from 1 lb raw meat)~^255^^ +~17197~^1^1^~oz~^28.35^^ +~17197~^2^4^~oz~^113^^ +~17198~^1^3^~oz~^85^^ +~17198~^2^1^~unit, cooked (yield from 1 lb raw meat)~^184^^ +~17199~^1^1^~oz~^28.35^^ +~17199~^2^4^~oz~^113^^ +~17200~^1^3^~oz~^85^^ +~17200~^2^1^~unit, cooked (yield from 1 lb raw meat)~^336^^ +~17201~^1^3^~oz~^85^^ +~17201~^2^1^~unit, cooked (yield from 1 lb raw meat)~^322^^ +~17202~^1^1^~oz~^28.35^^ +~17202~^2^1^~lb~^453.0^^ +~17203~^1^1^~slice~^80^5^6.627 +~17204~^1^1^~slice~^67^6^6.437 +~17205~^1^1^~oz~^28.35^^ +~17205~^2^4^~oz~^113^^ +~17206~^1^3^~oz~^85^^ +~17206~^2^1^~unit, cooked (yield from 1 lb raw meat)~^381^^ +~17207~^1^1^~oz~^28.35^^ +~17207~^2^4^~oz~^113^^ +~17208~^1^3^~oz~^85^^ +~17208~^2^1^~unit, cooked (yield from 1 lb raw meat)~^300^^ +~17209~^1^1^~oz~^28.35^^ +~17209~^2^8^~oz~^227^^ +~17210~^1^1^~oz~^28.35^^ +~17210~^2^4^~oz~^113^^ +~17211~^1^3^~oz~^85^^ +~17211~^2^1^~unit, cooked (yield from 1 lb raw meat)~^231^^ +~17212~^1^1^~oz~^28.35^^ +~17212~^2^4^~oz~^113^^ +~17213~^1^3^~oz~^85^^ +~17213~^2^1^~unit, cooked (yield from 1 lb raw meat)~^240^^ +~17214~^1^1^~oz~^28.35^^ +~17214~^2^4^~oz~^113^^ +~17215~^1^3^~oz~^85^^ +~17215~^2^1^~unit, cooked (yield from 1 lb raw meat)~^295^^ +~17216~^1^1^~oz~^28.35^^ +~17216~^2^4^~oz~^113^^ +~17217~^1^3^~oz~^85^^ +~17217~^2^1^~unit, cooked (yield from 1 lb raw meat)~^345^^ +~17218~^1^1^~oz~^28.35^^ +~17218~^2^4^~oz~^113^^ +~17219~^1^3^~oz~^85^^ +~17220~^1^1^~oz~^28.35^^ +~17220~^2^4^~oz~^113^^ +~17221~^1^3^~oz~^85^^ +~17221~^2^1^~unit, cooked (yield from 1 lb raw meat)~^255^^ +~17222~^1^1^~oz~^28.35^^ +~17222~^2^4^~oz~^113^^ +~17223~^1^3^~oz~^85^^ +~17223~^2^1^~unit, cooked (yield from 1 lb raw meat)~^255^^ +~17224~^1^1^~oz~^28.35^^ +~17224~^2^4^~oz~^113^^ +~17225~^1^3^~oz~^85^^ +~17225~^2^1^~unit, cooked (yield from 1 lb raw meat)~^313^^ +~17226~^1^1^~oz~^28.35^^ +~17226~^2^1^~lb~^453.6^^ +~17227~^1^3^~oz~^85^^ +~17227~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^250^^ +~17228~^1^1^~oz~^28.35^^ +~17228~^2^1^~lb~^453.6^^ +~17229~^1^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^148^^ +~17229~^2^3^~oz~^85^^ +~17230~^1^1^~oz~^28.35^^ +~17230~^2^1^~lb~^453.6^^ +~17231~^1^3^~oz~^85^^ +~17231~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^260^^ +~17232~^1^1^~oz~^28.35^^ +~17232~^2^1^~lb~^453.6^^ +~17233~^1^3^~oz~^85^^ +~17233~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^267^^ +~17234~^1^1^~oz~^28.35^^ +~17234~^2^1^~lb~^453.6^^ +~17235~^1^3^~oz~^85^^ +~17235~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^260^^ +~17236~^1^1^~oz~^28.35^^ +~17236~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 102 g)~^79^^ +~17237~^1^3^~oz~^85^^ +~17237~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 102 g)~^53^^ +~17238~^1^3^~oz~^85^^ +~17238~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^265^^ +~17239~^1^1^~oz~^28.35^^ +~17239~^2^1^~lb~^453.6^^ +~17240~^1^3^~oz~^85^^ +~17240~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^222^^ +~17241~^1^3^~oz~^85^^ +~17241~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^248^^ +~17242~^1^1^~oz~^28.35^^ +~17242~^2^1^~lb~^453.6^^ +~17243~^1^3^~oz~^85^^ +~17243~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^213^^ +~17244~^1^3^~oz~^85^^ +~17244~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^242^^ +~17245~^1^3^~oz~^85^^ +~17245~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^263^^ +~17246~^1^1^~oz~^28.35^^ +~17246~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 102 g)~^84^^ +~17247~^1^3^~oz~^85^^ +~17247~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 102 g)~^45^^ +~17248~^1^3^~oz~^85^^ +~17248~^2^1^~steak, excluding refuse (yield from 1 raw steak, with refuse, weighing 102 g)~^59^^ +~17249~^1^3^~oz~^85^^ +~17249~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^284^^ +~17250~^1^1^~oz~^28.35^^ +~17250~^2^1^~lb~^453.6^^ +~17251~^1^3^~oz~^85^^ +~17251~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^207^^ +~17252~^1^3^~oz~^85^^ +~17252~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^250^^ +~17253~^1^3^~oz~^85^^ +~17253~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^256^^ +~17254~^1^1^~oz~^28.35^^ +~17254~^2^1^~lb~^453.6^^ +~17255~^1^3^~oz~^85^^ +~17255~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^242^^ +~17256~^1^1^~oz~^28.35^^ +~17256~^2^1^~lb~^453.6^^ +~17257~^1^3^~oz~^85^^ +~17257~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^168^^ +~17258~^1^1^~oz~^28.35^^ +~17258~^2^1^~lb~^453.6^^ +~17259~^1^3^~oz~^85^^ +~17259~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^253^^ +~17260~^1^1^~oz~^28.35^^ +~17260~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 85 g)~^63^^ +~17261~^1^3^~oz~^85^^ +~17261~^2^1^~chop, excluding refuse (yield from 1 raw chop, with refuse, weighing 85 g)~^42^^ +~17262~^1^1^~oz~^28.35^^ +~17262~^2^1^~lb~^453.6^^ +~17263~^1^3^~oz~^85^^ +~17263~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^233^^ +~17264~^1^1^~oz~^28.35^^ +~17264~^2^1^~lb~^453.6^^ +~17265~^1^3^~oz~^85^^ +~17265~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^233^^ +~17267~^1^1^~oz~^28.35^^ +~17267~^2^1^~lb~^453.6^^ +~17267~^3^4^~oz~^113^^ +~17268~^1^1^~oz~^28.35^^ +~17268~^2^1^~lb~^453.6^^ +~17268~^3^4^~oz~^113^^ +~17269~^1^1^~oz~^28.35^^ +~17269~^2^1^~lb~^453.6^^ +~17269~^3^4^~oz~^113^^ +~17270~^1^1^~oz~^28.35^^ +~17271~^1^1^~oz~^28.35^^ +~17271~^2^1^~lb~^453.6^^ +~17272~^1^3^~oz~^85^^ +~17272~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^283^^ +~17273~^1^3^~oz~^85^^ +~17273~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^291^^ +~17274~^1^3^~oz~^85^^ +~17274~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^274^^ +~17275~^1^3^~oz~^85^^ +~17275~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^237^^ +~17276~^1^1^~oz~^28.35^^ +~17276~^2^1^~lb~^453.6^^ +~17277~^1^3^~oz~^85^^ +~17277~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^194^^ +~17278~^1^1^~oz~^28.35^^ +~17278~^2^1^~lb~^453.6^^ +~17279~^1^3^~oz~^85^^ +~17279~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^223^^ +~17280~^1^1^~oz~^28.35^^ +~17280~^2^1^~lb~^453.6^^ +~17280~^3^3^~oz~^85^^ +~17281~^1^3^~oz~^85^^ +~17281~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^270^^ +~17282~^1^1^~oz~^28.35^^ +~17282~^2^1^~lb~^453.6^^ +~17282~^3^3^~oz~^85^^ +~17283~^1^3^~oz~^85^^ +~17283~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^236^^ +~17284~^1^1^~oz~^28.35^^ +~17284~^2^1^~lb~^453.6^^ +~17284~^3^3^~oz~^85^^ +~17285~^1^3^~oz~^85^^ +~17285~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^248^^ +~17286~^1^1^~oz~^28.35^^ +~17286~^2^1^~lb~^453.6^^ +~17286~^3^3^~oz~^85^^ +~17287~^1^3^~oz~^85^^ +~17287~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^211^^ +~17288~^1^1^~oz~^28.35^^ +~17288~^2^1^~lb~^453.6^^ +~17288~^3^3^~oz~^85^^ +~17289~^1^3^~oz~^85^^ +~17289~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^180^^ +~17290~^1^1^~oz~^28.35^^ +~17290~^2^1^~lb~^453.6^^ +~17290~^3^3^~oz~^85^^ +~17291~^1^3^~oz~^85^^ +~17291~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^284^^ +~17292~^1^1^~oz~^28.35^^ +~17292~^2^1^~lb~^453.6^^ +~17292~^3^3^~oz~^85^^ +~17293~^1^3^~oz~^85^^ +~17293~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^251^^ +~17294~^1^1^~oz~^28.35^^ +~17294~^2^1^~lb~^453.6^^ +~17294~^3^3^~oz~^85^^ +~17295~^1^3^~oz~^85^^ +~17295~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^277^^ +~17296~^1^1^~oz~^28.35^^ +~17296~^2^1^~lb~^453.6^^ +~17296~^3^3^~oz~^85^^ +~17297~^1^3^~oz~^85^^ +~17297~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^246^^ +~17298~^1^1^~oz~^28.35^^ +~17298~^2^1^~lb~^453.6^^ +~17298~^3^3^~oz~^85^^ +~17299~^1^3^~oz~^85^^ +~17299~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^306^^ +~17300~^1^1^~oz~^28.35^^ +~17300~^2^1^~lb~^453.6^^ +~17300~^3^3^~oz~^85^^ +~17301~^1^3^~oz~^85^^ +~17301~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^259^^ +~17302~^1^1^~oz~^28.35^^ +~17303~^1^3^~oz~^85^^ +~17304~^1^1^~oz~^28.35^^ +~17305~^1^3^~oz~^85^^ +~17306~^1^1^~oz~^28.35^^ +~17307~^1^3^~oz~^85^^ +~17308~^1^1^~oz~^28.35^^ +~17309~^1^3^~oz~^85^^ +~17310~^1^1^~oz~^28.35^^ +~17310~^2^3^~oz~^85^^ +~17311~^1^3^~oz~^85^^ +~17312~^1^1^~oz~^28.35^^ +~17312~^2^3^~oz~^85^^ +~17313~^1^3^~oz~^85^^ +~17314~^1^4^~oz~^114^^ +~17314~^2^1^~chop~^63^24^20.104 +~17315~^1^3^~oz~^85^^ +~17315~^2^1^~chop~^54^24^17.428 +~17316~^1^4^~oz~^114^^ +~17316~^2^1^~chop~^63^24^20.104 +~17316~^3^3^~oz~^85^^ +~17317~^1^3^~oz~^85^^ +~17317~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^241^^ +~17317~^3^1^~chop~^54^24^17.428 +~17318~^1^1^~oz~^28.35^^ +~17318~^2^1^~lb~^453.6^^ +~17318~^3^3^~oz~^85^^ +~17319~^1^3^~oz~^85^^ +~17319~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^262^^ +~17320~^1^1^~oz~^28.35^^ +~17320~^2^1^~lb~^453.6^^ +~17320~^3^3^~oz~^85^^ +~17321~^1^3^~oz~^85^^ +~17321~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^222^^ +~17322~^1^1^~oz~^28.35^^ +~17322~^2^3^~oz~^85^^ +~17323~^1^3^~oz~^85^^ +~17324~^1^1^~oz~^28.35^^ +~17324~^2^3^~oz~^85^^ +~17325~^1^3^~oz~^85^^ +~17326~^1^1^~oz~^28.35^^ +~17326~^2^1^~lb~^453.6^^ +~17326~^3^3^~oz~^85^^ +~17327~^1^3^~oz~^85^^ +~17327~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^273^^ +~17328~^1^1^~oz~^28.35^^ +~17328~^2^1^~lb~^453.6^^ +~17328~^3^3^~oz~^85^^ +~17329~^1^3^~oz~^85^^ +~17329~^2^1^~piece, cooked, excluding refuse (yield from 1 lb raw meat with refuse)~^233^^ +~17330~^1^1^~serving ( 3 oz )~^85^^ +~17330~^2^1^~patty~^113^6^.548 +~17331~^1^1^~patty ( yield from 112.7 g raw meat )~^87^6^1.183 +~17331~^2^1^~serving ( 3 oz )~^85^^ +~17332~^1^1^~serving ( 3 oz )~^85^^ +~17332~^2^1^~steak ( yield from 309.7 g raw meat )~^194^6^53.356 +~17333~^1^1^~serving ( 3 oz )~^85^^ +~17333~^2^1^~roast ( yield from 1247 g raw meat ) ( 3 to 5 lb roast)~^774^6^98.508 +~17334~^1^1^~serving ( 3 oz )~^85^^ +~17334~^2^1^~roast (3 to 5 lb roast)~^1237^6^67.793 +~17335~^1^1^~serving ( 3 oz )~^85^^ +~17335~^2^1^~steak ( yield from 232.8 g raw meat )~^179^6^17.041 +~17336~^1^1^~serving ( 3 oz )~^85^^ +~17336~^2^1^~steak~^180^6^32.412 +~17337~^1^1^~serving ( 3 oz )~^85^^ +~17337~^2^1^~steak~^489^6^75.719 +~17338~^1^1^~patty ( yield from 102.2 g raw meat )~^102^5^25.431 +~17339~^1^1^~patty ( yield from 104.1 g raw meat )~^95^5^3.887 +~17339~^2^1^~serving ( 3 oz )~^85^^ +~17340~^1^1^~steak ( yield from 148.1 g raw meat )~^114^7^36.725 +~17340~^2^1^~serving ( 3 oz )~^85^^ +~17341~^1^1^~serving ( 3 oz )~^85^^ +~17341~^2^1^~steak ( yield from 233.1 g raw meat )~^176^8^61.154 +~17342~^1^1^~steak ( yield from 123.5 g raw meat )~^92^8^36.673 +~17342~^2^1^~serving ( 3 oz )~^85^^ +~17343~^1^1^~patty (cooked from 4 oz raw)~^85^^ +~17343~^2^1^~oz~^28.35^^ +~17344~^1^1^~patty~^93^6^4.01 +~17344~^2^1^~serving ( 3 oz )~^85^^ +~17345~^1^1^~steak~^54^6^17.272 +~17345~^2^1^~serving ( 3 oz )~^85^^ +~17346~^1^1^~serving ( 3 oz )~^85^^ +~17346~^2^1^~roast (3 to 5 lb roast)~^293^6^82.004 +~17347~^1^1^~serving ( 3 oz )~^85^^ +~17347~^2^1^~roast ( yield from 271.8 g raw meat ) (0.5 to 1 lb roast)~^202^6^106.802 +~17348~^1^1^~steak ( yield from 134.9 g raw meat )~^102^6^7.501 +~17348~^2^1^~serving ( 3 oz )~^85^^ +~17349~^1^3^~oz~^85^^ +~17349~^2^1^~roast with bone~^235^8^112.2 +~17350~^1^3^~oz~^85^^ +~17350~^2^1^~roast with bone~^235^^ +~17351~^1^3^~oz~^85^^ +~17351~^2^1^~roast with bone~^330^7^82.5 +~17352~^1^3^~oz~^85^^ +~17352~^2^1^~roast with bone~^330^^ +~17353~^1^1^~serving (4 oz)~^113^^ +~17357~^1^3^~oz~^85^^ +~17358~^1^4^~oz~^113^^ +~17359~^1^3^~oz~^85^^ +~17360~^1^4^~oz~^113^^ +~17361~^1^3^~oz~^85^^ +~17363~^1^4^~oz~^113^^ +~17364~^1^3^~oz~^85^^ +~17365~^1^3^~oz~^85^^ +~17366~^1^4^~oz~^113^^ +~17367~^1^4^~oz~^113^^ +~17368~^1^3^~oz~^85^^ +~17369~^1^4^~oz~^113^^ +~17370~^1^3^~oz~^85^^ +~17371~^1^4^~oz~^113^^ +~17372~^1^3^~oz~^85^^ +~17373~^1^4^~oz~^113^^ +~17374~^1^3^~oz~^85^^ +~17375~^1^4^~oz~^113^^ +~17376~^1^3^~oz~^85^^ +~17377~^1^4^~oz~^113^^ +~17378~^1^3^~oz~^85^^ +~17379~^1^4^~oz~^113^^ +~17380~^1^3^~oz~^85^^ +~17381~^1^4^~oz~^113^^ +~17382~^1^3^~oz~^85^^ +~17383~^1^4^~oz~^113^^ +~17384~^1^3^~oz~^85^^ +~17385~^1^4^~oz~^113^^ +~17386~^1^3^~oz~^85^^ +~17387~^1^4^~oz~^113^^ +~17388~^1^3^~oz~^85^^ +~17389~^1^4^~oz~^113^^ +~17390~^1^3^~oz~^85^^ +~17391~^1^4^~oz~^113^^ +~17392~^1^4^~oz~^113^^ +~17393~^1^3^~oz~^85^^ +~17394~^1^3^~oz~^85^^ +~17395~^1^4^~oz~^113^^ +~17396~^1^3^~oz~^85^^ +~17397~^1^4^~oz~^113^^ +~17398~^1^3^~oz~^85^^ +~17399~^1^3^~oz~^85^^ +~17400~^1^3^~oz~^85^^ +~17401~^1^3^~oz~^85^^ +~17402~^1^4^~oz~^113^^ +~17403~^1^3^~oz~^85^^ +~17404~^1^4^~oz~^113^^ +~17405~^1^3^~oz~^85^^ +~17406~^1^3^~oz~^85^^ +~17407~^1^3^~oz~^85^^ +~17408~^1^4^~oz~^113^^ +~17409~^1^3^~oz~^85^^ +~17410~^1^4^~oz~^113^^ +~17411~^1^3^~oz~^85^^ +~17412~^1^4^~oz~^113^^ +~17413~^1^3^~oz~^85^^ +~17414~^1^4^~oz~^113^^ +~17415~^1^3^~oz~^85^^ +~17416~^1^4^~oz~^113^^ +~17417~^1^3^~oz~^85^^ +~17418~^1^3^~oz~^85^^ +~17419~^1^3^~oz~^85^^ +~17420~^1^4^~oz~^113^^ +~17421~^1^3^~oz~^85^^ +~17422~^1^4^~oz~^113^^ +~17423~^1^4^~oz~^113^^ +~17424~^1^3^~oz~^85^6^0 +~17425~^1^3^~oz~^85^6^0 +~17425~^2^1^~cutlet~^44^6^11.026 +~17426~^1^3^~oz~^85^6^0 +~17426~^2^1^~cutlet~^55^6^13.45 +~17426~^3^1^~serving~^113^6^0 +~17427~^1^3^~oz~^85^6^0 +~17427~^2^1^~chop~^153^6^22.971 +~17428~^1^3^~oz~^85^6^0 +~17428~^2^1^~serving~^113^6^0 +~17428~^3^1^~shank whole~^1270^6^566.498 +~17429~^1^3^~oz~^85^6^0 +~17429~^2^1^~shank cross cut~^187^6^45.316 +~17430~^1^3^~oz~^85^6^0 +~17430~^2^1^~chop~^352^6^90.451 +~17435~^1^3^~oz~^85^6^0 +~17435~^2^1^~serving~^113^6^0 +~17435~^3^1^~shank whole~^1270^6^566.498 +~17436~^1^3^~oz~^85^6^0 +~17436~^2^1^~shank cross cut~^187^6^45.316 +~17437~^1^3^~oz~^85^6^0 +~17437~^2^1^~chop~^153^6^22.971 +~17438~^1^3^~oz~^85^6^0 +~17438~^2^1^~chop~^352^6^90.451 +~17439~^1^3^~oz~^85^^ +~17439~^2^1^~leg bottom, boneless~^723^6^134.774 +~17440~^1^3^~oz~^85^^ +~17440~^2^1^~leg hindshank, heel on~^418^6^32.277 +~17441~^1^4^~oz~^114^^ +~17441~^2^1^~leg hindshank, heel on~^530^6^60.393 +~17442~^1^3^~oz~^85^^ +~17442~^2^1^~roast~^121^6^9.453 +~17443~^1^4^~oz~^114^^ +~17443~^2^1^~roast~^146^6^13.961 +~17444~^1^4^~oz~^114^^ +~17444~^2^1^~leg bottom, boneless~^989^5^216.455 +~17445~^1^3^~oz~^85^^ +~17445~^2^1^~leg trotter off~^1808^6^235.641 +~17446~^1^4^~oz~^114^^ +~17446~^2^1^~leg trotter off~^2674^6^240.529 +~17447~^1^3^~oz~^85^^ +~17447~^2^1^~roast~^329^6^19.416 +~17448~^1^3^~oz~^85^^ +~17448~^2^1^~roast~^447^5^6.612 +~17449~^1^3^~oz~^85^^ +~17453~^1^3^~oz~^85^^ +~17453~^2^1^~leg bottom, boneless~^723^6^134.774 +~17454~^1^4^~oz~^114^^ +~17454~^2^1^~leg bottom, boneless~^989^5^216.455 +~17455~^1^3^~oz~^85^^ +~17455~^2^1^~leg hindshank, heel on~^418^6^32.277 +~17456~^1^4^~oz~^114^^ +~17456~^2^1^~leg hindshank, heel on~^530^6^60.393 +~17457~^1^3^~oz~^85^^ +~17457~^2^1^~leg trotter off~^1808^6^235.641 +~17458~^1^4^~oz~^114^^ +~17458~^2^1^~leg trotter off~^2674^6^240.529 +~17459~^1^3^~oz~^85^^ +~17459~^2^1^~roast~^121^6^9.453 +~17460~^1^4^~oz~^114^^ +~17460~^2^1^~roast~^146^6^13.961 +~17461~^1^3^~oz~^85^^ +~17461~^2^1^~chop~^43^24^10.761 +~17462~^1^3^~oz~^85^^ +~17462~^2^1^~roast~^329^6^19.416 +~17463~^1^3^~oz~^85^^ +~17463~^2^1^~roast~^447^5^6.612 +~17464~^1^3^~oz~^85^^ +~17464~^2^1^~chop~^43^24^10.761 +~18001~^1^1^~bagel~^99^23^8.099 +~18001~^2^1^~mini bagel (2-1/2" dia)~^26^^ +~18001~^3^1^~small bagel (3" dia)~^69^14^11.387 +~18001~^4^1^~medium bagel (3-1/2" to 4" dia)~^105^43^7.619 +~18001~^5^1^~large bagel (4-1/2")~^131^7^9.845 +~18001~^6^1^~oz~^28.35^^ +~18002~^1^1^~mini bagel (2-1/2" dia)~^24^^ +~18002~^2^1^~small bagel (3" dia)~^65^1^ +~18002~^3^1^~medium bagel (3-1/2" to 4" dia)~^99^^ +~18002~^4^1^~large bagel (4-1/2")~^123^1^ +~18002~^5^1^~oz~^28.35^^ +~18003~^1^1^~oz~^28.35^^ +~18003~^2^1^~mini bagel (2-1/2" dia)~^26^^ +~18003~^3^1^~small bagel (3" dia)~^69^14^11.387 +~18003~^4^1^~medium bagel (3-1/2" to 4" dia)~^105^43^7.619 +~18003~^5^1^~large bagel (4-1/2" dia)~^131^7^9.845 +~18005~^1^1^~mini bagel (2-1/2" dia)~^26^^ +~18005~^2^1^~small bagel (3" dia)~^69^14^11.387 +~18005~^3^1^~medium bagel (3-1/2" to 4" dia)~^105^43^7.619 +~18005~^4^1^~large bagel (4-1/2" dia)~^131^7^9.845 +~18005~^5^1^~oz~^28.35^^ +~18006~^1^1^~mini bagel (2-1/2" dia)~^24^1^ +~18006~^2^1^~small bagel (3-1/2" to 4"dia)~^65^1^ +~18006~^3^1^~medium bagel (4" dia)~^99^1^ +~18006~^4^1^~large bagel (4-1/2" dia)~^123^1^ +~18006~^5^1^~oz~^28.35^^ +~18007~^1^1^~mini bagel (2-1/2" dia)~^26^^ +~18007~^2^1^~small bagel (3" dia)~^69^14^11.387 +~18007~^3^1^~medium bagel (3-1/2" to 4" dia)~^105^43^7.619 +~18007~^4^1^~large bagel (4-1/2" dia)~^131^7^9.845 +~18007~^5^1^~oz~^28.35^^ +~18009~^1^1^~oz~^28.35^^ +~18009~^2^1^~large~^77^^ +~18009~^3^1^~medium~^51^^ +~18009~^4^1^~small~^35^^ +~18009~^5^1^~biscuit (2-1/2" dia)~^35^^ +~18010~^1^1^~cup, purchased~^120^^ +~18010~^2^1^~cup, homemade~^114^^ +~18010~^3^1^~cup, poured from box~^128^^ +~18010~^4^1^~cup, spooned into cup~^120^^ +~18010~^5^.33^~cup (NLEA serving size)~^40^^ +~18010~^6^1^~oz~^28.35^^ +~18011~^1^1^~oz~^28.35^^ +~18012~^1^1^~serving 1 biscuit~^58^2^ +~18012~^2^1^~oz~^28.35^^ +~18013~^1^1^~oz~^28.35^^ +~18013~^2^1^~biscuit (2-1/4" dia)~^21^^ +~18014~^1^1^~biscuit~^58^1^ +~18014~^2^1^~biscuit~^43^12^13.259 +~18014~^3^1^~package~^398^6^68.658 +~18014~^4^1^~oz~^28.35^^ +~18015~^1^1^~biscuit~^51^23^10.096 +~18015~^2^1^~biscuit (2-1/2" dia)~^27^^ +~18015~^3^1^~oz~^28.35^^ +~18016~^1^1^~oz~^28.35^^ +~18016~^2^1^~biscuit (4" dia)~^101^^ +~18016~^3^1^~small (1-1/2" dia)~^14.0^^ +~18016~^4^1^~biscuit (2-1/2" dia)~^60^^ +~18017~^1^1^~oz~^28.35^^ +~18017~^2^1^~biscuit (2-1/2" dia)~^44^^ +~18019~^1^1^~oz~^28.35^^ +~18019~^2^1^~individual loaf (include Keebler Elfin Loaves)~^57^^ +~18019~^3^1^~slice~^60^^ +~18021~^1^1^~oz~^28.35^^ +~18021~^2^1^~slice~^45^^ +~18022~^1^1^~oz~^28.35^^ +~18022~^2^1^~package (8.5 oz)~^241^^ +~18023~^1^1^~muffin~^51^24^4.27 +~18023~^2^1^~piece~^60^^ +~18023~^3^1^~oz~^28.35^^ +~18024~^1^1^~oz~^28.35^^ +~18024~^2^1^~piece~^65^^ +~18025~^1^1^~oz~^28.35^^ +~18025~^2^1^~cubic inch~^3.2^^ +~18025~^3^1^~slice, large or thick~^30^^ +~18025~^4^1^~slice, regular~^25^^ +~18025~^5^1^~slice regular, crust not eaten~^12.2^^ +~18025~^6^1^~slice~^25^^ +~18025~^7^1^~slice, thin~^20^^ +~18025~^8^1^~slice thin, crust not eaten~^9.4^^ +~18027~^1^1^~oz~^28.35^^ +~18027~^2^1^~slice (5" x 3" x 1/2")~^40^^ +~18028~^1^1^~oz~^28.35^^ +~18028~^2^1^~slice (5" x 3" x 1/2")~^37^^ +~18029~^1^1^~oz~^28.35^^ +~18029~^2^1^~slice~^139^12^37.427 +~18030~^1^1^~oz~^28.35^^ +~18030~^2^1^~slice, small~^29^^ +~18030~^3^1^~slice, medium~^59^^ +~18030~^4^1^~slice, large~^88^^ +~18032~^1^1^~oz~^28.35^^ +~18033~^1^1^~oz~^28.35^^ +~18033~^2^1^~slice, large (4-1/2" x 3-1/4" x 3/4")~^30^^ +~18033~^3^1^~slice, medium~^20^^ +~18033~^4^1^~slice, small (3-1/4" x 2-1/2" x 1/2")~^10.0^^ +~18036~^1^1^~oz~^28.35^^ +~18036~^2^1^~slice regular~^24^^ +~18036~^3^1^~slice large~^38^^ +~18037~^1^1^~oz~^28.35^^ +~18037~^2^1^~slice~^30^^ +~18038~^1^1^~oz~^28.35^^ +~18038~^2^1^~slice~^27^^ +~18039~^1^1^~oz~^28.35^^ +~18039~^2^1^~slice~^27^^ +~18040~^1^1^~oz~^28.35^^ +~18040~^2^1^~slice~^25^^ +~18041~^1^1^~pita, large (6-1/2" dia)~^60^^ +~18041~^2^1^~pita, small (4" dia)~^28^^ +~18042~^1^1^~pita, large (6-1/2" dia)~^64^^ +~18042~^2^1^~pita, small (4" dia)~^28^^ +~18043~^1^1^~oz~^28.35^^ +~18043~^2^1^~slice~^19^^ +~18044~^1^1^~oz~^28.35^^ +~18044~^2^1^~slice, regular~^26^^ +~18044~^3^1^~slice, snack-size~^7.0^^ +~18044~^4^1^~slice, thin~^20^^ +~18044~^5^1^~slice (5" x 4" x 3/8")~^32^^ +~18045~^1^1^~oz~^28.35^^ +~18045~^2^1^~slice (5" x 4" x 3/8")~^29^^ +~18047~^1^1^~oz~^28.35^^ +~18047~^2^1^~slice, large~^32^^ +~18047~^3^1^~slice~^26^^ +~18047~^4^1^~slice, thin~^23^^ +~18048~^1^1^~oz~^28.35^^ +~18048~^2^1^~slice, large~^29^^ +~18048~^3^1^~slice~^24^^ +~18048~^4^1^~slice, thin~^21^^ +~18049~^1^1^~oz~^28.35^^ +~18049~^2^1^~slice~^23^^ +~18050~^1^1^~oz~^28.35^^ +~18050~^2^1^~slice~^19^^ +~18051~^1^1^~oz~^28.35^^ +~18051~^2^1^~slice~^23^^ +~18053~^1^1^~oz~^28.35^^ +~18053~^2^1^~slice~^23^^ +~18053~^3^1^~slice, thick~^32^^ +~18053~^4^1^~slice, thin~^20^^ +~18055~^1^1^~oz~^28.35^^ +~18055~^2^1^~slice~^21^3^3.302 +~18057~^1^1^~oz~^28.35^^ +~18057~^2^1^~slice~^23^^ +~18059~^1^1^~oz~^28.35^^ +~18059~^2^1^~slice~^27^^ +~18060~^1^1^~oz~^28.35^^ +~18060~^2^1^~slice, regular~^32^^ +~18060~^3^1^~slice, snack-size~^7.0^^ +~18060~^4^1^~slice, thin~^25^^ +~18061~^1^1^~oz~^28.35^^ +~18061~^2^1^~slice, large~^29^^ +~18061~^3^1^~slice, regular~^24^^ +~18061~^4^1^~slice, thin~^18^^ +~18064~^1^1^~oz~^28.35^^ +~18064~^2^1^~slice~^29^21^2.416 +~18065~^1^1^~oz~^28.35^^ +~18065~^2^1^~slice~^24^15^2.905 +~18066~^1^1^~oz~^28.35^^ +~18066~^2^1^~slice~^36^^ +~18069~^1^1^~slice~^29^12^3.932 +~18069~^2^1^~oz~^28.35^^ +~18069~^3^1^~cup, crumbs~^45^^ +~18069~^4^1^~cup, cubes~^35^^ +~18069~^5^1^~slice, large~^30^^ +~18069~^6^1^~slice~^25^^ +~18069~^7^1^~slice crust not eaten~^12.0^^ +~18069~^8^1^~slice, thin~^20^^ +~18069~^9^1^~slice thin, crust not eaten~^9.0^^ +~18069~^10^1^~slice, very thin~^15.0^^ +~18070~^1^1^~oz~^28.35^^ +~18070~^2^1^~cup, crumbs~^45^^ +~18070~^3^1^~cup, cubes~^42^^ +~18070~^4^1^~slice, large~^27^^ +~18070~^5^1^~slice crust not eaten~^11.0^^ +~18070~^6^1^~slice, thin~^17^^ +~18070~^7^1^~slice thin, crust not eaten~^8.0^^ +~18070~^8^1^~slice, very thin~^13.0^^ +~18070~^9^1^~slice~^22^^ +~18071~^1^1^~oz~^28.35^^ +~18071~^2^1^~slice~^44^^ +~18073~^1^1^~oz~^28.35^^ +~18073~^2^1^~slice~^42^^ +~18073~^3^1^~slice, thin (3-3/4" x 5" x 3/8")~^33^^ +~18075~^1^1^~slice~^32^19^7.086 +~18075~^2^1^~oz~^28.35^^ +~18076~^1^1^~oz~^28.35^^ +~18076~^2^1^~slice~^25^^ +~18077~^1^1^~oz~^28.35^^ +~18077~^2^1^~slice, regular (4" x 5" x 3/4")~^46^^ +~18077~^3^1^~slice, thin (3-3/4" x 5" x 3/8")~^33^^ +~18078~^1^1^~oz~^28.35^^ +~18078~^2^1^~slice~^42^^ +~18078~^3^1^~slice, thin (3-3/4" x 5" x 3/8")~^30^^ +~18079~^1^1^~oz~^28.35^^ +~18079~^2^1^~cup~^108^^ +~18080~^1^1^~cup, small pieces~^46^^ +~18080~^2^1^~stick, small (approx 4-1/4" long)~^5.0^^ +~18080~^3^1^~stick (7-5/8" x 5/8")~^10.0^^ +~18080~^4^1^~stick (9-1/4" x 3/8")~^6.0^^ +~18081~^1^1^~oz~^28.35^^ +~18081~^2^1^~package (6 oz)~^170^^ +~18082~^1^1^~oz~^28.35^^ +~18082~^2^.5^~cup~^100^^ +~18084~^1^1^~oz~^28.35^^ +~18084~^2^1^~package (6 oz)~^170^^ +~18085~^1^1^~oz~^28.35^^ +~18085~^2^.5^~cup~^100^^ +~18086~^1^1^~piece (1/12 of 12 oz cake)~^28^^ +~18086~^2^1^~cake (9" dia x 4")~^340^^ +~18087~^1^1^~serving~^38^1^ +~18087~^2^1^~package (14.5 oz)~^411^^ +~18087~^3^1^~oz~^28.35^^ +~18088~^1^1^~piece (1/12 of 10" dia)~^50^^ +~18088~^2^1^~tube cake (10" dia, 4-3/8" high)~^596^^ +~18090~^1^1^~oz~^28.35^^ +~18090~^2^1^~piece (1/6 of pie)~^92^^ +~18092~^1^1^~oz~^28.35^^ +~18092~^2^1^~package (18 oz)~^510^^ +~18095~^1^1^~oz~^28.35^^ +~18095~^2^1^~piece (1/8 cake)~^71^^ +~18096~^1^1^~piece (1/12 of a cake)~^138^12^34.479 +~18096~^2^1^~cake~^1660^12^413.751 +~18096~^3^1^~piece (1/8 of 18 oz cake)~^64^^ +~18096~^4^1^~oz~^28.35^^ +~18097~^1^1^~oz~^28.35^^ +~18097~^2^1^~package (18.25 oz)~^517^^ +~18101~^1^1^~piece (1/12 of 9" dia)~^95^^ +~18101~^2^1^~cake, 2-layer (8" or 9" dia)~^1137^^ +~18102~^1^1^~oz~^28.35^^ +~18102~^2^1^~piece (1/12 of 9" dia)~^112^^ +~18103~^1^1^~oz~^28.35^^ +~18103~^2^1^~piece (1/6 of 16 oz cake)~^76^^ +~18104~^1^1^~oz~^28.35^^ +~18104~^2^1^~individual cake~^57^^ +~18104~^3^1^~piece (1/9 of 20 oz cake)~^63^^ +~18105~^1^1^~oz~^28.35^^ +~18105~^2^1^~piece (1/6 of 19 oz cake)~^90^^ +~18106~^1^1^~oz~^28.35^^ +~18106~^2^1^~piece (1/8 cake)~^50^^ +~18107~^1^1^~oz~^28.35^^ +~18107~^2^1^~package (10.5 oz)~^298^^ +~18108~^1^1^~oz~^28.35^^ +~18108~^2^1^~piece (1/8 of 8" x 5-3/4" cake)~^56^^ +~18110~^1^1^~oz~^28.35^^ +~18110~^2^1^~piece~^43^^ +~18112~^1^1^~serving~^43^1^ +~18112~^2^1^~package (18.25 oz)~^517^^ +~18112~^3^1^~oz~^28.35^^ +~18114~^1^1^~oz~^28.35^^ +~18114~^2^1^~package (14.5 oz)~^411^^ +~18116~^1^1^~oz~^28.35^^ +~18116~^2^1^~piece (1/9 of 8" square)~^74^^ +~18117~^1^1^~oz~^28.35^^ +~18117~^2^1^~package (18.25 oz)~^517^^ +~18119~^1^1^~oz~^28.35^^ +~18119~^2^1^~piece (1/9 of 8" square)~^115^^ +~18120~^1^.167^~loaf 1/6 of the loaf~^61^17^10.922 +~18120~^2^1^~piece individually wrapped cake~^49^1^ +~18121~^1^1^~piece (1/10 of 10.6 oz cake)~^30^^ +~18121~^2^1^~piece (1/12 of 12 oz cake)~^28^^ +~18121~^3^1^~snack cake (2.5 oz)~^71^^ +~18126~^1^1^~oz~^28.35^^ +~18127~^1^1^~oz~^28.35^^ +~18127~^2^1^~cupcake~^50^^ +~18128~^1^1^~oz~^28.35^^ +~18128~^2^1^~cake~^42^8^4.129 +~18131~^1^1^~oz~^28.35^^ +~18131~^2^1^~package (8 oz)~^227^^ +~18133~^1^1^~oz~^28.35^^ +~18133~^2^1^~piece (1/12 of 16 oz cake)~^38^^ +~18134~^1^1^~oz~^28.35^^ +~18134~^2^1^~piece (1/12 of 10 inch cake)~^63^^ +~18135~^1^1^~oz~^28.35^^ +~18135~^2^1^~package (18.50 oz)~^524^^ +~18139~^1^1^~piece (1/12 of 9" dia)~^74^^ +~18139~^2^1^~cake, 2-layer (8" or 9" dia)~^887^^ +~18140~^1^1^~piece (1/12 of a cake)~^144^12^35.677 +~18140~^2^1^~cake~^1729^12^428.122 +~18140~^3^1^~piece (1/8 of 18 oz cake)~^64^^ +~18140~^4^1^~oz~^28.35^^ +~18141~^1^1^~serving~^67^1^ +~18141~^2^1^~oz~^28.35^^ +~18142~^1^1^~oz~^28.35^^ +~18142~^2^1^~package (18.50 oz)~^524^^ +~18144~^1^1^~serving~^43^1^ +~18144~^2^1^~package (18.50 oz)~^524^^ +~18144~^3^1^~oz~^28.35^^ +~18146~^1^1^~piece (1/12 of 8" dia)~^68^^ +~18146~^2^1^~cake, 2-layer (8" dia)~^817^^ +~18147~^1^1^~oz~^28.35^^ +~18147~^2^1^~piece (1/6 of 17 oz cake)~^80^^ +~18147~^3^1^~piece (1 NLEA serving)~^125^^ +~18148~^1^1^~oz~^28.35^^ +~18148~^2^1^~piece (1/12 of 9" dia)~^99^^ +~18151~^1^1^~oz~^28.35^^ +~18151~^2^1^~square, large (2-3/4" sq x 7/8")~^56^^ +~18151~^3^1^~package, Little Debbie (twin wrapped)~^61^^ +~18152~^1^1^~oz~^28.35^^ +~18152~^2^1^~package (21.5 oz)~^610^^ +~18154~^1^1^~oz~^28.35^^ +~18154~^2^1^~brownie (2" square)~^24^^ +~18155~^1^1^~oz~^28.35^^ +~18155~^2^1^~cookie~^5.0^^ +~18156~^1^1^~oz~^28.35^^ +~18156~^2^1^~cookie~^21^^ +~18157~^1^1^~oz~^28.35^^ +~18157~^2^1^~cup, crumbs~^112^^ +~18157~^3^1^~wafer~^6.0^^ +~18158~^1^1^~serving 3 cookies~^34^1^ +~18158~^2^1^~oz~^28.35^^ +~18159~^1^1^~cookie~^12.9^24^1.989 +~18159~^2^1^~cookie Pepperidge Farm Chocolate Chunk Pecan~^12.0^^ +~18159~^3^1^~oz~^28.35^^ +~18159~^4^1^~cookie (average weight of 1 cookie, variety of brands)~^12.2^18^2.758 +~18159~^5^1^~cookie Pepperidge Farm Chocolate Chunk Pecan~^12.0^^ +~18159~^6^1^~cookie, big (3-1/2" - 4" dia) (include Grandma brand)~^40^^ +~18159~^7^1^~cookie, medium (2-1/4" dia)~^10.0^^ +~18159~^8^1^~cookie, large (include Keebler Rich 'n Chips, Pecan Chips Delux)~^14.0^^ +~18159~^9^1^~cookie, bite size (include Mini Chips Ahoy!)~^2.2^^ +~18160~^1^1^~cookie~^14.2^12^.749 +~18160~^2^1^~oz~^28.35^^ +~18160~^3^1^~cookie~^15.0^^ +~18160~^4^1^~cookie (average weight of 1 cookie)~^12.2^18^2.758 +~18161~^1^1^~oz~^28.35^^ +~18161~^2^1^~package (17.5 oz)~^496^^ +~18163~^1^1^~serving~^33^2^ +~18163~^2^1^~portion, dough spoon from roll~^29^3^4.219 +~18163~^3^1^~oz~^28.35^^ +~18164~^1^1^~oz~^28.35^^ +~18164~^2^1^~cookie, medium (2-1/4" dia)~^12.0^^ +~18165~^1^1^~oz~^28.35^^ +~18165~^2^1^~bar (2" square)~^32^^ +~18165~^3^1^~cookie, medium (2-1/4" dia)~^16^^ +~18166~^1^3^~cookie~^36^24^3.797 +~18166~^2^1^~oz~^28.35^^ +~18167~^1^1^~oz~^28.35^^ +~18167~^2^1^~cookie~^17^^ +~18168~^1^1^~oz~^28.35^^ +~18168~^2^1^~cookie~^13.0^^ +~18170~^1^1^~oz~^28.35^^ +~18170~^2^1^~Figaroo (2 square halves)~^43^^ +~18170~^3^1^~cookie~^16^^ +~18170~^4^1^~individual package (2 oz package containing 2 3" bars)~^57^^ +~18171~^1^1^~oz~^28.35^^ +~18171~^2^1^~cookie~^8.0^^ +~18172~^1^1^~oz~^28.35^^ +~18172~^2^1^~cookie~^7.0^^ +~18172~^3^1^~large (approx 3-1/2" to 4" dia)~^32^^ +~18173~^1^1^~oz~^28.35^^ +~18173~^2^1^~cracker~^15^30^.711 +~18173~^3^1^~cup, crushed~^84^^ +~18173~^4^1^~large rectangular piece or 2 squares or 4 small rectangular pieces~^14.0^^ +~18174~^1^3^~pieces~^27^1^ +~18174~^2^1^~oz~^28.35^^ +~18175~^1^1^~oz~^28.35^^ +~18175~^2^1^~anisette sponge (4" x 1-1/8" x 7/8")~^13.0^^ +~18175~^3^1^~breakfast treat (approx 4" x 2" x 7/8")~^24^^ +~18175~^4^1^~ladyfinger~^11.0^^ +~18176~^1^1^~oz~^28.35^^ +~18176~^2^1^~Fudge Marshmallow~^28^^ +~18176~^3^1^~pie, marshmallow (3" dia x 3/4")~^39^^ +~18176~^4^1^~cookie, small (1-3/4" dia x 3/4")~^13.0^^ +~18177~^1^1^~oz~^28.35^^ +~18177~^2^1^~large (3-1/2" to 4" dia) (include Archway brand)~^32^^ +~18177~^3^1^~medium~^15.0^^ +~18177~^4^1^~cookie, Little Debbie~^20^^ +~18178~^1^1^~oz~^28.35^^ +~18178~^2^1^~cookie, big (3-1/2" - 4" dia) (include Archway brand, Grandma brand)~^25^^ +~18178~^3^1^~large~^18^^ +~18179~^1^1^~oz~^28.35^^ +~18179~^2^1^~cookie~^15.0^^ +~18180~^1^1^~oz~^28.35^^ +~18180~^2^1^~package (17.5 oz)~^496^^ +~18182~^1^1^~oz~^28.35^^ +~18182~^2^1^~portion, dough for 1 cookie~^16^^ +~18183~^1^1^~oz~^28.35^^ +~18183~^2^1^~cookie~^12.0^^ +~18184~^1^1^~oz~^28.35^^ +~18184~^2^1^~cookie (2-5/8" dia)~^15.0^^ +~18185~^1^1^~oz~^28.35^^ +~18185~^2^1^~cookie~^31^9^3.934 +~18186~^1^1^~oz~^28.35^^ +~18186~^2^1^~cookie~^15.0^^ +~18187~^1^1^~oz~^28.35^^ +~18187~^2^1^~portion, dough for 1 cookie~^16^^ +~18188~^1^1^~oz~^28.35^^ +~18188~^2^1^~cookie~^12.0^^ +~18189~^1^1^~oz~^28.35^^ +~18189~^2^1^~cookie (3" dia)~^20^^ +~18190~^1^1^~oz~^28.35^^ +~18190~^2^1^~cookie~^14.0^^ +~18191~^1^1^~oz~^28.35^^ +~18191~^2^1^~cookie~^15.0^^ +~18192~^1^1^~oz~^28.35^^ +~18192~^2^1^~cookie~^11.8^21^4.074 +~18193~^1^1^~oz~^28.35^^ +~18193~^2^1^~cookie (2" dia)~^14.0^^ +~18196~^1^1^~oz~^28.35^^ +~18196~^2^1^~package (8.5 oz)~^241^^ +~18198~^1^1^~oz~^28.35^^ +~18198~^2^1^~cookie, medium (1-5/8" dia)~^7.0^^ +~18199~^1^1^~oz~^28.35^^ +~18199~^2^1^~cookie~^10.0^^ +~18200~^1^1^~oz~^28.35^^ +~18200~^2^1^~cookie, medium (1-5/8" dia)~^7.0^^ +~18201~^1^1^~oz~^28.35^^ +~18201~^2^1^~cookie~^10.0^^ +~18202~^1^1^~oz~^28.35^^ +~18202~^2^1^~wafer~^4.0^^ +~18204~^1^1^~oz~^28.35^^ +~18204~^2^1^~cookie~^17^16^7.396 +~18205~^1^1^~serving~^33^2^ +~18205~^2^1^~cookie dough for 1rolled cookie~^17^3^.747 +~18205~^3^1^~cookie 1 pre-sliced cookie dough~^26^5^.446 +~18205~^4^1^~oz~^28.35^^ +~18206~^1^1^~oz~^28.35^^ +~18206~^2^1^~cookie 1 rolled cookie dough~^15.0^3^1.141 +~18206~^3^1^~cookie 1 pre-sliced cookie dough~^23^5^.449 +~18208~^1^1^~oz~^28.35^^ +~18208~^2^1^~cookie (3" dia)~^14.0^^ +~18209~^1^3^~cookies~^36^^ +~18209~^2^1^~cookie~^10.1^12^2.603 +~18209~^3^1^~oz~^28.35^^ +~18210~^1^1^~oz~^28.35^^ +~18210~^2^1^~cookie, oval (3-1/8" x 1-1/4" x 3/8")~^15.0^^ +~18210~^3^1^~cookie, round (1-3/4" dia)~^10.0^^ +~18211~^1^1^~oz~^28.35^^ +~18211~^2^1^~sheet~^245^^ +~18211~^3^1^~shell~^40^^ +~18212~^1^1^~oz~^28.35^^ +~18212~^2^1^~cup, crumbs~^80^^ +~18212~^3^1^~large~^6.0^^ +~18212~^4^1^~medium~^4.0^^ +~18212~^5^1^~small~^3.0^^ +~18213~^1^8^~wafers~^30^31^1.816 +~18213~^2^8^~wafers mini wafers~^11.6^2^ +~18214~^1^.5^~oz~^14.2^^ +~18214~^2^1^~cup, bite size~^62^^ +~18214~^3^1^~cup, crushed~^72^^ +~18214~^4^1^~gold fish~^0.6^^ +~18214~^5^1^~bag, single serving~^28^^ +~18214~^6^1^~snack stick~^2.0^^ +~18214~^7^1^~cracker (1" square)~^1.0^^ +~18215~^1^.5^~oz~^14.2^^ +~18215~^2^1^~cup, crushed~^83^^ +~18215~^3^6^~cracker~^39^^ +~18215~^4^1^~sandwich~^6.5^^ +~18216~^1^.5^~oz~^14.2^^ +~18216~^2^1^~cup, crushed~^55^^ +~18216~^3^1^~crispbread~^10.0^^ +~18216~^4^1^~wafer, thin~^2.0^^ +~18216~^5^1^~wafer~^10.0^^ +~18216~^6^1^~cracker, Norwegian flatbread (4-3/4" x 2-3/4" x 1/16")~^5.8^^ +~18216~^7^1^~wafer, Rye Krisp (triple cracker)~^25^^ +~18216~^8^1^~crispbread, Wasa rye~^10.0^^ +~18217~^1^.5^~oz~^14.2^^ +~18217~^2^1^~matzo~^28^^ +~18218~^1^.5^~oz~^14.2^^ +~18218~^2^1^~matzo~^28^^ +~18219~^1^.5^~oz~^14.2^^ +~18219~^2^1^~matzo~^28^^ +~18220~^1^.5^~oz~^14.2^^ +~18220~^2^1^~cup pieces~^30^^ +~18220~^3^1^~cup, rounds~^33^^ +~18220~^4^1^~melba round~^3.0^^ +~18220~^5^1^~piece (3-3/4" x 1-3/4" x 1/8")~^5.0^^ +~18221~^1^.5^~oz~^14.2^^ +~18221~^2^1^~toast~^5.0^^ +~18222~^1^.5^~oz~^14.2^^ +~18222~^2^1^~toast~^5.0^^ +~18223~^1^.5^~oz~^14.2^^ +~18223~^2^1^~cracker~^11.0^^ +~18224~^1^.5^~oz~^14.2^^ +~18224~^2^1^~rusk~^10.0^^ +~18225~^1^.5^~oz~^14.2^^ +~18225~^2^1^~cracker, sandwich~^7.0^^ +~18226~^1^.5^~oz~^14.2^^ +~18226~^2^1^~cup, crushed~^61^^ +~18226~^3^1^~cracker (4-1/2" x 2-1/2" x 1/8")~^11.0^^ +~18226~^4^1^~cracker, triple~^25^^ +~18227~^1^.5^~oz~^14.2^^ +~18227~^2^1^~cracker, triple~^22^^ +~18228~^1^5^~crackers~^14.9^22^1.094 +~18228~^2^.5^~oz~^14.2^^ +~18228~^3^1^~cup, crushed~^70^^ +~18228~^4^5^~crackers square (1 serving)~^15.0^^ +~18228~^5^1^~cracker square~^3.0^24^.138 +~18228~^6^1^~cracker, round large~^10.0^^ +~18228~^7^1^~cracker, oyster~^1.0^^ +~18228~^8^1^~cracker, rectangle~^6.0^^ +~18228~^9^1^~cup oyster crackers~^45^^ +~18229~^1^5^~crackers~^16^24^.869 +~18229~^2^5^~crackers, regular size, round (1 serving)~^16^2^ +~18229~^3^1^~cracker, round~^3.2^8^.141 +~18229~^4^1^~cracker, rectangular~^4.0^^ +~18229~^5^1^~cup crushed~^52^8^1.581 +~18230~^1^.5^~oz~^14.2^^ +~18230~^2^1^~cracker, sandwich~^7.0^^ +~18231~^1^.5^~oz~^14.2^^ +~18231~^2^1^~cracker, sandwich~^7.0^^ +~18232~^1^16^~crackers 1 serving~^34^23^6.645 +~18232~^2^2^~crackers 1 serving~^14.5^1^ +~18233~^1^.5^~oz~^14.2^^ +~18233~^2^1^~cracker, sandwich~^7.0^^ +~18234~^1^.5^~oz~^14.2^^ +~18234~^2^1^~cracker, sandwich~^7.0^^ +~18235~^1^1^~serving~^28^^ +~18235~^2^6^~crackers, Triscuits, regular size~^28^^ +~18235~^3^1^~cracker~^4.6^12^.275 +~18235~^4^.5^~oz~^14.2^^ +~18235~^5^1^~cup, crushed~^94^^ +~18235~^6^10^~Triscuit Bits~^10.0^^ +~18236~^1^1^~oz~^28.35^^ +~18236~^2^1^~cup~^115^^ +~18237~^1^1^~oz~^28.35^^ +~18237~^2^1^~eclair (5" x 2" x 1-3/4")~^48^^ +~18237~^3^1^~cream puff shell~^66^^ +~18239~^1^1^~oz~^28.35^^ +~18239~^2^1^~croissant, mini~^28^^ +~18239~^3^1^~croissant, small~^42^^ +~18239~^4^1^~croissant, medium~^57^^ +~18239~^5^1^~croissant, large~^67^^ +~18240~^1^1^~oz~^28.35^^ +~18240~^2^1^~croissant, medium~^57^^ +~18241~^1^1^~oz~^28.35^^ +~18241~^2^1^~croissant, small~^42^^ +~18241~^3^1^~croissant, medium~^57^^ +~18241~^4^1^~croissant, large~^67^^ +~18242~^1^.5^~oz~^14.2^^ +~18242~^2^1^~cup~^30^^ +~18243~^1^.5^~oz~^14.2^^ +~18243~^2^1^~cup~^40^^ +~18243~^3^1^~package, fast food~^10.0^^ +~18243~^4^4^~cubes~^1.0^^ +~18244~^1^1^~oz~^28.35^^ +~18244~^2^1^~large (approx 7" dia)~^142^^ +~18244~^3^1^~small or frozen (approx 3" dia)~^35^^ +~18244~^4^1^~pastry (4-1/4" dia)~^65^^ +~18244~^5^1^~Toaster Strudel~^53^^ +~18244~^6^1^~piece (1/8 of 15 oz ring)~^53^^ +~18245~^1^1^~oz~^28.35^^ +~18245~^2^1^~pastry~^71^^ +~18246~^1^1^~oz~^28.35^^ +~18246~^2^1^~large (approx 7" dia)~^142^^ +~18246~^3^1^~small or frozen (approx 3" dia)~^35^^ +~18246~^4^1^~pastry (4-1/4" dia)~^71^^ +~18246~^5^1^~Toaster Strudel~^53^^ +~18246~^6^1^~piece (1/8 of 15 oz ring)~^53^^ +~18247~^1^1^~oz~^28.35^^ +~18247~^2^1^~pastry (4-1/4" dia)~^65^^ +~18247~^3^1^~piece (1/8 of 15 oz ring)~^53^^ +~18248~^1^1^~donut~^40^9^9.151 +~18248~^2^1^~oz~^28.35^^ +~18248~^3^1^~doughnut stick~^52^^ +~18248~^4^1^~doughnut, long type (twist) (4-1/2" long)~^52^^ +~18248~^5^1^~doughnut medium (3-1/4" dia)~^54^10^6.816 +~18248~^6^1^~doughnut, mini (1-1/2" dia) or doughnut hole~^14.0^^ +~18248~^7^1^~doughnut, large (4" dia)~^71^^ +~18249~^1^1^~oz~^28.35^^ +~18249~^2^1^~donettes (2" dia)~^18^10^2.323 +~18249~^3^1^~doughnut, medium (approx 3" dia)~^43^^ +~18249~^4^1^~doughnut large (approx 3-1/2" dia)~^67^8^8.752 +~18250~^1^1^~oz~^28.35^^ +~18250~^2^1^~doughnut, medium (approx 3" dia)~^45^^ +~18251~^1^1^~oz~^28.35^^ +~18251~^2^1^~doughnut (3-3/4" dia)~^60^^ +~18251~^3^1^~doughnut, medium (approx 3" dia)~^42^^ +~18253~^1^1^~oz~^28.35^^ +~18253~^2^1^~cruller (3" dia)~^41^^ +~18254~^1^1^~oz~^28.35^^ +~18254~^2^1^~doughnut oval (3-1/2" x 2-1/2")~^85^^ +~18255~^1^1^~oz~^28.35^^ +~18255~^2^1^~doughnut hole~^13.0^^ +~18255~^3^1^~doughnut stick~^56^^ +~18255~^4^1^~extra large (approx 5" dia)~^122^^ +~18255~^5^1^~jumbo (approx 6" dia)~^157^^ +~18255~^6^1^~doughnut, large (approx 4-1/4" dia)~^75^^ +~18255~^7^1^~doughnut, long type (twist) approx 5-1/4" x 2-1/2" x 1-1/2" high)~^90^^ +~18255~^8^1^~doughnut medium (approx 3-3/4" dia)~^64^20^12.312 +~18255~^9^1^~doughnut, small (approx 3" dia)~^31^^ +~18255~^10^1^~doughnut (approx 1-1/2 oz)~^42^^ +~18255~^11^1^~doughnut (3-3/4" dia)~^60^^ +~18255~^12^1^~honeybun (4" x 3")~^65^^ +~18255~^13^1^~honeybun (4-1/2" x 3-1/2")~^78^^ +~18255~^14^1^~honeybun (5" x 3-1/2")~^85^^ +~18255~^15^1^~doughnut, medium (approx 3-3/4" dia)~^60^^ +~18255~^16^1^~doughnut~^63^15^10.892 +~18256~^1^1^~oz~^28.35^^ +~18256~^2^1^~doughnut oval (3-1/2" x 2-1/2")~^85^^ +~18258~^1^1^~oz~^28.35^^ +~18258~^2^1^~muffin~^57^^ +~18259~^1^1^~oz~^28.35^^ +~18259~^2^1^~muffin~^52^^ +~18260~^1^1^~oz~^28.35^^ +~18260~^2^1^~muffin~^66^^ +~18261~^1^1^~oz~^28.35^^ +~18261~^2^1^~muffin~^61^^ +~18262~^1^1^~oz~^28.35^^ +~18262~^2^1^~muffin~^57^^ +~18263~^1^1^~oz~^28.35^^ +~18263~^2^1^~muffin~^52^^ +~18264~^1^1^~oz~^28.35^^ +~18264~^2^1^~muffin~^57^^ +~18265~^1^1^~oz~^28.35^^ +~18265~^2^1^~muffin~^52^^ +~18266~^1^1^~oz~^28.35^^ +~18266~^2^1^~muffin~^66^^ +~18267~^1^1^~oz~^28.35^^ +~18267~^2^1^~muffin~^61^^ +~18268~^1^1^~oz~^28.35^^ +~18268~^2^1^~piece~^59^^ +~18269~^1^1^~oz~^28.35^^ +~18269~^2^1^~slice~^65^^ +~18270~^1^1^~oz~^28.35^^ +~18270~^2^1^~cup~^152^^ +~18270~^3^1^~hush puppy~^22^^ +~18271~^1^1^~oz~^28.35^^ +~18271~^2^1^~cone~^4.0^^ +~18271~^3^1^~large waffle cone~^29^^ +~18272~^1^1^~oz~^28.35^^ +~18272~^2^1^~cone~^10.0^^ +~18273~^1^1^~oz~^28.35^^ +~18273~^2^1^~muffin~^57^^ +~18274~^1^1^~oz~^28.35^^ +~18274~^2^1^~mini (1-1/4" dia)~^17^19^6.369 +~18274~^3^1^~small (2-3/4" dia x 2")~^66^15^10.207 +~18274~^4^1^~medium~^113^11^8.142 +~18274~^5^1^~large (3-1/4" dia x 2-3/4")~^139^8^6.27 +~18274~^6^1^~extra large~^168^23^8.164 +~18274~^7^1^~muffin~^31^27^30.394 +~18275~^1^1^~serving~^43^1^ +~18275~^2^1^~package, mix + drained berries~^356^^ +~18275~^3^1^~oz~^28.35^^ +~18277~^1^1^~oz~^28.35^^ +~18277~^2^1^~muffin, toaster~^33^^ +~18278~^1^1^~oz~^28.35^^ +~18278~^2^1^~muffin~^57^^ +~18279~^1^1^~oz~^28.35^^ +~18279~^2^1^~mini~^17^19^6.369 +~18279~^3^1^~small~^66^15^10.207 +~18279~^4^1^~medium~^113^11^8.142 +~18279~^5^1^~large~^139^8^6.27 +~18279~^6^1^~extra large~^168^23^8.164 +~18280~^1^1^~oz~^28.35^^ +~18281~^1^1^~oz~^28.35^^ +~18281~^2^1^~muffin, toaster~^33^^ +~18282~^1^1^~oz~^28.35^^ +~18282~^2^1^~muffin (2-3/4" dia x 2")~^57^^ +~18283~^1^1^~oz~^28.35^^ +~18283~^2^1^~mini~^17^19^6.369 +~18283~^3^1^~small~^66^15^10.207 +~18283~^4^1^~medium~^113^11^8.142 +~18283~^5^1^~large~^139^8^6.27 +~18283~^6^1^~extra large~^168^23^8.164 +~18284~^1^1^~oz~^28.35^^ +~18284~^2^1^~package (7 oz)~^198^^ +~18288~^1^1^~oz~^28.35^^ +~18288~^2^1^~pancake~^41^35^1.338 +~18288~^3^1^~pancake (6" dia)~^73^^ +~18288~^4^1^~mini pancake~^10.1^64^.772 +~18288~^5^1^~pancake~^40^12^1.064 +~18289~^1^.333^~cup~^52^32^5.301 +~18289~^2^1^~oz~^28.35^^ +~18289~^3^1^~cup, poured from box~^130^^ +~18290~^1^1^~oz~^28.35^^ +~18290~^2^1^~pancake (4" dia)~^38^^ +~18290~^3^1^~pancake (6" dia)~^77^^ +~18291~^1^1^~oz~^28.35^^ +~18291~^2^1^~cup, poured from box~^112^^ +~18292~^1^1^~oz~^28.35^^ +~18292~^2^1^~pancake (4" dia)~^38^^ +~18292~^3^1^~pancake (6" dia)~^77^^ +~18293~^1^1^~oz~^28.35^^ +~18293~^2^1^~pancake (4" dia)~^38^^ +~18293~^3^1^~pancake (6" dia)~^77^^ +~18294~^1^1^~oz~^28.35^^ +~18294~^2^1^~pancake (4" dia)~^38^^ +~18294~^3^1^~pancake (6" dia)~^77^^ +~18295~^1^1^~oz~^28.35^^ +~18295~^2^1^~cup, poured from box~^122^^ +~18297~^1^1^~oz~^28.35^^ +~18297~^2^1^~package (8 oz)~^227^^ +~18299~^1^1^~oz~^28.35^^ +~18299~^2^1^~cup, poured from box~^140^^ +~18300~^1^1^~oz~^28.35^^ +~18300~^2^1^~pancake (4" dia)~^44^^ +~18300~^3^1^~pancake (6" dia)~^129^^ +~18301~^1^1^~oz~^28.35^^ +~18301~^2^1^~piece (1/8 of 9" dia)~^125^^ +~18301~^3^1^~piece (1/6 of 8" pie)~^117^^ +~18302~^1^1^~oz~^28.35^^ +~18302~^2^1^~piece (1/8 of 9" dia)~^155^^ +~18303~^1^1^~oz~^28.35^^ +~18303~^2^1^~piece (1/8 of 9" dia)~^92^^ +~18303~^3^1^~piece (1/6 of 8" pie)~^123^^ +~18304~^1^1^~oz~^28.35^^ +~18304~^2^1^~pie (9" dia)~^1186^^ +~18304~^3^1^~piece (1/8 of 9" dia)~^144^^ +~18305~^1^1^~oz~^28.35^^ +~18305~^2^1^~piece (1/8 of 9" dia)~^125^^ +~18305~^3^1^~piece (1/6 of 8" pie)~^117^^ +~18306~^1^1^~oz~^28.35^^ +~18306~^2^1^~piece (1/8 of 9" dia)~^147^^ +~18308~^1^1^~oz~^28.35^^ +~18308~^2^1^~piece (1/8 of 9" dia)~^125^^ +~18308~^3^1^~piece (1/6 of 8" pie)~^117^^ +~18309~^1^1^~oz~^28.35^^ +~18309~^2^1^~piece (1/8 of 9" dia)~^180^^ +~18310~^1^1^~serving .167 pie~^120^1^ +~18310~^2^1^~oz~^28.35^^ +~18310~^3^1^~piece (1/4 of 6" pie)~^99^^ +~18310~^4^1^~piece (1/6 of 8" pie)~^113^^ +~18312~^1^1^~oz~^28.35^^ +~18312~^2^1^~piece (1/8 of 9" dia)~^95^^ +~18313~^1^1^~oz~^28.35^^ +~18313~^2^1^~piece (1/6 of 7" pie)~^64^^ +~18313~^3^1^~piece (1/8 of 7" pie)~^48^^ +~18314~^1^1^~oz~^28.35^^ +~18314~^2^1^~piece (1/8 of 9" dia)~^94^^ +~18316~^1^1^~oz~^28.35^^ +~18316~^2^1^~piece (1/6 of 8" pie)~^104^^ +~18317~^1^1^~oz~^28.35^^ +~18317~^2^1^~piece (1/6 of 8" pie)~^105^^ +~18319~^1^1^~oz~^28.35^^ +~18319~^2^1^~pie (5" x 3-3/4")~^128^^ +~18320~^1^1^~oz~^28.35^^ +~18320~^2^1^~piece (1/6 of 8" pie)~^113^^ +~18321~^1^1^~oz~^28.35^^ +~18321~^2^1^~piece (1/8 of 9" dia)~^127^^ +~18322~^1^1^~oz~^28.35^^ +~18322~^2^1^~piece (1/8 of 9" dia)~^165^^ +~18323~^1^1^~oz~^28.35^^ +~18323~^2^1^~piece (1/6 of 8" pie)~^117^^ +~18324~^1^1^~oz~^28.35^^ +~18324~^2^1^~slice~^133^8^8.558 +~18324~^3^1^~pie~^833^8^121.506 +~18325~^1^1^~oz~^28.35^^ +~18325~^2^1^~piece (1/8 of 9" dia)~^122^^ +~18326~^1^1^~oz~^28.35^^ +~18326~^2^1^~slice~^133^12^3.072 +~18326~^3^1^~pie~^995^12^17.04 +~18327~^1^1^~oz~^28.35^^ +~18327~^2^1^~piece (1/8 of 9" dia)~^155^^ +~18328~^1^1^~oz~^28.35^^ +~18328~^2^1^~piece (1/8 of 9" dia)~^126^^ +~18332~^1^1^~oz~^28.35^^ +~18332~^2^1^~package (10 oz)~^284^^ +~18333~^1^1^~piece (1/8 of 9" crust)~^20^^ +~18333~^2^1^~crust, single 9"~^160^^ +~18334~^1^1^~piece (1/8 of 9" crust)~^18^^ +~18334~^2^1^~pie crust (average weight of 1 frozen crust)~^173^8^32.471 +~18335~^1^1^~pie crust (average weight of 1 baked crust)~^154^8^30.968 +~18336~^1^1^~piece (1/8 of 9" crust)~^23^^ +~18336~^2^1^~crust, single 9"~^180^^ +~18337~^1^1^~oz~^28.35^^ +~18337~^2^1^~shell~^47^^ +~18338~^1^1^~oz~^28.35^^ +~18338~^2^1^~sheet dough~^19^^ +~18339~^1^1^~oz~^28.35^^ +~18339~^2^1^~package (6 oz)~^170^^ +~18342~^1^1^~roll (1 oz)~^28^^ +~18342~^2^1^~each (pan, dinner, or small roll) (2" square, 2" high)~^25^6^4.135 +~18342~^3^1^~roll (hamburger, frankfurter, onion roll, bun, large roll)~^43^^ +~18342~^4^1^~roll (foot long frankfurter roll)~^86^^ +~18344~^1^1^~oz~^28.35^^ +~18344~^2^1^~roll (2-1/2" dia)~^35^^ +~18345~^1^1^~oz~^28.35^^ +~18345~^2^1^~roll~^33^^ +~18346~^1^1^~large (approx 3-1/2" to 4" dia)~^43^^ +~18346~^2^1^~medium~^36^^ +~18346~^3^1^~small (2-3/8" dia)~^28^^ +~18347~^1^1^~roll (1 oz)~^28^^ +~18348~^1^1^~roll (1 oz)~^28^^ +~18348~^2^1^~roll (hamburger, frankfurter roll)~^43^^ +~18348~^3^1^~roll, large submarine, hoagie~^135^^ +~18348~^4^1^~medium (2-1/2" dia)~^36^^ +~18348~^5^1^~roll medium submarine, hoagie~^94^^ +~18348~^6^1^~roll (small submarine, hoagie roll)~^65^^ +~18349~^1^1^~oz~^28.35^^ +~18349~^2^1^~roll~^38^^ +~18350~^1^1^~roll 1 serving~^44^10^3.504 +~18350~^2^1^~oz~^28.35^^ +~18351~^1^1^~oz~^28.35^^ +~18351~^2^1^~roll~^43^^ +~18352~^1^1^~oz~^28.35^^ +~18352~^2^1^~roll~^43^^ +~18353~^1^1^~oz~^28.35^^ +~18353~^2^1^~roll (3-1/2" dia)~^57^^ +~18354~^1^1^~oz~^28.35^^ +~18354~^2^1^~piece~^71^^ +~18355~^1^1^~oz~^28.35^^ +~18355~^2^1^~roll~^66^^ +~18356~^1^1^~oz~^28.35^^ +~18356~^2^1^~large~^83^^ +~18356~^3^1^~roll (2-3/4" square)~^60^^ +~18357~^1^1^~oz~^28.35^^ +~18357~^2^1^~roll~^30^^ +~18358~^1^1^~oz~^28.35^^ +~18358~^2^1^~roll~^30^^ +~18360~^1^1^~shell~^12.9^31^1.68 +~18360~^2^1^~taco~^12.7^15^.942 +~18360~^3^1^~medium (approx 5" dia)~^13.3^^ +~18360~^4^1^~large (6-1/2" dia)~^21^^ +~18360~^5^1^~miniature (3" dia)~^5.0^^ +~18360~^6^1^~oz~^28.35^^ +~18361~^1^1^~oz~^28.35^^ +~18361~^2^1^~pastry~^51^1^ +~18362~^1^1^~oz~^28.35^^ +~18362~^2^1^~pastry~^54^4^1.832 +~18363~^1^1^~oz~^28.35^^ +~18363~^2^1^~enchilada~^19^20^.626 +~18363~^3^1^~tortilla~^24^404^5.405 +~18364~^1^1^~tortilla~^48^31^11.188 +~18364~^2^1^~oz~^28.35^^ +~18364~^3^1^~tortilla medium (approx 6" dia)~^30^120^2.984 +~18364~^4^1^~package~^407^26^75.7 +~18364~^5^1^~tortilla (approx 10" dia)~^72^^ +~18364~^6^1^~tortilla (approx 12" dia)~^117^^ +~18364~^7^1^~tortilla (approx 7-8" dia)~^49^^ +~18365~^1^1^~oz~^28.35^^ +~18365~^2^1^~waffle, square (4" square) (include frozen)~^35^^ +~18367~^1^1^~oz~^28.35^^ +~18367~^2^1^~waffle, round (7" dia)~^75^^ +~18368~^1^1^~oz~^28.35^^ +~18368~^2^1^~wrapper, eggroll (7" square)~^32^^ +~18368~^3^1^~wrapper, wonton (3-1/2" square)~^8.0^^ +~18369~^1^1^~tsp~^4.6^^ +~18369~^2^.5^~tsp~^2.3^^ +~18370~^1^1^~tsp~^4.6^^ +~18370~^2^.5^~tsp~^2.3^^ +~18371~^1^1^~tsp~^5.0^^ +~18371~^2^.5^~tsp~^2.5^^ +~18372~^1^1^~tsp~^4.6^^ +~18372~^2^.5^~tsp~^2.3^^ +~18373~^1^1^~tsp~^3.0^^ +~18373~^2^.5^~tsp~^1.5^^ +~18374~^1^1^~cake (0.6 oz)~^17^^ +~18375~^1^1^~tsp~^4.0^^ +~18375~^2^1^~tbsp~^12.0^^ +~18375~^3^1^~packet~^7.2^3^.173 +~18376~^1^1^~oz~^28.35^^ +~18376~^2^1^~cup~^120^^ +~18377~^1^1^~oz~^28.35^^ +~18377~^2^1^~cookie (2-5/8" dia)~^15.0^^ +~18378~^1^1^~oz~^28.35^^ +~18378~^2^1^~cookie, medium (2-1/4" dia)~^16^^ +~18383~^1^1^~oz~^28.35^^ +~18383~^2^1^~slice~^17^^ +~18384~^1^1^~oz~^28.35^^ +~18384~^2^1^~slice~^25^^ +~18385~^1^1^~oz~^28.35^^ +~18385~^2^1^~slice~^25^^ +~18386~^1^1^~oz~^28.35^^ +~18386~^2^1^~muffin, toaster~^31^^ +~18388~^1^1^~oz~^28.35^^ +~18388~^2^1^~muffin, toaster~^34^^ +~18390~^1^1^~oz~^28.35^^ +~18390~^2^1^~pancake (4" dia)~^38^^ +~18390~^3^1^~pancake (6" dia)~^77^^ +~18396~^1^1^~oz~^28.35^^ +~18396~^2^1^~large roll or bun (3-1/2" dia)~^43^^ +~18396~^3^1^~roll (2-1/2" dia)~^35^^ +~18399~^1^1^~piece (1/8 of 9" crust)~^30^^ +~18399~^2^1^~crust, single 9"~^244^^ +~18400~^1^.5^~oz~^14.2^^ +~18400~^2^1^~matzo~^28^^ +~18401~^1^1^~cup~^129^^ +~18401~^2^1^~crust, single 9"~^176^^ +~18401~^3^1^~piece (1/8 of 9" crust)~^22^^ +~18402~^1^1^~piece (1/8 of 9" crust)~^24^^ +~18402~^2^1^~crust, single 9"~^194^^ +~18403~^1^1^~oz~^28.35^^ +~18403~^2^1^~waffle, round (4" dia)~^33^^ +~18403~^3^1^~waffle, square (4" square)~^33^^ +~18406~^1^1^~oz~^28.35^^ +~18406~^2^1^~mini bagel (2-1/2" dia)~^26^^ +~18406~^3^1^~small bagel (3" dia)~^69^14^11.387 +~18406~^4^1^~medium bagel (3-1/2" to 4" dia)~^105^43^7.619 +~18406~^5^1^~large bagel (4-1/2" dia)~^131^7^9.845 +~18407~^1^1^~oz~^28.35^^ +~18407~^2^1^~mini bagel (2-1/2" dia)~^26^^ +~18407~^3^1^~small bagel (3" dia)~^69^14^11.387 +~18407~^4^1^~medium bagel (3-1/2" to 4")~^105^43^7.619 +~18407~^5^1^~large bagel (4-1/2" dia)~^131^7^9.845 +~18408~^1^1^~oz~^28.35^^ +~18408~^2^1^~mini bagel (2-1/2" dia)~^26^^ +~18408~^3^1^~small bagel (3" dia)~^69^14^11.387 +~18408~^4^1^~medium bagel (3-1/2" to 4" dia)~^105^43^7.619 +~18408~^5^1^~large bagel (4-1/2" dia)~^131^7^9.845 +~18412~^1^1^~oz~^28.35^^ +~18412~^2^1^~package (8.5 oz)~^241^^ +~18413~^1^1^~oz~^28.35^^ +~18413~^2^1^~pita, large (6-1/2" dia)~^60^^ +~18414~^1^1^~oz~^28.35^^ +~18414~^2^1^~slice, large~^32^^ +~18414~^3^1^~slice~^26^^ +~18414~^4^1^~slice, thin~^23^^ +~18416~^1^1^~oz~^28.35^^ +~18416~^2^1^~cup, crumbs~^45^^ +~18416~^3^1^~cup, cubes~^35^^ +~18416~^4^1^~slice, large~^30^^ +~18416~^5^1^~slice~^25^^ +~18416~^6^1^~slice, thin~^20^^ +~18417~^1^1^~oz~^28.35^^ +~18417~^2^1^~individual cake~^57^^ +~18417~^3^1^~piece (1/9 of 20 oz cake)~^63^^ +~18418~^1^1^~piece (1/10 of 10.6 oz cake)~^30^^ +~18418~^2^1^~piece (1/12 of 12 oz cake)~^28^^ +~18418~^3^1^~snack cake (2.5 oz)~^71^^ +~18419~^1^1^~oz~^28.35^^ +~18419~^2^1^~package (18.50 oz)~^524^^ +~18420~^1^1^~oz~^28.35^^ +~18420~^2^1^~package (18.50 oz)~^524^^ +~18421~^1^1^~oz~^28.35^^ +~18421~^2^1^~cookie~^5.0^^ +~18422~^1^1^~oz~^28.35^^ +~18422~^2^1^~cookie, medium (2-1/4" dia)~^10.0^^ +~18422~^3^1^~cookie, bite size (include Mini Chips Ahoy!)~^2.2^^ +~18423~^1^1^~oz~^28.35^^ +~18423~^2^1^~anisette sponge (4" x 1-1/8" x 7/8")~^13.0^^ +~18423~^3^1^~breakfast treat (approx 4" x 2" x 7/8")~^24^^ +~18423~^4^1^~ladyfinger~^11.0^^ +~18424~^1^.5^~oz~^14.2^^ +~18424~^2^1^~cup, crushed~^70^^ +~18424~^3^1^~cup pieces~^30^^ +~18424~^4^1^~cup, rounds~^33^^ +~18424~^5^1^~melba round~^3.0^^ +~18424~^6^1^~piece (3-3/4" x 1-3/4" x 1/8")~^5.0^^ +~18424~^7^1^~toast~^5.0^^ +~18425~^1^.5^~oz~^14.2^^ +~18425~^2^1^~cup oyster crackers~^45^^ +~18425~^3^1^~cracker~^3.0^24^.138 +~18425~^4^1^~cracker, round large~^10.0^^ +~18425~^5^1^~cracker, oyster~^1.0^^ +~18425~^6^1^~cracker, rectangle~^6.0^^ +~18426~^1^.5^~oz~^14.2^^ +~18426~^2^1^~cracker~^3.0^^ +~18427~^1^.5^~oz~^14.2^^ +~18427~^2^1^~cup, bite size~^62^^ +~18427~^3^1^~cup, crushed~^72^^ +~18427~^4^1^~cracker, rectangular~^4.0^^ +~18427~^5^1^~cracker, oval~^3.0^^ +~18427~^6^1^~cracker, round~^3.0^^ +~18428~^1^.5^~oz~^14.2^^ +~18428~^2^1^~cup, crushed~^83^^ +~18428~^3^1^~cracker~^2.0^^ +~18428~^4^1^~cracker, thin square~^2.0^^ +~18429~^1^.5^~oz~^14.2^^ +~18429~^2^1^~cup, crushed~^94^^ +~18429~^3^1^~cracker~^4.0^^ +~18429~^4^1^~cracker, square~^4.0^^ +~18429~^5^10^~Triscuit Bits~^10.0^^ +~18430~^1^1^~oz~^28.35^^ +~18430~^2^1^~large (approx 7" dia)~^142^^ +~18430~^3^1^~small or frozen (approx 3" dia)~^35^^ +~18430~^4^1^~pastry (4-1/4" dia)~^65^^ +~18430~^5^1^~Toaster Strudel~^53^^ +~18430~^6^1^~piece (1/8 of 15 oz ring)~^53^^ +~18431~^1^1^~oz~^28.35^^ +~18431~^2^1^~container (3 oz)~^142^^ +~18431~^3^1^~small or frozen (approx 3" dia)~^35^^ +~18431~^4^1^~pastry (4-1/4" dia)~^71^^ +~18431~^5^1^~Toaster Strudel~^53^^ +~18431~^6^1^~piece (1/8 of 15 oz ring)~^53^^ +~18432~^1^1^~oz~^28.35^^ +~18432~^2^1^~slice~^23^^ +~18433~^1^1^~oz~^28.35^^ +~18433~^2^1^~pastry~^71^^ +~18434~^1^.5^~oz~^14.2^^ +~18434~^2^1^~cup Cheez-its~^62^^ +~18434~^3^1^~cup, crushed~^72^^ +~18434~^4^1^~gold fish~^0.6^^ +~18434~^5^1^~cracker (1" square)~^1.0^^ +~18435~^1^1^~oz~^28.35^^ +~18435~^2^1^~pastry (4-1/4" dia)~^71^^ +~18436~^1^1^~oz~^28.35^^ +~18436~^2^1^~doughnut, medium (3-1/4" dia)~^60^^ +~18437~^1^1^~oz~^28.35^^ +~18437~^2^1^~muffin~^57^^ +~18438~^1^1^~oz~^28.35^^ +~18438~^2^1^~muffin~^57^^ +~18439~^1^1^~oz~^28.35^^ +~18439~^2^1^~muffin~^57^^ +~18443~^1^1^~oz~^28.35^^ +~18443~^2^1^~piece (1/8 of 9" dia)~^125^^ +~18443~^3^1^~piece (1/6 of 8" pie)~^117^^ +~18444~^1^1^~oz~^28.35^^ +~18444~^2^1^~pie (5" x 3-3/4")~^128^^ +~18445~^1^1^~oz~^28.35^^ +~18445~^2^1^~pie (5" x 3-3/4")~^128^^ +~18446~^1^1^~crust, single 9"~^142^^ +~18446~^2^1^~piece (1/8 of 9" crust)~^16^^ +~18447~^1^1^~oz~^28.35^^ +~18447~^2^1^~package (6 oz)~^170^^ +~18448~^1^1^~oz~^28.35^^ +~18448~^2^1^~medium (approx 5" dia)~^13.0^^ +~18448~^3^1^~miniature (3" dia)~^5.0^^ +~18449~^1^1^~oz~^28.35^^ +~18449~^2^1^~tortilla, medium (approx 6" dia)~^26^^ +~18450~^1^1^~oz~^28.35^^ +~18450~^2^1^~tortilla, medium (approx 6" dia)~^32^^ +~18450~^3^1^~tortilla (approx 10" dia)~^72^^ +~18450~^4^1^~tortilla (approx 12" dia)~^117^^ +~18450~^5^1^~tortilla (approx 7-8" dia)~^49^^ +~18451~^1^1^~oz~^28.35^^ +~18451~^2^1^~cake~^340^^ +~18453~^1^1^~oz~^28.35^^ +~18453~^2^1^~package (18.50 oz)~^524^^ +~18457~^1^3^~saltines~^15.0^^ +~18457~^2^6^~saltines~^30^^ +~18459~^1^1^~tart~^52^^ +~18476~^1^1^~pastry~^52^^ +~18477~^1^1^~pastry~^52^^ +~18478~^1^1^~pastry~^50^^ +~18479~^1^1^~pastry~^50^1^ +~18481~^1^1^~pastry~^52^^ +~18482~^1^1^~pastry~^52^1^ +~18486~^1^1^~pastry~^52^^ +~18487~^1^1^~pastry~^52^^ +~18488~^1^1^~pastry~^52^^ +~18489~^1^1^~pastry~^52^1^ +~18490~^1^1^~pastry~^52^1^ +~18494~^1^1^~pastry~^50^1^ +~18497~^1^1^~pastry~^50^1^ +~18499~^1^3^~pancakes (NLEA serving)~^116^^ +~18501~^1^1^~bar (NLEA serving)~^116^^ +~18505~^1^2^~waffles 1 serving~^70^1^ +~18505~^2^1^~round waffle (4" dia) (include frozen)~^35^^ +~18506~^1^2^~waffles 1 serving~^70^1^ +~18506~^2^1^~waffle, round (4" dia) (include frozen)~^35^^ +~18507~^1^1^~waffle, round (4" dia) (include frozen)~^35^^ +~18507~^2^1^~serving~^70^^ +~18513~^1^1^~serving~^24^^ +~18522~^1^1^~serving~^24^^ +~18524~^1^1^~serving~^22^^ +~18527~^1^1^~serving~^25^^ +~18528~^1^1^~serving~^24^^ +~18529~^1^1^~serving~^26^^ +~18532~^1^1^~serving~^28^^ +~18533~^1^1^~serving~^28^^ +~18535~^1^1^~serving~^26^^ +~18537~^1^1^~serving~^25^^ +~18538~^1^1^~serving~^26^^ +~18539~^1^1^~serving~^26^^ +~18540~^1^1^~serving~^20^^ +~18541~^1^1^~serving~^21^^ +~18544~^1^1^~serving~^25^^ +~18547~^1^1^~serving~^25^^ +~18562~^1^1^~serving~^32^^ +~18566~^1^1^~muffin~^31^^ +~18567~^1^1^~NLEA serving (makes 1/2 cup prepared)~^28^^ +~18603~^1^1^~serving~^67^^ +~18608~^1^1^~serving~^31^^ +~18609~^1^8^~cookies~^30^1^ +~18610~^1^1^~serving~^40^^ +~18612~^1^1^~serving~^57^^ +~18614~^1^1^~serving~^28^^ +~18615~^1^1^~serving~^41^^ +~18616~^1^1^~serving~^51^^ +~18617~^1^1^~serving~^28^^ +~18619~^1^1^~serving~^11.0^^ +~18621~^1^1^~cracker~^3.3^12^.108 +~18621~^2^5^~cracker (1 NLEA serving)~^16^^ +~18629~^1^1^~biscuit~^64^^ +~18629~^2^1^~serving~^64^^ +~18630~^1^1^~serving 2 cookies~^38^^ +~18631~^1^1^~serving~^52^^ +~18632~^1^1^~serving~^30^^ +~18633~^1^1^~biscuit~^34^^ +~18634~^1^1^~serving~^34^^ +~18635~^1^1^~serving 1 roll with icing~^44^1^ +~18637~^1^1^~serving~^28^^ +~18639~^1^1^~serving~^57^^ +~18640~^1^1^~eclair, frozen~^59^^ +~18641~^1^1^~serving~^43^^ +~18642~^1^1^~serving~^43^^ +~18651~^1^1^~serving~^16^^ +~18927~^1^6^~cracker 1 cracker = 6.5g~^39^^ +~18927~^2^1^~sandwich~^6.5^^ +~18932~^1^1^~waffle, square~^39^10^1.711 +~18932~^2^1^~waffle, round~^38^40^3.095 +~18933~^1^1^~oz~^28^^ +~18933~^2^1^~waffle round (4" dia)~^33^^ +~18933~^3^1^~waffle square (4" square)~^33^^ +~18934~^1^1^~waffle~^35^^ +~18935~^1^1^~waffle, round (4"dia)~^32^^ +~18936~^1^1^~oz~^28.35^^ +~18936~^2^1^~pancake~^38^5^.471 +~18936~^3^1^~serving (3 pancakes)~^144^^ +~18938~^1^1^~piece~^53^34^1.48 +~18938~^2^1^~oz~^28.35^^ +~18939~^1^1^~pastry~^51^8^2.641 +~18940~^1^1^~muffin small~^71^1^ +~18940~^2^1^~oz~^28.35^^ +~18942~^1^1^~oz~^28.35^^ +~18942~^2^1^~crust~^183^8^6.897 +~18943~^1^1^~crust~^182^10^8.513 +~18944~^1^.125^~pie 1 pie (1/8 of 9" pie)~^131^2^ +~18944~^2^1^~slice~^137^12^8.197 +~18944~^3^1^~pie~^1137^12^117.634 +~18944~^4^1^~oz~^28.35^^ +~18945~^1^1^~pie crust (average weight)~^225^12^41.843 +~18946~^1^1^~pie crust~^198^8^11.621 +~18947~^1^1^~pie crust (average weight)~^202^12^40.379 +~18948~^1^1^~pie crust (average weight)~^229^8^11.202 +~18949~^1^1^~serving~^29^^ +~18949~^2^1^~cracker~^4.2^12^.287 +~18949~^3^6^~Triscuits, regular size~^29^^ +~18950~^1^1^~serving~^29^^ +~18950~^2^1^~cracker~^1.8^12^.106 +~18950~^3^16^~crackers, Wheat Thins~^29^^ +~18951~^1^2^~waffles~^70^1^ +~18952~^1^1^~piece~^12.3^15^.446 +~18952~^2^3^~pieces (mean serving weight, aggregated over brands)~^37^2^ +~18953~^1^1^~serving (approximate serving size)~^55^^ +~18953~^2^1^~cake square (average weight of whole item)~^399^3^6.676 +~18954~^1^1^~serving~^55^1^ +~18954~^2^1^~cake square~^622^4^142.463 +~18955~^1^1^~slice (average weight of 1 slice)~^63^9^27.206 +~18956~^1^1^~piece~^42^^ +~18957~^1^1^~slice~^39^3^3.612 +~18957~^2^1^~loaf~^311^1^ +~18958~^1^1^~piece (1 serving)~^42^^ +~18959~^1^1^~piece~^86^9^7.925 +~18960~^1^1^~serving (1 NLEA serving - about 4 crackers)~^30^^ +~18960~^2^1^~cracker~^12.7^2^ +~18961~^1^11^~crackers (1 NLEA serving)~^31^^ +~18961~^2^1^~cracker~^3.1^11^.093 +~18962~^1^10^~crackers (1 NLEA serving)~^32^^ +~18962~^2^1^~cracker~^3.1^4^.163 +~18963~^1^1^~slice presliced~^43^6^3.208 +~18963~^2^1^~slice~^59^14^8.544 +~18964~^1^1^~bun~^65^20^32.286 +~18965~^1^1^~serving~^30^1^ +~18966~^1^1^~serving~^14.0^1^ +~18967~^1^1^~slice~^28^2^ +~18968~^1^1^~bagel~^98^1^ +~18969~^1^4^~oz~^113^1^ +~18970~^1^1^~tortilla~^49^30^12.001 +~18970~^2^1^~package~^484^30^100.029 +~18971~^1^1^~slice~^32^1^ +~18972~^1^1^~slice~^48^1^ +~18973~^1^1^~piece~^57^1^ +~18974~^1^15^~cracker~^30^1^ +~18975~^1^15^~crackers~^30^1^ +~18976~^1^18^~cracker~^30^1^ +~18977~^1^15^~crackers~^31^1^ +~18978~^1^2^~pieces~^72^1^ +~18979~^1^7^~cracker~^30^1^ +~18980~^1^2^~pieces~^72^1^ +~18981~^1^15^~crackers~^30^1^ +~18982~^1^7^~cracker~^30^1^ +~18983~^1^1^~package~^39^1^ +~18984~^1^1^~package~^39^1^ +~18985~^1^1^~package~^39^1^ +~18986~^1^1^~package~^39^1^ +~18987~^1^1^~package~^36^1^ +~18988~^1^1^~package~^36^1^ +~18989~^1^1^~package~^36^1^ +~18990~^1^1^~package~^39^1^ +~18991~^1^4^~cookies~^31^1^ +~18992~^1^12^~chips~^28^1^ +~18993~^1^1^~cookie~^30^1^ +~18994~^1^1^~cookie~^30^1^ +~18995~^1^1^~bscuit~^105^1^ +~18996~^1^1^~bscuit~^105^1^ +~18997~^1^2^~pieces~^90^1^ +~18998~^1^2^~pieces~^90^1^ +~18999~^1^1^~set~^46^1^ +~19001~^1^1^~bar~^35^^ +~19002~^1^1^~oz~^28.35^^ +~19002~^2^1^~piece, large~^20^^ +~19002~^3^1^~oz~^28.35^5^0 +~19003~^1^1^~oz~^28^22^0 +~19003~^2^1^~oz~^28.35^^ +~19003~^3^1^~bag (7 oz)~^198^^ +~19004~^1^1^~oz~^28.35^^ +~19004~^2^1^~bag (7 oz)~^198^^ +~19005~^1^1^~oz~^28.35^^ +~19007~^1^1^~oz~^28.35^^ +~19007~^2^2^~oz~^57^^ +~19008~^1^1^~oz~^28.35^^ +~19008~^2^1^~package 1.25 oz~^35^^ +~19009~^1^1^~oz~^28.35^^ +~19009~^2^2^~oz~^57^^ +~19009~^3^1^~cup~^85^^ +~19010~^1^1^~bar (1 oz)~^28^^ +~19013~^1^1^~oz~^28.35^^ +~19013~^2^1^~package~^27^^ +~19013~^3^1^~packet (.75 oz)~^21^^ +~19014~^1^1^~large~^21^^ +~19014~^2^1^~small~^14.0^^ +~19015~^1^1^~bar~^21^^ +~19015~^2^1^~bar (1 oz)~^28^^ +~19015~^3^1^~bar~^25^^ +~19016~^1^1^~oz~^28.35^^ +~19016~^2^1^~bar~^24^^ +~19017~^1^1^~oz~^28.35^^ +~19017~^2^1^~bar~^24^^ +~19018~^1^1^~cup~^334^^ +~19018~^2^.25^~cup~^84^^ +~19020~^1^1^~bar (1 oz)~^28^^ +~19021~^1^1^~bar (1 oz)~^28^^ +~19022~^1^1^~bar (1.5 oz)~^43^^ +~19022~^2^1^~bar (1 oz)~^28^^ +~19024~^1^1^~bar (1.25 oz)~^35^^ +~19024~^2^1^~bar (1 oz)~^28^^ +~19026~^1^1^~oz~^28.35^^ +~19026~^2^1^~bar~^37^^ +~19027~^1^1^~bar (1 oz)~^28^^ +~19030~^1^1^~serving~^20^^ +~19031~^1^1^~oz~^28.35^^ +~19031~^2^2^~oz~^57^^ +~19033~^1^1^~oz~^28.35^^ +~19033~^2^1^~cup~^47^4^5.35 +~19033~^3^1^~package~^49^^ +~19034~^1^1^~cup~^8.0^^ +~19034~^2^1^~oz~^28.35^^ +~19035~^1^1^~cup~^11.0^^ +~19035~^2^1^~oz~^28.35^^ +~19036~^1^1^~cake~^10.0^^ +~19036~^2^2^~cakes~^20^^ +~19038~^1^1^~oz (approx 2/3 cup)~^28.35^^ +~19038~^2^2^~oz~^57^^ +~19039~^1^1^~oz~^28.35^^ +~19040~^1^1^~cup~^11.0^^ +~19040~^2^1^~oz~^28.35^^ +~19041~^1^1^~oz~^28.35^^ +~19041~^2^.5^~oz~^14.2^^ +~19042~^1^1^~oz~^28.35^^ +~19042~^2^1^~bag (7 oz)~^198^^ +~19043~^1^1^~oz~^28.35^^ +~19043~^2^1^~bag (7 oz)~^198^^ +~19045~^1^1^~oz~^28.35^^ +~19045~^2^1^~can (6 oz)~^170^^ +~19046~^1^1^~oz~^28.35^^ +~19046~^2^1^~can (6.75 oz)~^198^^ +~19047~^1^1^~oz~^28.35^^ +~19047~^2^10^~twists~^60^^ +~19048~^1^1^~oz~^28.35^^ +~19048~^2^1^~pretzel~^11.0^^ +~19049~^1^1^~oz~^28.35^^ +~19049~^2^10^~pieces~^30^^ +~19050~^1^1^~oz~^28.35^^ +~19050~^2^2^~oz~^57^^ +~19051~^1^1^~cake~^9.0^^ +~19051~^2^2^~cakes~^18^^ +~19052~^1^1^~cake~^9.0^^ +~19052~^2^2^~cakes~^18^^ +~19053~^1^1^~cake~^9.0^^ +~19053~^2^2^~cakes~^18^^ +~19056~^1^1^~oz~^28.35^1^ +~19056~^2^1^~bag~^213^1^ +~19057~^1^1^~oz~^28.35^^ +~19058~^1^1^~oz~^28.35^^ +~19058~^2^1^~bag (7 oz)~^198^^ +~19059~^1^1^~cup~^150^^ +~19059~^2^1^~oz~^28.35^^ +~19059~^3^1.5^~oz~^42^^ +~19061~^1^1^~cup~^140^^ +~19061~^2^1^~oz~^28.35^^ +~19061~^3^1.5^~oz~^42^^ +~19062~^1^1^~cup~^146^^ +~19062~^2^1^~oz~^28.35^^ +~19062~^3^1.5^~oz~^42^^ +~19063~^1^1^~oz~^28.35^^ +~19063~^2^1^~bag (8 oz)~^227^^ +~19064~^1^1^~serving 6 pieces~^40^1^ +~19064~^2^1^~piece~^6.6^4^.189 +~19065~^1^1^~package 1.76 oz~^49^1^ +~19065~^2^1^~bar snack size~^19^1^ +~19067~^1^18^~pieces~^40^1^ +~19068~^1^1^~serving 6 pieces~^40^1^ +~19069~^1^1^~serving 2.1 oz bar~^60^1^ +~19069~^2^1^~serving 1 fun size bar 0.65 oz~^18^1^ +~19069~^3^1^~serving 0.75 oz bar~^21^1^ +~19069~^4^1^~bar bite size~^7.0^^ +~19069~^5^1^~bar king size~^108^^ +~19069~^6^10^~Butterfinger BB's~^26^^ +~19069~^7^2^~tbsp~^25^^ +~19069~^8^1^~cup BB's~^174^^ +~19070~^1^1^~oz~^28.35^1^ +~19070~^2^3^~pieces~^16^2^ +~19071~^1^1^~oz~^28.35^^ +~19071~^2^1^~bar (3 oz)~^87^^ +~19074~^1^1^~package (2.5 oz)~^71^^ +~19074~^2^1^~piece~^10.1^^ +~19075~^1^1^~bar 1.25 oz~^35^1^ +~19075~^2^1^~bar 1.6 oz~^45^1^ +~19075~^3^6^~blocks~^43^1^ +~19076~^1^1^~piece~^6.6^4^.189 +~19076~^2^1^~bar 2.25 oz~^64^1^ +~19076~^3^1^~serving 6 pieces~^40^1^ +~19077~^1^1^~oz~^28.35^^ +~19078~^1^1^~oz square Bakers~^29^18^.72 +~19078~^2^1^~cup, grated~^132^^ +~19078~^3^.5^~oz Hersheys~^14.2^^ +~19079~^1^1^~cup chips~^170^^ +~19080~^1^1^~serving~^14.5^2^ +~19080~^2^1^~cup large chips~^182^^ +~19080~^3^1^~cup mini chips~^173^^ +~19080~^4^1^~oz (approx 60 pcs)~^28.35^^ +~19080~^5^1^~cup chips (6 oz package)~^168^^ +~19081~^1^1^~oz~^28.35^^ +~19081~^2^1^~bar (1.45 oz)~^41^^ +~19083~^1^1^~patty, large~^43^^ +~19083~^2^1^~patty, small~^11.0^^ +~19084~^1^13^~pieces~^41^1^ +~19085~^1^1^~cup chips~^170^^ +~19085~^2^1^~oz~^28.35^^ +~19086~^1^1^~cup chips~^168^^ +~19086~^2^1^~oz~^28.35^^ +~19087~^1^1^~bar (3 oz)~^85^^ +~19087~^2^1^~tbsp~^14.0^1^ +~19087~^3^1^~cup chips~^170^^ +~19088~^1^1^~serving 1/2 cup~^76^4^16 +~19089~^1^.5^~cup~^107^2^ +~19090~^1^.5^~cup (4 fl oz)~^86^^ +~19091~^1^1^~patty 1.5 oz~^43^1^ +~19092~^1^27^~pieces~^40^1^ +~19093~^1^1^~bar 1.5 oz~^42^1^ +~19093~^2^1^~bar 2.4 oz~^68^1^ +~19094~^1^.5^~cup~^153^^ +~19094~^2^1^~recipe yield~^1531^^ +~19095~^1^1^~serving 1/2 cup~^66^3^1.732 +~19096~^1^1^~serving 1/2 cup~^88^^ +~19097~^1^.5^~cup (4 fl oz)~^74^^ +~19097~^2^1^~bar (2.75 fl oz)~^66^^ +~19098~^1^1^~bar 2 oz~^56^1^ +~19098~^2^1^~bar snack size~^16^1^ +~19099~^1^1^~oz~^28.35^^ +~19100~^1^1^~piece~^17^^ +~19101~^1^1^~oz~^28.35^^ +~19102~^1^1^~piece~^16^^ +~19103~^1^1^~oz~^28.35^^ +~19104~^1^1^~oz~^28.35^^ +~19105~^1^1^~package 1.375 oz~^39^^ +~19105~^2^1^~serving 0.25 cup~^41^^ +~19105~^3^1^~serving fun size~^48^^ +~19106~^1^1^~cup gumdrops~^182^^ +~19106~^2^10^~gumdrops~^36^^ +~19106~^3^10^~gummy bears~^22^^ +~19106~^4^10^~gummy dinosaurs~^63^^ +~19106~^5^10^~gummy fish~^50^^ +~19106~^6^10^~gummy worms~^74^^ +~19106~^7^1^~spice stick~^9.5^^ +~19106~^8^1^~spice drop~^24^^ +~19106~^9^1^~gumdrop, small (1/2" dia)~^3.2^^ +~19106~^10^1^~gumdrop, medium (3/4" dia)~^4.2^^ +~19106~^11^1^~gumdrop, large (1" dia)~^11.6^^ +~19106~^12^1^~jelly ring (1-1/4" dia)~^10.0^^ +~19107~^1^1^~oz~^28.35^^ +~19107~^2^1^~piece~^6.0^^ +~19107~^3^1^~piece, small~^3.0^^ +~19108~^1^10^~small~^11.0^^ +~19108~^2^10^~large (1 oz)~^28^^ +~19109~^1^1^~bar (1.5 oz)~^42^^ +~19109~^2^1^~bar, miniature (.35 oz)~^10.0^^ +~19109~^3^1^~bar (1.625 oz)~^46^^ +~19109~^4^1^~bar (2.8 oz)~^78^^ +~19109~^5^1^~bar (3.375 oz)~^96^^ +~19110~^1^1^~bar 1.45 oz~^41^1^ +~19110~^2^1^~bar 2 oz~^56^1^ +~19110~^3^3^~blocks~^37^1^ +~19111~^1^1^~serving 2.1 oz bar~^60^1^ +~19111~^2^1^~serving fun size bar 0.65 oz~^18^1^ +~19112~^1^4^~pieces 1.6oz~^45^^ +~19113~^1^1^~serving 1/4 cup~^73^^ +~19114~^1^1^~serving~^68^2^ +~19114~^2^1^~unit~^100^2^ +~19115~^1^1^~bar (1.76 oz)~^50^^ +~19116~^1^1^~cup of miniature~^50^^ +~19116~^2^10^~miniatures~^7.0^^ +~19116~^3^1^~regular~^7.2^^ +~19117~^1^1^~oz~^28.35^^ +~19118~^1^1^~bar 2 oz~^57^^ +~19118~^2^1^~serving fun size bar~^26^1^ +~19119~^1^1^~serving 1.4 oz bar~^40^1^ +~19120~^1^1^~bar, miniature~^7.0^^ +~19120~^2^1^~bar (1.55 oz)~^44^^ +~19120~^3^1^~cup chips~^168^^ +~19121~^1^.5^~cup From 19191~^147^^ +~19122~^1^.5^~cup From 19211~^142^^ +~19123~^1^.5^~cup From 19211~^142^^ +~19124~^1^1^~tablet~^20^^ +~19125~^1^1^~serving 2 TBSP~^37^1^ +~19126~^1^1^~cup~^149^^ +~19126~^2^10^~pieces~^40^^ +~19127~^2^1^~cup~^180^^ +~19127~^3^10^~pieces~^10.0^^ +~19128~^1^1^~serving 1/4 cup~^73^4^ +~19128~^2^1^~tbsp~^15.0^^ +~19128~^3^1^~oz~^28.35^^ +~19128~^4^1^~cup~^240^^ +~19129~^1^1^~cup~^314^^ +~19129~^2^1^~tbsp~^20^^ +~19130~^1^1^~bar 2.8 oz~^78^1^ +~19132~^1^1^~bar (1.45 oz)~^41^^ +~19132~^2^1^~bar (1.55 oz)~^44^^ +~19134~^1^1^~bar (1.4 oz)~^40^^ +~19134~^2^1^~bar (1.45 oz)~^45^^ +~19134~^3^1^~bar (1.65 oz)~^47^^ +~19134~^4^1^~bar, miniature~^10.0^^ +~19134~^5^1^~bar (1.55 oz)~^44^^ +~19135~^1^1^~serving 2.05 oz bar~^58^1^ +~19135~^2^1^~bar fun size~^17^1^ +~19135~^3^1^~piece miniature 5 pieces = serving~^8.2^1^ +~19135~^4^1^~bar king size~^103^1^ +~19136~^1^1^~bar 1.4 oz~^39^1^ +~19137~^1^2^~tbsp~^42^^ +~19137~^2^1^~serving~^40^1^ +~19137~^3^1^~cup~^340^^ +~19138~^1^1^~piece~^12.0^^ +~19138~^2^1^~recipe yield, recipe makes 49 1 " x 1" pieces~^612^^ +~19139~^1^1^~serving 0.5 oz, about 1 tbsp~^14.0^1^ +~19139~^2^1^~package (net weight, 12 oz)~^340^^ +~19140~^1^1^~serving 1 singles bag~^54^1^ +~19140~^2^1^~package fun size~^18^1^ +~19140~^3^10^~pieces~^20^^ +~19140~^4^1^~cup~^170^^ +~19141~^1^1^~package (1.69 oz)~^48^^ +~19141~^2^1^~box (1.48 oz)~^42^^ +~19141~^3^1^~cup~^208^^ +~19141~^4^1^~serving~^21^^ +~19141~^5^10^~pieces~^7.0^^ +~19142~^1^1^~bar snack size~^19^1^ +~19142~^2^1^~package 1.9 oz~^53^1^ +~19143~^1^1^~bar (1.75 oz)~^49^^ +~19143~^2^1^~bar (2.6 oz)~^73^^ +~19144~^1^1^~bar (1.5 oz)~^43^^ +~19144~^2^1^~bar, miniature~^21^^ +~19144~^3^1^~serving 1.5 oz bar~^43^1^ +~19145~^1^1^~bar 1.55 oz~^44^^ +~19145~^2^1^~bar 0.5 oz~^14.2^^ +~19145~^3^1^~serving 4 fun size bars~^41^^ +~19145~^4^2^~tbsp~^24^^ +~19146~^1^1^~serving 0.5 oz, about 1 tbsp~^14.0^1^ +~19147~^1^1^~oz~^28.35^^ +~19147~^2^1^~bar (1.4 oz)~^40^^ +~19147~^3^1^~bar (1.6 oz)~^45^^ +~19147~^4^1^~bar (1.75 fl oz)~^50^^ +~19148~^1^1^~oz~^28.35^^ +~19149~^1^1^~serving 1.58 oz bag~^45^1^ +~19149~^2^1^~serving fun size~^48^1^ +~19149~^3^1^~serving 0.25 cup~^45^1^ +~19150~^1^1^~package 0.6 oz 1 cup~^17^1^ +~19150~^2^1^~package 1.6 oz 2 cups~^45^1^ +~19150~^3^1^~miniature~^7.0^^ +~19151~^1^.25^~cup~^47^^ +~19151~^2^10^~pieces~^8.0^^ +~19151~^3^1^~package 1.63 oz~^46^1^ +~19151~^4^1^~package (1.6 oz)~^46^^ +~19152~^1^1^~package 1 package~^48^1^ +~19152~^2^7^~pieces~^42^1^ +~19153~^1^1^~serving 5 mints~^42^1^ +~19153~^2^1^~piece~^8.4^^ +~19154~^1^1^~oz~^28.35^^ +~19154~^2^1^~piece~^1.8^^ +~19154~^3^20^~pieces~^35^^ +~19155~^1^1^~bar (2 oz)~^57^^ +~19155~^2^1^~bar, fun size~^15.0^^ +~19155~^3^1^~bar, king size (4 oz)~^113^^ +~19156~^1^1^~serving fun size (8 chews)~^40^1^ +~19156~^2^1^~serving 2.07 oz pack~^59^1^ +~19156~^3^1^~piece~^5.0^^ +~19157~^1^1^~serving 1.0 oz tube~^30^1^ +~19157~^2^1^~serving 0.50 oz box~^15.0^1^ +~19157~^3^1^~serving 1 1.94 oz tube~^55^1^ +~19159~^1^1^~serving 2.13 oz bar~^60^1^ +~19159~^2^1^~serving 2 fun size bars~^28^1^ +~19160~^1^1^~package (2 oz)~^57^^ +~19160~^2^1^~package (2.06 oz, 2 bars)~^58^^ +~19160~^3^1^~package, king size (3.35 oz, 4 bars)~^95^^ +~19160~^4^1^~package (11 oz)~^312^^ +~19161~^1^1^~package (1.89 oz, 2 bars)~^54^^ +~19161~^2^1^~package (2.06 oz, 2 bars)~^58^^ +~19161~^3^1^~package (1.77 oz)~^50^^ +~19161~^4^1^~package (9.43 oz)~^267^^ +~19162~^1^1^~bar 1.7 oz~^48^1^ +~19163~^1^1^~stick~^3.0^^ +~19163~^2^10^~Chiclets~^16^^ +~19163~^3^1^~block~^8.0^^ +~19164~^1^1^~bar 1.45 oz~^41^1^ +~19164~^2^1^~bar 2.6 oz~^73^1^ +~19164~^3^3^~blocks~^42^1^ +~19164~^4^1^~bar~^17^1^ +~19165~^1^1^~cup~^86^^ +~19165~^2^1^~tbsp~^5.4^^ +~19166~^1^1^~cup~^86^^ +~19166~^2^1^~tbsp~^5.4^^ +~19168~^1^.5^~cup~^141^^ +~19168~^2^1^~recipe yield~^563^^ +~19169~^1^1^~package (3 oz)~^85^^ +~19169~^2^1^~portion, amount to make 1/2 cup~^21^^ +~19170~^1^.5^~cup~^141^^ +~19171~^1^1^~tbsp~^5.0^1^ +~19172~^1^1^~package (3 oz)~^85^^ +~19172~^2^1^~portion, amount to make 1/2 cup~^21^^ +~19173~^1^.5^~cup~^135^^ +~19173~^2^1^~serving~^21^2^ +~19173~^3^1^~package 3 oz, yields 2 cups~^540^^ +~19175~^1^1^~serving~^6.4^1^ +~19176~^1^.5^~cup~^117^^ +~19176~^2^1^~package yield (2 cups)~^469^^ +~19177~^1^1^~envelope (1 tbsp)~^7.0^^ +~19177~^2^1^~package (1 oz)~^28^^ +~19181~^1^15^~pieces~^39^1^ +~19182~^1^1^~recipe yield~^808^^ +~19182~^2^.5^~cup~^202^^ +~19183~^1^1^~oz~^28.35^^ +~19183~^2^1^~container refrigerated, 4 oz~^108^7^2.498 +~19183~^3^1^~container shelf stable, 3.5 oz~^98^7^5.401 +~19184~^1^1^~package (3.5 oz)~^99^^ +~19184~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19185~^1^.5^~cup~^147^^ +~19185~^2^1^~package yield (2 cups)~^587^^ +~19186~^1^.5^~cup~^141^^ +~19186~^2^1^~recipe yield~^844^^ +~19187~^1^1^~package (3 oz)~^85^^ +~19187~^2^1^~portion, amount to make 1/2 cup~^21^^ +~19188~^1^1^~package (3.5 oz)~^99^^ +~19188~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19189~^1^.5^~cup~^142^^ +~19189~^2^1^~package yield (2 cups)~^570^^ +~19190~^1^.5^~cup~^128^^ +~19191~^1^.5^~cup~^147^^ +~19191~^2^1^~package yield (2 cups)~^587^^ +~19193~^1^1^~serving 4 oz pudding cup~^113^1^ +~19193~^2^1^~oz~^28.35^^ +~19193~^3^1^~can (5 oz)~^142^^ +~19193~^4^1^~cup~^172^8^16.158 +~19193~^5^.5^~cup~^92^2^ +~19194~^1^1^~package~^106^^ +~19194~^2^1^~portion, amount to make 1/2 cup~^27^^ +~19195~^1^.5^~cup~^128^^ +~19198~^1^1^~package (3.5 oz)~^92^^ +~19198~^2^1^~portion, amount to make 1/2 cup~^23^^ +~19199~^1^.5^~cup~^128^^ +~19201~^1^1^~oz~^28.35^^ +~19201~^2^1^~container refrigerated 4 oz~^110^7^3.524 +~19201~^3^1^~container shelf stable 3.5 oz~^97^7^6.244 +~19202~^1^1^~package (3.5 oz)~^99^^ +~19202~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19203~^1^.5^~cup~^142^^ +~19203~^2^1^~package yield (2 cups)~^569^^ +~19204~^1^1^~serving~^8.0^^ +~19204~^2^1^~package~^32^^ +~19205~^1^.5^~cup~^141^^ +~19206~^1^1^~package (3.12 oz)~^88^^ +~19206~^2^1^~portion, amount to make 1/2 cup~^22^^ +~19207~^1^.5^~cup~^140^^ +~19207~^2^1^~package yield (2 cups)~^559^^ +~19208~^1^.5^~cup~^128^^ +~19209~^1^.5^~cup~^128^^ +~19212~^1^.5^~cup~^128^^ +~19216~^1^1^~piece~^39^^ +~19216~^2^1^~recipe yield~^907^^ +~19217~^1^1^~bar~^51^^ +~19218~^1^1^~oz~^28.35^^ +~19218~^2^1^~container refrigerated 4 oz~^110^1^ +~19218~^3^1^~container~^97^1^.231 +~19219~^1^.5^~cup~^140^^ +~19219~^2^1^~package yield (2 cups)~^559^^ +~19220~^1^1^~tbsp~^9.0^^ +~19220~^2^1^~package (2 oz)~^57^^ +~19222~^1^1^~tbsp~^10.8^^ +~19222~^2^1^~package (1.5 oz)~^43^^ +~19225~^1^1^~package (0.35 oz)~^9.9^^ +~19226~^1^2^~tbsp creamy~^41^18^3.963 +~19227~^1^.083^~package~^38^^ +~19227~^2^2^~tbsp~^35^1^ +~19227~^3^1^~package (16 oz)~^462^^ +~19228~^1^2^~tbsp creamy~^33^2^ +~19228~^2^2^~tbsp whipped~^24^1^ +~19230~^1^.083^~package~^38^^ +~19230~^2^2^~tbsp creamy~^33^3^1 +~19230~^3^1^~package (16 oz)~^462^^ +~19233~^1^1^~serving 3.5 oz shelf stable~^99^1^ +~19234~^1^1^~container refrigerated 4 oz~^112^2^ +~19235~^1^1^~serving 4 oz~^113^1^ +~19236~^1^17^~pieces~^39^1^ +~19238~^1^16^~pieces~^39^1^ +~19239~^1^1^~bar 1.92 oz~^54^1^ +~19239~^2^2^~bars~^34^1^ +~19240~^1^1^~package~^388^^ +~19241~^1^2^~tablespoon~^33^^ +~19243~^1^15^~pieces~^39^1^ +~19244~^1^1^~package~^411^^ +~19244~^2^.083^~package~^34^^ +~19246~^1^1^~package~^207^^ +~19246~^2^.083^~package~^17^^ +~19247~^1^1^~package yields~^315^^ +~19247~^2^.083^~package~^26^^ +~19248~^1^18^~pieces~^40^1^ +~19249~^1^1^~serving 1.5 oz~^42^1^ +~19250~^1^1^~bar 1.94 oz~^55^^ +~19250~^2^1^~bar king size 2.8 oz~^79^^ +~19252~^1^2^~oz bar~^56^1^ +~19254~^1^1^~serving 1.30 oz bar~^37^1^ +~19254~^2^1^~serving 5 pieces~^40^1^ +~19255~^1^1^~serving 1.3 oz bar~^37^1^ +~19255~^2^1^~serving 7 pieces~^42^1^ +~19256~^1^1^~serving 5 pieces~^44^1^ +~19258~^1^1^~serving 5 pieces~^44^1^ +~19260~^1^1^~serving 1/2 cup~^68^4^.5 +~19263~^1^1^~bar (2.5 fl oz)~^77^^ +~19263~^2^1^~bar (3 fl oz)~^92^^ +~19265~^1^1^~serving 1/2 cup~^72^2^ +~19268~^1^1^~serving 28 pieces~^40^1^ +~19269~^1^2^~rolls~^28^^ +~19270~^1^1^~individual (3.5 fl oz)~^58^^ +~19270~^2^.5^~cup (4 fl oz)~^66^^ +~19271~^1^1^~individual (3.5 fl oz)~^58^^ +~19271~^2^.5^~cup (4 fl oz)~^66^^ +~19272~^1^1^~pouch~^26^^ +~19273~^1^1^~roll~^21^^ +~19274~^1^1^~serving~^21^^ +~19274~^2^1^~packet~^14.2^^ +~19279~^1^1^~oz~^28.35^^ +~19280~^1^.5^~cup (4 fl oz)~^99^^ +~19281~^1^1^~fl oz~^29.0^^ +~19281~^2^.5^~cup~^116^^ +~19283~^1^1^~serving 1.75 fl oz pop~^52^12^ +~19292~^1^1^~serving 1.6 oz bag~^47^1^ +~19293~^1^.5^~cup~^72^^ +~19294~^1^1^~tbsp~^17^^ +~19294~^2^1^~serving~^17^1^ +~19294~^3^1^~cup~^282^^ +~19295~^1^1^~serving 1.42 oz bar~^40^1^ +~19296~^1^1^~cup~^339^^ +~19296~^2^1^~tbsp~^21^^ +~19296~^3^1^~packet (0.5 oz)~^14.0^^ +~19297~^1^1^~tbsp~^20^^ +~19297~^2^1^~packet (0.5 oz)~^14.0^^ +~19300~^1^1^~serving 1 tbsp~^21^3^.901 +~19300~^2^1^~packet (0.5 oz)~^14.0^1^ +~19301~^1^1^~oz~^28.35^^ +~19302~^1^1^~serving 1.76 oz bar~^50^1^ +~19303~^1^1^~tbsp~^20^^ +~19303~^2^1^~package (0.5 oz)~^14.0^^ +~19303~^3^1^~serving~^20^1^ +~19303~^4^1^~cup~^320^^ +~19304~^1^1^~cup~^337^1^ +~19304~^2^1^~serving 1 tbsp~^20^2^ +~19306~^1^1^~serving 13 pieces~^39^1^ +~19307~^1^1^~serving 13 pieces~^39^1^ +~19308~^1^1^~serving 15 pieces~^41^1^ +~19309~^1^1^~serving fun size (8 chews)~^40^1^ +~19310~^1^1^~package (1.75 oz)~^50^^ +~19312~^1^.125^~can~^74^^ +~19312~^2^1^~serving~^85^1^ +~19312~^3^1^~can (21 oz)~^595^^ +~19313~^1^1^~serving fun size (8 chews)~^40^1^ +~19313~^2^1^~serving 2.07 oz pack~^59^1^ +~19313~^3^1^~piece~^5.0^^ +~19314~^1^.125^~can~^74^^ +~19314~^2^1^~can (21 oz)~^595^^ +~19315~^1^1^~serving 2.07 oz pack~^59^1^ +~19318~^1^1^~package (3.5 oz)~^99^^ +~19318~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19319~^1^.5^~cup~^127^^ +~19320~^1^1^~package (3.12 oz)~^88^^ +~19320~^2^1^~portion, amount to make 1/2 cup~^22^^ +~19321~^1^.5^~cup~^127^^ +~19322~^1^1^~package (3.5 oz)~^99^^ +~19322~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19323~^1^.5^~cup~^147^^ +~19323~^2^1^~package yield (2 cups)~^587^^ +~19324~^1^1^~package (3.12 oz)~^88^^ +~19324~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19325~^1^.5^~cup~^140^^ +~19325~^2^1^~package yield (2 cups)~^559^^ +~19326~^1^1^~serving 0.78 oz bar~^22^1^ +~19327~^1^1^~serving 0.78 oz bar~^22^1^ +~19328~^1^1^~serving 0.7 oz bar~^20^1^ +~19330~^1^1^~package (3.5 oz)~^99^^ +~19330~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19331~^1^.5^~cup~^147^^ +~19331~^2^1^~package yield (2 cups)~^587^^ +~19332~^1^1^~package (3 oz)~^85^^ +~19332~^2^1^~portion, amount to make 1/2 cup~^21^^ +~19333~^1^.5^~cup~^127^^ +~19334~^1^1^~tsp unpacked~^3.0^^ +~19334~^2^1^~cup packed~^220^^ +~19334~^3^1^~cup unpacked~^145^^ +~19334~^4^1^~tsp packed~^4.6^^ +~19334~^5^1^~tsp brownulated~^3.2^^ +~19335~^1^1^~serving packet~^2.8^27^ +~19335~^2^1^~tsp~^4.2^^ +~19335~^3^1^~cup~^200^^ +~19335~^4^1^~serving 1 cube~^2.3^22^ +~19336~^1^1^~cup unsifted~^120^^ +~19336~^2^1^~cup sifted~^100^^ +~19336~^3^1^~tbsp unsifted~^8.0^^ +~19336~^4^1^~tsp~^2.5^^ +~19337~^1^1^~tsp~^3.5^^ +~19337~^2^1^~serving 1 packet~^1.0^12^.058 +~19340~^1^1^~tsp~^3.0^^ +~19340~^2^1^~oz~^28.35^^ +~19340~^3^1^~piece (1-3/4" x 1-1/4" x 1/2")~^28^^ +~19345~^1^2^~tbsp~^35^^ +~19348~^1^1^~cup~^304^^ +~19348~^2^2^~tbsp~^38^^ +~19349~^1^1^~cup~^328^1^ +~19349~^2^1^~tbsp~^20^1^ +~19350~^1^1^~cup~^341^4^3.839 +~19350~^2^1^~tbsp~^22^2^ +~19351~^1^1^~cup~^310^^ +~19351~^2^1^~tbsp~^19^^ +~19352~^1^1^~cup~^332^^ +~19352~^2^1^~tbsp~^21^^ +~19353~^1^1^~tbsp~^20^^ +~19353~^2^1^~serving 1/4 cup~^83^4^ +~19353~^3^1^~cup~^315^^ +~19355~^1^1^~cup~^330^^ +~19355~^2^1^~tbsp~^21^^ +~19359~^1^1^~serving 1.66 oz bar~^47^1^ +~19359~^2^1^~bar fun size~^15.0^1^ +~19359~^3^1^~serving 1.56 oz bar~^44^1^ +~19360~^1^1^~tbsp~^20^^ +~19360~^2^1^~serving 1/4 cup~^83^2^ +~19360~^3^1^~cup~^315^^ +~19361~^1^1^~cup~^315^^ +~19361~^2^1^~tbsp~^20^^ +~19362~^1^1^~cup~^316^^ +~19362~^2^1^~tbsp~^20^^ +~19363~^1^1^~serving 2.1 oz bag~^62^1^ +~19363~^2^1^~serving fun size bag~^20^1^ +~19364~^1^2^~tbsp~^41^^ +~19365~^1^1^~oz~^28.35^^ +~19365~^2^1^~jar~^198^^ +~19366~^1^1^~cup~^340^^ +~19366~^2^2^~tbsp~^42^^ +~19367~^1^1^~cup~^328^^ +~19367~^2^2^~tbsp~^41^^ +~19368~^1^1^~serving 2.1 oz bag~^62^1^ +~19368~^2^1^~serving fun size bag~^20^1^ +~19369~^1^1^~serving 1.80 oz bag~^51^1^ +~19370~^1^1^~serving 2.17 oz pack~^62^1^ +~19370~^2^1^~cup~^205^1^ +~19370~^3^10^~pieces~^10.7^1^ +~19370~^4^1^~package fun size~^20^1^ +~19371~^1^2^~tablespoon~^33^^ +~19372~^1^2^~tablespoon~^33^^ +~19375~^1^1^~recipe yield~^327^^ +~19379~^1^1^~piece~^20^^ +~19379~^2^1^~recipe yield (60 pieces)~^1229^^ +~19382~^1^1^~piece~^15.0^^ +~19383~^1^1^~piece~^12.0^^ +~19384~^1^1^~piece~^11.0^^ +~19387~^1^.5^~cup (4 fl oz)~^99^^ +~19393~^1^.5^~cup (4 fl oz)~^72^^ +~19400~^1^1^~oz~^28.35^^ +~19400~^2^3^~oz~^85^^ +~19400~^3^1.5^~oz~^42^^ +~19401~^1^1^~oz~^28.35^^ +~19401~^2^2^~oz~^57^^ +~19403~^1^1^~bar (1 oz)~^28^^ +~19404~^1^1^~bar (1.5 oz)~^43^^ +~19404~^2^1^~bar (1 oz)~^28^^ +~19405~^1^1^~bar (1 oz)~^28^^ +~19406~^1^1^~bar (1 oz)~^28^^ +~19407~^1^1^~oz~^28.35^^ +~19407~^2^1^~stick~^20^^ +~19408~^1^1^~oz~^28.35^^ +~19408~^2^.5^~oz~^14.2^^ +~19409~^1^2^~tablespoon~^33^^ +~19410~^1^1^~oz~^28^12^0 +~19410~^2^16^~chips~^26^12^1.444 +~19410~^3^1^~oz~^28.35^^ +~19410~^4^1^~can (7 oz)~^198^^ +~19411~^1^1^~oz~^28^32^0 +~19411~^2^22^~chips~^28^1^ +~19411~^3^1^~oz~^28.35^^ +~19411~^4^1^~bag (8 oz)~^227^^ +~19412~^1^1^~oz~^28.35^^ +~19412~^2^1^~can (6.25 oz)~^191^^ +~19413~^1^1^~cake~^9.0^^ +~19413~^2^2^~cakes~^18^^ +~19414~^1^1^~cake~^9.0^^ +~19414~^2^2^~cakes~^18^^ +~19415~^1^1^~oz~^28.35^^ +~19415~^2^.5^~cup~^18^^ +~19416~^1^1^~cake~^9.0^^ +~19416~^2^2^~cakes~^18^^ +~19418~^1^1^~oz~^28.35^^ +~19418~^2^2^~oz~^57^^ +~19419~^1^1^~cake~^9.0^^ +~19419~^2^2^~cakes~^18^^ +~19420~^1^1^~oz~^28.35^^ +~19420~^2^1^~bar~^24^^ +~19421~^1^1^~oz~^28.35^^ +~19421~^2^1^~bag (6 oz)~^170^^ +~19422~^1^1^~oz~^28.35^^ +~19422~^2^1^~bag (6 oz)~^170^^ +~19423~^1^1^~oz~^28.35^^ +~19424~^1^1^~oz~^28.35^^ +~19424~^2^1^~bag (6 oz)~^170^^ +~19433~^1^1^~oz~^28.35^^ +~19434~^1^1^~oz~^28.35^^ +~19436~^1^1^~oz~^28.35^^ +~19437~^1^1^~oz~^28.35^^ +~19437~^2^1^~bag (8 oz)~^227^^ +~19438~^1^1^~serving~^22^^ +~19439~^1^1^~bar~^37^^ +~19440~^1^1^~bar~^28^^ +~19444~^1^1^~oz~^28.35^^ +~19445~^1^1^~oz~^28.35^^ +~19524~^1^1^~oz~^28.35^^ +~19524~^2^10^~chips~^23^^ +~19701~^1^1^~cup chips (6 oz package)~^170^^ +~19701~^2^1^~cup large chips~^182^^ +~19701~^3^1^~cup mini chips~^173^^ +~19701~^4^1^~oz (approx 60 pcs)~^28.35^^ +~19702~^1^1^~package (3 oz)~^85^^ +~19702~^2^1^~portion, amount to make 1/2 cup~^21^^ +~19703~^1^1^~tbsp~^9.0^^ +~19703~^2^1^~package (0.35 oz)~^10.0^^ +~19703~^3^1^~portion, amount to make 1/2 cup~^2.5^^ +~19704~^1^1^~tbsp~^9.0^^ +~19704~^2^1^~package (0.35 oz)~^10.0^^ +~19704~^3^1^~portion, amount to make 1/2 cup~^2.5^^ +~19705~^1^1^~package (3.5 oz)~^99^^ +~19705~^2^1^~portion, amount to make 1/2 cup~^25^^ +~19706~^1^1^~package (3.12 oz)~^88^^ +~19706~^2^1^~portion, amount to make 1/2 cup~^22^^ +~19708~^1^1^~package (3 oz)~^85^^ +~19708~^2^1^~portion, amount to make 1/2 cup~^21^^ +~19709~^1^1^~package (3.5 oz)~^92^^ +~19709~^2^1^~portion, amount to make 1/2 cup~^23^^ +~19710~^1^1^~package (3.12 oz)~^88^^ +~19710~^2^1^~portion, amount to make 1/2 cup~^22^^ +~19719~^1^1^~tbsp~^20^^ +~19719~^2^1^~packet (0.5 oz)~^14.0^^ +~19720~^1^1^~cup~^315^^ +~19720~^2^1^~tbsp~^20^^ +~19800~^1^1^~cake~^9.0^^ +~19800~^2^2^~cakes~^18^^ +~19802~^1^1^~oz~^28.35^^ +~19802~^2^1^~bag (8 oz)~^227^^ +~19804~^1^1^~oz~^28.35^^ +~19806~^1^1^~cup~^8.0^^ +~19806~^2^1^~oz~^28.35^^ +~19807~^1^1^~cup~^11.0^^ +~19807~^2^1^~oz~^28.35^^ +~19809~^1^1^~oz~^28.35^^ +~19809~^2^1^~bag (8 oz)~^227^^ +~19810~^1^1^~oz~^28.35^^ +~19810~^2^1^~bag (8 oz)~^227^^ +~19811~^1^1^~oz~^28.35^^ +~19811~^2^1^~bag (8 oz)~^227^^ +~19812~^1^1^~oz~^28.35^^ +~19812~^2^10^~twists~^60^^ +~19813~^1^1^~oz~^28.35^^ +~19813~^2^10^~twists~^60^^ +~19814~^1^1^~oz~^28.35^^ +~19814~^2^10^~twists~^60^^ +~19816~^1^1^~cake~^9.0^^ +~19816~^2^2^~cakes~^18^^ +~19817~^1^1^~cake~^9.0^^ +~19817~^2^2^~cakes~^18^^ +~19818~^1^1^~cake~^9.0^^ +~19818~^2^2^~cakes~^18^^ +~19819~^1^1^~cake~^9.0^^ +~19819~^2^2^~cakes~^18^^ +~19820~^1^1^~oz~^28.35^^ +~19820~^2^2^~oz~^57^^ +~19821~^1^1^~cup~^150^^ +~19821~^2^1^~oz~^28.35^^ +~19821~^3^1.5^~oz~^42^^ +~19822~^1^1^~cup~^146^^ +~19822~^2^1^~oz~^28.35^^ +~19822~^3^1.5^~oz~^42^^ +~19823~^1^1^~oz~^28.35^^ +~19833~^1^1^~oz~^28.35^^ +~19856~^1^1^~serving 1.2 fl oz pop~^33^8^1.233 +~19857~^1^1^~oz~^28.35^^ +~19858~^1^1^~piece~^3.5^^ +~19859~^1^1^~tbsp~^5.4^^ +~19860~^1^1^~tablespoon Ghirardelli label 2011~^6.0^^ +~19860~^2^1^~tablespoon Hershey's label 2011~^5.0^^ +~19860~^3^1^~container Ghirardelli label 2011~^283^^ +~19866~^1^3^~pieces~^42^^ +~19867~^1^.5^~cup~^67^1^ +~19868~^1^1^~serving 1 packet~^1.0^25^.099 +~19871~^1^1^~serving~^84^1^ +~19873~^1^1^~serving 1.75 fl oz pop~^55^1^ +~19874~^1^1^~serving 3.5 fl oz bar~^74^1^ +~19875~^1^1^~serving 1/2 cup~^68^1^ +~19876~^1^1^~serving 1/2 cup~^68^1^ +~19877~^1^1^~serving 1/2 cup~^68^1^ +~19878~^1^1^~serving 1/2 cup~^68^1^ +~19879~^1^1^~serving 1/2 cup~^68^1^ +~19880~^1^1^~serving 1/2 cup~^68^1^ +~19881~^1^1^~serving 1/2 cup~^68^1^ +~19882~^1^1^~serving 1/2 cup~^69^1^ +~19883~^1^1^~serving 1/2 cup~^72^1^ +~19884~^1^1^~serving 1/2 cup~^68^1^ +~19886~^1^1^~serving 1 cone~^79^1^ +~19887~^1^1^~serving 1 sandwich~^64^1^ +~19890~^1^1^~serving 1 bar~^78^1^ +~19891~^1^1^~serving 1 pop~^44^1^ +~19892~^1^1^~serving 2 pops~^80^1^ +~19893~^1^1^~serving 1/2 cup~^68^1^ +~19894~^1^1^~serving 1/2 cup~^68^1^ +~19895~^1^1^~serving 1/2 cup~^71^1^ +~19896~^1^1^~serving 1 bar~^56^1^ +~19897~^1^1^~serving 1oz pack~^28^1^ +~19898~^1^1^~individual (3.5 fl oz)~^58^^ +~19898~^2^.5^~cup (4 fl oz)~^66^^ +~19899~^1^1^~individual (3.5 fl oz)~^58^^ +~19902~^1^1^~oz~^28.35^^ +~19902~^2^1^~bar~^162^12^53.699 +~19903~^1^1^~oz~^28.35^^ +~19903~^2^1^~bar~^112^18^4.916 +~19904~^1^1^~oz~^28.35^^ +~19904~^2^1^~bar~^101^6^.789 +~19905~^1^1^~oz~^28.35^^ +~19905~^2^1^~bar~^127^36^39.78 +~19906~^1^1^~tbsp~^12.9^9^1.335 +~19906~^2^1^~cup~^189^6^29.362 +~19907~^1^1^~tbsp~^14.5^11^1.919 +~19907~^2^1^~cup~^202^8^4.284 +~19908~^1^1^~tsp~^4.6^11^.194 +~19908~^2^1^~cup~^202^9^5.76 +~19909~^1^1^~tsp~^0.5^7^.049 +~19909~^2^1^~cup~^23^6^.834 +~19910~^1^1^~serving 1.5 oz~^42^1^ +~19911~^1^60^~milliliter~^80^^ +~19912~^1^1^~tsp~^6.9^3^.529 +~19912~^2^.25^~cup~^55^3^5.369 +~19913~^1^1^~piece~^60^1^ +~19914~^1^1^~serving~^31^1^ +~19916~^1^2^~tbsp~^35^1^ +~19917~^1^.25^~cup~^40^1^ +~19918~^1^1^~package~^1.0^1^ +~19919~^1^1^~serving~^44^1^ +~19924~^1^1^~tablespoon~^20^^ +~20001~^1^1^~cup~^193^6^1.78 +~20002~^1^1^~cup~^246^6^2.195 +~20003~^1^1^~cup~^128^^ +~20004~^1^1^~cup~^184^^ +~20005~^1^1^~cup~^200^^ +~20006~^1^1^~cup~^157^^ +~20008~^1^1^~cup~^170^^ +~20009~^1^1^~cup~^164^^ +~20010~^1^1^~cup~^168^^ +~20011~^1^1^~cup~^120^^ +~20012~^1^1^~cup~^140^^ +~20013~^1^1^~cup~^182^^ +~20013~^2^1^~tbsp~^8.4^^ +~20014~^1^1^~cup~^166^^ +~20015~^1^1^~cup~^76^^ +~20016~^1^1^~cup~^117^^ +~20017~^1^1^~cup~^114^^ +~20018~^1^1^~cup~^126^^ +~20019~^1^1^~cup~^114^^ +~20020~^1^1^~cup~^122^^ +~20022~^1^1^~cup~^157^42^10.206 +~20023~^1^1^~cup~^122^^ +~20024~^1^1^~cup~^170^^ +~20025~^1^1^~cup~^138^^ +~20027~^1^1^~cup~^128^^ +~20028~^1^1^~cup~^173^^ +~20029~^1^1^~cup, cooked~^157^^ +~20029~^2^1^~cup, dry, yields~^528^^ +~20029~^3^1^~oz, dry, yields~^86^^ +~20030~^1^1^~cup~^165^^ +~20031~^1^1^~cup~^200^^ +~20032~^1^1^~cup~^174^^ +~20033~^1^1^~cup~^94^^ +~20034~^1^1^~cup~^219^^ +~20035~^1^1^~cup~^170^^ +~20036~^1^1^~cup~^185^^ +~20037~^1^1^~cup~^202^11^22.168 +~20038~^1^1^~cup~^156^^ +~20040~^1^1^~cup~^190^^ +~20041~^1^1^~cup~^195^^ +~20042~^1^.25^~cup~^48^^ +~20044~^1^1^~cup~^185^^ +~20045~^1^1^~cup~^158^^ +~20046~^1^1^~cup~^185^6^4.175 +~20047~^1^1^~cup~^158^4^6.682 +~20048~^1^1^~cup~^95^^ +~20049~^1^1^~cup~^165^^ +~20050~^1^1^~cup~^195^^ +~20051~^1^1^~cup~^186^^ +~20052~^1^1^~cup~^200^^ +~20053~^1^1^~cup~^186^^ +~20054~^1^1^~cup~^185^^ +~20055~^1^1^~cup~^174^^ +~20058~^1^1^~cup, loosely packed~^132^13^2.826 +~20060~^1^1^~cup~^118^^ +~20061~^1^1^~cup~^158^^ +~20062~^1^1^~cup~^169^^ +~20063~^1^1^~cup~^128^^ +~20064~^1^1^~cup~^102^^ +~20065~^1^1^~cup~^102^^ +~20066~^1^1^~cup~^167^^ +~20067~^1^1^~cup~^192^^ +~20068~^1^1^~cup~^152^^ +~20069~^1^1^~cup~^192^^ +~20070~^1^1^~cup~^130^^ +~20071~^1^1^~cup~^192^^ +~20072~^1^1^~cup~^192^^ +~20073~^1^1^~cup~^168^^ +~20074~^1^1^~cup~^192^^ +~20075~^1^1^~cup~^168^^ +~20076~^1^1^~cup~^192^^ +~20077~^1^1^~cup~^58^^ +~20078~^1^1^~cup~^115^^ +~20080~^1^1^~cup~^120^^ +~20081~^1^1^~cup~^125^^ +~20082~^1^1^~cup~^125^^ +~20083~^1^1^~cup~^137^^ +~20084~^1^1^~cup unsifted, dipped~^137^^ +~20086~^1^1^~cup~^111^^ +~20087~^1^1^~cup~^108^^ +~20088~^1^1^~cup~^160^^ +~20089~^1^1^~cup~^164^^ +~20090~^1^1^~cup~^158^^ +~20091~^1^1^~cup~^105^^ +~20091~^2^2^~oz~^57^^ +~20092~^1^1^~cup~^140^^ +~20093~^1^4.5^~oz~^128^^ +~20094~^1^2^~oz~^128^^ +~20095~^1^4.5^~oz~^128^^ +~20096~^1^2^~oz~^57^^ +~20097~^1^2^~oz~^57^^ +~20098~^1^2^~oz~^57^^ +~20105~^1^1^~cup spiral shaped~^84^^ +~20105~^2^2^~oz~^57^^ +~20106~^1^1^~cup spiral shaped~^134^^ +~20109~^1^1^~cup~^38^^ +~20109~^2^2^~oz~^57^^ +~20110~^1^1^~cup~^160^^ +~20111~^1^1^~cup~^38^^ +~20111~^2^2^~oz~^57^^ +~20112~^1^1^~cup~^160^^ +~20113~^1^.5^~cup dry~^28^1^ +~20113~^2^1.5^~oz~^43^^ +~20114~^1^2^~oz~^57^^ +~20115~^1^1^~cup~^114^^ +~20116~^1^2^~oz~^57^^ +~20117~^1^1^~cup~^176^^ +~20118~^1^1^~cup~^45^24^6.752 +~20120~^1^1^~cup spaghetti~^91^12^3.344 +~20120~^2^2^~oz~^57^^ +~20120~^3^1^~cup elbows~^122^18^8.754 +~20120~^4^1^~cup penne~^95^16^11.222 +~20120~^5^1^~cup farfalle~^81^9^7.18 +~20120~^6^1^~cup rotini~^96^10^5.172 +~20120~^7^1^~cup shells~^64^22^36.573 +~20120~^8^1^~cup lasagna~^90^18^7.123 +~20121~^1^1^~cup spaghetti not packed~^124^52^10.726 +~20121~^2^1^~cup spaghetti packed~^151^49^16.343 +~20121~^3^1^~cup elbows not packed~^120^32^13.379 +~20121~^4^1^~cup elbows packed~^132^6^11.853 +~20121~^5^1^~cup penne~^107^36^10.888 +~20121~^6^1^~cup farfalle~^107^9^15.51 +~20121~^7^1^~cup rotini~^107^10^7.319 +~20121~^8^1^~cup shells~^105^22^9.332 +~20121~^9^1^~cup lasagne~^116^18^15.678 +~20124~^1^1^~cup spaghetti~^91^12^3.344 +~20124~^2^1^~cup elbows~^122^18^8.754 +~20124~^3^1^~cup penne~^95^16^11.222 +~20124~^4^1^~cup farfalle~^81^9^7.18 +~20124~^5^1^~cup rotini~^96^10^5.172 +~20124~^6^1^~cup shells~^64^22^36.573 +~20124~^7^1^~cup lasagne~^90^18^7.123 +~20125~^1^1^~cup spaghetti not packed~^117^27^8.883 +~20125~^2^1^~cup spaghetti packed~^151^49^16.343 +~20125~^3^1^~cup elbows~^117^12^10.734 +~20125~^4^1^~cup penne~^97^16^7.335 +~20125~^5^1^~cup shells~^105^22^9.332 +~20125~^6^1^~cup lasagne~^116^18^15.678 +~20125~^7^1^~cup rotini~^107^10^7.319 +~20125~^8^1^~cup farfalle~^107^9^15.51 +~20126~^1^2^~oz~^57^^ +~20127~^1^1^~cup~^140^^ +~20129~^1^1^~cup unsifted, dipped~^137^^ +~20130~^1^1^~cup~^148^^ +~20131~^1^1^~cup~^162^^ +~20132~^1^1^~cup~^104^^ +~20133~^1^2^~oz~^57^^ +~20134~^1^1^~cup~^176^^ +~20135~^1^1^~cup spaghetti~^91^12^3.344 +~20135~^2^1^~cup elbows~^122^18^8.754 +~20135~^3^1^~cup penne~^95^16^11.222 +~20135~^4^1^~cup farfalle~^81^9^7.18 +~20135~^5^1^~cup rotini~^96^10^5.172 +~20135~^6^1^~cup shells~^64^22^36.573 +~20135~^7^1^~cup lasagne~^90^18^7.123 +~20136~^1^1^~cup spaghetti not packed~^116^32^8.72 +~20136~^2^1^~cup spaghetti packed~^151^49^16.343 +~20136~^3^1^~cup elbows not packed~^117^12^10.734 +~20136~^4^1^~cup farfalle~^107^9^15.51 +~20136~^5^1^~cup penne~^97^16^7.335 +~20136~^6^1^~cup shells~^105^22^9.332 +~20136~^7^1^~cup lasagne~^116^18^15.678 +~20136~^8^1^~cup rotini~^107^10^7.319 +~20137~^1^1^~cup~^185^6^19.309 +~20138~^1^1^~cup~^186^6^3.966 +~20139~^1^1^~cup~^172^6^5.004 +~20140~^1^1^~cup~^174^6^4.205 +~20141~^1^1^~cup~^194^6^2.68 +~20142~^1^1^~cup~^193^6^11.076 +~20143~^1^1^~cup~^252^6^4.295 +~20310~^1^1^~cup~^160^^ +~20314~^1^1^~cup~^166^^ +~20315~^1^1^~tbsp~^6.9^6^.138 +~20316~^1^1^~cup~^117^^ +~20317~^1^1^~cup~^114^^ +~20320~^1^1^~cup~^122^^ +~20321~^1^1^~cup spaghetti not packed~^124^52^10.726 +~20321~^2^1^~cup packed~^151^49^16.343 +~20321~^3^1^~cup elbows not packed~^120^32^13.379 +~20321~^4^1^~cup elbows packed~^132^6^11.853 +~20321~^5^1^~cup penne~^107^36^10.888 +~20321~^6^1^~cup farfalle~^107^9^15.51 +~20321~^7^1^~cup rotini~^107^10^7.319 +~20321~^8^1^~cup shells~^105^22^9.332 +~20321~^9^1^~cup lasagne~^116^18^15.678 +~20322~^1^1^~cup~^157^42^10.206 +~20323~^1^1^~cup~^122^^ +~20324~^1^1^~cup~^170^^ +~20325~^1^1^~cup~^138^^ +~20330~^1^1^~cup~^160^^ +~20345~^1^1^~cup~^158^^ +~20381~^1^1^~cup~^125^^ +~20409~^1^1^~cup~^38^^ +~20410~^1^1^~cup~^160^^ +~20420~^1^1^~cup spaghetti~^91^12^3.344 +~20420~^2^2^~oz~^57^^ +~20420~^3^1^~cup elbows~^122^18^8.754 +~20420~^4^1^~cup penne~^95^16^11.222 +~20420~^5^1^~cup farfalle~^81^9^7.18 +~20420~^6^1^~cup rotini~^96^10^5.172 +~20420~^7^1^~cup shells~^64^22^36.573 +~20420~^8^1^~cup lasagna~^90^18^7.123 +~20421~^1^1^~cup spaghetti not packed~^124^52^10.726 +~20421~^2^1^~cup spaghetti packed~^151^49^16.343 +~20421~^3^1^~cup elbows not packed~^120^32^13.379 +~20421~^4^1^~cup elbows packed~^132^6^11.853 +~20421~^5^1^~cup penne~^107^36^10.888 +~20421~^6^1^~cup rotini~^107^10^7.319 +~20421~^7^1^~cup farfalle~^107^9^15.51 +~20421~^8^1^~cup shells~^105^22^9.332 +~20421~^9^1^~cup lasagne~^116^18^15.678 +~20422~^1^1^~cup~^157^42^10.206 +~20444~^1^1^~cup~^185^^ +~20445~^1^1^~cup~^158^^ +~20446~^1^1^~cup~^185^6^4.175 +~20447~^1^1^~cup~^158^4^6.682 +~20450~^1^1^~cup~^195^^ +~20451~^1^1^~cup~^186^^ +~20452~^1^1^~cup~^200^^ +~20453~^1^1^~cup~^205^^ +~20466~^1^1^~cup~^167^^ +~20481~^1^1^~cup~^125^^ +~20510~^1^1^~cup~^160^^ +~20521~^1^1^~cup spaghetti not packed~^124^52^10.726 +~20521~^2^1^~cup spaghetti packed~^151^49^16.343 +~20521~^3^1^~cup elbows not packed~^120^32^13.379 +~20521~^4^1^~cup elbows packed~^132^6^11.853 +~20521~^5^1^~cup penne~^107^36^10.888 +~20521~^6^1^~cup rotini~^107^10^7.319 +~20521~^7^1^~cup farfalle~^107^9^15.51 +~20521~^8^1^~cup shells~^105^22^9.332 +~20521~^9^1^~cup lasagne~^116^18^15.678 +~20522~^1^1^~cup~^157^42^10.206 +~20523~^1^1^~cup~^140^^ +~20545~^1^1^~cup~^158^^ +~20581~^1^1^~cup~^125^^ +~20622~^1^2^~oz~^57^^ +~20647~^1^1^~cup~^119^3^18.203 +~20648~^1^1^~cup~^121^3^4.888 +~20650~^1^1^~cup~^161^^ +~20651~^1^1^~cup~^155^11^10.138 +~20652~^1^1^~cup spaghetti not packed~^116^32^8.72 +~20652~^2^1^~cup spaghetti packed~^151^49^16.343 +~20652~^3^1^~cup elbows~^117^12^10.734 +~20652~^4^1^~cup farfalle~^107^9^15.51 +~20652~^5^1^~cup penne~^97^16^7.335 +~20652~^6^1^~cup shells~^105^22^9.332 +~20652~^7^1^~cup lasagne~^116^18^15.678 +~20652~^8^1^~cup rotini~^107^10^7.319 +~20653~^1^1^~cup spaghetti~^91^12^3.344 +~20653~^2^1^~cup elbows~^122^18^8.754 +~20653~^3^1^~cup penne~^95^16^11.222 +~20653~^4^1^~cup farfalle~^81^9^7.18 +~20653~^5^1^~cup rotini~^96^10^5.172 +~20653~^6^1^~cup shells~^64^22^36.573 +~20653~^7^1^~cup lasagne~^90^18^7.123 +~20654~^1^1^~cup spaghetti not packed~^169^4^15.761 +~20654~^2^1^~cup penne not packed~^131^7^6.6 +~20654~^3^1^~cup fettucini not packed~^153^2^ +~20654~^4^1^~cup spirals not packed~^136^6^19.274 +~20654~^5^1^~cup elbows not packed~^131^2^ +~20654~^6^1^~cup shells not packed~^156^1^ +~20655~^1^1^~cup spaghetti packed~^166^2^ +~20655~^2^1^~cup(not packed) not packed~^132^6^19.665 +~20655~^3^1^~cup elbows not packed not packed~^111^5^3.115 +~20656~^1^1^~cup spaghetti~^121^2^ +~20657~^1^1^~cup spaghetti~^141^4^16.248 +~21002~^1^1^~biscuit~^136^^ +~21003~^1^1^~biscuit~^150^^ +~21004~^1^1^~biscuit~^182^^ +~21005~^1^1^~item~^162^^ +~21006~^1^1^~biscuit~^148^^ +~21007~^1^1^~item~^145^^ +~21008~^1^1^~biscuit~^162^^ +~21009~^1^1^~item~^111^^ +~21010~^1^1^~item~^132^3^6.255 +~21011~^1^1^~croissant~^127^^ +~21012~^1^1^~item~^128^^ +~21013~^1^1^~item~^155^^ +~21014~^1^1^~sandwich~^171^12^14.682 +~21018~^1^2^~eggs~^96^^ +~21020~^1^1^~item~^108^4^2.09 +~21021~^1^1^~sandwich~^126^12^6.798 +~21022~^1^1^~item~^165^^ +~21023~^1^2^~slices~^135^^ +~21024~^1^3^~pieces~^65^^ +~21024~^2^5^~pieces~^109^^ +~21026~^1^1^~round piece~^5.5^^ +~21026~^2^1^~patty~^53^^ +~21026~^3^1^~serving 14 round pieces~^77^^ +~21026~^4^1^~serving 29 round pieces~^160^^ +~21028~^1^1^~item~^120^^ +~21032~^1^1^~sundae~^155^^ +~21033~^1^1^~sundae~^158^^ +~21034~^1^1^~sundae~^153^^ +~21059~^1^3^~pieces shrimp~^39^36^3.124 +~21060~^1^2^~pieces~^217^^ +~21061~^1^1^~each burrito~^185^12^18.152 +~21063~^1^1^~item~^241^^ +~21064~^1^1^~burrito~^241^12^19.701 +~21078~^1^1^~serving~^80^12^11.09 +~21080~^1^1^~serving~^222^12^40.771 +~21082~^1^1^~each taco~^69^12^11.225 +~21083~^1^1.5^~cup~^198^^ +~21089~^1^1^~sandwich~^91^12^3.643 +~21090~^1^1^~item~^127^^ +~21091~^1^1^~sandwich~^115^^ +~21092~^1^1^~item~^149^^ +~21093~^1^1^~sandwich~^166^^ +~21094~^1^1^~sandwich~^155^32^8.054 +~21095~^1^1^~sandwich~^228^^ +~21096~^1^1^~sandwich~^182^12^2.877 +~21097~^1^1^~item~^211^^ +~21098~^1^1^~sandwich~^233^^ +~21099~^1^1^~sandwich~^254^^ +~21100~^1^1^~sandwich~^258^^ +~21101~^1^1^~item~^249^^ +~21102~^1^1^~sandwich~^187^40^ +~21105~^1^1^~sandwich~^220^12^14.192 +~21106~^1^1^~sandwich~^134^12^5.061 +~21107~^1^1^~sandwich~^78^12^3.457 +~21108~^1^1^~sandwich~^97^24^4.451 +~21109~^1^1^~item~^110^^ +~21110~^1^1^~item~^120^^ +~21111~^1^1^~item~^215^^ +~21112~^1^1^~sandwich~^137^^ +~21113~^1^1^~sandwich~^218^^ +~21114~^1^1^~sandwich~^226^^ +~21115~^1^1^~sandwich~^259^^ +~21118~^1^1^~sandwich~^98^^ +~21119~^1^1^~sandwich~^114^^ +~21120~^1^1^~sandwich~^175^^ +~21121~^1^1^~sandwich~^149^26^ +~21124~^1^6^~inch sub~^196^^ +~21124~^2^12^~inch sub~^391^12^22.927 +~21125~^1^6^~inch sub~^190^^ +~21125~^2^12^~inch sub~^381^12^32.232 +~21126~^1^6^~inch sub~^237^^ +~21126~^2^12^~inch sub~^474^12^31.009 +~21127~^1^1^~cup~^191^8^ +~21127~^2^1^~package~^116^8^ +~21129~^1^1^~piece~^22^36^3.62 +~21130~^1^1^~package (18 onion rings)~^117^12^20.4 +~21138~^1^1^~serving small~^71^1^ +~21138~^2^1^~serving medium~^117^1^ +~21138~^3^1^~serving large~^154^1^ +~21139~^1^1^~cup~^242^12^12.401 +~21140~^1^.333^~cup~^95^^ +~21141~^1^1^~fl oz~^24.8^^ +~21141~^2^1^~small 12 fl oz~^298^12^ +~21141~^3^1^~medium 16 fl oz~^397^^ +~21142~^1^1^~biscuit~^55^144^ +~21143~^1^1^~strip~^50^8^4.071 +~21143~^2^1^~serving 4 pieces~^201^8^16.286 +~21144~^1^1^~piece~^5.5^6^.263 +~21144~^2^1^~serving~^77^6^5.882 +~21145~^1^1^~slice 1/8 per pizza~^155^^ +~21145~^2^1^~slice 1/10 per pizza~^124^^ +~21146~^1^1^~slice 1/8 per pizza~^156^^ +~21146~^2^1^~slice 1/10 per pizza~^124^^ +~21147~^1^1^~piece 4" x 6"~^130^^ +~21148~^1^1^~piece 4"x6"~^127^^ +~21149~^1^1^~piece 3.2 oz~^91^^ +~21150~^1^6^~inch sub~^228^^ +~21150~^2^12^~inch sub~^457^12^29.325 +~21151~^1^6^~inch sub~^228^^ +~21151~^2^12^~inch sub~^457^12^29.325 +~21152~^1^6^~inch sub~^207^^ +~21152~^2^12^~inch sub~^413^12^18.076 +~21153~^1^12^~inch sub~^413^12^18.076 +~21153~^2^6^~inch sub~^207^^ +~21154~^1^6^~inch sub~^198^^ +~21154~^2^12^~inch sub~^396^12^28.571 +~21155~^1^6^~inch sub~^184^^ +~21155~^2^12^~inch sub~^367^12^11.143 +~21156~^1^6^~inch sub~^184^^ +~21156~^2^12^~inch sub~^368^12^14.188 +~21157~^1^6^~inch sub~^209^^ +~21157~^2^12^~inch sub~^418^12^46.743 +~21158~^1^6^~inch sub~^209^^ +~21158~^2^12^~inch sub~^418^12^46.743 +~21159~^1^6^~inch sub~^201^^ +~21159~^2^12^~inch sub~^401^12^24.66 +~21160~^1^6^~inch sub~^201^^ +~21160~^2^12^~inch sub~^401^12^24.66 +~21161~^1^6^~inch sub~^148^^ +~21161~^2^12^~inch sub~^296^12^19.981 +~21162~^1^6^~inch sub~^148^^ +~21162~^2^12^~inch sub~^296^12^19.981 +~21202~^1^1^~item~^171^^ +~21207~^1^6^~inch sub~^184^^ +~21207~^2^12^~inch sub~^367^12^11.143 +~21209~^1^6^~inch sub~^184^^ +~21209~^2^12^~inch sub~^368^12^14.188 +~21210~^1^6^~inch sub~^190^^ +~21210~^2^12^~inch sub~^381^12^32.232 +~21211~^1^6^~inch sub~^198^^ +~21211~^2^12^~inch sub~^396^12^28.571 +~21213~^1^6^~inch sub~^196^^ +~21213~^2^12^~inch sub~^391^12^22.927 +~21214~^1^6^~inch sub~^237^^ +~21214~^2^12^~inch sub~^474^12^31.009 +~21224~^1^1^~serving 9 servings per 24 oz package~^81^4^ +~21224~^2^1^~serving 3 servings per 15.1 oz package~^151^21^ +~21224~^3^1^~serving 2 servings per 9.8 oz package~^146^60^ +~21224~^4^1^~serving 1 serving per 8 oz box~^199^14^ +~21224~^5^1^~package 24 oz pizza~^727^4^ +~21224~^6^1^~package 15.1 oz pizza~^452^21^ +~21224~^7^1^~package 9.8 oz pizza~^293^60^ +~21224~^8^1^~package 8 oz pizza~^199^14^ +~21225~^1^1^~serving 6 servings per 29.25 oz package~^139^12^ +~21225~^2^1^~serving 4 servings per 19.7 oz package~^149^20^ +~21225~^3^1^~package 29.25 oz pizza~^834^12^ +~21225~^4^1^~package 19.7 oz pizza~^595^20^ +~21226~^1^1^~serving 5 servings per 24.2 oz package~^143^24^ +~21226~^2^1^~serving 5 servings per 22.85 oz package~^129^23^ +~21226~^3^1^~serving 2 servings per 10.9 oz package~^177^10^ +~21226~^4^1^~package 24.2 oz pizza~^713^24^ +~21226~^5^1^~package 22.85 oz pizza~^644^23^ +~21226~^6^1^~package 10.9 oz pizza~^354^10^ +~21227~^1^1^~serving 6 servings per 34.98 oz package~^170^23^ +~21227~^2^1^~serving 6 servings per 30.7 oz package~^149^11^ +~21227~^3^1^~serving 3 servings per 14.3 oz package~^138^11^ +~21227~^4^1^~package 34.98 oz pizza~^1020^23^ +~21227~^5^1^~package 30.7 oz pizza~^891^11^ +~21227~^6^1^~package 14.3 oz pizza~^415^11^ +~21228~^1^1^~sandwich~^95^12^4.029 +~21229~^1^6^~pieces~^96^^ +~21229~^2^4^~pieces~^64^^ +~21229~^3^10^~pieces~^160^^ +~21229~^4^20^~pieces~^320^^ +~21230~^1^1^~sandwich~^152^36^34.597 +~21232~^1^1^~sandwich~^134^12^5.061 +~21233~^1^1^~item 4 oz~^119^^ +~21234~^1^1^~item~^171^^ +~21235~^1^1^~item 7.1 oz~^199^^ +~21237~^1^1^~item 7.6 oz~^219^^ +~21238~^1^1^~small serving~^71^^ +~21238~^2^1^~medium serving~^117^^ +~21238~^3^1^~large serving~^154^^ +~21238~^4^1^~kids serving~^31^^ +~21239~^1^1^~item~^218^^ +~21240~^1^1^~item~^236^^ +~21241~^1^1^~item~^117^^ +~21242~^1^1^~item~^129^^ +~21243~^1^1^~item~^310^^ +~21244~^1^1^~item~^230^^ +~21245~^1^1^~item~^225^^ +~21246~^1^5^~pieces~^68^^ +~21246~^2^10^~pieces~^142^^ +~21247~^1^1^~kid's meal Serving~^71^^ +~21247~^2^1^~small Serving~^113^^ +~21247~^3^1^~medium Serving~^142^^ +~21247~^4^1^~large Serving~^184^^ +~21248~^1^1^~junior 6 oz. cup~^113^^ +~21248~^2^1^~small 12 oz. cup~^227^^ +~21248~^3^1^~medium 16 oz. cup~^298^^ +~21249~^1^1^~small serving~^74^^ +~21249~^2^1^~medium serving~^117^^ +~21249~^3^1^~large serving~^160^^ +~21250~^1^1^~sandwich~^99^12^3.718 +~21251~^1^1^~item~^133^^ +~21252~^1^1^~item~^291^^ +~21253~^1^1^~item~^316^^ +~21254~^1^1^~item~^374^^ +~21255~^1^1^~item~^399^^ +~21256~^1^1^~strip~^36^12^5.564 +~21256~^2^1^~serving 5 pieces~^173^12^34.567 +~21258~^1^1^~sandwich~^220^12^14.192 +~21259~^1^1^~sandwich~^199^12^9.867 +~21260~^1^1^~each taco~^69^12^11.225 +~21261~^1^1^~each taco~^102^12^13.703 +~21262~^1^1^~each taco~^98^12^9.985 +~21263~^1^1^~item~^127^^ +~21264~^1^1^~each burrito~^185^12^18.152 +~21265~^1^1^~burrito~^241^12^19.701 +~21266~^1^1^~item~^248^^ +~21267~^1^1^~item~^248^^ +~21268~^1^1^~serving~^80^12^11.09 +~21269~^1^1^~serving~^222^12^40.771 +~21270~^1^1^~item~^533^^ +~21271~^1^1^~slice~^96^33^17.266 +~21271~^2^1^~pizza~^738^4^81.508 +~21272~^1^1^~slice~^100^33^19.019 +~21272~^2^1^~pizza~^728^3^21.4 +~21273~^1^1^~slice~^69^36^14.145 +~21273~^2^1^~pizza~^573^4^64.543 +~21274~^1^1^~slice~^96^33^12.977 +~21274~^2^1^~pizza~^744^4^31.908 +~21275~^1^1^~slice~^96^33^18.022 +~21275~^2^1^~pizza~^778^4^42.541 +~21276~^1^1^~slice~^127^36^27.244 +~21276~^2^1^~pizza~^1107^3^272.495 +~21276~^3^.5^~pizza~^541^1^ +~21277~^1^1^~slice~^108^96^20.21 +~21277~^2^1^~pizza~^865^12^68.352 +~21278~^1^1^~slice~^118^96^25.115 +~21278~^2^1^~pizza~^947^12^72.431 +~21279~^1^1^~slice~^70^40^12.203 +~21279~^2^1^~pizza~^540^12^51.024 +~21280~^1^1^~slice~^113^96^20.034 +~21280~^2^1^~pizza~^907^12^69.336 +~21281~^1^1^~slice~^123^96^24.93 +~21281~^2^1^~pizza~^984^12^85.682 +~21282~^1^1^~slice~^151^33^24.483 +~21282~^2^1^~pizza~^1224^11^101.706 +~21283~^1^1^~slice~^117^27^15.637 +~21283~^2^1^~pie~^938^9^46.288 +~21284~^1^1^~slice~^123^27^14.488 +~21284~^2^1^~pie~^1021^9^67.647 +~21285~^1^1^~slice~^153^27^19.533 +~21285~^2^1^~pie~^1093^9^203.357 +~21286~^1^1^~slice~^87^27^16.433 +~21286~^2^1^~pie~^678^9^56.308 +~21287~^1^1^~slice~^89^24^22.089 +~21287~^2^1^~pie~^758^8^165.433 +~21288~^1^1^~slice~^90^24^16.065 +~21288~^2^1^~pie~^852^8^64.875 +~21289~^1^1^~slice~^115^21^29.352 +~21289~^2^1^~pie~^1043^7^449.085 +~21290~^1^1^~slice~^102^18^22.042 +~21290~^2^1^~pie~^919^6^122.721 +~21291~^1^1^~slice~^104^18^29.979 +~21291~^2^1^~pie~^938^6^54.938 +~21292~^1^1^~slice~^48^9^15.507 +~21292~^2^1^~pie~^562^2^ +~21292~^3^.5^~pie~^362^1^ +~21293~^1^1^~slice~^105^96^22.269 +~21293~^2^1^~pizza~^841^12^106.998 +~21294~^1^1^~slice~^112^96^20.396 +~21294~^2^1^~pizza~^897^12^90.51 +~21295~^1^1^~slice~^79^96^15.823 +~21295~^2^1^~pizza~^641^12^77.417 +~21296~^1^1^~slice~^110^96^23.177 +~21296~^2^1^~pizza~^883^12^129.337 +~21297~^1^1^~slice~^113^96^21.174 +~21297~^2^1^~pizza~^909^12^94.977 +~21298~^1^1^~slice~^123^36^36.345 +~21298~^2^1^~pizza~^1313^12^145.905 +~21299~^1^1^~slice~^107^192^21.262 +~21299~^2^1^~pizza~^853^24^88.617 +~21300~^1^1^~slice~^115^192^23.028 +~21300~^2^1^~pizza~^922^24^84.09 +~21301~^1^1^~slice~^76^136^15.471 +~21301~^2^1^~pizza~^590^24^82.454 +~21302~^1^1^~slice~^111^192^21.652 +~21302~^2^1^~pizza~^895^24^102.212 +~21303~^1^1^~slice~^118^192^23.627 +~21303~^2^1^~pizza~^946^24^96.355 +~21304~^1^1^~slice~^136^117^ +~21304~^2^1^~pie~^1168^39^ +~21305~^1^1^~item~^199^^ +~21306~^1^1^~item~^135^^ +~21307~^1^1^~item 6.1 oz~^174^^ +~21309~^1^4^~pieces~^64^1^ +~21309~^2^6^~pieces~^95^1^ +~21309~^3^10^~pieces~^159^1^ +~21310~^1^1^~package~^28^^ +~21311~^1^1.5^~oz~^43^^ +~21313~^1^1^~package~^28^^ +~21314~^1^1.5^~oz~^43^^ +~21315~^1^1^~package~^28^^ +~21316~^1^1.5^~oz~^43^^ +~21319~^1^1^~serving 1 patty~^53^12^3.805 +~21321~^1^3^~hotcakes 5.3 oz~^149^^ +~21324~^1^2.7^~oz~^77^^ +~21327~^1^1^~item 5.8 oz~^165^^ +~21328~^1^1^~item~^135^^ +~21329~^1^1^~item 7 oz~^199^^ +~21333~^1^1^~item (3.2 oz)~^90^^ +~21334~^1^1^~item (6.3 oz)~^178^^ +~21335~^1^1^~item (6.4 oz)~^182^^ +~21336~^1^1^~item (6.3 oz)~^179^^ +~21337~^1^.3^~oz~^7.0^^ +~21338~^1^1^~regular (12 fl oz)~^348^^ +~21338~^2^1^~large (16 fl oz)~^504^^ +~21339~^1^1^~regular (12 fl oz)~^337^^ +~21339~^2^1^~large (16 fl oz)~^487^^ +~21340~^1^1^~burrito~^109^12^10.242 +~21341~^1^1^~item 9.5 oz~^269^^ +~21343~^1^.8^~oz~^21^^ +~21344~^1^1^~sandwich~^155^12^5.512 +~21345~^1^1^~item~^280^^ +~21346~^1^2^~fl oz~^62^^ +~21347~^1^2^~fl oz~^59^^ +~21348~^1^2^~fl oz~^47^^ +~21349~^1^2^~fl oz~^56^^ +~21350~^1^1^~item~^200^^ +~21355~^1^1^~sandwich~^131^12^4.352 +~21356~^1^1^~item~^138^^ +~21357~^1^1^~sandwich~^126^12^6.798 +~21358~^1^1^~item 4 oz~^115^^ +~21359~^1^1^~item 5.8 oz~^165^^ +~21360~^1^1^~item 4.9 oz~^142^^ +~21361~^1^1^~item 4.1 oz~^117^^ +~21362~^1^1^~item 5.7 oz~^163^^ +~21363~^1^1^~item 14.8 oz~^420^^ +~21364~^1^1^~item~^192^^ +~21365~^1^1^~item~^221^^ +~21376~^1^1^~item 10.8 oz~^305^^ +~21377~^1^1^~item 11.3 oz~^319^^ +~21378~^1^1^~item 7.8 oz~^223^^ +~21379~^1^1^~item 3.1 oz~^87^^ +~21380~^1^1^~item 5.2 oz~^149^^ +~21381~^1^1^~item~^142^^ +~21382~^1^1^~item~^124^^ +~21383~^1^1^~sandwich~^171^12^14.682 +~21384~^1^1^~item~^131^4^23.098 +~21385~^1^1^~item~^110^4^3.77 +~21386~^1^1^~stick~^21^8^2.736 +~21386~^2^1^~serving 5 sticks~^107^^ +~21387~^1^1^~piece~^5.6^11^.439 +~21387~^2^1^~serving~^160^11^27.189 +~21388~^1^1^~each~^25^8^1.42 +~21389~^1^1^~item~^374^^ +~21390~^1^1^~item~^247^3^38.793 +~21393~^1^1^~item~^205^^ +~21395~^1^1^~sandwich~^155^32^8.054 +~21396~^1^1^~item~^280^^ +~21397~^1^1^~sandwich~^215^12^14.941 +~21398~^1^1^~item~^199^^ +~21399~^1^1^~item~^355^^ +~21400~^1^1^~item~^219^^ +~21401~^1^1^~strip~^30^64^ +~21401~^2^1^~serving~^184^20^31.459 +~21402~^1^1^~item 7 oz~^200^^ +~21403~^1^1^~item~^230^^ +~21404~^1^1^~item 7.9 oz~^223^^ +~21405~^1^1^~item 9 oz~^254^^ +~21406~^1^1^~item 7.1 oz~^202^^ +~21407~^1^1^~item 8.5 oz~^240^^ +~21410~^1^1^~item~^219^3^4.535 +~21411~^1^1^~item~^254^4^18.244 +~21412~^1^12^~fl oz cup~^348^^ +~21413~^1^12^~fl oz cup~^337^^ +~21415~^1^1^~biscuit~^60^72^ +~21416~^1^1^~package~^120^4^25.219 +~21416~^2^1^~cup~^190^4^20.948 +~21417~^1^1^~strip~^54^4^4.215 +~21418~^1^1^~strip~^53^4^8.803 +~21419~^1^1^~biscuit~^49^72^ +~21420~^1^1^~package~^112^4^15.354 +~21420~^2^1^~cup~^191^4^13.683 +~21421~^1^1^~strip~^47^4^13.581 +~21422~^1^1^~piece~^6.4^4^1.352 +~21422~^2^10^~pieces~^56^4^7.183 +~21425~^1^1^~breast without skin~^152^36^21.55 +~21425~^2^1^~breast bone and skin removed~^115^36^24.738 +~21426~^1^1^~drumstick, bone and skin removed~^40^36^8.995 +~21426~^2^1^~drumstick, without skin~^57^36^9.613 +~21427~^1^1^~thigh without skin~^86^36^13.095 +~21427~^2^1^~thigh bone and skin removed~^60^36^11.763 +~21428~^1^1^~wing wing without skin~^39^36^7.992 +~21428~^2^1^~wing bone and skin removed~^23^36^8.543 +~21430~^1^1^~breast, without skin~^140^36^20.022 +~21430~^2^1^~breast, bone and skin removed~^121^36^22.309 +~21431~^1^1^~drumstick, bone and skin removed~^41^36^7.019 +~21431~^2^1^~drumstick, without skin~^57^36^7.998 +~21432~^1^1^~thigh, without skin~^91^36^13.247 +~21432~^2^1^~thigh, bone and skin removed~^72^36^12.396 +~21433~^1^1^~wing, without skin~^44^35^9.349 +~21433~^2^1^~wing, bone and skin removed~^29^35^8.41 +~21434~^1^1^~breast, with skin~^212^36^27.858 +~21434~^2^1^~breast, without skin~^152^36^21.55 +~21434~^3^1^~breast, bone and skin removed~^115^36^24.738 +~21435~^1^1^~drumstick, with skin~^75^36^12.287 +~21435~^2^1^~drumstick, without skin~^57^36^9.613 +~21435~^3^1^~drumstick, bone and skin removed~^40^36^8.995 +~21436~^1^1^~thigh, with skin~^135^^ +~21436~^2^1^~thigh, without skin~^86^^ +~21436~^3^1^~thigh, bone and skin removed~^60^^ +~21437~^1^1^~wing, with skin~^60^^ +~21437~^2^1^~wing, without skin~^39^^ +~21437~^3^1^~wing, bone and skin removed~^23^^ +~21438~^1^1^~breast, with skin~^212^36^27.474 +~21438~^2^1^~breast, without skin~^140^36^20.022 +~21438~^3^1^~breast, bone and skin removed~^121^36^22.309 +~21439~^1^1^~drumstick, with skin~^81^36^10.126 +~21439~^2^1^~drumstick, without skin~^57^36^7.998 +~21439~^3^1^~drumstick, bone and skin removed~^41^36^7.019 +~21440~^1^1^~thigh, with skin~^152^36^23.613 +~21440~^2^1^~thigh, without skin~^91^36^13.247 +~21440~^3^1^~thigh, bone and skin removed~^72^36^12.396 +~21441~^1^1^~wing, with skin~^68^35^11.764 +~21441~^2^1^~wing, without skin~^44^35^9.349 +~21441~^3^1^~wing, bone and skin removed~^29^35^8.41 +~21442~^1^1^~breast without skin~^132^36^17.888 +~21442~^2^1^~breast bone and skin removed~^99^36^19.515 +~21443~^1^1^~drumstick, bone and skin removed~^44^36^14.718 +~21443~^2^1^~drumstick, without skin~^59^36^15.377 +~21445~^1^1^~thigh thigh without skin~^83^36^13.151 +~21445~^2^1^~thigh bone and skin removed~^54^36^12.918 +~21446~^1^1^~wing without skin, bone and breading~^16^239^ +~21456~^1^1^~breast, with skin~^194^36^26.29 +~21456~^2^1^~breast, without skin~^132^36^17.888 +~21456~^3^1^~breast, bone and skin removed~^99^36^19.515 +~21457~^1^1^~drumstick, with skin~^76^36^19.568 +~21457~^2^1^~drumstick, without skin~^59^36^15.377 +~21457~^3^1^~drumstick, bone and skin removed~^44^36^14.718 +~21458~^1^1^~thigh with skin~^138^^ +~21458~^2^1^~thigh without skin~^83^^ +~21458~^3^1^~thigh bone and skin removed~^54^^ +~21459~^1^1^~wing, with skin~^57^36^10.631 +~21459~^2^1^~wing, without skin~^35^36^7.092 +~21459~^3^1^~wing, bone and skin removed~^17^36^5.483 +~21461~^1^1^~sandwich~^268^^ +~21462~^1^1^~sandwich~^271^^ +~21463~^1^1^~item~^149^^ +~21464~^1^1^~breast without skin~^142^144^ +~21464~^2^1^~breast bone and skin removed~^107^144^ +~21465~^1^1^~drumstick, bone and skin removed~^40^144^ +~21465~^2^1^~drumstick, drumstick without skin~^56^144^ +~21466~^1^1^~thigh without skin~^84^144^ +~21466~^2^1^~thigh bone and skin removed~^66^144^ +~21467~^1^1^~wing without skin~^37^107^ +~21467~^2^1^~wing bone and skin removed~^20^107^ +~21469~^1^1^~breast, with skin~^203^144^ +~21469~^2^1^~breast, without skin~^142^144^ +~21469~^3^1^~breast, bone and skin removed~^107^144^ +~21470~^1^1^~drumstick, with skin~^75^144^ +~21470~^2^1^~drumstick, without skin~^56^144^ +~21470~^3^1^~drumstick, bone and skin removed~^40^144^ +~21471~^1^1^~thigh with skin~^136^144^ +~21471~^2^1^~thigh without skin~^84^144^ +~21471~^3^1^~thigh bone and skin removed~^66^144^ +~21472~^1^1^~wing, with skin~^58^143^ +~21472~^2^1^~wing, without skin~^37^143^ +~21472~^3^1^~wing, bone and skin removed~^20^143^ +~21473~^1^1^~slice 1/4 of pie~^164^3^6.879 +~21473~^2^1^~pie 12" diameter~^688^3^47.153 +~21474~^1^1^~slice 1/4 of pie~^183^4^6.243 +~21474~^2^1^~pie 12" diameter~^729^4^19.466 +~21475~^1^1^~slice 1/4 of pie~^161^3^3.11 +~21475~^2^1^~pie 23 oz~^643^3^11.288 +~21476~^1^1^~slice 1/4 of pie~^179^3^7.672 +~21476~^2^1^~pie 12" diameter~^732^3^32.639 +~21477~^1^1^~slice 1/4 of pie~^207^5^17.537 +~21477~^2^1^~pie 12" diameter~^759^5^30.682 +~21478~^1^1^~slice 1/4 of pie~^145^4^23.03 +~21478~^2^1^~pie 22.1 oz~^548^4^27.453 +~21479~^1^1^~slice 1/4 of pie~^227^6^8.448 +~21479~^2^1^~pie 12" diameter~^876^5^27.692 +~21480~^1^1^~slice 1/4 of pie~^155^4^20.408 +~21480~^2^1^~pie 24.8 oz~^595^4^29.463 +~21482~^1^1^~slice~^127^192^28.7 +~21482~^2^1^~pizza~^1017^24^113.431 +~21483~^1^1^~slice~^88^132^21.038 +~21483~^2^1^~pizza~^670^23^110.879 +~21484~^1^1^~slice~^116^192^25.245 +~21484~^2^1^~pizza~^932^24^115.413 +~21485~^1^1^~slice~^79^132^17.714 +~21485~^2^1^~pizza~^597^23^91.684 +~21486~^1^1^~each taco~^102^12^13.703 +~21487~^1^1^~each taco~^98^12^9.985 +~21488~^1^1^~each quesadilla~^180^11^16.928 +~21490~^1^1^~sandwich~^230^^ +~21491~^1^1^~slice~^80^95^18.307 +~21491~^2^1^~pizza~^634^11^88.657 +~21492~^1^1^~slice~^79^37^16.306 +~21492~^2^1^~pizza~^563^12^83.903 +~21493~^1^1^~slice~^78^40^15.445 +~21493~^2^1^~pizza~^597^11^64.062 +~21494~^1^1^~slice~^114^96^23.331 +~21494~^2^1^~pizza~^913^12^88.754 +~21495~^1^1^~slice~^129^96^30.167 +~21495~^2^1^~pizza~^1032^12^105.19 +~21496~^1^1^~slice~^92^92^21.854 +~21496~^2^1^~pizza~^737^12^102.769 +~21497~^1^1^~slice~^119^96^26.89 +~21497~^2^1^~pizza~^952^12^138.329 +~21498~^1^1^~slice~^125^96^27.208 +~21498~^2^1^~pizza~^1003^12^124.076 +~21499~^1^.33^~pizza~^116^1^ +~21500~^1^.33^~pizza~^113^1^ +~21501~^1^.33^~pizza~^113^1^ +~21503~^1^.33^~pizza~^120^1^ +~21505~^1^1^~slice~^69^24^6.489 +~21505~^2^1^~pie~^556^24^16.798 +~21506~^1^1^~sandwich~^162^12^4.601 +~21507~^1^1^~sandwich~^146^8^5.622 +~21508~^1^1^~sandwich~^126^12^9.015 +~21509~^1^1^~small~^91^^ +~21509~^2^1^~medium~^117^^ +~21509~^3^1^~large~^142^^ +~21510~^1^1^~sandwich~^215^12^14.941 +~21511~^1^1^~slice 1/8 pizza~^117^^ +~21511~^2^1^~pizza whole~^937^12^64.05 +~21512~^1^1^~slice~^117^^ +~21512~^2^1^~pizza~^937^12^64.05 +~21513~^1^1^~pizza~^149^1^ +~21514~^1^1^~pizza~^159^1^ +~21515~^1^1^~pizza~^160^^ +~21516~^1^1^~pizza~^152^1^ +~21517~^1^1^~item~^133^8^9.374 +~21518~^1^1^~item~^123^12^9.616 +~21519~^1^1^~burrito~^109^12^10.242 +~21520~^1^1^~breadstick~^43^140^ +~21521~^1^12^~fl oz~^347^1^ +~21522~^1^1^~biscuit regular size biscuit~^132^3^6.255 +~21523~^1^1^~wrap~^133^8^9.374 +~21524~^1^1^~wrap~^123^12^9.616 +~21525~^1^1^~breadstick~^43^140^ +~21526~^1^1^~sandwich~^187^40^ +~21527~^1^1^~sandwich~^149^26^ +~21600~^1^1^~piece 4"x6"~^130^^ +~21601~^1^1^~slice per 1/10 pizza~^124^^ +~21601~^2^1^~slice per 1/8 pizza~^155^^ +~21602~^1^1^~piece 4"x6"~^127^^ +~21603~^1^1^~slice per 1/10 pizza~^124^^ +~21603~^2^1^~slice per 1/8 pizza~^156^^ +~21604~^1^1^~piece 4" x 6"~^133^1^ +~21605~^1^1^~slice per 1/10 pizza~^129^^ +~21610~^1^1^~patty~^86^2^ +~21611~^1^5^~pieces~^88^6^8.433 +~22118~^1^1^~burger~^67^1^ +~22119~^1^1^~link~^40^1^ +~22120~^1^.5^~cup~^50^1^ +~22121~^1^1^~Burger~^71^1^ +~22122~^1^1^~patty~^38^1^ +~22123~^1^1^~burger~^67^1^ +~22126~^1^1^~link~^51^1^ +~22247~^1^1^~serving~^244^^ +~22401~^1^1^~serving~^283^^ +~22401~^2^1^~oz~^28.35^^ +~22402~^1^1^~serving~^269^^ +~22402~^2^1^~oz~^28.35^^ +~22522~^1^1^~serving (1 cup)~^252^1^ +~22528~^1^1^~package yields~^397^^ +~22528~^2^1^~serving~^397^^ +~22529~^1^1^~pie, cooked (average weight)~^268^^ +~22535~^1^1^~serving (1 hot pocket)~^127^^ +~22537~^1^1^~serving (1 hot pocket)~^127^^ +~22537~^2^1^~package yields~^256^^ +~22899~^1^1^~cup~^242^2^ +~22900~^1^1^~cup~^262^14^12.965 +~22901~^1^.75^~cup~^81^^ +~22902~^1^1^~slice 1/8 of 12" pizza~^103^5^17.537 +~22902~^2^1^~slice 1/8 of 14" pizza~^127^192^28.7 +~22903~^1^.25^~pizza 12" diameter~^127^10^19.264 +~22903~^2^1^~pizza 12" diameter~^532^10^77.59 +~22904~^1^1^~cup~^242^6^5.191 +~22905~^1^1^~cup (1 serving)~^196^4^5.393 +~22906~^1^1^~pie~^302^24^124.956 +~22908~^1^1^~cup~^236^1^ +~22910~^1^1^~cup 1 serving~^225^^ +~22911~^1^1^~cup~^240^^ +~22912~^1^1^~cup~^246^35^6.916 +~22912~^2^1^~can~^411^35^5.671 +~22914~^1^1^~serving (1 NLEA serving)~^252^4^0 +~22914~^2^1^~cup~^238^20^5.597 +~22915~^1^1^~package~^309^^ +~22915~^2^1^~oz~^28.35^^ +~22916~^1^1^~piece side~^134^48^26.182 +~22916~^2^1^~piece corner~^115^48^21.948 +~22916~^3^1^~piece center~^278^2^ +~22917~^1^1^~burrito frozen~^139^73^13.591 +~22917~^2^1^~oz~^28.35^^ +~22918~^1^1^~burrito~^129^9^16.2 +~22919~^1^7.5^~oz 1 serving~^213^^ +~22928~^1^1^~burrito cooked~^116^72^15.027 +~22928~^2^1^~oz~^28.35^^ +~22929~^1^1^~cup~^259^1^ +~22929~^2^1^~serving~^259^1^ +~22930~^1^1^~cup (1 serving)~^252^1^ +~22931~^1^1^~cup (1 serving)~^252^1^ +~22932~^1^1^~cup (1 serving)~^252^1^ +~22937~^1^1^~cup (1 serving)~^252^1^ +~22938~^1^1^~cup (1 serving)~^252^1^ +~22939~^1^1^~cup (1 serving)~^252^1^ +~22940~^1^1^~cup (1 serving)~^252^1^ +~22941~^1^1^~cup (1 serving)~^252^1^ +~22942~^1^1^~cup (1 serving)~^252^1^ +~22943~^1^.167^~box (NLEA serving size)~^85^1^ +~22944~^1^1^~serving~^125^1^ +~22945~^1^.167^~box (NLEA serving)~^103^1^ +~22946~^1^.167^~box (NLEA serving)~^94^1^ +~22947~^1^1^~serving (NLEA serving)~^94^1^ +~22948~^1^1^~serving~^85^1^ +~22948~^2^.167^~box~^85^1^ +~22949~^1^.167^~box (NLEA serving)~^81^1^ +~22949~^2^1^~serving~^81^1^ +~22950~^1^1^~serving 1/6 box~^84^1^ +~22950~^2^1^~box~^505^1^ +~22951~^1^1^~can (1 serving)~^298^1^ +~22952~^1^1^~cup (1 serving)~^247^1^ +~22953~^1^1^~roll~^85^3^8.401 +~22953~^2^1^~oz~^28.35^^ +~22954~^1^1^~roll~^80^3^8.792 +~22954~^2^1^~oz~^28.35^^ +~22955~^1^1^~egg roll~^68^7^17.688 +~22955~^2^1^~oz~^28.35^^ +~22956~^1^1^~serving~^227^12^24.072 +~22956~^2^1^~cup~^226^2^ +~22956~^3^1^~oz~^28.35^^ +~22957~^1^1^~serving~^385^37^61.049 +~22957~^2^1^~package~^422^37^64.967 +~22957~^3^1^~oz~^28.35^^ +~22958~^1^1^~bowl~^340^12^21.955 +~22959~^1^1^~serving (makes about 1 cup prepared)~^70^^ +~22960~^1^1^~cup~^198^24^9.392 +~22961~^1^1^~hot pocket (1 NLEA serving)~^127^^ +~22962~^1^1^~hot pocket (1 NLEA serving)~^127^^ +~22962~^2^1^~each (analytical measurement)~^129^12^6.351 +~22963~^1^1^~each~^128^15^3.788 +~22965~^1^1^~can (1 serving)~^213^1^ +~22966~^1^1^~can (1 serving)~^206^1^ +~22969~^1^1^~cup~^244^9^8.446 +~22969~^2^1^~container~^422^9^4.856 +~22970~^1^1^~cup~^137^14^26.094 +~22970~^2^1^~container (mean weight over brands)~^283^14^51.325 +~22971~^1^.5^~cup~^125^6^2.645 +~22972~^1^1^~cup~^249^11^10.418 +~22973~^1^1^~corndog~^78^19^5.55 +~22973~^2^1^~corndog mini~^17^2^ +~22974~^1^1^~serving~^87^22^3.96 +~22974~^2^1^~piece~^18^12^.761 +~22975~^1^1^~serving~^82^9^4.531 +~22975~^2^1^~piece~^20^9^2.101 +~22976~^1^1^~cup~^159^22^12.215 +~22977~^1^1^~piece side~^123^48^26.372 +~22977~^2^1^~piece corner~^114^48^32.003 +~22977~^3^1^~piece center~^255^2^ +~22978~^1^1^~piece~^21^24^7.428 +~22979~^1^1^~entree~^283^1^ +~22980~^1^1^~package~^269^1^ +~22981~^1^1^~package~^255^1^ +~22982~^1^1^~package~^269^1^ +~22983~^1^1^~package~^283^1^ +~22984~^1^1^~package~^283^1^ +~22985~^1^1^~package~^283^1^ +~22986~^1^1^~entree~^283^1^ +~22987~^1^1^~entree~^283^1^ +~22988~^1^.5^~cup~^140^1^ +~22989~^1^1^~package~^269^1^ +~22990~^1^1^~package~^269^1^ +~22991~^1^1^~package~^269^1^ +~22992~^1^1^~package~^283^1^ +~22993~^1^1^~entree~^255^1^ +~22994~^1^1^~entree~^269^1^ +~22995~^1^1^~package~^283^1^ +~22996~^1^1^~Entrée~^269^1^ +~22997~^1^1^~package~^283^1^ +~22998~^1^.333^~cup~^56^12^3.984 +~22998~^2^1^~tbsp~^10.2^12^2.339 +~22999~^1^1^~cup~^233^12^13.458 +~23000~^1^3^~oz~^85^^ +~23000~^2^1^~steak~^369^1^ +~23000~^3^1^~roast~^1159^1^ +~23001~^1^3^~oz~^85^^ +~23001~^2^1^~steak~^534^36^30.734 +~23002~^1^3^~oz~^85^^ +~23002~^2^1^~steak~^421^36^31.383 +~23003~^1^3^~oz~^85^^ +~23003~^2^1^~steak~^526^12^32.614 +~23004~^1^3^~oz~^85^^ +~23004~^2^1^~steak~^426^12^33.689 +~23005~^1^3^~oz~^85^^ +~23005~^2^1^~steak~^460^36^31.973 +~23006~^1^3^~oz~^85^^ +~23006~^2^1^~steak~^363^36^28.19 +~23007~^1^3^~oz~^85^^ +~23007~^2^1^~steak~^458^12^36.718 +~23008~^1^3^~oz~^85^^ +~23008~^2^1^~steak~^368^12^27.393 +~23030~^1^3^~oz~^85^^ +~23030~^2^1^~steak~^191^6^31.976 +~23031~^1^1^~steak~^141^6^22.928 +~23031~^2^1^~serving (3 oz)~^85^^ +~23032~^1^3^~oz~^85^^ +~23032~^2^1^~steak~^200^4^55.272 +~23033~^1^1^~serving (3 oz)~^85^^ +~23033~^2^1^~steak~^174^4^15.269 +~23034~^1^1^~medallion~^40^6^2.474 +~23035~^1^1^~medallion~^30^6^2.215 +~23035~^2^1^~serving (3 oz)~^85^^ +~23036~^1^1^~medallion~^44^3^.092 +~23037~^1^3^~oz~^85^^ +~23037~^2^1^~steak~^246^6^19.317 +~23038~^1^1^~serving (3 oz)~^85^^ +~23038~^2^1^~steak~^188^6^19.013 +~23039~^1^3^~oz~^85^^ +~23039~^2^1^~steak~^233^4^17.079 +~23040~^1^1^~steak~^179^4^18.289 +~23040~^2^1^~serving (3 oz)~^85^^ +~23041~^1^3^~oz~^85^^ +~23041~^2^1^~steak~^254^6^32.632 +~23042~^1^1^~serving (3 oz)~^85^^ +~23042~^2^1^~steak~^193^6^27.408 +~23043~^1^3^~oz~^85^^ +~23043~^2^1^~steak~^243^4^29.155 +~23044~^1^1^~serving (3 oz)~^85^^ +~23044~^2^1^~steak~^186^4^27.711 +~23045~^1^3^~oz~^85^^ +~23045~^2^1^~steak~^209^6^62.14 +~23046~^1^3^~oz~^85^^ +~23046~^2^1^~steak~^156^6^39.848 +~23047~^1^3^~oz~^85^^ +~23047~^2^1^~steak~^203^4^27.316 +~23048~^1^3^~oz~^85^^ +~23048~^2^1^~steak~^160^4^18.142 +~23049~^1^3^~oz~^85^^ +~23049~^2^1^~steak~^293^6^20.989 +~23050~^1^1^~serving (3 oz)~^85^^ +~23050~^2^1^~steak~^225^6^20.651 +~23051~^1^3^~oz~^85^^ +~23051~^2^1^~steak~^324^4^7.103 +~23052~^1^1^~serving (3 oz)~^85^^ +~23052~^2^1^~steak~^253^4^10.281 +~23053~^1^1^~medallion~^41^9^3.094 +~23054~^1^1^~medallion~^32^10^2.644 +~23054~^2^1^~serving (3 oz)~^85^^ +~23055~^1^3^~oz~^85^^ +~23055~^2^1^~steak~^207^7^41.684 +~23056~^1^1^~serving (3 oz)~^85^^ +~23056~^2^1^~steak~^168^7^14.22 +~23057~^1^3^~oz~^85^^ +~23057~^2^1^~steak~^241^10^18.658 +~23058~^1^1^~serving (3 oz)~^85^^ +~23058~^2^1^~steak~^184^10^18.239 +~23059~^1^3^~oz~^85^^ +~23059~^2^1^~steak~^250^10^30.067 +~23060~^1^1^~serving (3 oz)~^85^^ +~23060~^2^1^~steak~^190^10^26.221 +~23061~^1^3^~oz~^85^^ +~23061~^2^1^~steak~^197^13^46.546 +~23062~^1^1^~steak~^150^13^31.963 +~23063~^1^3^~oz~^85^^ +~23063~^2^1^~steak~^305^10^22.75 +~23064~^1^1^~serving (3 oz)~^85^^ +~23064~^2^1^~steak~^236^10^22.085 +~23065~^1^1^~medallion~^34^4^1.503 +~23065~^2^1^~serving (3 oz)~^85^^ +~23066~^1^3^~oz~^85^^ +~23066~^2^1^~piece~^434^7^ +~23067~^1^3^~oz~^85^^ +~23067~^2^1^~piece~^429^4^ +~23068~^1^3^~oz~^85^^ +~23068~^2^1^~piece~^432^11^ +~23069~^1^3^~oz~^85^^ +~23069~^2^1^~piece~^224^14^40.3 +~23070~^1^3^~oz~^85^^ +~23070~^2^1^~piece~^231^8^45.4 +~23071~^1^3^~oz~^85^^ +~23071~^2^1^~piece~^227^22^41.2 +~23072~^1^3^~oz~^85^^ +~23072~^2^1^~piece~^325^14^ +~23073~^1^3^~oz~^85^^ +~23073~^2^1^~piece~^340^8^ +~23074~^1^3^~oz~^85^^ +~23074~^2^1^~piece~^331^22^ +~23075~^1^3^~oz~^85^^ +~23075~^2^1^~steak~^307^34^73.3 +~23076~^1^3^~oz~^85^^ +~23076~^2^1^~steak~^309^18^82.5 +~23077~^1^3^~oz~^85^^ +~23077~^2^1^~steak~^308^52^75.8 +~23078~^1^3^~oz~^85^^ +~23078~^2^1^~steak~^382^34^ +~23079~^1^3^~oz~^85^^ +~23079~^2^1^~steak~^386^18^ +~23080~^1^3^~oz~^85^^ +~23080~^2^1^~steak~^384^52^ +~23081~^1^3^~oz~^85^^ +~23081~^2^1^~roast~^793^14^102.3 +~23082~^1^3^~oz~^85^^ +~23082~^2^1^~roast~^779^8^113 +~23083~^1^3^~oz~^85^^ +~23083~^2^1^~roast~^787^22^104.5 +~23084~^1^1^~steak~^141^14^20.1 +~23085~^1^1^~steak~^141^8^27.2 +~23086~^1^1^~steak~^141^22^22.3 +~23087~^1^3^~oz~^85^^ +~23087~^2^1^~steak~^204^14^ +~23088~^1^3^~oz~^85^^ +~23088~^2^1^~steak~^191^8^ +~23089~^1^3^~oz~^85^^ +~23089~^2^1^~steak~^198^22^ +~23090~^1^3^~oz~^85^^ +~23090~^2^1^~lb~^453.6^1^ +~23091~^1^3^~oz~^85^^ +~23092~^1^3^~oz~^85^^ +~23093~^1^3^~oz~^85^^ +~23094~^1^3^~oz~^85^^ +~23095~^1^3^~oz~^85^^ +~23096~^1^3^~oz~^85^^ +~23096~^2^1^~steak~^445^7^70.5 +~23097~^1^3^~oz~^85^^ +~23098~^1^3^~oz~^85^^ +~23099~^1^3^~oz~^85^^ +~23100~^1^3^~oz~^85^^ +~23100~^2^1^~steak~^291^36^38.048 +~23101~^1^3^~oz~^85^^ +~23101~^2^1^~roast~^2044^24^445.172 +~23102~^1^3^~oz~^85^^ +~23102~^2^1^~steak~^679^11^ +~23102~^3^1^~roast~^960^11^ +~23103~^1^3^~oz~^85^^ +~23103~^2^1^~steak~^648^7^ +~23103~^3^1^~roast~^949^7^ +~23104~^1^3^~oz~^85^^ +~23104~^2^1^~steak~^732^4^ +~23104~^3^1^~roast~^977^4^ +~23105~^1^3^~oz~^85^^ +~23105~^2^1^~steak~^353^26^74.7 +~23106~^1^3^~oz~^85^^ +~23106~^2^1^~steak~^356^17^74.2 +~23107~^1^3^~oz~^85^^ +~23107~^2^1^~steak~^349^9^80.3 +~23108~^1^3^~oz~^85^^ +~23108~^2^1^~steak~^473^26^ +~23109~^1^3^~oz~^85^^ +~23109~^2^1^~steak~^483^17^ +~23110~^1^3^~oz~^85^^ +~23110~^2^1^~steak~^458^9^ +~23111~^1^3^~oz~^85^^ +~23111~^2^1^~steak~^361^1^ +~23111~^3^1^~roast~^1173^1^ +~23112~^1^3^~oz~^85^^ +~23112~^2^1^~steak~^381^1^ +~23112~^3^1^~roast~^1139^1^ +~23113~^1^3^~oz~^85^^ +~23113~^2^1^~roast~^609^11^78.6 +~23114~^1^3^~oz~^85^^ +~23114~^2^1^~roast~^586^7^30.6 +~23115~^1^3^~oz~^85^^ +~23115~^2^1^~roast~^645^4^126.7 +~23116~^1^3^~oz~^85^^ +~23116~^2^1^~steak~^449^11^58.2 +~23117~^1^3^~oz~^85^^ +~23117~^2^1^~steak~^445^7^70.5 +~23118~^1^3^~oz~^85^^ +~23118~^2^1^~steak~^454^4^36.8 +~23119~^1^1^~steak~^141^22^22.3 +~23120~^1^1^~steak~^141^14^20.1 +~23121~^1^1^~steak~^141^8^27.2 +~23122~^1^3^~oz~^85^^ +~23122~^2^1^~steak~^198^22^ +~23123~^1^3^~oz~^85^^ +~23123~^2^1^~steak~^204^14^ +~23124~^1^3^~oz~^85^^ +~23124~^2^1^~steak~^191^8^ +~23125~^1^3^~oz~^85^^ +~23125~^2^1^~piece~^289^11^52 +~23126~^1^3^~oz~^85^^ +~23126~^2^1^~piece~^272^7^51.1 +~23127~^1^3^~oz~^85^^ +~23127~^2^1^~piece~^315^4^51.9 +~23128~^1^3^~oz~^85^^ +~23128~^2^1^~piece~^432^11^ +~23129~^1^3^~oz~^85^^ +~23129~^2^1^~piece~^434^7^ +~23130~^1^3^~oz~^85^^ +~23130~^2^1^~piece~^429^4^ +~23131~^1^3^~oz~^85^^ +~23131~^2^1^~roast~^787^22^104.5 +~23132~^1^3^~oz~^85^^ +~23132~^2^1^~roast~^793^14^102.3 +~23133~^1^3^~oz~^85^^ +~23133~^2^1^~roast~^779^8^113 +~23134~^1^3^~oz~^85^^ +~23134~^2^1^~piece~^227^22^41.2 +~23135~^1^3^~oz~^85^^ +~23135~^2^1^~piece~^224^14^40.3 +~23136~^1^3^~oz~^85^^ +~23136~^2^1^~piece~^231^8^45.4 +~23137~^1^3^~oz~^85^^ +~23137~^2^1^~piece~^331^22^ +~23138~^1^3^~oz~^85^^ +~23138~^2^1^~piece~^325^14^ +~23139~^1^3^~oz~^85^^ +~23139~^2^1^~piece~^340^8^ +~23140~^1^3^~oz~^85^^ +~23140~^2^1^~steak~^308^52^75.8 +~23141~^1^3^~oz~^85^^ +~23141~^2^1^~steak~^307^34^73.3 +~23142~^1^3^~oz~^85^^ +~23142~^2^1^~steak~^309^18^82.5 +~23143~^1^3^~oz~^85^^ +~23143~^2^1^~steak~^384^52^ +~23144~^1^3^~oz~^85^^ +~23144~^2^1^~steak~^382^34^ +~23145~^1^3^~oz~^85^^ +~23145~^2^1^~steak~^386^18^ +~23146~^1^3^~oz~^85^^ +~23146~^2^1^~roast~^2130^35^439.866 +~23147~^1^3^~oz~^85^^ +~23147~^2^1^~roast~^2259^11^432.195 +~23148~^1^3^~oz~^85^^ +~23148~^2^1^~steak~^281^24^34.801 +~23149~^1^3^~oz~^85^^ +~23149~^2^1^~steak~^306^12^38.938 +~23150~^1^3^~oz~^85^^ +~23150~^2^1^~steak~^462^36^42.723 +~23150~^3^1^~roast~^2627^36^565.406 +~23151~^1^3^~oz~^85^^ +~23151~^2^1^~steak~^456^24^39.959 +~23151~^3^1^~roast~^2674^24^593.856 +~23152~^1^3^~oz~^85^^ +~23152~^2^1^~steak~^471^12^48.629 +~23152~^3^1^~roast~^2557^12^516.074 +~23153~^1^3^~oz~^85^^ +~23153~^2^1^~steak~^361^36^47.605 +~23153~^3^1^~roast~^2155^36^421.5 +~23154~^1^3^~oz~^85^^ +~23154~^2^1^~steak~^350^24^40.625 +~23154~^3^1^~roast~^2124^24^421 +~23155~^1^3^~oz~^85^^ +~23155~^2^1^~steak~^376^12^56.167 +~23155~^3^1^~roast~^2203^12^438.7 +~23156~^1^3^~oz~^85^^ +~23156~^2^1^~steak~^381^36^39.487 +~23157~^1^3^~oz~^85^^ +~23157~^2^1^~steak~^378^24^40.12 +~23158~^1^3^~oz~^85^^ +~23158~^2^1^~steak~^385^12^39.773 +~23159~^1^3^~oz~^85^^ +~23159~^2^1^~roast~^1601^36^326.43 +~23160~^1^3^~oz~^85^^ +~23160~^2^1^~roast~^1555^24^340.187 +~23161~^1^3^~oz~^85^^ +~23161~^2^1^~roast~^1669^12^296.629 +~23162~^1^3^~oz~^85^^ +~23162~^2^1^~steak~^254^72^48.601 +~23163~^1^3^~oz~^85^^ +~23163~^2^1^~steak~^382^1^ +~23164~^1^3^~oz~^85^^ +~23164~^2^1^~steak~^256^48^51.975 +~23165~^1^3^~oz~^85^^ +~23165~^2^1^~steak~^388^1^ +~23166~^1^3^~oz~^85^^ +~23166~^2^1^~steak~^250^24^41.961 +~23167~^1^3^~oz~^85^^ +~23167~^2^1^~steak~^373^1^ +~23168~^1^3^~oz~^85^^ +~23168~^2^1^~steak~^174^72^46.294 +~23169~^1^3^~oz~^85^^ +~23169~^2^1^~steak~^266^1^ +~23170~^1^3^~oz~^85^^ +~23170~^2^1^~steak~^173^48^48.135 +~23171~^1^3^~oz~^85^^ +~23171~^2^1^~steak~^268^1^ +~23172~^1^3^~oz~^85^^ +~23172~^2^1^~steak~^175^24^43.352 +~23173~^1^3^~oz~^85^^ +~23173~^2^1^~steak~^264^1^ +~23174~^1^3^~oz~^85^^ +~23175~^1^3^~oz~^85^^ +~23176~^1^3^~oz~^85^^ +~23176~^2^1^~steak~^242^24^23.638 +~23177~^1^3^~oz~^85^^ +~23177~^2^1^~steak~^316^24^34.398 +~23178~^1^3^~oz~^85^^ +~23178~^2^1^~steak~^266^12^28.022 +~23179~^1^3^~oz~^85^^ +~23180~^1^3^~oz~^85^^ +~23180~^2^1^~ribs~^1159^36^224.955 +~23181~^1^3^~oz~^85^^ +~23181~^2^1^~ribs~^1587^36^262.913 +~23182~^1^3^~oz~^85^^ +~23182~^2^1^~ribs~^1197^24^229.773 +~23183~^1^3^~oz~^85^^ +~23183~^2^1^~ribs~^1604^24^283.936 +~23184~^1^3^~oz~^85^^ +~23184~^2^1^~ribs~^1102^12^206.067 +~23185~^1^3^~oz~^85^^ +~23185~^2^1^~ribs~^1562^12^222.274 +~23186~^1^3^~oz~^85^^ +~23186~^2^1^~steak~^378^24^40.12 +~23187~^1^3^~oz~^85^^ +~23187~^2^1^~steak~^385^12^39.773 +~23188~^1^3^~oz~^85^^ +~23188~^2^1^~steak~^381^36^39.487 +~23189~^1^3^~oz~^85^^ +~23189~^2^1^~roast~^2044^24^445.172 +~23190~^1^3^~oz~^85^^ +~23190~^2^1^~roast~^2259^11^432.195 +~23191~^1^3^~oz~^85^^ +~23191~^2^1^~roast~^2130^35^439.866 +~23192~^1^3^~oz~^85^^ +~23192~^2^1^~steak~^462^36^42.723 +~23192~^3^1^~roast~^2627^36^565.406 +~23193~^1^3^~oz~^85^^ +~23193~^2^1^~steak~^456^24^39.959 +~23193~^3^1^~roast~^2674^24^593.856 +~23194~^1^3^~oz~^85^^ +~23194~^2^1^~steak~^471^12^48.629 +~23194~^3^1^~roast~^2557^12^516.074 +~23195~^1^3^~oz~^85^^ +~23195~^2^1^~steak~^281^24^34.801 +~23196~^1^3^~oz~^85^^ +~23196~^2^1^~steak~^306^12^38.938 +~23197~^1^3^~oz~^85^^ +~23197~^2^1^~steak~^291^36^38.048 +~23198~^1^3^~oz~^85^^ +~23198~^2^1^~roast~^1601^36^326.43 +~23199~^1^3^~oz~^85^^ +~23199~^2^1^~roast~^1555^24^340.187 +~23200~^1^3^~oz~^85^^ +~23200~^2^1^~roast~^1669^12^296.629 +~23201~^1^3^~oz~^85^^ +~23201~^2^1^~steak~^361^36^47.605 +~23201~^3^1^~roast~^2155^36^421.522 +~23202~^1^3^~oz~^85^^ +~23202~^2^1^~steak~^350^24^40.625 +~23202~^3^1^~roast~^2124^24^421.046 +~23213~^1^3^~oz~^85^^ +~23213~^2^1^~steak~^376^12^56.167 +~23213~^3^1^~roast~^2203^12^438.735 +~23214~^1^3^~oz~^85^^ +~23214~^2^1^~steak~^254^72^48.601 +~23215~^1^3^~oz~^85^^ +~23215~^2^1^~steak~^256^48^51.975 +~23216~^1^3^~oz~^85^^ +~23216~^2^1^~steak~^250^24^41.961 +~23217~^1^3^~oz~^85^^ +~23217~^2^1^~steak~^382^1^ +~23218~^1^3^~oz~^85^^ +~23218~^2^1^~steak~^388^1^ +~23219~^1^3^~oz~^85^^ +~23219~^2^1^~steak~^373^1^ +~23220~^1^3^~oz~^85^1^ +~23221~^1^3^~oz~^85^^ +~23221~^2^1^~steak~^174^72^46.294 +~23222~^1^3^~oz~^85^^ +~23222~^2^1^~steak~^173^48^48.135 +~23223~^1^3^~oz~^85^^ +~23223~^2^1^~steak~^175^24^43.352 +~23224~^1^3^~oz~^85^^ +~23224~^2^1^~steak~^266^1^ +~23225~^1^3^~oz~^85^^ +~23225~^2^1^~steak~^268^1^ +~23226~^1^3^~oz~^85^^ +~23226~^2^1^~steak~^264^1^ +~23227~^1^3^~oz~^85^^ +~23227~^2^1^~steak~^251^36^27.211 +~23228~^1^3^~oz~^85^^ +~23228~^2^1^~steak~^242^24^23.638 +~23229~^1^3^~oz~^85^^ +~23229~^2^1^~steak~^266^12^28.022 +~23230~^1^3^~oz~^85^^ +~23230~^2^1^~steak~^326^36^39.568 +~23231~^1^3^~oz~^85^^ +~23231~^2^1^~steak~^316^24^34.398 +~23232~^1^3^~oz~^85^^ +~23232~^2^1^~steak~^340^12^44.658 +~23233~^1^3^~oz~^85^^ +~23233~^2^1^~ribs~^1159^36^224.955 +~23234~^1^3^~oz~^85^^ +~23234~^2^1^~ribs~^1197^24^229.773 +~23235~^1^3^~oz~^85^^ +~23235~^2^1^~ribs~^1102^12^206.067 +~23236~^1^3^~oz~^85^^ +~23236~^2^1^~ribs~^1587^36^262.913 +~23237~^1^3^~oz~^85^^ +~23237~^2^1^~ribs~^1604^24^283.936 +~23238~^1^3^~oz~^85^^ +~23238~^2^1^~ribs~^1562^12^222.274 +~23239~^1^3^~oz~^85^^ +~23239~^2^1^~roast~^806^16^81.954 +~23240~^1^3^~oz~^85^^ +~23240~^2^1^~fillet~^190^16^33.525 +~23240~^3^1^~roast~^1013^16^128.799 +~23241~^1^3^~oz~^85^^ +~23241~^2^1^~steak~^161^24^27.396 +~23242~^1^3^~oz~^85^^ +~23242~^2^1^~steak~^165^16^24.719 +~23243~^1^3^~oz~^85^^ +~23243~^2^1^~steak~^156^8^32.402 +~23244~^1^3^~oz~^85^^ +~23244~^2^1^~steak~^223^24^39.224 +~23245~^1^3^~oz~^85^^ +~23245~^2^1^~steak~^238^16^27.807 +~23246~^1^3^~oz~^85^^ +~23246~^2^1^~steak~^199^8^43.09 +~23247~^1^1^~fillet~^135^24^18.551 +~23248~^1^1^~fillet~^135^16^20.613 +~23249~^1^1^~fillet~^135^8^14.828 +~23250~^1^3^~oz~^85^^ +~23250~^2^1^~roast~^634^24^123.142 +~23251~^1^3^~oz~^85^^ +~23251~^2^1^~roast~^677^16^111.092 +~23252~^1^3^~oz~^85^^ +~23252~^2^1^~roast~^571^8^113.723 +~23253~^1^3^~oz~^85^^ +~23253~^2^1^~fillet~^173^24^26.608 +~23253~^3^1^~roast~^852^24^168.444 +~23254~^1^3^~oz~^85^^ +~23254~^2^1^~fillet~^178^16^27.372 +~23254~^3^1^~roast~^844^16^169.177 +~23255~^1^3^~oz~^85^^ +~23255~^2^1^~fillet~^166^8^24.238 +~23255~^3^1^~roast~^866^8^178.113 +~23256~^1^1^~fillet~^121^24^25.596 +~23257~^1^1^~fillet~^124^16^28.361 +~23258~^1^1^~fillet~^115^8^16.815 +~23259~^1^3^~oz~^85^^ +~23259~^2^1^~roast~^768^24^100.785 +~23260~^1^3^~oz~^85^^ +~23260~^2^1^~roast~^765^8^134.304 +~23261~^1^3^~oz~^85^^ +~23261~^2^1^~fillet~^180^24^34.446 +~23261~^3^1^~roast~^970^24^120.894 +~23262~^1^3^~oz~^85^^ +~23262~^2^1^~fillet~^186^8^40.249 +~23262~^3^1^~roast~^955^8^82.971 +~23263~^1^3^~oz~^85^^ +~23263~^2^1^~fillet~^164^24^23.274 +~23263~^3^1^~roast~^901^24^126.244 +~23264~^1^3^~oz~^85^^ +~23264~^2^1^~fillet~^163^16^17.579 +~23264~^3^1^~roast~^938^16^131.843 +~23265~^1^3^~oz~^85^^ +~23265~^2^1^~fillet~^167^8^33.346 +~23265~^3^1^~roast~^847^8^94.107 +~23266~^1^3^~oz~^85^^ +~23266~^2^1^~steak~^209^24^31.074 +~23267~^1^3^~oz~^85^^ +~23267~^2^1^~steak~^208^16^26.678 +~23268~^1^3^~oz~^85^^ +~23268~^2^1^~steak~^211^8^40.54 +~23269~^1^3^~oz~^85^^ +~23269~^2^1^~steak~^256^24^46.771 +~23270~^1^3^~oz~^85^^ +~23270~^2^1^~steak~^249^16^33.313 +~23271~^1^3^~oz~^85^^ +~23271~^2^1^~steak~^267^8^67.857 +~23272~^1^1^~fillet~^135^24^17.475 +~23273~^1^1^~fillet~^138^16^16.234 +~23274~^1^1^~fillet~^129^8^20.093 +~23275~^1^3^~oz~^85^^ +~23275~^2^1^~roast~^699^24^96.785 +~23276~^1^3^~oz~^85^^ +~23276~^2^1^~roast~^714^16^95.259 +~23277~^1^3^~oz~^85^^ +~23277~^2^1^~roast~^675^8^98.197 +~23278~^1^3^~oz~^85^^ +~23278~^2^1^~steak~^161^24^27.396 +~23279~^1^3^~oz~^85^^ +~23279~^2^1^~steak~^165^16^24.719 +~23280~^1^3^~oz~^85^^ +~23280~^2^1^~steak~^156^8^32.402 +~23281~^1^3^~oz~^85^^ +~23281~^2^1^~steak~^223^24^39.224 +~23282~^1^3^~oz~^85^^ +~23282~^2^1^~steak~^238^16^27.807 +~23283~^1^3^~oz~^85^^ +~23283~^2^1^~steak~^199^8^43.09 +~23284~^1^1^~fillet~^135^24^18.551 +~23285~^1^1^~fillet~^135^16^20.613 +~23286~^1^1^~fillet~^135^8^14.828 +~23287~^1^3^~oz~^85^^ +~23287~^2^1^~roast~^634^24^123.142 +~23288~^1^3^~oz~^85^^ +~23288~^2^1^~roast~^677^16^111.092 +~23289~^1^3^~oz~^85^^ +~23289~^2^1^~roast~^571^8^113.723 +~23290~^1^3^~oz~^85^^ +~23290~^2^1^~fillet~^173^24^26.608 +~23290~^3^1^~roast~^852^24^168.444 +~23291~^1^3^~oz~^85^^ +~23291~^2^1^~fillet~^178^16^27.372 +~23291~^3^1^~roast~^844^16^169.177 +~23292~^1^3^~oz~^85^^ +~23292~^2^1^~fillet~^166^8^24.238 +~23292~^3^1^~roast~^866^8^178.113 +~23293~^1^4^~oz (4 oz)~^114^^ +~23294~^1^4^~oz~^114^^ +~23294~^2^1^~steak~^150^42^41.2 +~23295~^1^4^~oz~^114^^ +~23295~^2^1^~steak~^152^34^36.1 +~23296~^1^1^~oz~^28.35^^ +~23297~^1^1^~oz~^28.35^^ +~23298~^1^1^~oz~^28.35^^ +~23299~^1^1^~oz~^28.35^^ +~23300~^1^1^~oz~^28^^ +~23301~^1^1^~oz~^28^^ +~23302~^1^4^~oz~^114^^ +~23302~^2^1^~steak~^150^42^41.2 +~23303~^1^4^~oz~^114^^ +~23303~^2^1^~roast~^339^47^48.9 +~23304~^1^4^~oz~^114^^ +~23304~^2^1^~steak~^152^34^36.1 +~23305~^1^4^~oz~^114^^ +~23305~^2^1^~roast~^339^47^48.9 +~23306~^1^4^~oz~^114^^ +~23306~^2^1^~roast~^449^18^180.7 +~23307~^1^4^~oz~^114^^ +~23307~^2^1^~roast~^350^38^63.8 +~23308~^1^4^~oz~^114^^ +~23308~^2^1^~roast~^337^49^64.5 +~23309~^1^4^~oz~^114^^ +~23309~^2^1^~roast~^763^25^154.1 +~23310~^1^4^~oz~^114^^ +~23310~^2^1^~steak~^173^44^42.4 +~23311~^1^4^~oz~^114^^ +~23311~^2^1^~roast~^348^62^63 +~23312~^1^4^~oz~^114^^ +~23312~^2^1^~roast~^359^64^56.7 +~23313~^1^4^~oz~^114^^ +~23313~^2^1^~roast~^342^52^84.4 +~23314~^1^4^~oz~^114^^ +~23314~^2^1^~roast~^377^59^77.7 +~23315~^1^4^~oz~^114^^ +~23315~^2^1^~roast~^449^^ +~23316~^1^4^~oz~^114^^ +~23316~^2^1^~roast~^350^^ +~23317~^1^4^~oz~^114^^ +~23317~^2^1^~roast~^337^^ +~23318~^1^4^~oz~^114^^ +~23318~^2^1^~roast~^763^^ +~23319~^1^4^~oz~^114^^ +~23319~^2^1^~roast~^348^^ +~23320~^1^4^~oz~^114^^ +~23320~^2^1^~roast~^359^64^56.7 +~23321~^1^4^~oz~^114^^ +~23321~^2^1^~roast~^342^52^84.4 +~23322~^1^4^~oz~^114^^ +~23322~^2^1^~roast~^377^59^77.7 +~23323~^1^4^~oz~^114^^ +~23323~^2^1^~steak~^173^^ +~23324~^1^3^~oz~^85^^ +~23324~^2^1^~steak~^344^36^55.182 +~23325~^1^3^~oz~^85^^ +~23325~^2^1^~steak~^344^24^58.261 +~23326~^1^3^~oz~^85^^ +~23326~^2^1^~steak~^344^12^50.845 +~23327~^1^3^~oz~^85^^ +~23327~^2^1^~roast~^758^36^215.967 +~23328~^1^3^~oz~^85^^ +~23328~^2^1^~roast~^770^24^204.362 +~23329~^1^3^~oz~^85^^ +~23329~^2^1^~roast~^740^12^247.042 +~23330~^1^3^~oz~^85^^ +~23330~^2^1^~roast~^675^36^104.809 +~23331~^1^3^~oz~^85^^ +~23331~^2^1^~roast~^658^24^96.176 +~23332~^1^3^~oz~^85^^ +~23332~^2^1^~roast~^699^12^121.714 +~23333~^1^3^~oz~^85^^ +~23333~^2^1^~steak~^140^36^31.344 +~23334~^1^3^~oz~^85^^ +~23334~^2^1^~steak~^133^24^32.624 +~23335~^1^3^~oz~^85^^ +~23335~^2^1^~steak~^151^12^25.741 +~23336~^1^3^~oz~^85^^ +~23336~^2^1^~roast~^644^36^107.794 +~23337~^1^3^~oz~^85^^ +~23337~^2^1^~roast~^625^24^114.675 +~23338~^1^3^~oz~^85^^ +~23338~^2^1^~roast~^673^12^91.82 +~23339~^1^3^~oz~^85^^ +~23339~^2^1^~steak~^267^36^34.877 +~23340~^1^3^~oz~^85^^ +~23340~^2^1^~steak~^266^24^36.38 +~23341~^1^3^~oz~^85^^ +~23341~^2^1^~steak~^268^12^33.214 +~23342~^1^3^~oz~^85^^ +~23342~^2^1^~steak~^170^36^22.908 +~23343~^1^3^~oz~^85^^ +~23343~^2^1^~steak~^168^24^21.45 +~23344~^1^3^~oz~^85^^ +~23344~^2^1^~steak~^172^12^26.603 +~23345~^1^3^~oz~^85^^ +~23345~^2^1^~roast~^481^36^90.695 +~23346~^1^3^~oz~^85^^ +~23346~^2^1^~roast~^478^24^100.692 +~23347~^1^3^~oz~^85^^ +~23347~^2^1^~roast~^487^12^70.519 +~23348~^1^3^~oz~^85^1^ +~23349~^1^3^~oz~^85^^ +~23350~^1^3^~oz~^85^^ +~23351~^1^3^~oz~^85^^ +~23352~^1^3^~oz~^85^^ +~23353~^1^3^~oz~^85^^ +~23354~^1^3^~oz~^85^^ +~23354~^2^1^~steak~^344^36^55.182 +~23355~^1^3^~oz~^85^^ +~23355~^2^1^~steak~^344^24^58.261 +~23356~^1^3^~oz~^85^^ +~23356~^2^1^~steak~^344^12^50.845 +~23357~^1^3^~oz~^85^^ +~23357~^2^1^~roast~^758^36^215.967 +~23358~^1^3^~oz~^85^^ +~23358~^2^1^~roast~^770^24^204.362 +~23359~^1^3^~oz~^85^^ +~23359~^2^1^~roast~^740^12^247.042 +~23360~^1^3^~oz~^85^^ +~23360~^2^1^~roast~^675^36^104.809 +~23361~^1^3^~oz~^85^^ +~23361~^2^1^~roast~^658^24^96.176 +~23362~^1^3^~oz~^85^^ +~23362~^2^1^~roast~^699^12^121.714 +~23363~^1^3^~oz~^85^^ +~23363~^2^1^~steak~^140^36^31.344 +~23364~^1^3^~oz~^85^^ +~23364~^2^1^~steak~^133^24^32.624 +~23365~^1^3^~oz~^85^^ +~23365~^2^1^~steak~^151^12^25.741 +~23366~^1^3^~oz~^85^^ +~23366~^2^1^~roast~^644^36^107.794 +~23367~^1^3^~oz~^85^^ +~23367~^2^1^~roast~^625^24^114.675 +~23368~^1^3^~oz~^85^^ +~23368~^2^1^~roast~^673^12^91.82 +~23369~^1^3^~oz~^85^^ +~23369~^2^1^~steak~^267^36^34.877 +~23370~^1^3^~oz~^85^^ +~23370~^2^1^~steak~^266^24^36.38 +~23370~^3^1^~oz~^28^^ +~23371~^1^3^~oz~^85^^ +~23371~^2^1^~steak~^268^12^33.214 +~23372~^1^3^~oz~^85^^ +~23372~^2^1^~steak~^170^36^22.908 +~23373~^1^3^~oz~^85^^ +~23373~^2^1^~steak~^168^24^21.45 +~23374~^1^3^~oz~^85^^ +~23374~^2^1^~steak~^172^12^26.603 +~23375~^1^3^~oz~^85^^ +~23375~^2^1^~roast~^481^36^90.695 +~23376~^1^3^~oz~^85^^ +~23376~^2^1^~roast~^478^24^100.692 +~23377~^1^3^~oz~^85^^ +~23377~^2^1^~roast~^487^12^70.519 +~23378~^1^3^~oz~^85^^ +~23379~^1^3^~oz~^85^^ +~23380~^1^3^~oz~^85^^ +~23381~^1^3^~oz~^85^^ +~23382~^1^3^~oz~^85^^ +~23383~^1^3^~oz~^85^^ +~23384~^1^3^~oz~^85^^ +~23384~^2^1^~steak~^304^12^40.132 +~23385~^1^3^~oz~^85^^ +~23385~^2^1^~steak~^301^24^39.947 +~23386~^1^3^~oz~^85^^ +~23386~^2^1^~steak~^302^36^39.442 +~23387~^1^3^~oz~^85^^ +~23387~^2^1^~steak~^304^12^40.132 +~23388~^1^3^~oz~^85^^ +~23388~^2^1^~steak~^302^36^39.442 +~23389~^1^3^~oz~^85^^ +~23389~^2^1^~steak~^236^24^34.585 +~23390~^1^3^~oz~^85^^ +~23390~^2^1^~steak~^234^12^34.085 +~23391~^1^3^~oz~^85^^ +~23391~^2^1^~steak~^235^36^33.961 +~23392~^1^3^~oz~^85^^ +~23392~^2^1^~steak~^236^24^34.585 +~23393~^1^3^~oz~^85^^ +~23393~^2^1^~steak~^234^12^34.085 +~23394~^1^3^~oz~^85^^ +~23394~^2^1^~steak~^235^36^33.961 +~23395~^1^3^~oz~^85^^ +~23395~^2^1^~steak~^301^24^39.947 +~23397~^1^3^~oz~^85^1^ +~23398~^1^4^~oz~^114^1^ +~23399~^1^3^~oz~^85^1^ +~23401~^1^4^~oz~^114^1^ +~23402~^1^3^~oz~^85^1^ +~23403~^1^4^~oz~^114^1^ +~23405~^1^1^~serving~^85^1^ +~23406~^1^3^~oz~^85^1^ +~23407~^1^4^~oz~^114^1^ +~23408~^1^3^~oz~^85^1^ +~23409~^1^4^~oz~^113^1^ +~23410~^1^3^~oz~^85^1^ +~23411~^1^4^~oz~^113^1^ +~23412~^1^3^~oz~^85^1^ +~23413~^1^4^~oz~^113^1^ +~23414~^1^3^~oz~^85^^ +~23415~^1^4^~oz~^113^1^ +~23416~^1^3^~oz~^85^1^ +~23417~^1^4^~oz~^113^^ +~23418~^1^4^~oz~^113^1^ +~23419~^1^3^~oz~^85^^ +~23420~^1^4^~oz~^113^^ +~23421~^1^3^~oz~^85^1^ +~23422~^1^3^~oz~^85^^ +~23423~^1^4^~oz~^113^^ +~23424~^1^3^~oz~^85^1^ +~23425~^1^4^~oz~^113^1^ +~23426~^1^3^~oz~^85^^ +~23427~^1^4^~oz~^113^^ +~23428~^1^3^~oz~^85^1^ +~23429~^1^4^~oz~^113^1^ +~23430~^1^3^~oz~^85^1^ +~23431~^1^4^~oz~^113^1^ +~23432~^1^3^~oz~^85^1^ +~23433~^1^3^~oz~^85^^ +~23434~^1^4^~oz~^113^1^ +~23435~^1^3^~oz~^85^^ +~23436~^1^4^~oz~^113^^ +~23437~^1^3^~oz~^85^1^ +~23438~^1^4^~oz~^113^1^ +~23439~^1^3^~oz~^85^^ +~23440~^1^4^~oz~^113^^ +~23441~^1^4^~oz~^113^^ +~23442~^1^3^~oz~^85^^ +~23443~^1^4^~oz~^113^^ +~23444~^1^3^~oz~^85^^ +~23445~^1^4^~oz~^113^^ +~23446~^1^3^~oz~^85^^ +~23447~^1^4^~oz~^114^^ +~23448~^1^3^~oz~^85^^ +~23449~^1^4^~oz~^114^^ +~23450~^1^3^~oz~^85^^ +~23451~^1^4^~oz~^114^^ +~23452~^1^3^~oz~^85^^ +~23453~^1^4^~oz~^114^^ +~23454~^1^3^~oz~^85^^ +~23455~^1^4^~oz~^114^^ +~23456~^1^3^~oz~^85^^ +~23457~^1^4^~oz~^113^^ +~23458~^1^3^~oz~^85^^ +~23459~^1^4^~oz~^113^^ +~23460~^1^3^~oz~^85^^ +~23461~^1^4^~oz~^113^^ +~23462~^1^3^~oz~^85^^ +~23463~^1^4^~oz~^113^^ +~23464~^1^3^~oz~^85^^ +~23465~^1^3^~oz~^85^^ +~23466~^1^4^~oz~^113^^ +~23467~^1^4^~oz~^113^^ +~23468~^1^3^~oz~^85^^ +~23469~^1^4^~oz~^113^^ +~23470~^1^3^~oz~^85^^ +~23471~^1^4^~oz~^113^^ +~23472~^1^4^~oz~^113^^ +~23473~^1^3^~oz~^85^^ +~23474~^1^3^~oz~^85^^ +~23475~^1^3^~oz~^85^^ +~23476~^1^3^~oz~^85^^ +~23477~^1^4^~oz~^113^^ +~23478~^1^3^~oz~^85^^ +~23478~^2^1^~patty~^70^42^2.946 +~23479~^1^3^~oz~^85^^ +~23479~^2^1^~portion (yield from 1/2 lb raw meat )~^139^18^4.947 +~23480~^1^3^~oz~^85^^ +~23481~^1^3^~oz~^85^^ +~23482~^1^4^~oz~^114^^ +~23483~^1^3^~oz~^85^^ +~23484~^1^4^~oz~^114^^ +~23485~^1^4^~oz~^114^^ +~23490~^1^4^~oz~^114^^ +~23491~^1^3^~oz~^85^^ +~23494~^1^4^~oz~^114^^ +~23495~^1^4^~oz~^114^^ +~23496~^1^4^~oz~^114^^ +~23497~^1^4^~oz~^114^^ +~23498~^1^3^~oz~^85^^ +~23499~^1^4^~oz~^114^^ +~23501~^1^1^~patty~^68^^ +~23502~^1^1^~oz~^28.35^^ +~23503~^1^1^~patty~^64^^ +~23506~^1^1^~serving~^85^^ +~23507~^1^3^~oz~^85^^ +~23508~^1^1^~serving~^85^^ +~23509~^1^3^~oz~^85^^ +~23509~^2^1^~lb~^453.6^^ +~23511~^1^3^~oz~^85^^ +~23511~^2^1^~lb~^453.6^^ +~23513~^1^1^~oz~^28.35^^ +~23513~^2^1^~lb~^453.6^^ +~23514~^1^3^~oz ( 1 serving )~^85^^ +~23514~^2^1^~lb~^453.6^^ +~23515~^1^3^~oz~^85^^ +~23515~^2^1^~lb~^453.6^^ +~23516~^1^3^~oz~^85^^ +~23517~^1^3^~oz~^85^^ +~23517~^2^1^~lb~^453.6^^ +~23519~^1^3^~oz~^85^^ +~23519~^2^1^~lb~^453.6^^ +~23521~^1^3^~oz~^85^^ +~23521~^2^1^~lb~^453.6^^ +~23523~^1^3^~oz~^85^^ +~23523~^2^1^~lb~^453.6^^ +~23525~^1^3^~oz~^85^^ +~23525~^2^1^~lb~^453.6^^ +~23528~^1^3^~oz~^85^^ +~23528~^2^1^~lb~^453.6^^ +~23531~^1^3^~oz~^85^^ +~23531~^2^1^~lb~^453.6^^ +~23536~^1^3^~oz~^85^^ +~23536~^2^1^~steak~^297^18^53.5 +~23540~^1^3^~oz~^85^^ +~23540~^2^1^~lb~^453.6^^ +~23541~^1^3^~oz~^85^^ +~23541~^2^1^~lb~^453.6^^ +~23545~^1^3^~oz~^85^^ +~23545~^2^1^~lb~^453.6^^ +~23547~^1^3^~oz~^85^^ +~23547~^2^1^~lb~^453.6^^ +~23549~^1^3^~oz~^85^^ +~23549~^2^1^~lb~^453.6^^ +~23552~^1^3^~oz~^85^^ +~23552~^2^1^~lb~^453.6^^ +~23554~^1^3^~oz~^85^^ +~23554~^2^1^~steak~^287^51^65.6 +~23557~^1^4^~oz~^113^^ +~23558~^1^3^~oz~^85^^ +~23559~^1^3^~oz~^85^^ +~23560~^1^3^~oz~^85^^ +~23561~^1^3^~oz~^85^^ +~23562~^1^4^~oz~^113^^ +~23563~^1^3^~oz~^85^^ +~23564~^1^3^~oz~^85^^ +~23565~^1^3^~oz~^85^^ +~23565~^2^1^~portion ( yield from 1/2 lb raw meat )~^154^18^3.087 +~23566~^1^3^~oz~^85^^ +~23567~^1^3^~oz~^85^^ +~23568~^1^3^~oz~^85^1^ +~23568~^2^1^~patty (yield from 1/4 lb raw meat)~^77^42^5.205 +~23569~^1^3^~oz~^85^1^ +~23569~^2^1^~patty ( yield from 1/4 lb raw meat )~^83^18^4.288 +~23570~^1^3^~oz~^85^^ +~23571~^1^3^~oz~^85^^ +~23572~^1^4^~oz~^113^^ +~23574~^1^3^~oz~^85^^ +~23575~^1^3^~oz~^85^^ +~23576~^1^3^~oz~^85^^ +~23577~^1^4^~oz~^113^^ +~23577~^2^1^~serving (3 oz)~^85^^ +~23578~^1^3^~oz~^85^^ +~23579~^1^3^~oz~^85^^ +~23580~^1^3^~oz~^85^^ +~23581~^1^3^~oz~^85^^ +~23582~^1^1^~oz~^28.35^1^ +~23582~^2^1^~lb~^453.6^1^ +~23583~^1^1^~oz~^28.35^^ +~23583~^2^1^~lb~^453.6^^ +~23584~^1^1^~oz~^28.35^1^ +~23584~^2^1^~lb~^453.6^1^ +~23585~^1^3^~oz~^85^1^ +~23585~^2^1^~lb~^453.6^^ +~23586~^1^1^~oz~^28.35^^ +~23586~^2^1^~lb~^453.6^^ +~23587~^1^1^~oz~^28.35^1^ +~23587~^2^1^~lb~^453.6^1^ +~23588~^1^1^~oz~^28.35^1^ +~23588~^2^1^~lb~^453.6^1^ +~23589~^1^1^~oz~^28.35^^ +~23589~^2^1^~lb~^453.6^^ +~23590~^1^1^~oz~^28.35^1^ +~23590~^2^1^~lb~^453.6^1^ +~23591~^1^1^~oz~^28.35^^ +~23591~^2^1^~lb~^453.6^^ +~23592~^1^1^~oz~^28.35^^ +~23592~^2^1^~lb~^453.6^^ +~23593~^1^1^~oz~^28.35^^ +~23593~^2^1^~lb~^453.6^^ +~23594~^1^1^~oz~^28.35^1^ +~23594~^2^1^~lb~^453.6^1^ +~23595~^1^1^~oz~^28.35^^ +~23595~^2^1^~lb~^453.6^^ +~23596~^1^1^~oz~^28.35^^ +~23596~^2^1^~lb~^453.6^^ +~23597~^1^1^~oz~^28.35^^ +~23597~^2^1^~lb~^453.6^^ +~23598~^1^1^~oz~^28.35^1^ +~23598~^2^1^~lb~^453.6^1^ +~23599~^1^1^~oz~^28.35^^ +~23599~^2^1^~lb~^453.6^^ +~23600~^1^1^~oz~^28.35^1^ +~23600~^2^1^~lb~^453.6^1^ +~23601~^1^1^~oz~^28.35^^ +~23601~^2^1^~lb~^453.6^^ +~23602~^1^1^~oz~^28.35^1^ +~23602~^2^1^~lb~^453.6^1^ +~23603~^1^1^~oz~^28.35^^ +~23603~^2^1^~lb~^453.6^^ +~23604~^1^1^~oz~^28.35^1^ +~23604~^2^1^~lb~^453.6^1^ +~23605~^1^1^~oz~^28.35^1^ +~23605~^2^1^~lb~^453.6^1^ +~23606~^1^1^~oz~^28.35^1^ +~23606~^2^1^~lb~^453.6^1^ +~23607~^1^3^~oz~^85^^ +~23607~^2^1^~lb~^453.6^^ +~23608~^1^1^~oz~^28.35^1^ +~23608~^2^1^~lb~^453.6^1^ +~23609~^1^3^~oz~^85^^ +~23609~^2^1^~lb~^453.6^^ +~23610~^1^1^~oz~^28.35^1^ +~23610~^2^1^~lb~^453.6^1^ +~23611~^1^1^~oz~^28.35^1^ +~23611~^2^1^~lb~^453.6^1^ +~23612~^1^1^~oz~^28.35^1^ +~23612~^2^1^~lb~^453.6^1^ +~23613~^1^1^~oz~^28.35^^ +~23613~^2^1^~lb~^453.6^^ +~23614~^1^1^~oz~^28.35^1^ +~23614~^2^1^~lb~^453.6^1^ +~23615~^1^1^~oz~^28.35^^ +~23615~^2^1^~lb~^453.6^^ +~23616~^1^1^~oz~^28.35^1^ +~23616~^2^1^~lb~^453.6^1^ +~23617~^1^1^~oz~^28.35^1^ +~23617~^2^1^~lb~^453.6^1^ +~23618~^1^1^~oz~^28.35^1^ +~23618~^2^1^~lb~^453.6^1^ +~23619~^1^1^~oz~^28.35^^ +~23619~^2^1^~lb~^453.6^^ +~23620~^1^1^~oz~^28.35^^ +~23620~^2^1^~lb~^453.6^^ +~23621~^1^1^~oz~^28.35^^ +~23621~^2^1^~lb~^453.6^^ +~23622~^1^1^~oz~^28.35^1^ +~23622~^2^1^~lb~^453.6^1^ +~23623~^1^1^~oz~^28.35^^ +~23623~^2^1^~lb~^453.6^^ +~23624~^1^1^~oz~^28.35^^ +~23624~^2^1^~lb~^453.6^^ +~23625~^1^1^~oz~^28.35^1^ +~23625~^2^1^~lb~^453.6^1^ +~23626~^1^1^~oz~^28.35^1^ +~23626~^2^1^~lb~^453.6^1^ +~23627~^1^3^~oz~^85^^ +~23627~^2^1^~lb~^453.6^^ +~23628~^1^1^~oz~^28.35^^ +~23628~^2^1^~lb~^453.6^^ +~23629~^1^1^~oz~^28.35^1^ +~23629~^2^1^~lb~^453.6^1^ +~23630~^1^1^~oz~^28.35^^ +~23630~^2^1^~lb~^453.6^^ +~23631~^1^1^~oz~^28.35^1^ +~23631~^2^1^~lb~^453.6^1^ +~23632~^1^1^~oz~^28.35^^ +~23632~^2^1^~lb~^453.6^^ +~23633~^1^1^~oz~^28.35^1^ +~23633~^2^1^~lb~^453.6^1^ +~23634~^1^1^~oz~^28.35^^ +~23634~^2^1^~lb~^453.6^^ +~23635~^1^1^~oz~^28.35^^ +~23635~^2^1^~lb~^453.6^^ +~23636~^1^1^~oz~^28.35^^ +~23636~^2^1^~lb~^453.6^^ +~23637~^1^1^~oz~^28.35^^ +~23637~^2^1^~lb~^453.6^^ +~23638~^1^1^~oz~^28.35^1^ +~23638~^2^1^~lb~^453.6^1^ +~23640~^1^1^~serving~^85^^ +~23646~^1^3^~oz~^85^^ +~23646~^2^1^~roast~^261^19^ +~23647~^1^3^~oz~^85^^ +~23647~^2^1^~roast~^591^10^ +~23648~^1^3^~oz~^85^^ +~23648~^2^1^~roast~^271^9^ +~23649~^1^3^~oz~^85^^ +~23649~^2^1^~roast (yield from 666 g raw meat)~^547^10^ +~23650~^1^3^~oz~^85^^ +~23650~^2^1^~roast~^252^10^ +~23651~^1^3^~oz~^85^^ +~23651~^2^1^~roast~^1289^20^ +~23652~^1^3^~oz~^85^^ +~23652~^2^1^~roast~^1392^10^ +~23653~^1^3^~oz~^85^^ +~23653~^2^1^~roast~^1187^10^ +~23654~^1^3^~oz~^85^^ +~23654~^2^1^~steak~^383^20^ +~23655~^1^3^~oz~^85^^ +~23655~^2^1^~steak (yield from 467 g raw meat)~^379^10^ +~23656~^1^3^~oz~^85^^ +~23656~^2^1^~steak~^188^20^ +~23657~^1^3^~oz~^85^^ +~23657~^2^1^~steak~^173^10^ +~23658~^1^3^~oz~^85^^ +~23658~^2^1^~steak~^434^10^ +~23659~^1^3^~oz~^85^^ +~23659~^2^1^~steak~^470^10^ +~23660~^1^3^~oz~^85^^ +~23660~^2^1^~steak (yield from 593 g raw meat)~^409^10^ +~25000~^1^1^~oz~^28.35^12^1.588 +~25001~^1^1^~oz~^28.35^^ +~25003~^1^1^~Roll~^23^^ +~25004~^1^1^~bar~^55^1^ +~25005~^1^1^~bar~^55^1^ +~25006~^1^1^~bar~^55^1^ +~25007~^1^1^~bar~^28^^ +~25008~^1^1^~bar~^55^1^ +~25009~^1^1^~bar~^24^^ +~25010~^1^1^~bar~^22^1^ +~25012~^1^1^~oz~^28.35^1^ +~25012~^2^1^~Bag~^28^1^ +~25012~^3^1^~package~^34^1^ +~25013~^1^1^~oz~^28.35^^ +~25014~^1^1^~cup~^7.9^52^ +~25014~^2^1^~bag~^87^^ +~25015~^1^1^~bar~^80^1^ +~25016~^1^1^~bar~^55^^ +~25016~^2^1^~bar~^44^4^6.235 +~25017~^1^1^~bar~^68^20^2.491 +~25018~^1^1^~bar~^22^1^ +~25020~^1^1^~bar~^55^6^3.474 +~25021~^1^1^~bar~^48^^ +~25022~^1^1^~oz~^28.35^^ +~25023~^1^1^~oz~^28.35^^ +~25024~^1^1^~large~^143^^ +~25024~^2^1^~medium~^115^^ +~25024~^3^1^~small~^62^^ +~25025~^1^1^~oz~^28.35^^ +~25026~^1^1^~cup~^7.9^52^ +~25026~^2^1^~bag~^87^12^2.428 +~25027~^1^1^~oz~^28.35^6^1.098 +~25028~^1^1^~oz~^28.35^^ +~25030~^1^1^~oz~^28.35^^ +~25031~^1^1^~bar~^50^1^ +~25032~^1^1^~bar~^78^1^ +~25033~^1^1^~bar~^35^1^ +~25034~^1^1^~bar~^47^1^ +~25035~^1^1^~bar~^24^1^ +~25036~^1^1^~package~^20^^ +~25037~^1^1^~oz~^28.35^^ +~25037~^2^1^~bag~^262^10^140.04 +~25038~^1^1^~bar~^35^^ +~25039~^1^1^~bar~^60^1^ +~25040~^1^1^~oz~^28.35^^ +~25041~^1^2^~bar~^40^1^ +~25041~^2^1^~bar~^20^^ +~25043~^1^1^~package~^20^^ +~25045~^1^1^~bar~^40^1^ +~25046~^1^1^~oz~^28.35^^ +~25046~^2^1^~bag~^175^11^6.998 +~25046~^3^6^~piece chips~^28^^ +~25048~^1^1^~bar~^32^^ +~25050~^1^1^~oz~^28.35^^ +~25050~^2^10^~chips~^17^4^5.276 +~25050~^3^1^~bag~^105^4^18.509 +~25051~^1^1^~bar~^68^2^ +~25052~^1^1^~bar~^24^1^ +~25053~^1^1^~bar~^35^1^ +~25054~^1^1^~bar~^35^1^ +~25055~^1^1^~bar~^35^1^ +~25056~^1^1^~bar~^31^1^ +~25059~^1^1^~cake~^9.0^^ +~25059~^2^2^~cakes~^18^^ +~25060~^1^1^~serving~^28^1^ +~25062~^1^1^~bar~^38^1^ +~25063~^1^1^~oz~^28.35^^ +~25063~^2^16.5^~pieces average~^28^^ +~25064~^1^23^~pieces~^28^3^0 +~25064~^2^1^~bag~^227^1^ +~27000~^1^1^~cup~^241^12^4.727 +~27001~^1^1^~cup~^233^12^23.687 +~27002~^1^1^~cup~^223^12^29.9 +~27007~^1^1^~serving~^245^1^ +~27008~^1^1^~cup~^245^1^ +~27009~^1^1^~cup~^245^1^ +~27013~^1^.5^~cup~^126^1^ +~27013~^2^1^~serving~^126^1^ +~27014~^1^.5^~cup~^126^1^ +~27014~^2^1^~serving~^126^1^ +~27015~^1^.5^~cup serving~^126^1^ +~27017~^1^1^~cup~^245^1^ +~27018~^1^1^~cup~^245^1^ +~27019~^1^1^~cup~^245^1^ +~27021~^1^1^~cup~^246^12^4.095 +~27021~^2^1^~can~^499^12^86.592 +~27022~^1^1^~container~^305^1^ +~27023~^1^1^~container~^305^1^ +~27027~^1^1^~serving~^32^1^ +~27027~^2^2^~tbsp~^32^1^ +~27028~^1^1^~serving~^32^1^ +~27028~^2^2^~tbsp~^32^1^ +~27029~^1^1^~serving~^32^1^ +~27029~^2^2^~tbsp~^32^1^ +~27030~^1^1^~serving~^32^1^ +~27030~^2^2^~tbsp~^32^1^ +~27032~^1^.5^~cup~^126^1^ +~27032~^2^1^~serving~^126^1^ +~27033~^1^.5^~cup~^130^1^ +~27034~^1^.5^~cup condensed~^124^1^ +~27035~^1^1.41^~oz dry (half noodle block)~^40^1^ +~27042~^1^1^~cup~^254^24^8.794 +~27042~^2^1^~can~^521^24^5.254 +~27043~^1^1^~can~^519^7^3.198 +~27043~^2^1^~cup~^256^7^7.522 +~27044~^1^1^~cup~^245^24^3.555 +~27044~^2^1^~can~^516^24^62.237 +~27045~^1^1^~cup~^245^12^3.298 +~27045~^2^1^~can~^525^12^6.869 +~27046~^1^2^~Tbsp~^33^^ +~27047~^1^2^~Tbsp~^30^^ +~27048~^1^2^~Tbsp~^34^^ +~27049~^1^2^~tablespoons~^30^^ +~27050~^1^2^~Tbsp~^35^^ +~27051~^1^.25^~cup~^60^^ +~27052~^1^2^~tbsp~^30^27^2.681 +~27052~^2^.5^~cup~^125^27^4.677 +~27053~^1^2^~tbsp~^32^4^2.137 +~27053~^2^.5^~cup~^124^4^8.096 +~27054~^1^2^~tbsp~^30^11^2.759 +~27054~^2^.5^~cup~^125^11^4.249 +~27055~^1^1^~tbsp~^18^12^1.233 +~27055~^2^.5^~cup~^144^12^7.596 +~27055~^3^1^~cup~^280^12^11.647 +~27056~^1^1^~tbsp~^16^12^.435 +~27056~^2^.5^~cup~^148^12^2.189 +~27056~^3^1^~cup~^291^12^8.104 +~27057~^1^1^~tbsp~^18^12^.905 +~27057~^2^.5^~cup~^138^12^4.402 +~27057~^3^1^~cup~^265^12^11.982 +~27058~^1^1^~tbsp~^17^6^.958 +~27058~^2^.5^~cup~^137^6^4.874 +~27058~^3^1^~cup~^270^6^2.883 +~27059~^1^1^~tbsp~^18^10^.444 +~27060~^1^1^~cup~^240^3^14.084 +~27061~^1^.25^~cup~^58^^ +~27061~^2^1^~cup~^230^4^.289 +~27061~^3^1^~jar 12 oz~^324^36^ +~27062~^1^1^~cup~^208^10^7.361 +~27062~^2^1^~can~^527^39^6.932 +~27063~^1^.25^~cup~^56^^ +~27063~^2^1^~cup~^224^40^4.176 +~27063~^3^1^~can~^283^79^9.983 +~27064~^1^1^~tablespoon~^20^3^.115 +~27064~^2^1^~teaspoon~^6.5^^ +~27065~^1^2^~tbsp~^36^24^ +~27065~^2^1^~container (9 oz)~^259^24^ +~27066~^1^1^~tsp~^5.6^8^.837 +~27067~^1^.25^~cup~^58^^ +~27067~^2^1^~cup~^230^5^3.209 +~27068~^1^2^~tbsp~^36^24^ +~27068~^2^1^~container (9oz)~^259^24^ +~28000~^1^1^~set~^46^1^ +~28001~^1^1^~pizza~^150^1^ +~28002~^1^1^~pizza~^150^1^ +~28003~^1^3^~pancakes~^105^1^ +~28004~^1^3^~pancakes~^105^1^ +~28005~^1^3^~pancakes~^105^1^ +~28006~^1^3^~pancakes~^105^1^ +~28007~^1^2^~waffles~^76^1^ +~28008~^1^2^~waffles~^76^1^ +~28009~^1^2^~waffles~^70^1^ +~28010~^1^2^~waffles~^70^1^ +~28011~^1^3^~sets~^92^1^ +~28012~^1^2^~waffles~^70^1^ +~28013~^1^2^~waffles~^70^1^ +~28014~^1^1^~waffle~^45^1^ +~28015~^1^2^~waffles~^70^1^ +~28015~^2^3^~sets waffle minis~^93^1^ +~28016~^1^2^~waffles~^70^1^ +~28017~^1^11^~crisps~^31^1^ +~28018~^1^2^~waffles~^70^1^ +~28019~^1^2^~waffles~^70^1^ +~28020~^1^11^~crisps~^31^1^ +~28021~^1^2^~waffles~^70^1^ +~28022~^1^2^~waffles~^70^1^ +~28023~^1^2^~waffles~^70^1^ +~28024~^1^2^~waffles~^70^1^ +~28025~^1^1^~waffle~^55^1^ +~28026~^1^1^~waffle~^55^1^ +~28027~^1^4^~cookies~^29^1^ +~28028~^1^4^~cookies~^29^1^ +~28029~^1^4^~cookies~^30^1^ +~28030~^1^3^~cookies~^36^1^ +~28031~^1^2^~cookies~^24^1^ +~28032~^1^2^~cookies~^29^1^ +~28033~^1^2^~cookies~^25^1^ +~28034~^1^2^~cookies~^25^1^ +~28035~^1^4^~cookies~^32^1^ +~28036~^1^5^~cookies~^33^1^ +~28037~^1^3^~cookies~^32^1^ +~28038~^1^8^~cookies~^30^1^ +~28039~^1^1^~cookie~^30^1^ +~28040~^1^1^~cookie~^30^1^ +~28041~^1^1^~cookie~^30^1^ +~28043~^1^1^~package 1 serving~^40^1^ +~28044~^1^8^~cookies 1 serving~^31^1^ +~28044~^2^1^~package (40 g)~^40^1^ +~28045~^1^6^~cookies 1 serving~^30^1^ +~28045~^2^1^~package (40 g)~^40^1^ +~28046~^1^8^~crackers 1 serving~^29^1^ +~28047~^1^2^~cookies~^32^1^ +~28048~^1^2^~cookies~^32^1^ +~28049~^1^1^~package~^39^1^ +~28050~^1^1^~package~^39^1^ +~28051~^1^1^~package~^39^1^ +~28052~^1^2^~cookies~^32^1^ +~28053~^1^2^~cookies~^31^1^ +~28054~^1^2^~cookies~^30^1^ +~28055~^1^2^~cookies~^32^1^ +~28056~^1^1^~pouch~^34^1^ +~28057~^1^2^~cookies~^31^1^ +~28058~^1^2^~cookies~^30^1^ +~28059~^1^2^~cookies~^32^1^ +~28060~^1^2^~cookies~^31^1^ +~28061~^1^5^~cookies 1 serving~^28^1^ +~28061~^2^1^~package (40 g)~^40^1^ +~28062~^1^2^~cookies~^31^1^ +~28064~^1^4^~crackers~^14.0^1^ +~28065~^1^17^~crackers~^15.0^1^ +~28066~^1^17^~crackers~^15.0^1^ +~28067~^1^4^~crackers~^14.0^1^ +~28068~^1^4^~crackers~^14.0^1^ +~28069~^1^5^~crackers~^16^1^ +~28070~^1^12^~crackers~^29^1^ +~28071~^1^12^~crackers~^29^1^ +~28072~^1^2^~cookies~^28^1^ +~28073~^1^4^~cookies~^26^1^ +~28074~^1^2^~cookies~^36^1^ +~28075~^1^2^~cookies~^35^1^ +~28076~^1^3^~cookies~^26^1^ +~28077~^1^3^~cookies~^26^1^ +~28078~^1^3^~cookies~^26^1^ +~28079~^1^2^~cookies~^28^1^ +~28080~^1^3^~pieces~^27^1^ +~28081~^1^2^~cookies~^30^1^ +~28082~^1^2^~cookies~^30^1^ +~28083~^1^2^~cookies~^31^1^ +~28084~^1^1^~cup~^8.0^1^ +~28085~^1^4^~cookies~^27^1^ +~28086~^1^3^~cookies~^29^1^ +~28087~^1^3^~cookies~^31^1^ +~28088~^1^3^~cookies~^31^1^ +~28089~^1^1^~package~^40^1^ +~28089~^2^14^~cookie~^30^^ +~28091~^1^3^~cookies~^31^1^ +~28092~^1^3^~cookies~^31^1^ +~28093~^1^4^~cookies~^29^1^ +~28094~^1^1^~cookie~^31^1^ +~28095~^1^1^~cookie~^31^1^ +~28096~^1^2^~cookies~^30^1^ +~28097~^1^2^~cookies~^26^1^ +~28098~^1^2^~cookies~^30^1^ +~28100~^1^3^~cookies~^29^1^ +~28101~^1^1^~package~^37^1^ +~28102~^1^1^~pouch~^25^1^ +~28103~^1^1^~pouch~^25^1^ +~28104~^1^1^~pouch~^25^1^ +~28105~^1^1^~pouch~^25^1^ +~28106~^1^4^~cookies~^28^1^ +~28107~^1^5^~cookies~^33^1^ +~28108~^1^6^~cookies~^29^1^ +~28109~^1^2^~cookies~^29^1^ +~28110~^1^1^~package~^39^1^ +~28111~^1^.125^~crust 1 serving (from 9" shell)~^21^1^ +~28111~^2^1^~shell 1 serving (from 3" mini shell)~^23^1^ +~28112~^1^.125^~crust 9" crust~^21^1^ +~28113~^1^1^~pouch~^21^1^ +~28114~^1^1^~pouch~^21^1^ +~28115~^1^1^~package~^21^1^ +~28116~^1^1^~pouch~^20^1^ +~28117~^1^1^~package~^21^1^ +~28118~^1^1^~pouch~^20^1^ +~28119~^1^1^~pouch~^21^1^ +~28120~^1^1^~pouch~^21^1^ +~28121~^1^1^~package~^21^1^ +~28122~^1^1^~pouch~^21^1^ +~28123~^1^1^~pouch~^21^1^ +~28124~^1^2^~cookies~^30^1^ +~28125~^1^2^~cookies~^31^1^ +~28126~^1^2^~cookies~^30^1^ +~28127~^1^2^~cookies~^31^1^ +~28128~^1^5^~cookies 28 g package~^28^1^ +~28128~^2^1^~package (34 g)~^34^1^ +~28129~^1^2^~cookies~^31^1^ +~28130~^1^2^~cookies~^32^1^ +~28131~^1^2^~cookies~^38^1^ +~28132~^1^2^~cookies~^38^1^ +~28133~^1^5^~crackers~^16^1^ +~28134~^1^5^~crackers~^16^1^ +~28135~^1^5^~crackers~^16^1^ +~28136~^1^5^~crackers~^16^1^ +~28137~^1^5^~crackers~^16^1^ +~28138~^1^2^~crackers~^16^1^ +~28139~^1^5^~crackers~^15.0^1^ +~28140~^1^5^~crackers~^15.0^1^ +~28141~^1^5^~crackers~^15.0^1^ +~28142~^1^5^~crackers~^16^1^ +~28143~^1^6^~crackers~^15.0^1^ +~28144~^1^5^~crackers~^14.0^1^ +~28145~^1^3^~crackers~^14.0^1^ +~28146~^1^3^~crackers~^14.0^1^ +~28147~^1^3^~crackers~^14.0^1^ +~28148~^1^5^~crackers~^16^1^ +~28149~^1^8^~crackers~^15.0^1^ +~28150~^1^4^~cookies~^29^1^ +~28151~^1^4^~cookies~^32^1^ +~28152~^1^18^~cookies~^30^1^ +~28153~^1^2^~cookies~^31^1^ +~28154~^1^2^~cookies~^31^1^ +~28155~^1^1^~waffle~^12.0^1^ +~28156~^1^1^~cone~^12.0^1^ +~28157~^1^17^~crackers~^30^1^ +~28158~^1^16^~crackers~^30^1^ +~28159~^1^16^~crackers~^30^1^ +~28160~^1^18^~crackers~^30^1^ +~28161~^1^18^~crackers~^30^1^ +~28162~^1^6^~tbsp~^33^1^ +~28163~^1^1^~pastry~^50^1^ +~28164~^1^1^~pastry~^50^1^ +~28165~^1^1^~pastry~^50^1^ +~28167~^1^1^~pastry~^50^1^ +~28168~^1^1^~pastry~^50^1^ +~28169~^1^1^~pastry~^50^1^ +~28170~^1^1^~pastry~^50^1^ +~28171~^1^1^~pastry~^50^1^ +~28172~^1^1^~pastry~^52^1^ +~28173~^1^1^~pastry~^50^1^ +~28173~^2^1^~package (2-count)~^100^1^ +~28174~^1^1^~pastry~^50^1^ +~28175~^1^1^~pastry~^50^1^ +~28176~^1^1^~pastry~^50^1^ +~28177~^1^1^~pastry~^50^1^ +~28178~^1^1^~pastry~^48^1^ +~28179~^1^1^~pastry~^48^1^ +~28180~^1^1^~pastry~^50^1^ +~28181~^1^1^~pastry~^48^1^ +~28182~^1^1^~pastry~^48^1^ +~28183~^1^1^~pouch~^23^1^ +~28184~^1^1^~pouch~^23^1^ +~28185~^1^1^~pouch~^10.0^1^ +~28186~^1^27^~chips~^30^1^ +~28187~^1^30^~chips~^30^1^ +~28188~^1^27^~chips~^30^1^ +~28189~^1^27^~chips~^30^1^ +~28190~^1^24^~crackers~^30^1^ +~28191~^1^24^~crackers~^30^1^ +~28192~^1^1^~pastry~^50^1^ +~28192~^2^1^~package (2-count)~^100^1^ +~28193~^1^1^~pastry~^50^1^ +~28194~^1^6^~cookies~^29^1^ +~28195~^1^4^~cookies~^30^1^ +~28196~^1^6^~cookies~^29^1^ +~28197~^1^5^~cookies~^32^1^ +~28198~^1^2^~cookies~^38^1^ +~28199~^1^2^~cookies~^38^1^ +~28200~^1^6^~cookies~^29^1^ +~28201~^1^6^~cookies~^29^1^ +~28202~^1^4^~cookies~^29^1^ +~28203~^1^4^~cookies~^32^1^ +~28204~^1^6^~cookies~^29^1^ +~28205~^1^2^~cookies~^31^1^ +~28206~^1^2^~cookies~^32^1^ +~28207~^1^2^~cookies~^31^1^ +~28208~^1^2^~cookies~^38^1^ +~28209~^1^2^~cookies~^38^1^ +~28210~^1^4^~cookies~^28^1^ +~28211~^1^8^~cookies~^30^1^ +~28212~^1^6^~cookies~^32^1^ +~28213~^1^3^~cookies~^29^1^ +~28214~^1^3^~cookies~^29^1^ +~28215~^1^9^~cookies~^32^1^ +~28216~^1^5^~cookies~^33^1^ +~28217~^1^2^~cookies~^28^1^ +~28218~^1^2^~cookies~^29^1^ +~28219~^1^2^~cookies~^29^1^ +~28221~^1^3^~cookies~^32^1^ +~28222~^1^4^~cookies~^30^1^ +~28223~^1^4^~cookies~^26^1^ +~28224~^1^4^~cookies~^31^1^ +~28225~^1^3^~cookies~^29^1^ +~28226~^1^3^~cookies~^32^1^ +~28227~^1^3^~cookies~^28^1^ +~28228~^1^3^~cookies~^28^1^ +~28229~^1^8^~cookies~^30^1^ +~28230~^1^1^~pouch~^21^1^ +~28231~^1^9^~cookies~^32^1^ +~28232~^1^5^~cookies~^28^1^ +~28233~^1^8^~cookies~^30^1^ +~28234~^1^25^~crackers~^30^1^ +~28235~^1^25^~crackers~^30^1^ +~28235~^2^1^~pouch~^21^1^ +~28236~^1^13^~crackers~^30^1^ +~28237~^1^25^~crackers~^30^1^ +~28237~^2^1^~pouch~^21^1^ +~28238~^1^25^~crackers~^30^1^ +~28238~^2^1^~pouch~^21^1^ +~28239~^1^25^~crackers~^30^1^ +~28240~^1^25^~crackers~^30^1^ +~28241~^1^1^~package~^25^1^ +~28242~^1^1^~pouch~^25^1^ +~28243~^1^25^~crackers~^30^1^ +~28244~^1^25^~crackers~^30^1^ +~28245~^1^27^~crackers~^30^1^ +~28246~^1^25^~crackers~^30^1^ +~28247~^1^25^~crackers~^30^1^ +~28248~^1^25^~crackers~^30^1^ +~28249~^1^25^~crackers~^30^1^ +~28250~^1^1^~pouch~^21^1^ +~28251~^1^1^~package~^21^1^ +~28252~^1^26^~crackers~^30^1^ +~28253~^1^.5^~cup~^30^1^ +~28254~^1^.5^~cup 25 crackers~^30^1^ +~28255~^1^3^~crackers~^14.0^1^ +~28256~^1^1^~package~^39^1^ +~28257~^1^1^~package~^39^1^ +~28258~^1^1^~package~^39^1^ +~28259~^1^11^~pancakes~^110^1^ +~28260~^1^2^~waffles~^70^1^ +~28261~^1^3^~cookies~^34^1^ +~28262~^1^3^~cookies~^34^1^ +~28263~^1^8^~crackers~^30^1^ +~28264~^1^2^~cookies~^29^1^ +~28265~^1^1^~package~^39^1^ +~28266~^1^.125^~crust~^21^1^ +~28267~^1^2^~cookies~^31^1^ +~28268~^1^1^~cone~^13.0^1^ +~28269~^1^2^~cookies~^27^1^ +~28270~^1^2^~cookies~^38^1^ +~28271~^1^8^~cookies~^30^1^ +~28272~^1^3^~cookies~^29^1^ +~28273~^1^3^~cookies~^29^1^ +~28274~^1^8^~crackers~^31^1^ +~28275~^1^5^~cookies~^30^1^ +~28276~^1^2^~cookies~^29^1^ +~28277~^1^3^~cookies~^32^1^ +~28278~^1^3^~cookies~^32^1^ +~28279~^1^3^~cookies~^28^1^ +~28280~^1^27^~crackers~^30^1^ +~28280~^2^1^~package~^35^^ +~28281~^1^29^~crackers~^30^1^ +~28281~^2^1^~package~^35^^ +~28282~^1^16^~crackers~^15.0^1^ +~28283~^1^5^~crackers~^15.0^1^ +~28284~^1^5^~crackers~^15.0^1^ +~28285~^1^1^~piece~^43^7^8.894 +~28286~^1^1^~piece~^79^4^3.822 +~28287~^1^1^~piece~^106^1^ +~28288~^1^1^~piece~^98^3^2.268 +~28289~^1^2^~cookies~^29^1^ +~28290~^1^2^~cookies~^25^1^ +~28291~^1^8^~cookies 1 serving~^31^1^ +~28291~^2^1^~package (40 g)~^40^1^ +~28292~^1^4^~crackers~^14.0^1^ +~28293~^1^3^~cookies~^31^1^ +~28294~^1^4^~cookies~^32^1^ +~28295~^1^1^~tortilla 1 serving~^41^1^ +~28296~^1^1^~cake 1 serving~^27^1^ +~28297~^1^1^~cake 1 serving~^27^1^ +~28298~^1^1^~brownie 1 serving~^36^1^ +~28299~^1^1^~serving~^34^1^ +~28300~^1^1^~cookie 1 serving~^38^1^ +~28301~^1^1^~serving 3 cookies~^29^1^ +~28302~^1^1^~serving~^35^1^ +~28303~^1^1^~serving 55 pieces~^31^1^ +~28304~^1^1^~serving 2 waffles~^70^1^ +~28305~^1^1^~serving 3 pancakes~^105^1^ +~28306~^1^1^~piece~^68^3^29.503 +~28307~^1^1^~piece~^90^3^9.388 +~28308~^1^5^~crackers 1 serving~^15^10^.462 +~28309~^1^2^~cookie 1 serving~^36^^ +~28310~^1^1^~cookie~^11.8^21^4.074 +~28311~^1^3^~cookie~^29^1^ +~28312~^1^1^~roll~^51^20^12.778 +~28313~^1^1^~roll~^56^19^7.178 +~28314~^1^1^~package~^36^1^ +~28315~^1^1^~slice 1 serving~^28^^ +~28316~^1^1^~slice 1 serving~^38^^ +~28317~^1^1^~slice 1 serving~^38^^ +~28318~^1^1^~slice 1 serving~^48^^ +~28319~^1^.5^~piece bagel 1 serving~^43^^ +~28320~^1^1^~muffin 1 serving~^57^^ +~28321~^1^1^~piece roll~^43^^ +~28322~^1^1^~piece bagel~^81^^ +~28323~^1^.33^~cup 1 serving~^41^^ +~28324~^1^.25^~cup mix 1 serving~^38^^ +~28325~^1^1^~serving~^31^^ +~28326~^1^6^~cracker 1 serving~^43^^ +~28327~^1^4^~cracker 1 serving~^14.0^^ +~28328~^1^1^~cookie~^34^^ +~28329~^1^1^~cookie~^62^^ +~28330~^1^1^~bar~^22^^ +~28331~^1^10^~goldfish~^5.2^36^.302 +~28332~^1^3^~cookies~^44^6^2.684 +~28333~^1^3^~cookies~^23^3^1.323 +~28334~^1^3^~cookies~^30^6^2.331 +~28335~^1^3^~cookies~^44^3^1.102 +~28336~^1^1^~slice~^34^2^ +~28337~^1^1^~slice~^35^6^4.036 +~28338~^1^1^~slice~^28^6^1.434 +~28339~^1^1^~slice~^25^2^ +~28340~^1^1^~roll~^36^1^ +~28341~^1^1^~roll~^78^4^1.531 +~28342~^1^1^~roll~^69^1^ +~28343~^1^1^~roll~^44^1^ +~28344~^1^3^~crackers~^10.7^2^ +~28345~^1^3^~crackers~^6.1^10^2.298 +~28346~^1^1^~waffle~^45^216^ +~28346~^2^1^~box~^242^14^21.096 +~28347~^1^1^~pancake~^48^16^1.32 +~28347~^2^1^~box~^352^1^ +~28348~^1^1^~roll~^30^9^3.191 +~28348~^2^1^~slice~^39^2^ +~28349~^1^1^~cookie~^25^^ +~28350~^1^1^~serving~^40^^ +~28351~^1^5^~cookie~^28^^ +~28352~^1^1^~serving cookie~^48^^ +~28354~^1^1^~roll~^69^1^ +~28355~^1^3^~crackers~^3.9^4^1.752 +~28356~^1^3^~cookies~^44^6^2.684 +~28357~^1^3^~cookies~^45^2^ +~28358~^1^3^~cookies~^30^6^2.331 +~28359~^1^3^~cookies~^23^3^1.323 +~28360~^1^3^~crackers~^7.4^3^1.115 +~28361~^1^10^~goldfish~^5.2^5^.071 +~28362~^1^10^~goldfish~^5.3^4^.275 +~28363~^1^10^~goldfish~^5.2^10^.363 +~28364~^1^10^~goldfish~^5.3^12^.349 +~28365~^1^10^~goldfish~^5.1^5^.224 +~28366~^1^1^~slice~^34^2^ +~28367~^1^3^~cookies~^44^1^ +~28368~^1^1^~roll~^78^4^1.531 +~28370~^1^1^~roll~^36^1^ +~28371~^1^1^~slice~^28^6^1.434 +~28372~^1^1^~slice~^25^2^ +~28373~^1^1^~roll~^44^1^ +~28374~^1^1^~pancake~^48^16^1.32 +~28374~^2^1^~box~^352^1^ +~28375~^1^1^~waffle~^47^144^ +~28375~^2^1^~box~^255^10^0 +~28376~^1^3^~crackers~^8.4^2^ +~28377~^1^1^~serving~^51^1^ +~28378~^1^1^~serving~^28^^ +~28379~^1^1^~serving~^28^^ +~28380~^1^1^~serving~^43^^ +~28381~^1^1^~serving~^43^^ +~28382~^1^1^~serving~^43^^ +~28384~^1^1^~serving~^43^^ +~28385~^1^1^~serving~^32^^ +~28386~^1^1^~serving~^32^^ +~28387~^1^1^~serving~^53^^ +~28388~^1^1^~serving~^32^^ +~28389~^1^1^~serving~^45^^ +~28390~^1^1^~serving~^57^^ +~28391~^1^1^~serving~^32^^ +~28392~^1^1^~serving~^43^^ +~28393~^1^1^~serving~^69^^ +~28394~^1^1^~serving~^51^^ +~28395~^1^1^~serving~^43^^ +~28396~^1^1^~serving~^43^^ +~28397~^1^1^~oz~^28.35^^ +~28397~^2^1^~slice regular~^26^8^ +~28397~^3^1^~slice large~^41^8^ +~28399~^1^1^~oz~^28.35^^ +~28399~^2^1^~Arrowroot biscuit (include Arrowroot cookie)~^4.9^^ +~28399~^3^1^~cracker~^2.5^^ +~28399~^4^1^~individual box (2 oz)~^57^^ +~31001~^1^8^~fl oz~^243^1^ +~31001~^2^1^~serving~^243^1^ +~31002~^1^8^~fl oz~^243^1^ +~31002~^2^1^~serving~^243^^ +~31005~^1^8^~fl oz~^243^1^ +~31005~^2^1^~serving~^243^^ +~31006~^1^8^~fl oz~^243^1^ +~31006~^2^1^~serving~^243^^ +~31007~^1^8^~fl oz~^243^1^ +~31007~^2^1^~serving~^243^^ +~31008~^1^8^~fl oz~^243^1^ +~31008~^2^1^~serving~^243^^ +~31010~^1^8^~oz~^243^1^ +~31010~^2^1^~serving~^243^1^ +~31011~^1^8^~fl oz~^243^1^ +~31011~^2^1^~serving~^243^1^ +~31012~^1^8^~fl oz~^243^1^ +~31012~^2^1^~serving~^243^^ +~31013~^1^8^~fl oz~^243^1^ +~31013~^2^1^~serving~^243^^ +~31014~^1^1^~oz~^30^1^ +~31014~^2^1^~serving~^30^1^ +~31015~^1^2^~tbsp~^30^1^ +~31015~^2^1^~serving~^30^1^ +~31016~^1^8^~fl oz~^243^1^ +~31016~^2^1^~serving~^243^^ +~31017~^1^8^~fl oz~^243^1^ +~31017~^2^1^~serving~^243^^ +~31018~^1^8^~fl oz~^243^1^ +~31018~^2^1^~serving~^243^1^ +~31019~^1^.25^~cup~^5.0^1^ +~31020~^1^.25^~cup~^25^1^ +~31021~^1^1^~cup unprepared~^159^10^17.328 +~31022~^1^1^~cup prepared~^130^10^10.232 +~31023~^1^12^~fries~^51^16^13.668 +~31024~^1^3^~oz~^85^1^ +~31025~^1^3^~oz~^85^1^ +~31026~^1^3^~oz~^85^3^0 +~31027~^1^3^~oz~^85^3^0 +~31028~^1^3^~oz~^85^1^ +~31029~^1^3^~oz~^85^3^0 +~31030~^1^3^~oz~^85^1^ +~31031~^1^3^~oz~^85^1^ +~31032~^1^1^~cup~^268^6^1.28 +~31033~^1^2^~tablespoon~^25^3^1.021 +~31034~^1^.25^~cup drained~^34^6^1.666 +~31035~^1^1^~cup~^269^6^1.342 +~31036~^1^1^~cup~^229^38^ +~31036~^2^1^~container~^700^38^ +~32000~^1^.333^~cup~^61^12^3.598 +~32000~^2^1^~tbsp~^9.0^12^1.278 +~32001~^1^1^~cup~^247^12^3.726 +~32002~^1^.333^~cup~^68^11^3.41 +~32002~^2^1^~tbsp~^9.6^11^1.578 +~32003~^1^1^~cup~^238^11^12.852 +~32004~^1^1^~serving (3.5 oz)~^25^^ +~32004~^2^1^~serving (4 oz)~^37^^ +~32005~^1^1^~cup prepared~^189^12^22.018 +~32006~^1^1^~piece~^42^22^2.812 +~32007~^1^1^~piece~^42^21^1.989 +~32008~^1^1^~package~^123^11^14.809 +~32008~^2^1^~packet~^51^11^3.158 +~32009~^1^1^~package~^122^12^13.391 +~32009~^2^1^~packet~^44^12^1.611 +~32010~^1^1^~package~^141^10^50.493 +~32010~^2^1^~packet~^79^10^29.008 +~32011~^1^1^~serving (2 oz)~^57^1^ +~32012~^1^1^~serving 6 rolls~^80^1^ +~32013~^1^5^~pieces 1 serving~^145^1^ +~32014~^1^1^~serving (3.5 oz)~^99^1^ +~32015~^1^1^~serving 4.5 oz~^127^1^ +~32016~^1^1^~serving 1 pouch~^61^1^ +~32017~^1^1^~package~^117^7^.724 +~32017~^2^1^~packet~^42^7^.914 +~32018~^1^.5^~cup~^70^11^3.86 +~32018~^2^.33^~cup~^56^12^3.648 +~32018~^3^1^~tbsp~^8.8^12^1.242 +~32019~^1^1^~cup 1 serving~^237^1^ +~32020~^1^1^~thigh with bone and breading~^133^169^ +~32021~^1^1^~cup~^198^20^18.512 +~32022~^1^.5^~package~^241^1^ +~32023~^1^.5^~package~^284^1^ +~32024~^1^.25^~cup dry rice mix~^57^1^ +~32025~^1^3^~pieces pierogies~^114^^ +~32026~^1^1^~piece turnover 1 serving~^127^^ +~32027~^1^1^~piece turnover 1 serving~^127^^ +~32028~^1^1^~piece turnover 1 serving~^127^^ +~32029~^1^2^~oz (1/4 c dry rice mix and 4 tsp seasoning mix)~^57^^ +~32030~^1^.5^~package~^298^1^ +~32031~^1^1^~patty~^63^25^10.083 +~32032~^1^1^~biscuit~^126^44^ +~32032~^2^1^~box~^526^9^209.174 +~32034~^1^1^~patty~^64^10^2.297 +~32035~^1^1^~patty~^72^6^15.37 +~32036~^1^1^~biscuit~^128^28^ +~32036~^2^1^~box~^595^6^208.207 +~33862~^1^1^~scoop~^9.6^^ +~33863~^1^1^~scoop~^8.7^1^ +~33864~^1^1^~fl oz~^31.4^^ +~33865~^1^1^~fl oz~^31.4^^ +~33866~^1^1^~scoop~^9.6^^ +~33867~^1^1^~scoop~^9.4^^ +~33868~^1^1^~scoop~^9.4^^ +~33869~^1^1^~scoop~^9.4^^ +~33870~^1^1^~scoop~^9.4^^ +~33871~^1^1^~scoop~^9.6^^ +~33872~^1^1^~scoop~^9.4^^ +~33873~^1^1^~scoop~^9.4^^ +~33874~^1^1^~fl oz~^30.4^1^ +~33874~^2^5^~fl oz~^152^^ +~33875~^1^5^~fl oz~^30^1^ +~33875~^2^5^~fl oz~^152^^ +~33876~^1^1^~fl oz~^30.5^1^ +~33876~^2^5^~fl oz~^152^1^ +~33877~^1^1^~scoop~^8.7^1^ +~35009~^1^1^~strip~^45^5^11.656 +~35015~^1^1^~cup~^157^3^30.331 +~35139~^1^1^~oz~^28.35^^ +~35140~^1^1^~oz~^28.35^^ +~35141~^1^1^~oz~^28.35^^ +~35142~^1^1^~piece~^152^^ +~35143~^1^1^~serving~^197^^ +~35144~^1^1^~serving~^308^^ +~35145~^1^1^~serving~^411^^ +~35146~^1^1^~serving~^303^^ +~35147~^1^1^~piece~^186^^ +~35183~^1^1^~oz~^28.35^^ +~35190~^1^1^~filet~^108^4^55.279 +~35190~^2^1^~strip~^136^3^35.773 +~35195~^1^1^~shoot~^19^12^10.152 +~35196~^1^1^~leaf~^0.9^8^.306 +~35197~^1^1^~cup~^65^4^11.537 +~35198~^1^1^~pad peeled~^19^19^10.177 +~35198~^2^1^~pad~^61^19^26.011 +~35199~^1^1^~pad~^7.5^14^4.461 +~35200~^1^1^~bulb peeled~^12.6^75^10.243 +~35201~^1^1^~bulb~^14.0^22^9.006 +~35202~^1^1^~cup~^130^3^.3 +~35203~^1^1^~cup~^127^3^.651 +~35204~^1^1^~cup~^154^3^1.311 +~35205~^1^1^~cup~^89^6^5.407 +~35206~^1^1^~cup~^161^3^.529 +~35211~^1^.5^~cup~^66^1^ +~35211~^2^1^~piece~^102^1^ +~35232~^1^1^~oz~^28.35^^ +~35233~^1^1^~nut~^0.4^10^.067 +~35233~^2^1^~oz~^28.35^^ +~35234~^1^1^~piece~^28^^ +~35234~^2^1^~piece~^19^^ +~35235~^1^1^~oz~^28.35^^ +~35236~^1^8^~oz~^227^^ +~35237~^1^4^~oz~^113^^ +~35239~^1^1^~piece~^57^^ +~36000~^1^1^~serving~^157^12^15.727 +~36001~^1^1^~serving~^206^1^ +~36002~^1^1^~serving~^164^12^32.165 +~36003~^1^1^~cup~^124^12^12.305 +~36003~^2^1^~serving~^180^12^16.496 +~36004~^1^1^~piece~^32^12^2.003 +~36004~^2^1^~serving~^289^12^23.072 +~36005~^1^1^~piece~^35^12^4.14 +~36005~^2^1^~serving (3 pieces)~^99^12^11.602 +~36006~^1^1^~serving~^175^1^ +~36007~^1^1^~serving~^184^10^78.75 +~36008~^1^1^~piece~^35^11^2.177 +~36008~^2^1^~serving~^212^10^12.33 +~36009~^1^1^~cup~^144^10^20.121 +~36009~^2^1^~serving~^236^10^36.866 +~36010~^1^1^~piece~^41^12^6.157 +~36010~^2^1^~serving~^141^10^27.838 +~36011~^1^1^~serving~^176^10^26.356 +~36012~^1^1^~serving~^245^34^37.69 +~36012~^2^1^~piece~^31^35^ +~36013~^1^1^~serving~^166^22^22.877 +~36014~^1^1^~serving~^170^34^54.344 +~36015~^1^1^~serving~^114^32^27.321 +~36015~^2^1^~piece~^37^34^ +~36016~^1^1^~serving~^169^4^27.602 +~36017~^1^1^~cup~^136^41^17.361 +~36017~^2^1^~serving~^210^44^57.425 +~36018~^1^1^~serving~^250^12^24.118 +~36019~^1^1^~cup~^136^8^20.323 +~36019~^2^1^~serving~^182^12^52.027 +~36020~^1^1^~serving~^225^10^37.154 +~36021~^1^1^~serving~^76^12^22.881 +~36022~^1^1^~serving~^350^12^38.979 +~36023~^1^1^~serving~^209^12^19.331 +~36024~^1^1^~serving~^175^10^35.27 +~36025~^1^1^~serving~^167^10^32.671 +~36026~^1^1^~serving~^261^10^108.53 +~36027~^1^1^~serving~^194^12^33.812 +~36028~^1^1^~serving~^91^12^27.988 +~36029~^1^1^~serving~^201^12^19.177 +~36030~^1^1^~serving~^124^12^35.329 +~36030~^2^1^~cup~^94^7^7.978 +~36031~^1^1^~serving~^166^12^38.491 +~36032~^1^1^~serving~^565^11^111.84 +~36032~^2^1^~cup~^134^11^12.932 +~36033~^1^1^~serving~^226^24^32.967 +~36034~^1^1^~serving~^201^44^35.577 +~36035~^1^1^~serving~^108^34^47.45 +~36036~^1^1^~serving~^259^34^101.902 +~36037~^1^1^~cup~^136^8^20.323 +~36037~^2^1^~serving~^182^12^52.027 +~36038~^1^1^~cup~^134^11^12.932 +~36038~^2^1^~serving~^565^11^111.84 +~36039~^1^1^~cup~^94^7^7.978 +~36039~^2^1^~serving~^124^12^35.329 +~36040~^1^1^~serving~^175^10^52.045 +~36040~^2^1^~cup~^149^7^26.795 +~36041~^1^1^~serving~^457^24^94.216 +~36042~^1^1^~serving~^422^12^63.024 +~36043~^1^1^~serving~^437^6^105.008 +~36044~^1^1^~cup~^114^8^19.163 +~36045~^1^1^~cup~^135^8^20.885 +~36046~^1^1^~serving~^510^24^113.817 +~36047~^1^1^~serving~^478^12^87.808 +~36048~^1^1^~serving~^489^6^116.724 +~36049~^1^1^~serving serving size varied from 1 to 3 enchiladas~^250^8^99.215 +~36049~^2^2^~enchilada~^241^3^61.749 +~36049~^3^1^~enchilada~^124^2^ +~36049~^4^3^~enchilada~^343^3^29.963 +~36050~^1^1^~serving serving size varied from 1 to 3 enchiladas~^244^23^111.605 +~36050~^2^1^~enchilada~^137^7^39.846 +~36050~^3^2^~enchilada~^257^11^74.214 +~36050~^4^3^~enchilada~^365^5^116.895 +~36051~^1^1^~serving 1 quesadilla~^203^8^31.036 +~36052~^1^1^~serving serving size varied on diameter and count of quesadila~^205^23^52.325 +~36052~^2^1^~quesadilla 8-10 inch diameter~^194^20^40.456 +~36052~^3^3^~quesadilla 5-6 inch diameter~^279^3^72.869 +~36053~^1^1^~serving varied from 8 to 10 ravioli per serving~^365^6^69.777 +~36054~^1^1^~serving varied from 7-9 ravioli per serving~^454^12^55.371 +~36055~^1^1^~serving serving size varied by diameter and count of raviloi~^427^24^82.699 +~36056~^1^1^~serving serving size varied from 1 to 3 tamales~^302^16^169.644 +~36056~^2^1^~tamale~^179^8^52.188 +~36056~^3^2^~tamale~^351^5^76.633 +~36056~^4^3^~tamale~^550^3^189.025 +~36057~^1^1^~serving~^339^6^41.043 +~36058~^1^1^~serving~^304^11^43.185 +~36059~^1^1^~serving~^301^24^77.073 +~36060~^1^1^~serving varied from 2-3 tacos per serving~^324^6^64.116 +~36061~^1^1^~serving varied from 1 to 3 tacos per serving~^281^21^121.083 +~36061~^2^1^~taco~^134^5^20.106 +~36061~^3^2^~taco~^279^9^83.044 +~36061~^4^3^~taco~^389^7^87.2 +~36401~^1^1^~cup~^141^15^8.943 +~36403~^1^1^~piece~^89^9^24.087 +~36404~^1^1^~serving~^283^4^26.577 +~36404~^2^1^~cup~^253^4^27.398 +~36405~^1^1^~serving~^461^4^252.32 +~36405~^2^1^~cup~^146^4^26.257 +~36406~^1^1^~serving~^590^3^351.038 +~36406~^2^1^~cup~^157^3^23.812 +~36407~^1^1^~serving~^653^1^ +~36407~^2^1^~cup~^115^1^ +~36408~^1^1^~piece~^126^10^22.269 +~36409~^1^1^~piece~^117^11^21.307 +~36410~^1^1^~piece~^122^9^24.655 +~36411~^1^1^~piece~^166^8^42.123 +~36412~^1^1^~piece~^142^8^84.735 +~36413~^1^1^~cup~^246^6^41.436 +~36414~^1^1^~cup~^200^11^24.676 +~36415~^1^1^~piece~^98^5^54.988 +~36416~^1^1^~piece~^70^5^21.201 +~36417~^1^1^~cup~^116^23^18.171 +~36418~^1^1^~cup~^148^23^22.551 +~36601~^1^1^~piece~^89^12^19.37 +~36602~^1^1^~cup~^137^23^9.616 +~36603~^1^1^~order~^574^36^106.707 +~36604~^1^1^~serving~^103^10^19.746 +~36604~^2^1^~piece~^36^10^5.538 +~36605~^1^1^~serving~^149^1^ +~36606~^1^1^~serving~^178^30^20.313 +~36606~^2^1^~piece~^124^10^44.962 +~36607~^1^1^~serving~^198^10^25.975 +~36608~^1^1^~steak~^151^10^16.443 +~36609~^1^1^~serving~^257^10^90.95 +~36609~^2^1^~cup~^149^7^13.014 +~36610~^1^1^~serving~^165^12^50.143 +~36611~^1^1^~serving~^228^12^12.646 +~36611~^2^1^~piece~^27^12^2.15 +~36612~^1^1^~piece~^16^12^2.04 +~36612~^2^1^~serving~^100^12^22.103 +~36613~^1^1^~serving~^180^12^9.833 +~36613~^2^1^~cup~^134^12^13.456 +~36614~^1^1^~serving 4 pieces in serving~^67^12^6.329 +~36614~^2^1^~piece~^16^12^1.488 +~36615~^1^1^~steak~^107^12^10.913 +~36617~^1^1^~order~^623^37^198.849 +~36617~^2^3^~pieces~^73^15^40.129 +~36618~^1^1^~order~^535^38^156.025 +~36618~^2^3^~pieces~^53^12^14.686 +~36619~^1^1^~order~^604^37^189.624 +~36620~^1^1^~order~^601^36^106.128 +~36621~^1^1^~order~^706^20^170.401 +~36621~^2^3^~pieces~^55^7^14.531 +~36622~^1^1^~order~^609^36^131.862 +~36622~^2^3^~pieces~^42^13^12.855 +~36623~^1^1^~order~^604^37^123.196 +~36624~^1^1^~order~^777^10^213.999 +~36624~^2^1^~cup~^195^10^26.589 +~36625~^1^1^~order~^741^12^200.503 +~36625~^2^1^~cup~^136^12^12.282 +~36626~^1^1^~order~^693^11^165.213 +~36626~^2^1^~cup~^153^11^15.658 +~36629~^1^1^~order~^648^9^267.888 +~36629~^2^3^~pieces~^63^9^25.761 +~36630~^1^1^~serving~^554^24^93.823 +~36631~^1^1^~serving~^525^12^79.044 +~36632~^1^1^~serving~^537^6^49.482 +~36633~^1^1^~order~^547^12^181.678 +~42040~^1^1^~tbsp~^20^^ +~42040~^2^1^~tsp~^6.7^^ +~42055~^1^1^~tsp~^8.0^^ +~42074~^1^1^~bar~^78^^ +~42116~^1^1^~tbsp~^15.0^^ +~42116~^2^1^~cup~^245^^ +~42117~^1^1^~cup, shredded~^113^^ +~42117~^2^1^~cubic inch~^18^^ +~42119~^1^1^~fl oz~^31.5^^ +~42119~^2^1^~bottle NFS~^126^^ +~42120~^1^1^~fl oz~^31.5^^ +~42120~^2^1^~bottle NFS~^126^^ +~42128~^1^1^~cup pieces~^138^^ +~42128~^2^1^~cubic inch~^20^^ +~42129~^1^1^~cup pieces~^138^^ +~42129~^2^1^~cubic inch~^14.0^^ +~42129~^3^1^~slice, medium~^28^^ +~42129~^5^1^~slice, thick~^43^^ +~42129~^6^1^~slice, thin~^14.0^^ +~42131~^1^1^~cup~^137^^ +~42135~^1^1^~cup~^75^^ +~42136~^1^1^~cup~^94^^ +~42136~^2^1^~packet~^3.0^^ +~42137~^1^1^~tbsp~^13.4^^ +~42137~^2^1^~fl oz~^26.0^^ +~42138~^1^1^~tbsp~^14.6^^ +~42138~^2^1^~cup~^231^^ +~42139~^1^1^~oz~^28.35^^ +~42140~^1^1^~tbsp~^14.0^^ +~42140~^2^1^~cup~^216^^ +~42141~^1^1^~fl oz~^30.0^^ +~42141~^2^1^~cup~^242^^ +~42148~^1^1^~serving 1.63 oz singles bag~^46^1^ +~42148~^2^1^~cup~^203^^ +~42148~^3^1^~piece~^2.2^^ +~42150~^1^1^~tbsp~^15.0^^ +~42150~^2^1^~jar NFS~^113^^ +~42150~^3^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~42151~^1^1^~tbsp~^13.0^^ +~42151~^2^1^~cup~^207^^ +~42153~^1^1^~tbsp~^16^^ +~42153~^2^1^~cup~^249^^ +~42155~^1^1^~cup, diced~^132^^ +~42155~^2^1^~cup, shredded~^113^^ +~42155~^3^1^~cubic inch~^17^^ +~42155~^4^1^~slice (1 oz)~^28^^ +~42157~^1^1^~tbsp~^17^^ +~42157~^2^1^~cup~^264^^ +~42158~^1^1^~tbsp~^15.0^^ +~42158~^2^1^~cup~^234^^ +~42161~^1^1^~slice~^28^1^ +~42161~^2^1^~cubic inch~^14.0^^ +~42161~^3^1^~slice, medium~^28^^ +~42161~^5^1^~slice, thick~^43^^ +~42161~^6^1^~slice, thin~^14.0^^ +~42171~^1^1^~tbsp~^16^^ +~42171~^2^1^~cup~^260^^ +~42173~^1^1^~cup, cooked~^130^^ +~42173~^2^1^~oz~^28^^ +~42173~^3^1^~oz cooked, yield~^21^^ +~42173~^4^1^~patty, cooked~^25^^ +~42178~^1^1^~tbsp~^15.0^^ +~42178~^2^1^~cup~^240^^ +~42179~^1^1^~frankfurter~^57^^ +~42179~^2^1^~cup, sliced~^151^^ +~42183~^1^2^~cookie 2011 label~^51^^ +~42185~^1^1^~cup~^186^^ +~42186~^1^1^~cup~^174^^ +~42187~^1^1^~cup~^174^^ +~42189~^1^1^~cup~^245^^ +~42189~^2^1^~fl oz~^30.6^^ +~42190~^1^2^~links 1 NLEA serving~^45^2^ +~42190~^2^3^~links 1 NLEA serving~^60^1^ +~42192~^1^1^~tbsp~^17^^ +~42192~^2^1^~cup~^265^^ +~42193~^1^1^~tbsp~^16^^ +~42193~^2^1^~cup~^256^^ +~42196~^1^1^~serving 1.76 oz bar~^50^1^ +~42196~^2^1^~bar fun size~^19^1^ +~42196~^3^1^~serving 5 miniatures~^41^1^ +~42204~^1^1^~cubic inch~^4.2^^ +~42205~^1^1^~cubic inch~^16^^ +~42205~^2^1^~slice (3/4 oz)~^21^^ +~42227~^1^1^~serving 1.31 oz bag~^37^1^ +~42227~^2^1^~serving about 1/4 cup~^42^1^ +~42227~^3^1^~cup~^195^^ +~42227~^4^1^~piece~^3.4^^ +~42230~^1^1^~tbsp~^17^^ +~42230~^2^1^~cup~^269^^ +~42231~^1^1^~tbsp~^13.6^^ +~42231~^2^1^~cup~^218^^ +~42235~^1^4^~oz~^113^^ +~42235~^2^1^~cup~^227^^ +~42236~^1^.75^~cup (1 NLEA serving)~^30^^ +~42237~^1^2^~biscuits (1 NLEA serving)~^35^1^ +~42237~^2^1^~cup~^57^^ +~42240~^1^.75^~cup (1 NLEA serving)~^32^1^ +~42256~^1^1^~tablespoon~^14.0^^ +~42258~^1^1^~slice 1 oz~^28^^ +~42259~^1^1^~cup~^8.0^^ +~42259~^2^1^~oz~^28.35^^ +~42261~^1^.75^~cup (1 NLEA serving)~^52^1^ +~42265~^1^.75^~cup (1 NLEA serving)~^55^1^ +~42266~^1^1^~fl oz~^30.8^^ +~42266~^3^1^~bottle NFS~^246^^ +~42267~^1^1^~fl oz~^30.8^^ +~42267~^3^1^~bottle NFS~^246^^ +~42270~^1^1^~cup~^249^^ +~42270~^2^1^~fl oz~^31.1^^ +~42270~^3^1^~drink box (8.45 fl oz)~^263^^ +~42272~^1^1^~oz~^28.35^^ +~42278~^1^1^~cup~^230^^ +~42278~^2^1^~tbsp~^14.4^^ +~42278~^3^1^~jar Earth's Best (4.5 oz)~^128^^ +~42279~^1^1^~cup~^230^^ +~42279~^2^1^~tbsp~^14.4^^ +~42279~^3^1^~jar Earth's Best (4.5 oz)~^128^^ +~42280~^1^1^~cup, sliced~^143^^ +~42281~^1^1^~oz~^28.35^^ +~42283~^1^1^~cup~^34^^ +~42283~^2^10^~chips~^12.0^^ +~42284~^1^1^~cookie~^1.7^^ +~42285~^1^1^~tbsp~^3.7^^ +~42286~^1^1^~tbsp~^14.0^^ +~42286~^2^1^~jar Gerber Second Food (4 oz)~^113^^ +~42289~^1^1^~tbsp~^14.0^^ +~42289~^2^1^~cup~^224^^ +~42289~^3^1^~teaspoon~^4.5^^ +~42290~^1^1^~cup~^247^^ +~42290~^2^1^~fl oz~^30.9^^ +~42291~^1^1^~tbsp~^16^^ +~42297~^1^1^~cup (1 NLEA serving)~^59^^ +~42303~^1^1^~cup, shredded~^113^^ +~42303~^2^1^~cubic inch~^18^^ +~42303~^3^1^~slice~^28^^ +~42304~^1^1^~cup, shredded~^113^^ +~42307~^1^1^~tablespoon~^14.0^^ +~42309~^1^1^~tablespoon~^14.0^^ +~42316~^1^1^~oz~^28.35^^ +~43004~^1^1^~tbsp~^15.0^^ +~43004~^2^1^~jar NFS~^113^^ +~43004~^3^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~43004~^4^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~43006~^1^1^~tbsp~^15.0^^ +~43006~^2^1^~jar NFS~^113^^ +~43006~^3^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~43007~^1^1^~tbsp~^15.0^^ +~43007~^2^1^~jar NFS~^170^^ +~43007~^3^1^~jar Heinz Junior-3 (6 oz)~^170^^ +~43008~^1^1^~tbsp~^16^^ +~43008~^2^1^~jar, Gerber (4 oz)~^113^^ +~43008~^3^1^~jar NFS~^113^^ +~43008~^4^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~43015~^1^1^~tbsp~^14.7^^ +~43015~^2^1^~cup~^235^^ +~43015~^3^1^~serving (2 tbsp)~^30^^ +~43016~^1^1^~tbsp~^16^^ +~43016~^2^1^~cup~^250^^ +~43017~^1^1^~tbsp~^15^^ +~43017~^2^1^~cup~^245^^ +~43019~^1^1^~tbsp~^16^^ +~43019~^2^1^~cup~^250^^ +~43020~^1^1^~tbsp~^15^^ +~43020~^2^1^~cup~^245^^ +~43021~^1^1^~tbsp~^15.0^^ +~43021~^2^1^~cup~^240^^ +~43026~^1^1^~cup~^240^^ +~43026~^2^1^~tbsp~^15.0^^ +~43027~^1^1^~cup~^300^^ +~43027~^2^1^~tbsp~^19^^ +~43028~^1^1^~cup~^224^^ +~43028~^2^1^~tbsp~^14.0^^ +~43031~^1^1^~piece~^14.0^^ +~43046~^1^1^~piece~^14.0^^ +~43057~^1^1^~cup~^182^^ +~43057~^2^1^~piece~^5.0^^ +~43058~^1^1^~piece~^3.0^^ +~43060~^1^1^~piece~^2.0^^ +~43075~^1^1^~fl oz~^31.2^^ +~43075~^2^1^~cup (8 fl oz)~^250^^ +~43078~^1^1^~tbsp~^7.0^^ +~43078~^2^1^~envelope~^21^^ +~43098~^1^1^~serving~^85^1^ +~43098~^2^1^~cup~^264^^ +~43100~^1^1^~bar~^43^^ +~43109~^1^1^~large~^143^^ +~43109~^2^1^~medium~^115^^ +~43109~^3^1^~small~^62^^ +~43112~^1^1^~cup~^253^^ +~43114~^1^1^~cup~^140^^ +~43125~^1^1^~cup~^240^^ +~43128~^1^1^~cup~^168^^ +~43130~^1^1^~cup, sliced~^140^^ +~43130~^2^1^~frankfurter~^70^^ +~43131~^1^1^~slice, thin~^14.0^^ +~43132~^1^1^~cup~^144^^ +~43134~^1^1^~fillet~^85^^ +~43135~^1^1^~tbsp~^15.0^^ +~43137~^1^1^~slice~^56^^ +~43142~^1^1^~cup~^150^^ +~43143~^1^1^~cup~^150^^ +~43144~^1^1^~cup~^128^^ +~43146~^1^1^~cup~^136^^ +~43154~^1^1^~tsp~^4.9^^ +~43154~^2^1^~fl oz~^29.0^^ +~43155~^1^1^~fl oz~^29.5^^ +~43155~^2^1^~serving 5 fl oz~^148^^ +~43158~^1^1^~serving 1 packet~^1.0^25^.099 +~43158~^2^1^~serving 1 packet SUGAR TWIN~^0.8^4^ +~43205~^1^1^~tbsp~^7.4^^ +~43205~^2^1^~envelope~^37^^ +~43212~^1^1^~tbsp~^7.0^^ +~43214~^1^1^~cup~^80^^ +~43215~^1^1^~tablespoon~^15.0^^ +~43215~^2^1^~serving (2 tbsp)~^30^^ +~43216~^1^1^~cup~^196^^ +~43216~^2^1^~tsp~^4.2^^ +~43216~^3^1^~individual packet~^3.0^^ +~43217~^1^1^~cup~^245^^ +~43218~^1^.67^~cup (1 NLEA serving)~^55^^ +~43241~^1^1^~cup~^122^^ +~43245~^1^1^~cup (1 NLEA serving)~^55^^ +~43260~^1^1^~tbsp~^5.6^^ +~43260~^2^1^~envelope~^20^^ +~43261~^1^1^~container (6 oz)~^170^^ +~43261~^2^1^~container (4.4 oz)~^125^^ +~43261~^3^1^~cup (8 fl oz)~^245^^ +~43261~^4^1^~container (8 oz)~^227^^ +~43268~^1^1^~cup~^80^^ +~43273~^1^4^~oz~^113^^ +~43273~^2^1^~cup~^226^^ +~43274~^1^1^~tbsp~^15.0^^ +~43274~^2^1^~cup~^240^^ +~43274~^3^1^~tbsp, whipped~^10.0^^ +~43275~^1^1^~cup, diced~^140^^ +~43275~^2^1^~cup, shredded~^113^^ +~43275~^3^1^~cubic inch~^18^^ +~43275~^4^1^~slice (3/4 oz)~^21^^ +~43276~^1^1^~oz~^28.35^^ +~43276~^2^1^~cup~^240^^ +~43278~^1^1^~slice~^21^^ +~43278~^2^1^~cubic inch~^18^^ +~43278~^3^1^~cup~^224^^ +~43282~^1^1^~oz~^28.35^^ +~43282~^2^1^~lb~^453.0^^ +~43283~^1^1^~cup, chopped or diced~^140^^ +~43285~^1^1^~oz~^28.35^^ +~43287~^1^1^~cup, chopped or diced~^140^^ +~43297~^1^1^~cup~^22^^ +~43299~^1^1^~cup~^225^^ +~43311~^1^1^~cup~^180^^ +~43312~^1^1^~cup~^182^^ +~43325~^1^1^~oz, boneless~^28.35^^ +~43325~^2^1^~cubic inch, boneless~^17^^ +~43326~^1^1^~oz, boneless~^28.35^^ +~43326~^2^1^~cubic inch, boneless~^17^^ +~43327~^1^1^~oz~^28.35^^ +~43327~^2^1^~lb~^453.0^^ +~43329~^1^1^~tbsp~^14.5^^ +~43329~^2^1^~cup~^232^^ +~43331~^1^1^~tbsp~^15.0^^ +~43331~^2^1^~cup~^240^^ +~43340~^1^1^~cup, grated~^100^^ +~43340~^2^1^~tbsp~^5.0^^ +~43345~^1^1^~tsp~^2.0^^ +~43346~^1^1^~fl oz~^29.8^^ +~43346~^4^1^~bar~^74^^ +~43352~^1^4^~oz~^113^^ +~43352~^2^1^~cup~^226^^ +~43355~^1^1^~tbsp~^14.0^^ +~43355~^2^1^~cup~^224^^ +~43364~^1^1^~cup~^26^^ +~43364~^2^1^~bag, single serving~^28^^ +~43364~^3^10^~chips~^18^^ +~43365~^1^1^~cup~^242^^ +~43365~^2^1^~fl oz~^30.2^^ +~43366~^1^1^~oz with bone, cooked (yield after bone removed)~^19^^ +~43366~^2^1^~cubic inch, boneless~^17^^ +~43367~^1^1^~oz with bone, cooked (yield after bone removed)~^21^^ +~43367~^2^1^~cubic inch, boneless~^17^^ +~43369~^1^1^~cup~^244^^ +~43369~^2^1^~fl oz~^30.5^^ +~43373~^1^1^~tbsp~^16^^ +~43373~^2^1^~jar NFS~^170^^ +~43373~^4^1^~jar Beech-Nut Table Time (6 oz)~^170^^ +~43378~^1^1^~slice cooked~^8.0^157^ +~43379~^1^1^~cup, diced~^140^^ +~43379~^2^1^~cup, shredded~^113^^ +~43379~^3^1^~cubic inch~^18^^ +~43379~^4^1^~slice (3/4 oz)~^21^^ +~43382~^1^1^~cup~^253^^ +~43382~^2^1^~fl oz~^31.6^^ +~43384~^1^1^~cup pieces~^138^^ +~43384~^2^1^~slice, medium~^28^^ +~43384~^4^1^~slice, thick~^43^^ +~43384~^5^1^~slice, thin~^14.0^^ +~43387~^1^1^~cup~^144^^ +~43390~^1^3^~oz, boneless~^85^^ +~43390~^2^1^~medium slice (approx 3" x 2" x 1/4")~^28^^ +~43390~^3^1^~thick slice (approx 3" x 2" x 3/8")~^42^^ +~43391~^1^1^~medium slice (approx 3" x 2" x 1/4")~^28^^ +~43391~^2^1^~thick slice (approx 3" x 2" x 3/8")~^42^^ +~43393~^1^1.25^~cup (1 NLEA serving)~^59^^ +~43396~^1^4^~oz~^113^^ +~43396~^2^1^~cup~^226^^ +~43398~^1^1^~cup, diced~^140^^ +~43398~^2^1^~cup, shredded~^113^^ +~43398~^3^1^~cubic inch~^18^^ +~43398~^4^1^~slice~^21^^ +~43401~^1^1^~tsp dry~^1.7^^ +~43404~^1^1^~cup (8 fl oz)~^240^^ +~43404~^2^1^~fl oz~^30.0^^ +~43405~^1^1^~slice~^28^^ +~43405~^2^1^~cubic inch~^15.0^^ +~43405~^3^1^~cup, shredded~^108^^ +~43405~^4^1^~cup, diced~^132^^ +~43406~^1^1^~tsp~^6.0^^ +~43408~^1^1^~fl oz~^31.2^^ +~43408~^2^1^~bottle Earth's Best (4.2 fl oz)~^131^^ +~43408~^3^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~43408~^4^1^~bottle Gerber First Food (4 fl oz)~^125^^ +~43408~^5^1^~bottle Beech-Nut Stage I (4 fl oz)~^125^^ +~43408~^6^1^~bottle NFS~^125^^ +~43410~^1^1^~cup, diced~^130^^ +~43410~^2^1^~cup pieces~^168^^ +~43410~^3^1^~piece~^36^^ +~43417~^1^1^~jar NFS~^179^^ +~43432~^1^1^~tbsp~^16^^ +~43441~^1^1^~medium (2-1/2" dia)~^36^^ +~43441~^2^1^~roll (pan, dinner, or small roll) (2" square, 2" high)~^28^^ +~43447~^1^1^~cup, crushed~^88^^ +~43447~^2^1^~bag, single serving~^28^^ +~43447~^3^10^~chips~^18^^ +~43449~^1^1^~cup~^253^^ +~43450~^1^2.5^~oz~^71^1^ +~43476~^1^1^~cup~^262^^ +~43479~^1^1^~fl oz~^29.1^^ +~43483~^1^1^~cup~^21^^ +~43495~^1^1^~cup (1 NLEA serving)~^50^1^ +~43497~^1^1^~cup~^58^^ +~43506~^1^1^~bar~^54^^ +~43507~^1^1^~frankfurter~^57^^ +~43507~^2^1^~cup, sliced~^151^^ +~43514~^1^1^~serving 1.75 fl oz pop~^55^1^ +~43523~^1^1^~tbsp~^15.0^^ +~43523~^2^1^~jar NFS~^113^^ +~43523~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~43523~^4^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~43523~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~43528~^1^1^~cup~^252^^ +~43528~^2^1^~fl oz~^31.5^^ +~43529~^1^1^~tbsp~^2.5^^ +~43535~^1^1^~fl oz~^31.2^^ +~43535~^2^1^~bottle Heinz Strained (4 fl oz)~^125^^ +~43535~^3^1^~bottle NFS~^125^^ +~43535~^4^1^~bottle Beech-Nut Stage 2 (4 fl oz)~^125^^ +~43535~^5^1^~bottle Gerber Second Foods (4 fl oz)~^125^^ +~43536~^1^1^~tbsp~^15.0^^ +~43536~^2^1^~jar NFS~^113^^ +~43536~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~43536~^4^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~43536~^5^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~43537~^1^1^~tbsp~^15.0^^ +~43537~^2^1^~jar NFS~^113^^ +~43537~^3^1^~jar Heinz Strained-2 (4 oz)~^113^^ +~43539~^1^1^~tbsp~^15.0^^ +~43539~^2^1^~jar NFS~^113^^ +~43539~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~43539~^4^1^~jar Beech-Nut Stage 2 (4 oz)~^113^^ +~43539~^5^1^~jar Heinz Strained-2 (4.25 oz)~^120^^ +~43541~^1^1^~cup~^148^^ +~43541~^2^1^~cubic inch~^10.2^^ +~43543~^1^1^~cup~^244^^ +~43543~^2^1^~fl oz~^30.5^^ +~43544~^1^1^~serving~^15.0^^ +~43546~^1^1^~tbsp~^15.0^^ +~43546~^2^1^~jar NFS~^113^^ +~43546~^3^1^~jar Beech-Nut Baby's First (2.5 oz)~^71^^ +~43546~^4^1^~jar Beech-Nut Stage I (4 oz)~^113^^ +~43546~^5^1^~jar Gerber First Foods (2.5 oz)~^71^^ +~43546~^6^1^~jar Earth's Best (4.5 oz)~^128^^ +~43546~^7^1^~jar Heinz Beginner-1 (2.5 oz)~^71^^ +~43550~^1^1^~tbsp~^15.0^^ +~43550~^2^1^~jar NFS~^113^^ +~43550~^3^1^~jar Gerber Second Food (4 oz)~^113^^ +~43566~^1^1^~cup, crushed~^63^^ +~43566~^2^10^~chips~^16^^ +~43570~^1^.75^~cup (1 NLEA serving)~^30^1^ +~43572~^1^1^~oz~^28.35^^ +~43585~^1^1^~tbsp~^15.0^^ +~43589~^1^1^~slice (1 oz)~^28^^ +~43589~^2^1^~cubic inch~^15.0^^ +~43589~^3^1^~cup, shredded~^108^^ +~43589~^4^1^~cup, diced~^132^^ +~43595~^1^1^~oz~^28.35^^ +~43595~^2^1^~bar~^37^^ +~43597~^1^1^~cup, diced~^132^^ +~43597~^2^1^~cup, shredded~^113^^ +~43597~^3^1^~cubic inch~^18^^ +~43597~^4^1^~slice (1 oz)~^28^^ +~43598~^1^1^~tbsp~^15.0^^ +~43598~^2^1^~cup~^239^^ +~44005~^1^1^~tablespoon~^14.0^^ +~44005~^2^1^~teaspoon~^4.5^^ +~44018~^1^1^~serving~^0.1^^ +~44048~^1^1^~oz~^28.35^^ +~44061~^1^1^~serving~^9.9^^ +~44061~^2^1^~package 1.4 oz box, 4 servings~^40^^ +~44110~^1^1^~tbsp~^19^^ +~44110~^2^1^~cup~^300^^ +~44158~^1^1^~serving~^151^1^ +~44158~^2^1^~cup~^262^^ +~44203~^1^1^~fl oz~^36.0^^ +~44203~^2^1^~serving 2 fl oz~^71^1^ +~44203~^3^1^~can 10 fl oz~^355^2^ +~44258~^1^1^~serving~^9.9^1^ +~44258~^2^1^~package~^40^1^ +~44259~^1^1^~serving~^113^^ +~44259~^2^1^~cup~^260^^ +~44260~^1^1^~serving~^8.0^1^ +~44260~^2^1^~package 4 servings~^32^1^ +~80200~^1^1^~leg~^45^^ +~83110~^1^1^~piece (5-1/2" x 1-1/2" x 1/2")~^80^^ +~83110~^2^1^~cubic inch, boneless~^17^^ +~83110~^3^1^~cup, cooked~^136^^ +~90240~^1^3^~oz~^85^^ +~90480~^1^1^~serving~^21^^ +~90560~^1^3^~oz~^85^^ +~93600~^1^3^~oz~^85^^