forked from denizsagnaklar/RecipeParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrite_book.py
589 lines (585 loc) · 58.8 KB
/
write_book.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
# -*- coding: utf-8 -*-
from book_class import IngredientBook
def writeBook():
ingredientDic = {}
ingredientDic['acorn squash'] = IngredientBook('acorn squash', '', '', '', '', '')
ingredientDic['aleppo pepper'] = IngredientBook('aleppo pepper', '', '', '', 'chili powder', 'garlic powder')
ingredientDic['allspice'] = IngredientBook('allspice', '', '', '', '', 'garlic powder')
ingredientDic['almond'] = IngredientBook('almond', '', '', '', 'peanuts', '')
ingredientDic['almond essence'] = IngredientBook('almond essence', '', '', '', '', '')
ingredientDic['almond extract'] = IngredientBook('almond extract', '', '', '', '', '')
ingredientDic['almond milk'] = IngredientBook('almond milk', '', '', '', '', 'goat milk')
ingredientDic['goat milk'] = IngredientBook('goat milk', '', '', 'almond milk', '', '')
ingredientDic['american cheese'] = IngredientBook('american cheese', 'parmesan', '', 'cashew cheese', 'queso de oaxaca', 'feta cheese')
ingredientDic['anchovy'] = IngredientBook('anchovy', '', 'tofu', 'tofu', 'cod', '')
ingredientDic['anise'] = IngredientBook('anise', '', '', '', 'onion powder', '')
ingredientDic['apple'] = IngredientBook('apple', '', '', '', 'cherimoya', 'apricots')
ingredientDic['apple chutney'] = IngredientBook('apple chutney', '', '', '', 'mango chutney', 'peach chutney')
ingredientDic['apple juice'] = IngredientBook('apple juice', 'organic apple juice', '', '', 'mango juice', '')
ingredientDic['apple sauce'] = IngredientBook('apple sauce', 'organic apple sauce', '', '', 'sweetsop sauce', 'apricot sauce')
ingredientDic['apricot'] = IngredientBook('apricot', '', '', '', 'pitaya', '')
ingredientDic['apricot jam'] = IngredientBook('apricot jam', '', '', '', 'mamey jam', '')
ingredientDic['arrowroot'] = IngredientBook('arrowroot', '', '', '', '', '')
ingredientDic['artichoke'] = IngredientBook('artichoke', '', '', '', 'cayote', '')
ingredientDic['asparagus'] = IngredientBook('asparagus', '', '', '', 'corn', '')
ingredientDic['eggplant'] = IngredientBook('eggplant', '', '', '', '', '')
ingredientDic['avocado'] = IngredientBook('avocado', '', '', '', '', '')
ingredientDic['bacon'] = IngredientBook('bacon', 'turkey bacon', 'tempeh', 'tempeh', 'chorizo', 'pastrami')
ingredientDic['bagel'] = IngredientBook('bagel', 'whole wheat bagel', '', 'vegan bagel', '', '')
ingredientDic['baguette'] = IngredientBook('baguette', 'whole wheat baguette', '', 'vegan bread', 'bread', 'pita')
ingredientDic['baked beans'] = IngredientBook('baked beans', '', '', '', 'pinto beans', 'fava beans')
ingredientDic['baking powder'] = IngredientBook('baking powder', '', '', '', '', '')
ingredientDic['balsamic vinegar'] = IngredientBook('balsamic vinegar', '', '', '', 'honey-lime dressing', 'olive oil')
ingredientDic['bamboo shoots'] = IngredientBook('bamboo shoots', '', '', '', '', '')
ingredientDic['banana'] = IngredientBook('banana', '', '', '', 'manzanos', 'peaches')
ingredientDic['barbecue sauce'] = IngredientBook('barbecue sauce', 'organic barbecue sauce', '', '', 'spicy salsa', 'tzatziki sauce')
ingredientDic['barley'] = IngredientBook('barley', '', '', '', '', '')
ingredientDic['basil'] = IngredientBook('basic', '', '', '', 'cinnamon basil', '')
ingredientDic['bay leaf'] = IngredientBook('bay leaf', '', '', '', '', 'vine leaf')
ingredientDic['bean'] = IngredientBook('bean', '', '', '', 'pinto beans', 'fava beans')
ingredientDic['beansprouts'] = IngredientBook('beansprouts', '', '', '', '', '')
ingredientDic['bechamel sauce'] = IngredientBook('bechamel sauce', 'cauliflower sauce', '', 'cauliflower sauce', 'salsa', 'flour and olive oil')
ingredientDic['beef'] = IngredientBook('beef', 'turkey', 'tempeh', 'tempeh', 'ground beef', 'lamb')
ingredientDic['beef broth'] = IngredientBook('beef broth', '', 'vegetable broth', 'vegetable broth', '', '')
ingredientDic['beef consomme'] = IngredientBook('beef consomme', '', 'vegetable consomme', 'vegetable consomme', '', '')
ingredientDic['beef ribs'] = IngredientBook('beef ribs', 'turkey', 'jackfruit', 'jackfruit', '', 'lamb ribs')
ingredientDic['beef sausage'] = IngredientBook('beef sausage', 'turkey sausage', 'tempeh', 'tempeh', 'chorizo', 'loukaniko')
ingredientDic['beef stock'] = IngredientBook('beef stock', 'vegetable stock', 'vegetable stock', 'vegetable stock', '', 'lamb stock')
ingredientDic['beer'] = IngredientBook('beer', '', '', '', '', '')
ingredientDic['beetroot'] = IngredientBook('beetroot', '', '', '', 'jicama', 'turnips')
ingredientDic['beets'] = IngredientBook('beets', '', '', '', 'jicama', 'turnips')
ingredientDic['berries'] = IngredientBook('berries', '', '', '', 'blueberries', 'blackberries')
ingredientDic['birds-eye chilis'] = IngredientBook('birds-eye chilis', '', '', '', 'jalapenos', 'friggitello')
ingredientDic['black beans'] = IngredientBook('black beans', '', '', '', '', 'fava beans')
ingredientDic['biscotti'] = IngredientBook('biscotti', 'belVita biscuits', 'belVita biscuits', 'belVita biscuits', 'bizcochitos', 'kourabiedes')
ingredientDic['biscuit'] = IngredientBook('biscuit', 'cauliflower bread', 'cauliflower bread', 'cauliflower bread', 'pan de muerto', '')
ingredientDic['bream'] = IngredientBook('bream', '', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['black pepper'] = IngredientBook('black pepper', '', '', '', 'chili pepper', '')
ingredientDic['black sesame seeds'] = IngredientBook('black sesame seeds', '', '', '', 'chili powder', '')
ingredientDic['blackberry'] = IngredientBook('blackberry', '', '', '', 'blueberry', '')
ingredientDic['blackcurrant'] = IngredientBook('blackcurrant', '', '', '', 'blueberry', 'raspberry')
ingredientDic['blueberry'] = IngredientBook('blueberry', '', '', '', '', 'raspberry')
ingredientDic['boar'] = IngredientBook('boar', 'lamb', 'jackfruit', 'jackfruit', 'pork', 'lamb')
ingredientDic['chicken bouillion'] = IngredientBook('chicken bouillion', 'low-sodium chicken bouillion', 'mushroom bouillion', 'mushroom bouillion', '', '')
ingredientDic['beef bouillion'] = IngredientBook('beef bouillion', 'low-sodium beef bouillion', 'mushroom bouillion', 'mushroom bouillion', '', '')
ingredientDic['bok choy'] = IngredientBook('bok choy', '', '', '', 'green cabbage', 'cabbage')
ingredientDic['bonito'] = IngredientBook('bonito', '', 'seitan', 'seitan', 'tilapia', 'cod')
ingredientDic['bouquet garni'] = IngredientBook('bouquet garni', '', '', '', '', 'cilantro')
ingredientDic['bran'] = IngredientBook('bran', '', '', '', '', '')
ingredientDic['brandy'] = IngredientBook('brandy', '', '', '', 'mexican brandy', 'metaxa')
ingredientDic['bratwurst'] = IngredientBook('bratwurst', 'turkey sausage', 'vegan sausage', 'vegan sausage', 'chorizo', 'loukaniko')
ingredientDic['brazil nut'] = IngredientBook('brazil nut', '', '', '', 'pinyon pine', 'walnut')
ingredientDic['bread'] = IngredientBook('bread', 'cauliflower bread', 'cauliflower bread', 'cauliflower bread', 'cornbread', 'olive bread')
ingredientDic['bread roll'] = IngredientBook('bread roll', 'cauliflower bread', 'cauliflower bread', 'cauliflower bread', 'cornbread', 'pita')
ingredientDic['breadcrumbs'] = IngredientBook('breadcrumbs', 'regular rolled oats', 'regular rolled oats', 'regular rolled oats', '', '')
ingredientDic['breadsticks'] = IngredientBook('breadsticks', 'cauliflower breadsticks', 'cauliflower breadsticks', 'cauliflower breadsticks', '', 'pita')
ingredientDic['brie cheese'] = IngredientBook('brie cheese', 'washed rind', '', 'baked almond feta', 'mexican baked brie', 'kasseri cheese')
ingredientDic['brill'] = IngredientBook('brill', '', 'seitan', 'seitan', 'tilapia', 'cod')
ingredientDic['brioche'] = IngredientBook('brioche', 'avocado brioche', 'avocado brioche', 'vegan avocado brioche', 'conchas', 'tsoureki')
ingredientDic['beef brisket'] = IngredientBook('beef brisket', '', 'seitan', 'seitan', 'carne asada', 'lamb breast')
ingredientDic['broccoli'] = IngredientBook('broccoli', '', '', '', '', '')
ingredientDic['broth'] = IngredientBook('broth', '', 'vegetable broth', 'vegetable broth', '', '')
ingredientDic['brown bread'] = IngredientBook('brown bread', '', '', '', '', 'olive bread')
ingredientDic['brown rice'] = IngredientBook('brown rice', '', '', '', '', '')
ingredientDic['shrimp'] = IngredientBook('shrimp', '', 'tofu', 'tofu', '', '')
ingredientDic['brown sugar'] = IngredientBook('brown sugar', '', '', '', '', '')
ingredientDic['brussels sprouts'] = IngredientBook('brussels sprouts', '', '', '', '', '')
ingredientDic['buckwheat'] = IngredientBook('buckwheat', '', '', '', '', '')
ingredientDic['bulgur wheat'] = IngredientBook('bulgur wheat', '', '', '', 'whole-wheat flour', '')
ingredientDic['bun'] = IngredientBook('bun', 'cauliflower bread', '', 'cauliflower bread', 'ojo de buey', 'olive bread')
ingredientDic['butter'] = IngredientBook('butter', 'coconut oil', '', 'coconut oil', '', 'olive oil')
ingredientDic['frosting'] = IngredientBook('frosting', 'peanut butter frosting', '', 'peanut butter frosting', '', '')
ingredientDic['buttermilk'] = IngredientBook('buttermilk', 'white vinegar', '', 'white vinegar', '', '')
ingredientDic['butternut squash'] = IngredientBook('butternut squash', '', '', '', 'chayote', '')
ingredientDic['cabbage'] = IngredientBook('cabbage', '', '', '', 'green cabbage', '')
ingredientDic['cilantro'] = IngredientBook('cilantro', '', '', '', '', '')
ingredientDic['calvados'] = IngredientBook('calvados', '', '', '', '', '')
ingredientDic['camembert cheese'] = IngredientBook('camembert cheese', 'washed rind', '', 'baked almond feta', 'mexican baked brie', 'kasseri cheese')
ingredientDic['cannellini beans'] = IngredientBook('cannellini beans', '', '', '', 'pinto beans', 'fava beans')
ingredientDic['capers'] = IngredientBook('capers', '', '', '', '', '')
ingredientDic['caramel'] = IngredientBook('caramel', '', '', '', '', '')
ingredientDic['caraway'] = IngredientBook('caraway', '', '', '', 'cumin seed', '')
ingredientDic['caraway seeds'] = IngredientBook('caraway seeds', '', '', '', 'cumin', '')
ingredientDic['cardamom'] = IngredientBook('cardamom', '', '', '', 'cinnamon', 'cinnamon')
ingredientDic['carrot'] = IngredientBook('carrot', '', '', '', 'tomatoes', 'bell pepper')
ingredientDic['cashew'] = IngredientBook('cashew', '', '', '', 'pinyon pine', 'walnut')
ingredientDic['cassava'] = IngredientBook('cassava', '', '', '', '', '')
ingredientDic['catfish'] = IngredientBook('catfish', '', 'seitan', 'seitan', 'tilapia', 'cod')
ingredientDic['cauliflower'] = IngredientBook('cauliflower', '', '', '', '', 'zucchini')
ingredientDic['caviar'] = IngredientBook('caviar', '', 'vegan caviar', 'vegan caviar', '', '')
ingredientDic['cayenne pepper'] = IngredientBook('cayenne pepper', '', '', '', '', 'harissa')
ingredientDic['celery'] = IngredientBook('celery', '', '', '', '', 'cucumber')
ingredientDic['celery seeds'] = IngredientBook('celery seeds', '', '', '', '', '')
ingredientDic['celery salt'] = IngredientBook('celery salt', '', '', '', '', 'dill salt')
ingredientDic['champagne'] = IngredientBook('champagne', '', '', '', '', '')
ingredientDic['chard'] = IngredientBook('chard', '', '', '', '', 'spinach')
ingredientDic['chayote'] = IngredientBook('chayote', '', '', '', '', 'butternut squash')
ingredientDic['cheddar cheese'] = IngredientBook('cheddar cheese', 'gouda', '', 'almond cheese', 'queso panela', 'feta cheese')
ingredientDic['cherry'] = IngredientBook('cherry', '', '', '', '', '')
ingredientDic['cherry tomatoes'] = IngredientBook('cherry tomatoes', '', '', '', '', '')
ingredientDic['chestnut'] = IngredientBook('chestnut', '', '', '', 'pinyon pine', 'greek')
ingredientDic['chicken'] = IngredientBook('chicken', '', 'eggplant', 'eggplant', '', '')
ingredientDic['chicken breast'] = IngredientBook('chicken breast', '', 'eggplant', 'eggplant', '', '')
ingredientDic['chicken leg'] = IngredientBook('chicken leg', '', 'eggplant', 'eggplant', '', '')
ingredientDic['chicken liver'] = IngredientBook('chicken liver', '', 'eggplant', 'eggplant', '', '')
ingredientDic['chicken soup'] = IngredientBook('chicken soup', '', 'vegetable soup', 'vegetable soup', '', 'lemon chicken soup')
ingredientDic['chicken stock'] = IngredientBook('chicken stock', '', 'vegetable stock', 'vegetable stock', '', '')
ingredientDic['chicken thigh'] = IngredientBook('chicken thigh', '', 'eggplant', 'eggplant', '', 'lamb thigh')
ingredientDic['chicken wing'] = IngredientBook('chicken wing', '', 'seitan', 'seitan', '', '')
ingredientDic['chickpea'] = IngredientBook('chickpea', '', '', '', 'pinto beans', '')
ingredientDic['chili'] = IngredientBook('chili', 'vegetarian chili', 'vegetarian chili', 'vegan chili', '', 'cincinnati chili')
ingredientDic['chili con carne'] = IngredientBook('chili con carne', '', 'vegetarian chili', 'vegan chili', '', 'cincinnati chili')
ingredientDic['chili oil'] = IngredientBook('chili oil', '', '', '', '', 'spicy olive oil')
ingredientDic['chili paste'] = IngredientBook('chili paste', '', 'vegetarian chili paste', 'vegetarian chili paste', '', 'chili garlic paste')
ingredientDic['chili powder'] = IngredientBook('chili powder', '', '', '', '', 'garlic powder')
ingredientDic['chili sauce'] = IngredientBook('chili sauce', '', '', '', '', 'hot sauce')
ingredientDic['jalapeno'] = IngredientBook('jalapeno', '', '', '', '', 'friggitello')
ingredientDic['chips'] = IngredientBook('chips', 'sweet potato chips', 'veggie chips', 'veggie chips', '', '')
ingredientDic['chives'] = IngredientBook('chives', '', '', '', '', '')
ingredientDic['chocolate'] = IngredientBook('chocolate', 'dark chocolate', 'dark chocolate', 'dark chocolate', '', '')
ingredientDic['chorizo'] = IngredientBook('chorizo', 'turkey sausage', 'jackfruit', 'jackfruit', '', 'loukaniko')
ingredientDic['chutney'] = IngredientBook('chutney', '', '', '', 'salsa', 'tzatziki')
ingredientDic['ciabatta'] = IngredientBook('ciabatta', 'cauliflower bread', '', 'cauliflower bread', 'bread', 'pita')
ingredientDic['cider'] = IngredientBook('cider', '', '', '', '', '')
ingredientDic['cinnamon'] = IngredientBook('cinnamon', '', '', '', '', '')
ingredientDic['citrus'] = IngredientBook('citrus', '', '', '', '', '')
ingredientDic['citrus fruit'] = IngredientBook('citrus fruit', '', '', '', '', '')
ingredientDic['clams'] = IngredientBook('clams', '', 'seitan bits', 'seitan bits', 'shrimp', '')
ingredientDic['clementine'] = IngredientBook('clementine', '', '', '', 'lime', '')
ingredientDic['cocoa'] = IngredientBook('cocoa', '', '', '', '', '')
ingredientDic['coconut'] = IngredientBook('coconut', '', '', '', '', '')
ingredientDic['coconut cream'] = IngredientBook('coconut cream', '', '', '', '', '')
ingredientDic['heavy whipping cream'] = IngredientBook('heavy whipping cream', 'fat-free half and half', 'coconut cream', 'coconut cream', '', '')
ingredientDic['whipping cream'] = IngredientBook('whipping cream', 'fat-free half and half', 'coconut cream', 'coconut cream', '', '')
ingredientDic['coconut flour'] = IngredientBook('coconut flour', '', '', '', '', '')
ingredientDic['coconut milk'] = IngredientBook('coconut milk', '', '', '', '', '')
ingredientDic['coconut oil'] = IngredientBook('coconut oil', '', '', '', '', '')
ingredientDic['cod'] = IngredientBook('cod', '', 'tempeh', 'tempeh', 'tilapia', '')
ingredientDic['cod roe'] = IngredientBook('cod roe', '', 'tofu', 'tofu', 'tilapia', 'cod')
ingredientDic['coffee'] = IngredientBook('coffee', '', '', '', 'mexican coffee', 'turkish coffee')
ingredientDic['cognac'] = IngredientBook('cognac', '', '', '', '', '')
ingredientDic['coleslaw'] = IngredientBook('coleslaw', '', '', '', 'mexican coleslaw', 'greek yogurt coleslaw')
ingredientDic['comte cheese'] = IngredientBook('comte cheese', 'washed rind', '', 'vegan cheese', 'queso panela', 'kasseri cheese')
ingredientDic['condensed milk'] = IngredientBook('condensed milk', 'condensed coconut milk', 'condensed coconut milk', 'condensed coconut milk', '', '')
ingredientDic['coriander'] = IngredientBook('coriander', '', '', '', '', '')
ingredientDic['coriander seeds'] = IngredientBook('coriander seeds', '', '', '', '', '')
ingredientDic['corn syrup'] = IngredientBook('corn syrup', '', '', '', '', '')
ingredientDic['corned beef'] = IngredientBook('corned beef', 'turkey corned beef', 'tempeh', 'tempeh', '', 'pastrami')
ingredientDic['cottage cheese'] = IngredientBook('cottage cheese', 'ricotta cheese', '', 'almond cheese', 'cotija cheese', 'feta cheese')
ingredientDic['couscous'] = IngredientBook('couscous', '', '', '', '', '')
ingredientDic['crab'] = IngredientBook('crab', '', 'tofu', 'tofu', 'shrimp', 'octopus')
ingredientDic['crackers'] = IngredientBook('crackers', 'rye crackers', '', 'vegan crackers', '', '')
ingredientDic['cranberry'] = IngredientBook('cranberry', '', '', '', 'blueberry', 'raspberry')
ingredientDic['cranberry juice'] = IngredientBook('cranberry juice', '', '', '', 'agua fresca', '')
ingredientDic['zucchini'] = IngredientBook('zucchini', '', '', '', '', '')
ingredientDic['cranberry sauce'] = IngredientBook('cranberry sauce', '', '', '', 'chili cranberry sauce', 'juniper berry sauce')
ingredientDic['crayfish'] = IngredientBook('crayfish', '', 'seitan', 'seitan', 'shrimp', 'shrimp')
ingredientDic['cream'] = IngredientBook('cream', 'silken tofu and soy milk', 'cream', 'silken tofu and soy milk', 'cream', 'greek yogurt')
ingredientDic['cream cheese'] = IngredientBook('cream cheese', 'greek yogurt and ricotta cheese', '', 'silken tofu and soy milk', '', 'greek yogurt and ricotta cheese')
ingredientDic['creme fraiche'] = IngredientBook('creme fraiche', 'low-fat creme fraiche', 'creme fraiche', 'silken tofu and soy milk', 'sour cream', 'tzatziki sauce')
ingredientDic['croutons'] = IngredientBook('croutons', 'almond slivers', 'croutons', 'croutons', 'tortilla croutons', 'garlic croutons')
ingredientDic['cucumber'] = IngredientBook('cucumber', '', '', '', 'mexican sour gherkin', '')
ingredientDic['cumin'] = IngredientBook('cumin', '', '', '', 'cumin', 'garlic powder')
ingredientDic['curry'] = IngredientBook('curry', '', '', '', 'chili powder', 'garlic powder')
ingredientDic['curry paste'] = IngredientBook('curry paste', '', '', '', 'chili paste', 'tzatziki sauce')
ingredientDic['curry powder'] = IngredientBook('curry powder', '', '', '', 'chili powder', 'garlic powder')
ingredientDic['daikon'] = IngredientBook('daikon', '', '', '', 'radish', 'radish')
ingredientDic['dark chocolate'] = IngredientBook("'dark chocolate'", '', '', '', '', '')
ingredientDic['date'] = IngredientBook('date', '', '', '', '', '')
ingredientDic['dijon mustard'] = IngredientBook('dijon mustard', 'organic dijon mustard', 'dijon mustard', 'vegan mustard', 'tomatillo sauce', 'thessaloniki sauce')
ingredientDic['dill'] = IngredientBook('dill', '', '', '', 'cilantro', '')
ingredientDic['dried apricot'] = IngredientBook('dried apricot', '', '', '', 'dried lolu', 'dried apricot')
ingredientDic['dried cherries'] = IngredientBook('dried cherries', '', '', '', 'dried capulin cherries', 'dried cherries')
ingredientDic['dried chili'] = IngredientBook('dried chili', '', '', '', 'dried chili', 'dried friggitello')
ingredientDic['duck'] = IngredientBook('duck', 'turkey', 'seitan', 'seitan', 'duck', 'duck')
ingredientDic['duck fat'] = IngredientBook('duck fat', 'olive oil', 'olive oil', 'olive oil', 'lard', 'pork lard')
ingredientDic['edam cheese'] = IngredientBook('edam cheese', 'parmesean', 'edam cheese', 'cashew cheese', 'oaxaca cheese', 'feta cheese')
ingredientDic['eel'] = IngredientBook('eel', 'eel', 'eggplant', 'eggplant', 'lobster', 'lobster')
ingredientDic['egg'] = IngredientBook('egg', 'egg white', '', 'avocado', '', '')
ingredientDic['egg white'] = IngredientBook('egg white', '', '', 'vegan egg white', '', '')
ingredientDic['egg yolk'] = IngredientBook('egg yolk', 'egg white', '', 'avocado', '', '')
ingredientDic['emmental cheese'] = IngredientBook('emmental cheese', 'parmesean cheese', '', 'cashew cheese', 'oaxaca cheese', 'feta cheese')
ingredientDic['english muffin'] = IngredientBook('english muffin', 'whole wheat english muffin', 'english muffin', 'vegan english muffin', 'arepa', 'pita')
ingredientDic['falafel'] = IngredientBook('falafel', '', '', '', 'mexican falafel', 'greek falafel')
ingredientDic['farfalle'] = IngredientBook('farfalle', 'whole wheat farfalle', '', '', 'rice', 'hilopites')
ingredientDic['fennel'] = IngredientBook('fennel', '', '', '', '', '')
ingredientDic['fennel seeds'] = IngredientBook('fennel seeds', '', '', '', '', 'poppy seeds')
ingredientDic['feta cheese'] = IngredientBook('feta cheese', '', '', 'cashew cheese', 'cojita cheese', '')
ingredientDic['fettuccine'] = IngredientBook('fettuccine', 'whole wheat fettuccine', '', 'spaghetti squash', 'rice', 'bucatini pasta')
ingredientDic['fig'] = IngredientBook('fig', '', '', '', '', '')
ingredientDic['fish'] = IngredientBook('fish', '', 'seitan', 'seitan', 'tilapia', 'cod')
ingredientDic['fish sauce'] = IngredientBook('fish sauce', '', 'vegetable sauce', 'vegetable sauce', '', '')
ingredientDic['five-spice powder'] = IngredientBook('five-spice powder', '', '', '', 'chili powder', 'garlic powder')
ingredientDic['beef flank'] = IngredientBook('beef flank', '', 'tempeh', 'tempeh', 'carne asada', 'gyro')
ingredientDic['flank steak'] = IngredientBook('beef flank', '', 'tempeh', 'tempeh', 'carne asada', 'gyro')
ingredientDic['flatbread'] = IngredientBook('flatbread', '', '', '', 'corn tortilla', 'pita')
ingredientDic['foie gras'] = IngredientBook('foie gras', '', 'tofu', 'tofu', 'fish roe', 'fish roe')
ingredientDic['fontina cheese'] = IngredientBook('fontina cheese', '', '', 'almond cheese', 'queso panela', 'kasseri cheese')
ingredientDic['food coloring'] = IngredientBook('food coloring', 'organic food coloring', '', '', '', '')
ingredientDic['fortified wine'] = IngredientBook('fortified wine', '', '', '', '', '')
ingredientDic['fudge'] = IngredientBook('fudge', 'date fudge', '', 'date fudge', '', '')
ingredientDic['fusilli'] = IngredientBook('fusilli', 'whole wheat pasta', '', 'vegan pasta', 'rice', 'hilopites')
ingredientDic['seashell pasta'] = IngredientBook('seashell pasta', 'whole wheat pasta', '', '', '', 'pasta')
ingredientDic['garam masala'] = IngredientBook('garam masala', '', '', '', 'cumin', 'garlic powder')
ingredientDic['garlic'] = IngredientBook('garlic', '', '', '', 'chileno garlic', '')
ingredientDic['ghee'] = IngredientBook('ghee', 'coconut oil', '', 'coconut oil', 'butter', 'olive oil')
ingredientDic['gherkin'] = IngredientBook('gherkin', '', '', '', '', '')
ingredientDic['pickled cucumber'] = IngredientBook('pickled cucumber', '', '', '', '', '')
ingredientDic['ginger'] = IngredientBook('ginger', '', '', '', 'lime', 'mint')
ingredientDic['gnocchi'] = IngredientBook('gnocchi', 'whole wheat pasta', '', 'vegan pasta', 'rice', 'hilopites')
ingredientDic['goat cheese'] = IngredientBook('goat cheese', '', '', 'herb vegan goat cheese', 'cotija cheese', '')
ingredientDic['goose'] = IngredientBook('goose', 'turkey', 'tempeh', 'tempeh', 'chicken', 'lamb')
ingredientDic['gorgonzola cheese'] = IngredientBook('gorgonzola cheese', '', '', 'vegan goat cheese', 'cotija cheese', 'feta cheese')
ingredientDic['gouda cheese'] = IngredientBook('gouda cheese', '', '', 'vegan almond cheddar cheese', 'anejo cheese', 'kasseri cheese')
ingredientDic['grapefruit'] = IngredientBook('grapefruit', '', '', '', 'mango', 'apricot')
ingredientDic['grapefruit juice'] = IngredientBook('grapefruit juice', '', '', '', 'mango juice', 'lemon juice')
ingredientDic['grapes'] = IngredientBook('grapes', '', '', '', 'lulo', '')
ingredientDic['grapeseed oil'] = IngredientBook('grapeseed oil', '', '', '', 'canola oil', 'olive oil')
ingredientDic['gravy'] = IngredientBook('gravy', 'seasoned yogurt', 'vegetarian gravy', 'vegetarian gravy', 'chili gravy', 'tzatziki')
ingredientDic['green bean'] = IngredientBook('green bean', '', '', '', 'black bean', 'fava bean')
ingredientDic['ground beef'] = IngredientBook('ground beef', 'ground turkey', 'tempeh', 'tempeh', '', 'ground lamb')
ingredientDic['ground lamb'] = IngredientBook('ground lamb', 'ground turkey', 'tempeh', 'tempeh', 'ground beef', '')
ingredientDic['ground turkey'] = IngredientBook('ground turkey', '', 'tempeh', 'tempeh', 'ground beef', 'ground lamb')
ingredientDic['gruyere cheese'] = IngredientBook('gruyere cheese', 'washed rind', '', 'vegan cheese', 'queso panela', 'kasseri cheese')
ingredientDic['guacamole'] = IngredientBook('guacamole', '', '', '', '', 'skordalia')
ingredientDic['habanero chilis'] = IngredientBook('habanero chilis', '', '', '', '', 'friggitello')
ingredientDic['halibut'] = IngredientBook('halibut', '', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['ham'] = IngredientBook('ham', 'turkey', 'jackfruit', 'jackfruit', 'carne asada', 'lamb')
ingredientDic['hare'] = IngredientBook('hare', 'chicken', 'jackfruit', 'jackfruit', 'chicken', 'chicken')
ingredientDic['haricot bean'] = IngredientBook('haricot bean', '', '', '', 'pinto bean', 'fava bean')
ingredientDic['harissa'] = IngredientBook('harissa', '', '', '', 'chili paste', 'skordalia')
ingredientDic['hazelnut'] = IngredientBook('hazelnut', '', '', '', 'pinyon pine', 'almond')
ingredientDic['herbes de provence'] = IngredientBook('herbes de provence', '', '', '', 'cilantro', 'oregano')
ingredientDic['herring'] = IngredientBook('herring', '', 'seitan', 'seitan', 'tilapia', 'cod')
ingredientDic['honey'] = IngredientBook('honey', '', '', 'agave nectar', 'agave nectar', '')
ingredientDic['horseradish'] = IngredientBook('horseradish', '', '', '', 'jicama', 'turnip')
ingredientDic['hummus'] = IngredientBook('hummus', '', '', '', 'guacamole', '')
ingredientDic['icing'] = IngredientBook('icing', 'peanut butter frosting', '', 'vegan buttercream frosting', '', '')
ingredientDic['jam'] = IngredientBook('jam', 'fruit compote', '', '', 'cactus fruit jam', 'apricot jam')
ingredientDic['jelly'] = IngredientBook('jelly', 'fruit compote', '', '', 'cactus fruit jam', 'apricot jam')
ingredientDic['jerk seasoning'] = IngredientBook('jerk seasoning', '', '', '', 'chili powder', 'garlic powder')
ingredientDic['kale'] = IngredientBook('kale', '', '', '', 'romaine lettuce', 'romaine lettuce')
ingredientDic['ketchup'] = IngredientBook('ketchup', 'organic ketchup', '', '', 'salsa', 'tzatziki')
ingredientDic['lamb'] = IngredientBook('lamb', 'turkey', 'tempeh', 'jackfruit', 'carne asada', '')
ingredientDic['lamb breast'] = IngredientBook('lamb breast', 'turkey breast', 'tempeh', 'jackfruit', 'carne asada', 'tzatziki')
ingredientDic['lamb chop'] = IngredientBook('lamb chop', 'turkey breast chop', 'jackfruit', 'jackfruit', 'pork chops', '')
ingredientDic['lamb fillet'] = IngredientBook('lamb fillet', 'turkey breast', 'tempeh', 'tempeh', 'carne asada', '')
ingredientDic['lamb loin'] = IngredientBook('lamb loin', 'turkey breast', 'jackfruit', 'tofu', 'carne asada', '')
ingredientDic['lamb shank'] = IngredientBook('lamb shank', 'turkey', 'jackfruit', 'tofu', 'carne asada', '')
ingredientDic['lamb shoulder'] = IngredientBook('lamb shoulder', 'turkey', 'jackfruit', 'tofu', 'carne asada', '')
ingredientDic['lamb stock'] = IngredientBook('lamb stock', 'turkey', 'vegetable stock', 'vegetable stock', '', '')
ingredientDic['lard'] = IngredientBook('lard', 'olive oil', 'vegetable shortening ', 'vegetable shortening ', '', 'olive oil')
ingredientDic['lasagne'] = IngredientBook('lasagne', 'brown rice', '', 'vegan pasta', 'rice', 'hilopites')
ingredientDic['tripe'] = IngredientBook('lasagne', '', 'seitan', 'tofu', '', 'shawarma')
ingredientDic['lasagne sheets'] = IngredientBook('lasagne sheets', 'brown rice', '', 'vegan pasta', 'rice', 'hilopites')
ingredientDic['leek'] = IngredientBook('leek', '', '', '', 'chives', 'onion')
ingredientDic['lamb leg'] = IngredientBook('lamb leg', 'chicken', 'jackfruit', 'jackfruit', 'carne asada', '')
ingredientDic['leg of lamb'] = IngredientBook('leg of lamb', 'chicken', 'jackfruit', 'jackfruit', 'carne asada', '')
ingredientDic['lemon'] = IngredientBook('lemon', '', '', '', 'lime', '')
ingredientDic['lemon curd'] = IngredientBook('lemon curd', '', '', 'vegan lemon curd', 'lime curd', '')
ingredientDic['lemon juice'] = IngredientBook('lemon juice', '', '', '', 'lime juice', '')
ingredientDic['lemongrass'] = IngredientBook('lemongrass', '', '', '', 'cilantro', 'cilantro')
ingredientDic['lentils'] = IngredientBook('lentils', '', '', '', 'red lentils', '')
ingredientDic['lettuce'] = IngredientBook('lettuce', '', '', '', 'romaine lettuce', 'romaine lettuce')
ingredientDic['lime'] = IngredientBook('lime', '', '', '', '', 'lemon')
ingredientDic['lime juice'] = IngredientBook('lime juice', '', '', '', '', 'lemon juice')
ingredientDic['linguine'] = IngredientBook('linguine', 'brown rice', '', 'vegan pasta', 'rice', 'hilopites')
ingredientDic['liver'] = IngredientBook('liver', '', 'jackfruit', 'jackfruit', 'beef liver', 'goat liver')
ingredientDic['lobster'] = IngredientBook('lobster', '', 'seitan', 'tofu', 'shrimp', 'octopus')
ingredientDic['low-calorie sweeteners'] = IngredientBook('low-calorie sweeteners', '', '', '', 'sugar', 'sugar')
ingredientDic['macaroni'] = IngredientBook('macaroni', 'brown rice', '', 'vegan pasta', 'rice', 'hilopites')
ingredientDic['mackerel'] = IngredientBook('mackerel', '', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['manchego cheese'] = IngredientBook('manchego cheese', 'gouda', '', 'vegan almond cheese', 'queso blanco', 'feta cheese')
ingredientDic['mandarin'] = IngredientBook('mandarin', '', '', '', 'lulo', 'clementine')
ingredientDic['mango'] = IngredientBook('mango', '', '', '', '', 'apricot')
ingredientDic['mango chutney'] = IngredientBook('mango chutney', '', '', '', '', 'apricot chutney')
ingredientDic['maple syrup'] = IngredientBook('maple syrup', '', '', '', 'agave nectar', 'honey')
ingredientDic['margarine'] = IngredientBook('margarine', 'olive oil', '', 'vegan margarine', 'butter', 'olive oil')
ingredientDic['marmalade'] = IngredientBook('marmalade', 'honey', '', '', 'mango jam', 'apricot jam')
ingredientDic['mascarpone cheese'] = IngredientBook('mascarpone cheese', 'burrata', '', '', 'ricotta cheese', 'kasseri cheese')
ingredientDic['mashed potato'] = IngredientBook('mashed potato', 'mashed cauliflower', '', 'vegan mashed potato', '', '')
ingredientDic['matzo'] = IngredientBook('matzo', '', '', '', 'tortilla', 'pita')
ingredientDic['mayonnaise'] = IngredientBook('mayonnaise', 'greek yogurt', '', 'vegan mayonnaise', 'chipotle mayo', 'tzatziki')
ingredientDic['meat'] = IngredientBook('meat', '', 'jackfruit', 'jackfruit', 'carne asada', 'lamb')
ingredientDic['milk'] = IngredientBook('milk', 'soy milk', 'soy milk', 'soy milk', 'horchata', '')
ingredientDic['milk chocolate'] = IngredientBook('milk chocolate', 'dark chocolate', '', 'dark chocolate', '', '')
ingredientDic['mint'] = IngredientBook('mint', '', '', '', 'cilantro', '')
ingredientDic['mirin'] = IngredientBook('mirin', '', '', '', 'lime juice', 'lemon juice')
ingredientDic['miso'] = IngredientBook('miso', '', '', '', 'black beans', 'tahini')
ingredientDic['molasses'] = IngredientBook('molasses', 'maple syrup', '', '', 'agave nectar', 'honey')
ingredientDic['mozzarella cheese'] = IngredientBook('mozzarella cheese', 'burrata', '', 'vegan mozzarella', 'ricotta cheese', 'feta cheese')
ingredientDic['muesli'] = IngredientBook('muesli', '', '', '', 'oats', '')
ingredientDic['mushroom'] = IngredientBook('mushroom', '', '', '', '', '')
ingredientDic['mussel'] = IngredientBook('mussel', '', 'mushroom', 'mushroom', 'shrimp', '')
ingredientDic['mustard'] = IngredientBook('mustard', 'organic mustard', '', '', 'chili paste', 'spicy feta dip')
ingredientDic['mustard seeds'] = IngredientBook('mustard seeds', '', '', '', '', '')
ingredientDic['mutton'] = IngredientBook('mutton', 'turkey', 'tempeh', 'tempeh', '', '')
ingredientDic['naan bread'] = IngredientBook('naan bread', '', '', 'vegan naan bread', 'corn tortilla', 'pita')
ingredientDic['nectarine'] = IngredientBook('nectarine', '', '', '', 'mango', '')
ingredientDic['noodles'] = IngredientBook('noodles', 'brown rice noodles', '', 'vegan noodles', 'rice', 'flomaria')
ingredientDic['nori'] = IngredientBook('nori', '', '', '', 'thinly sliced cucumber', 'thinly sliced cucumber')
ingredientDic['nougat'] = IngredientBook('nougat', '', '', '', '', '')
ingredientDic['nut'] = IngredientBook('nut', '', '', '', 'pinyon pine', 'almond')
ingredientDic['nutmeg'] = IngredientBook('nutmeg', '', '', '', 'cinnamon', 'cinnamon')
ingredientDic['oatmeal'] = IngredientBook('oatmeal', '', '', '', 'avena', '')
ingredientDic['oats'] = IngredientBook('oats', '', '', '', '', '')
ingredientDic['octopus'] = IngredientBook('octopus', '', 'seitan', 'seitan', 'shrimp', '')
ingredientDic['oil'] = IngredientBook('oil', 'olive oil', 'olive oil', 'olive oil', 'vegetable oil', 'olive oil')
ingredientDic['okra'] = IngredientBook('okra', '', '', '', 'green beans', '')
ingredientDic['olive'] = IngredientBook('olive', '', '', '', 'corn', 'kalamata olive')
ingredientDic['olive oil'] = IngredientBook('olive oil', '', '', '', 'corn oil', '')
ingredientDic['onion'] = IngredientBook('onion', '', '', '', '', '')
ingredientDic['orange'] = IngredientBook('orange', '', '', '', 'lulo', 'clementine')
ingredientDic['orange juice'] = IngredientBook('orange juice', 'organic orange juice', '', '', 'papaya juice', '')
ingredientDic['oregano'] = IngredientBook('oregano', '', '', '', 'mexican oregano', '')
ingredientDic['beef oxtail'] = IngredientBook('beef oxtail', '', 'jackfruit', 'jackfruit', 'carne asada', 'lamb')
ingredientDic['oyster'] = IngredientBook('oyster', '', 'mushroom', 'mushroom', 'shrimp', '')
ingredientDic['oyster mushroom'] = IngredientBook('oyster mushroom', '', '', '', 'onion', 'kalamata olives')
ingredientDic['oyster sauce'] = IngredientBook('oyster sauce', '', 'soy sauce', 'soy sauce', '', '')
ingredientDic['pak choi'] = IngredientBook('pak choi', '', '', '', 'green cabbage', 'cabbage')
ingredientDic['palm oil'] = IngredientBook('palm oil', '', '', '', 'corn oil', 'olive oil')
ingredientDic['palm sugar'] = IngredientBook('palm sugar', 'brown sugar', '', '', 'agave nectar', 'sugar')
ingredientDic['pancake mix'] = IngredientBook('pancake mix', 'oatmeal pancake mix', 'oatmeal pancake mix', 'oatmeal pancake mix', '', '')
ingredientDic['pancetta'] = IngredientBook('pancetta', '', 'eggplant', 'eggplant', 'cecina', 'pastrami')
ingredientDic['paneer’'] = IngredientBook('paneer’', 'pecorino', '', 'almond cheese', 'queso blanco', 'feta cheese')
ingredientDic['papaya'] = IngredientBook('papaya', '', '', '', '', 'peach')
ingredientDic['pappardelle'] = IngredientBook('pappardelle', 'whole-grain pasta', '', 'vegan pasta', 'rice', 'flomaria')
ingredientDic['paprika'] = IngredientBook('paprika', '', '', '', '', 'garlic powder')
ingredientDic['parmesan cheese'] = IngredientBook('parmesan cheese', 'pecorino cheese', '', 'vegan parmesan cheese', 'cotija cheese', 'feta cheese')
ingredientDic['parsley'] = IngredientBook('parsley', '', '', '', 'cilantro', 'cilantro')
ingredientDic['parsnip'] = IngredientBook('parsnip', '', '', '', 'jicama', 'turnip')
ingredientDic['passion fruit'] = IngredientBook('passion fruit', '', '', '', '', 'apricot')
ingredientDic['passion fruit juice'] = IngredientBook('passion fruit juice', '', '', '', '', 'apricot juice')
ingredientDic['pasta'] = IngredientBook('pasta', 'whole-grain pasta', '', 'vegan pasta', 'rice', 'flomaria')
ingredientDic['pastrami'] = IngredientBook('pastrami', '', 'tempeh', 'tempeh', 'cecina', 'pastrami')
ingredientDic['pea shoots'] = IngredientBook('pea shoots', '', '', '', 'cilantro', 'cilantro')
ingredientDic['peach'] = IngredientBook('peach', '', '', '', 'mago', '')
ingredientDic['peanut butter'] = IngredientBook('peanut butter', '', '', '', 'marzapan', 'tahini')
ingredientDic['peanut oil'] = IngredientBook('peanut oil', '', '', '', 'corn oil', 'olive oil')
ingredientDic['peanut'] = IngredientBook('peanut', '', '', '', 'pinyon pine', 'almond')
ingredientDic['pear'] = IngredientBook('pear', '', '', '', 'tuna fruit', 'nectarine')
ingredientDic['pea'] = IngredientBook('pea', '', '', '', 'black beans', 'green beans')
ingredientDic['pecan nut'] = IngredientBook('pecan nut', '', '', '', 'pinus cembroides', 'almond')
ingredientDic['pecorino cheese'] = IngredientBook('pecorino cheese', '', '', 'vegan parmesan cheese', 'cotija cheese', 'feta cheese')
ingredientDic['penne'] = IngredientBook('penne', 'whole-grain penne', '', 'vegan pasta', 'rice', 'flomaria')
ingredientDic['pepper'] = IngredientBook('pepper', '', '', '', 'chili powder', '')
ingredientDic['peppercorn'] = IngredientBook('peppercorn', '', '', '', 'chili powder', 'garlic powder')
ingredientDic['pepperoni'] = IngredientBook('pepperoni', '', 'tempeh', 'tempeh', 'cecina', 'pastrami')
ingredientDic['perch'] = IngredientBook('perch', '', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['pesto'] = IngredientBook('pesto', 'kale pesto', '', 'vegan pesto', 'guacamole', 'tzatziki')
ingredientDic['pheasant'] = IngredientBook('pheasant', 'turkey', 'seitan', 'seitan', 'chicken', 'chicken')
ingredientDic['piccalilli'] = IngredientBook('piccalilli', 'cucumber', '', '', 'melothria scabra', 'cucumber')
ingredientDic['pickle'] = IngredientBook('pickle', '', '', '', 'melothria scabra', 'cucumber')
ingredientDic['pickled onion'] = IngredientBook('pickled onion', '', '', '', 'red onion', 'onion')
ingredientDic['pig cheeks'] = IngredientBook('pig cheeks', 'turkey', 'tempeh', 'tempeh', 'pork', 'lamb')
ingredientDic['pigeon'] = IngredientBook('pigeon', 'turkey', 'seitan', 'seitan', 'chicken', 'chicken')
ingredientDic['pigeon peas'] = IngredientBook('pigeon peas', '', '', '', 'pinto beans', 'green beans')
ingredientDic['pine nut'] = IngredientBook('pine nut', '', '', '', 'pinyon pine', 'almond')
ingredientDic['pineapple'] = IngredientBook('pineapple', '', '', '', 'mango', 'peach')
ingredientDic['pineapple juice'] = IngredientBook('pineapple juice', '', '', '', 'papaya juice', 'apricot juice')
ingredientDic['pinto bean'] = IngredientBook('pinto bean', '', '', '', '', 'fava beans')
ingredientDic['piri-piri'] = IngredientBook('piri-piri', '', '', '', 'jalapeno', 'friggitello')
ingredientDic['pistachio'] = IngredientBook('pistachio', '', '', '', 'pinyon pine', '')
ingredientDic['pita bread'] = IngredientBook('pita bread', 'cauliflower bread', '', 'cauliflower bread', 'corn tortilla', '')
ingredientDic['plaice'] = IngredientBook('plaice','', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['plain flour'] = IngredientBook('plain flour', 'brown rice flour', '', '', '', '')
ingredientDic['plantain'] = IngredientBook('plantain', '', '', '', '', 'banana')
ingredientDic['plum'] = IngredientBook('plum', '', '', '', 'ciruela huesuda', 'apricot')
ingredientDic['pollock'] = IngredientBook('pollock', '', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['pomegranate'] = IngredientBook('pomegranate', '', '', '', 'mago', '')
ingredientDic['pomegranate juice'] = IngredientBook('pomegranate juice', '', '', '', 'papaya juice', 'apricot juice')
ingredientDic['poppy seeds'] = IngredientBook('poppy seeds', '', '', '', 'sesame seed', 'sesame seed')
ingredientDic['porcini'] = IngredientBook('porcini', '', '', '', 'mushroom', 'kalamata olive')
ingredientDic['pork'] = IngredientBook('pork', 'turkey', 'jackfruit', 'jackfruit', '', 'lamb')
ingredientDic['pork belly'] = IngredientBook('pork belly', 'turkey', 'tofu', 'tofu', '', 'lamb belly')
ingredientDic['pork chop'] = IngredientBook('pork chop', 'turkey chop', 'jackfruit', 'jackfruit', '', 'lamb chop')
ingredientDic['pork fillet'] = IngredientBook('pork fillet', 'chicken breast', 'jackfruit', 'jackfruit', '', 'lamb fillet')
ingredientDic['pork leg'] = IngredientBook('pork leg', 'turkey leg', 'jackfruit', 'jackfruit', '', 'lamb leg')
ingredientDic['pork loin'] = IngredientBook('pork loin', 'turkey tenderloin', 'jackfruit', 'jackfruit', '', 'lamb loin')
ingredientDic['pork mince'] = IngredientBook('pork mince','turkey mince', 'jackfruit', 'jackfruit', 'ground beef', 'lamb mince')
ingredientDic['pork sausages'] = IngredientBook('pork sausages', 'turkey sausage', 'tempeh', 'tempeh', 'chorizo', 'loukaniko')
ingredientDic['pork shoulder'] = IngredientBook('pork shoulder', 'roast turkey', 'tempeh', 'jackfruit', '', 'lamb shoulder')
ingredientDic['pork spare rib'] = IngredientBook('pork spare rib','lamb rib', 'tempeh', 'jackfruit', '', 'lamb rib')
ingredientDic['portobello mushrooms'] = IngredientBook('portobello mushrooms', '', '', '', 'mushroom', 'kalamata olive')
ingredientDic['potato'] = IngredientBook('potato', '', '', '', '', '')
ingredientDic['potato wedges'] = IngredientBook('potato wedges', '', '', '', '', '')
ingredientDic['poultry'] = IngredientBook('poultry', 'turkey', 'seitan', 'seitan', 'chicken', 'lamb')
ingredientDic['praline'] = IngredientBook('praline', '', '', 'vegan praline', 'pecan praline', '')
ingredientDic['prawn'] = IngredientBook('prawn', '', 'seitan', 'seitan', 'shrimp', 'octapus')
ingredientDic['prawn crackers'] = IngredientBook('prawn crackers', '', 'vegan crackers', 'vegan crackers', 'chili prawn crackers', '')
ingredientDic['preserves'] = IngredientBook('preserves', '', '', '', 'mango jam', 'apricot jam')
ingredientDic['prosciutto'] = IngredientBook('prosciutto', '', 'tempeh', 'tempeh', 'cecina', 'pastrami')
ingredientDic['prune'] = IngredientBook('prune', '', '', '', 'saladitos', '')
ingredientDic['prune juice'] = IngredientBook('prune juice', '', '', '', 'papaya juice', 'apricot juice')
ingredientDic['pulled pork'] = IngredientBook('pulled pork', 'pulled chicken', 'jackfruit', 'jackfruit', '', 'pulled lamb')
ingredientDic['pumpkin'] = IngredientBook('pumpkin', '', '', '', '', '')
ingredientDic['pumpkin seed'] = IngredientBook('pumpkin seed', '', '', '', 'walnut', 'almond')
ingredientDic['quail'] = IngredientBook('quail', '', 'seitan', 'seitan', 'chicken', 'chicken')
ingredientDic['quails egg'] = IngredientBook('quails egg', '', '', 'silken tofu', 'egg', 'egg')
ingredientDic['quark'] = IngredientBook('quark', '', '', 'almond ricotta cheese', 'sour cream', 'ricotta cheese')
ingredientDic['quinoa'] = IngredientBook('quinoa', '', '', '', '', 'bulgur')
ingredientDic['quinoa'] = IngredientBook('quinoa', '', '', '', 'long-grain white rice', 'white rice')
ingredientDic['rabbit'] = IngredientBook('rabbit', '', 'tofu', 'tofu', 'pork butt', 'rabbit')
ingredientDic['lamb rack'] = IngredientBook('lamb rack', '', 'eggplant', 'eggplant', '', '')
ingredientDic['radicchio'] = IngredientBook('radicchio', '', '', '', 'romaine lettuce', 'romaine lettuce')
ingredientDic['radish'] = IngredientBook('radish', '', '', '', '', '')
ingredientDic['raisins'] = IngredientBook('raisins', '', '', '', '', '')
ingredientDic['rapeseed oil'] = IngredientBook('rapeseed oil', '', '', '', 'lard', 'extra virgin olive oil')
ingredientDic['raspberry'] = IngredientBook('raspberry', '', '', '', 'strawberry', 'grape')
ingredientDic['raspberry jam'] = IngredientBook('raspberry jam', 'organic raspberry jam', '', '', 'strawberry jam', 'grape jam')
ingredientDic['red rice'] = IngredientBook('red rice', '', '', '', '', 'white rice')
ingredientDic['red snapper'] = IngredientBook('red snapper', '', 'seitan', 'seitan', '', 'grouper')
ingredientDic['snapper'] = IngredientBook('snapper', '', 'seitan', 'seitan', '', 'grouper')
ingredientDic['red wine'] = IngredientBook('red wine', '', '', '', 'lime juice', '')
ingredientDic['white wine'] = IngredientBook('white wine', '', '', '', 'lime juice', '')
ingredientDic['red wine vinegar'] = IngredientBook('red wine vinegar', '', '', '', 'white vinegar', '')
ingredientDic['beef rib'] = IngredientBook('beef rib', 'bison rib', 'seitan', 'seitan', '', '')
ingredientDic['rice'] = IngredientBook('rice', 'brown rice', '', '', '', '')
ingredientDic['rice noodle'] = IngredientBook('rice noodle', 'whole wheat noodle', '', '', 'rice', 'flomaria')
ingredientDic['rice vinegar'] = IngredientBook('rice vinegar', '', '', '', 'white vinegar', 'red wine vinegar')
ingredientDic['ricotta cheese'] = IngredientBook('ricotta cheese', '', '', 'cashew cheese', 'cotija cheese', 'feta cheese')
ingredientDic['rigatoni'] = IngredientBook('rigatoni', 'whole wheat rigatoni', '', '', 'rice', 'flomaria')
ingredientDic['risotto'] = IngredientBook('risotto', 'quinoa', '', '', 'rice', 'couscous')
ingredientDic['risotto rice'] = IngredientBook('risotto rice', 'quinoa', '', '', 'rice', 'couscous')
ingredientDic['roast beef'] = IngredientBook('roast beef', 'roast turkey', 'seitan', 'seitan', 'cured chorizo', 'pastrami')
ingredientDic['root beer'] = IngredientBook('root beer', 'soda water', '', '', 'Jarritos', 'Loux')
ingredientDic['root vegetable'] = IngredientBook('root vegetable', '', '', '', '', '')
ingredientDic['roquefort cheese'] = IngredientBook('roquefort cheese', 'parmesan cheese', '', 'nutritional yeast', 'cotija cheese', 'feta cheese')
ingredientDic['rose'] = IngredientBook('rose wine', '', '', '', 'south american red wine', 'red wine')
ingredientDic['rosemary'] = IngredientBook('rosemary', '', '', '', 'paprika', '')
ingredientDic['rum'] = IngredientBook('rum', '', '', '', 'tequila', 'uzo')
ingredientDic['rye bread'] = IngredientBook('rye bread', 'rye bread', '', '', 'blanco bread', 'pita bread')
ingredientDic['safflower oil'] = IngredientBook('safflower oil', '', '', '', 'vegetable oil', 'olive oil')
ingredientDic['saffron'] = IngredientBook('saffron', '', '', '', '', '')
ingredientDic['sage'] = IngredientBook('sage', '', '', '', 'cilantro', '')
ingredientDic['salad greens'] = IngredientBook('salad greens', '', '', '', '', '')
ingredientDic['salami'] = IngredientBook('salami', 'smoked salmon', 'portobello mushroom', 'portobello mushroom', 'cured chorizo', 'loukanika')
ingredientDic['salmon'] = IngredientBook('salmon', '', 'tofu', 'tofu', 'tilapia', 'grouper')
ingredientDic['salsa'] = IngredientBook('salsa', '', '', '', '', 'pepper hummus')
ingredientDic['salt'] = IngredientBook('sea salt', '', '', '', '', '')
ingredientDic['sardine'] = IngredientBook('sardine', '', 'kimchi', 'kimchi', '', '')
ingredientDic['saucisson'] = IngredientBook('saucisson', 'portobello mushroom', 'portobello mushroom', 'portobello mushroom', 'cured chorizo', 'loukanika')
ingredientDic['sausage'] = IngredientBook('sausage', 'turkey sausage', 'vegan sausage', 'vegan sausage', 'chorizo sausage', 'loukanika')
ingredientDic['scallop'] = IngredientBook('scallop', '', 'tofu', 'tofu', '', '')
ingredientDic['bass'] = IngredientBook('bass', '', 'tofu', 'tofu', '', 'grouper')
ingredientDic['sea bream'] = IngredientBook('sea bream', '', 'tofu', 'tofu', '', 'grouper')
ingredientDic['sea salt'] = IngredientBook('sea salt', '', '', '', '', '')
ingredientDic['seaweed'] = IngredientBook('seaweed', '', '', '', 'thinly sliced cucumber', 'thinly sliced cucumber')
ingredientDic['semolina'] = IngredientBook('semolina', 'organic semolina', '', '', 'maize', 'semolina')
ingredientDic['sesame oil'] = IngredientBook('sesame oil', '', '', '', '', '')
ingredientDic['sesame seeds'] = IngredientBook('sesame seeds', '', '', '', '', '')
ingredientDic['shallot'] = IngredientBook('shallot', '', '', '', '', '')
ingredientDic['sherry'] = IngredientBook('sherry', '', '', '', '', '')
ingredientDic['sichuan pepper'] = IngredientBook('sichuan pepper', '', '', '', 'habanero pepper', 'chili pepper')
ingredientDic['beef sirloin'] = IngredientBook('beef sirloin', '', 'tempeh', 'tempeh', '', '')
ingredientDic['smoked fish'] = IngredientBook('smoked fish', '', 'carrot lox', 'carrot lox', '', '')
ingredientDic['smoked haddock'] = IngredientBook('smoked fish', '', 'carrot lox', 'carrot lox', '', '')
ingredientDic['smoked mackerel'] = IngredientBook('smoked fish', '', 'carrot lox', 'carrot lox', 'smoked fish', 'smoked fish')
ingredientDic['smoked salmon'] = IngredientBook('smoked fish', '', 'carrot lox', 'carrot lox', 'smoked fish', '')
ingredientDic['smoked trout'] = IngredientBook('smoked fish', '', 'carrot lox', 'carrot lox', 'smoked fish', 'smoked fish')
ingredientDic['snapper'] = IngredientBook('snapper', '', 'seitan', 'seitan', '', 'grouper')
ingredientDic['soba noodles'] = IngredientBook('soba noodles', '', '', '', 'rice', 'flomaria')
ingredientDic['sole'] = IngredientBook('sole', '', 'seitan', 'seitan', '', 'grouper')
ingredientDic['sorbet'] = IngredientBook('sorbet', 'fresh fruits', '', '', 'fresh fruits', 'fresh fruits')
ingredientDic['sorrel'] = IngredientBook('sorrel', '', '', '', 'cilantro', 'anis')
ingredientDic['soup'] = IngredientBook('soup', '', '', '', '', '')
ingredientDic['sour cream'] = IngredientBook('sour cream', 'non-fat yogurt', '', 'vegan sour cream', '', 'greek yogurt')
ingredientDic['soy sauce'] = IngredientBook('soy sauce', '', 'vegan soy sauce', '', 'mole sauce', 'tomato paste')
ingredientDic['soy milk'] = IngredientBook('soy milk', '', '', '', 'milk', 'milk')
ingredientDic['spaghetti'] = IngredientBook('spaghetti', 'whole wheat spaghetti', '', '', 'rice', 'hilopites')
ingredientDic['spaghetti squash'] = IngredientBook('spaghetti squash', '', '', '', '', '')
ingredientDic['spelt'] = IngredientBook('spelt', '', '', '', 'maize', 'spelt')
ingredientDic['spinach'] = IngredientBook('spinach', '', '', '', '', '')
ingredientDic['spring mix'] = IngredientBook('spring mix', '', '', '', 'romaine', 'romaine')
ingredientDic['spring onion'] = IngredientBook('spring onion', '', '', '', 'green onion', '')
ingredientDic['spring roll wrappers'] = IngredientBook('spring roll wrappers', 'rice wrappers', '', '', 'tortillas', 'pita')
ingredientDic['squash'] = IngredientBook('squash', '', '', '', 'chayote', 'eggplant')
ingredientDic['squid'] = IngredientBook('squid', '', '', '', '', '')
ingredientDic['star anise'] = IngredientBook('star anise', '', '', '', 'cinnamon', '')
ingredientDic['starfruit'] = IngredientBook('starfruit', '', '', '', 'soursop', 'figs')
ingredientDic['steak'] = IngredientBook('steak', 'swordfish steak', 'tempeh', 'tempeh', '', '')
ingredientDic['stock'] = IngredientBook('stock', '', 'vegetable stock', 'vegetable stock', '', '')
ingredientDic['strawberry'] = IngredientBook('strawberry', '', '', '', '', '')
ingredientDic['strawberry jam'] = IngredientBook('strawberry jam', '', '', '', '', '')
ingredientDic['sugar'] = IngredientBook('sugar', 'agave sweetener', '', '', '', '')
ingredientDic['sugar-snap peas'] = IngredientBook('sugar-snap peas', '', '', '', 'sliced bell peppers', '')
ingredientDic['sunflower oil'] = IngredientBook('sunflower oil', '', '', '', 'vegetable oil', 'olive oil')
ingredientDic['sushi rice'] = IngredientBook('sushi rice', '', '', '', 'rice', 'rice')
ingredientDic['sweet potato'] = IngredientBook('sweet potato', '', '', '', '', 'potato')
ingredientDic['sweetcorn'] = IngredientBook('sweetcorn', '', '', '', '', 'beets')
ingredientDic['swordfish'] = IngredientBook('swordfish', '', 'tempeh', 'tempeh', 'red snapper', '')
ingredientDic['t-bone steak'] = IngredientBook('t-bone steak', 'turkey breast', 'tempeh', 'tempeh', '', '')
ingredientDic['tabasco'] = IngredientBook('tabasco', '', '', '', '', '')
ingredientDic['tagliatelle'] = IngredientBook('tagliatelle', 'whole wheat tagliatelle', '', '', 'rice', 'hilopites')
ingredientDic['tahini'] = IngredientBook('tahini', '', '', '', 'toasted sesame seeds', 'greek')
ingredientDic['tamari'] = IngredientBook('tamari', 'low-sodium tamari', '', '', 'mexican', 'greek')
ingredientDic['tamarillo'] = IngredientBook('tamarillo', '', '', '', '', 'cherry tomato')
ingredientDic['tomatillo'] = IngredientBook('tomatillo', '', '', '', '', 'cherry tomato')
ingredientDic['tangerine'] = IngredientBook('tangerine', '', '', '', 'orange', 'orange')
ingredientDic['taro'] = IngredientBook('taro', '', '', '', 'yautia', 'Jerusalem artichoke')
ingredientDic['tarragon'] = IngredientBook('tarragon', '', '', '', 'yerba buena', '')
ingredientDic['tartar sauce'] = IngredientBook('tartar sauce', '', '', '', 'habanero sauce', 'tzatziki sauce')
ingredientDic['teriyaki sauce'] = IngredientBook('teriyaki sauce', '', '', '', 'sweet chili sauce', 'oregano')
ingredientDic['thyme'] = IngredientBook('thyme', '', '', '', 'cilantro', '')
ingredientDic['tilapia'] = IngredientBook('canned tuna', '', 'seitan', 'seitan', 'blanco de patzcuaro', 'grouper')
ingredientDic['canned tuna'] = IngredientBook('canned tuna', '', 'fishless tuna', 'fishless tuna', '', '')
ingredientDic['tofu'] = IngredientBook('tofu', '', '', '', 'thinly sliced pork', 'thinly sliced beef')
ingredientDic['tomatillo'] = IngredientBook('tomatillo', '', '', '', '', 'cherry tomato')
ingredientDic['tomato'] = IngredientBook('tomato', '', '', '', '', '')
ingredientDic['tomato juice'] = IngredientBook('tomato juice', '', '', '', '', '')
ingredientDic['tomato puree'] = IngredientBook('tomato puree', '', '', '', '', '')
ingredientDic['tortellini'] = IngredientBook('tortellini', 'whole wheat tortellini', '', '', 'rice', 'hilopites')
ingredientDic['pulled pork'] = IngredientBook('pulled pork', 'whole wheat tortellini', 'vegetarian', 'vegan', 'mexican', 'greek')
ingredientDic['trout'] = IngredientBook('trout', '', 'seitan', 'seitan', 'red snapper', '')
ingredientDic['truffle'] = IngredientBook('truffle', '', '', '', 'mexican', 'greek')
ingredientDic['truffle oil'] = IngredientBook('truffle oil', '', '', '', 'vegetable oil', 'olive oil')
ingredientDic['turkey'] = IngredientBook('turkey', '', 'tempeh', 'tempeh', 'chicken', 'chicken')
ingredientDic['turkey breast'] = IngredientBook('turkey breast', '', 'tempeh', 'tempeh', 'chicken breast', 'chicken breast')
ingredientDic['turkey mince'] = IngredientBook('turkey mince', '', 'tempeh', 'tempeh', 'ground beef', 'lamb mince')
ingredientDic['turmeric'] = IngredientBook('turmeric', '', '', '', 'cumin', 'cumin')
ingredientDic['turnip'] = IngredientBook('turnip', '', '', '', 'jicama', 'greek')
ingredientDic['unleavened bread'] = IngredientBook('unleavened bread', '', '', 'cauliflower bread', 'corn tortilla', 'pita')
ingredientDic['vacherin cheese'] = IngredientBook('vacherin cheese', '', '', 'almond cheese', 'queso blanco', 'feta cheese')
ingredientDic['vanilla essence'] = IngredientBook('vanilla essence', '', '', '', '', '')
ingredientDic['vanilla extract'] = IngredientBook('vanilla extract', '', '', '', 'maple syrup', '')
ingredientDic['veal'] = IngredientBook('veal', '', 'jackfruit', 'jackfruit', 'carne asada', '')
ingredientDic['vegetable oil'] = IngredientBook('vegetable oil', '', '', '', '', 'olive oil')
ingredientDic['vegetable stock'] = IngredientBook('vegetable stock', '', '', '', '', '')
ingredientDic['vegetable'] = IngredientBook('vegetable', '', '', '', '', '')
ingredientDic['vegetarian sausage'] = IngredientBook('vegetarian sausage', '', '', '', '', '')
ingredientDic['venison'] = IngredientBook('venison', '', 'jackfruit', 'jackfruit', 'pork', 'lamb')
ingredientDic['water'] = IngredientBook('water', '', '', '', '', '')
ingredientDic['corn starch'] = IngredientBook('corn starch', '', '', '', '', '')
ingredientDic['vermicelli'] = IngredientBook('vermicelli', 'whole-grain vermicelli', '', 'vegan vermicelli', 'rice', 'flomaria')
ingredientDic['vermouth'] = IngredientBook('vermouth', '', '', '', '', '')
ingredientDic['vine leaves'] = IngredientBook('vine leaves', '', '', '', 'green cabbage', '')
ingredientDic['grape leaves'] = IngredientBook('grape leaves', '', '', '', 'green cabbage', '')
ingredientDic['vinegar'] = IngredientBook('vinegar', '', '', '', 'lime juice', '')
ingredientDic['vodka'] = IngredientBook('vodka', '', '', '', '', '')
ingredientDic['walnut'] = IngredientBook('walnut', '', '', '', 'pinyon pine', 'almond')
ingredientDic['walnut oil'] = IngredientBook('walnut oil', '', '', '', 'corn oil', 'olive oil')
ingredientDic['wasabi'] = IngredientBook('wasabi', '', '', '', 'spicy salsa', 'tzatziki')
ingredientDic['water chestnut'] = IngredientBook('water chestnut', '', '', '', 'pinyon pine', 'almond')
ingredientDic['watercress'] = IngredientBook('watercress', '', '', '', 'cilantro', 'cilantro')
ingredientDic['cauliflower bread'] = IngredientBook('cauliflower bread', '', '', '', '', '')
ingredientDic['watermelon'] = IngredientBook('watermelon', '', '', '', 'pitaya', '')
ingredientDic['wheat germ'] = IngredientBook('wheat germ', '', '', '', 'whole wheat flour', 'whole wheat flour')
ingredientDic['whipped cream'] = IngredientBook('whipped cream', 'coconut whipped cream', 'coconut whipped cream', 'coconut whipped cream', '', 'greek yogurt')
ingredientDic['whiskey'] = IngredientBook('whiskey', '', '', '', '', '')
ingredientDic['white bread'] = IngredientBook('white bread', 'rye bread', '', 'cauliflower bread', 'corn tortilla', 'pita')
ingredientDic['white cabbage'] = IngredientBook('white cabbage', '', '', '', 'green cabbage', 'green cabbage')
ingredientDic['white chocolate'] = IngredientBook('white chocolate', 'dark chocolate', '', 'dark chocolate', 'dark chocolate', 'milk chocolate')
ingredientDic['whitefish'] = IngredientBook('whitefish', '', 'seitan', 'seitan', 'tilapia', 'sea bass')
ingredientDic['whitebait'] = IngredientBook('whitebait', '', 'tofu', 'tofu', 'cod', '')
ingredientDic['whole wheat pasta'] = IngredientBook('whole wheat pasta', '', '', 'vegan pasta', 'rice', 'flomaria')
ingredientDic['wild mushroom'] = IngredientBook('wild mushroom', '', '', '', '', 'kalamata olive')
ingredientDic['wine'] = IngredientBook('wine', '', '', '', '', '')
ingredientDic['yam'] = IngredientBook('yam', '', '', '', 'jicama', 'turnips')
ingredientDic['bell pepper'] = IngredientBook('bell pepper', '', '', '', '', '')
ingredientDic['yeast'] = IngredientBook('yeast', '', '', '', '', '')
ingredientDic['yellow lentil'] = IngredientBook('yellow lentil', '', '', '', 'red lentil', 'green lentil')
ingredientDic['yogurt'] = IngredientBook('yogurt', 'greek yogurt', '', 'soy yogurt', 'sour cream', 'greek yogurt')
ingredientDic['water'] = IngredientBook('water', '', '', '', '', '')
ingredientDic['corn starch'] = IngredientBook('corn starch', '', '', '', '', '')
ingredientDic['zest'] = IngredientBook('zest', '', '', '', '', '')
return ingredientDic