-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsert_statements.sql
More file actions
7134 lines (6033 loc) · 811 KB
/
insert_statements.sql
File metadata and controls
7134 lines (6033 loc) · 811 KB
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
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
INSERT INTO ingredient (id, name, category, image_url) VALUES (1, 'digestive biscuits', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/digestive%20biscuits.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (2, 'butter', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (3, 'Bramley apples', 'Produce', 'https://www.themealdb.com/images/ingredients/Bramley%20apples.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (4, 'butter, softened', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/butter,%20softened.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (5, 'caster sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/caster%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (6, 'free-range eggs, beaten', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/free-range%20eggs,%20beaten.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (7, 'ground almonds', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/ground%20almonds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (8, 'almond extract', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/almond%20extract.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (9, 'flaked almonds', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/flaked%20almonds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (10, 'Plain Flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Plain%20Flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (11, 'Caster Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Caster%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (12, 'Butter', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (13, 'Braeburn Apples', 'Produce', 'https://www.themealdb.com/images/ingredients/Braeburn%20Apples.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (14, 'Demerara Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Demerara%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (15, 'Blackberrys', 'Produce', 'https://www.themealdb.com/images/ingredients/Blackberrys.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (16, 'Cinnamon', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cinnamon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (17, 'Ice Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Ice%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (18, 'Milk', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (19, 'Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (20, 'Eggs', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Eggs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (21, 'Flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (22, 'Baking Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Baking%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (23, 'Salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (24, 'Unsalted Butter', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Unsalted%20Butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (25, 'Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (26, 'Peanut Butter', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Peanut%20Butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (27, 'Chicken Thighs', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chicken%20Thighs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (28, 'Challots', 'Produce', 'https://www.themealdb.com/images/ingredients/Challots.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (29, 'Ginger', 'Produce', 'https://www.themealdb.com/images/ingredients/Ginger.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (30, 'Garlic Clove', 'Produce', 'https://www.themealdb.com/images/ingredients/Garlic%20Clove.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (31, 'Cayenne Pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cayenne%20Pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (32, 'Turmeric', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Turmeric.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (33, 'Cumin', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cumin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (34, 'Coriander', 'Produce', 'https://www.themealdb.com/images/ingredients/Coriander.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (35, 'Fennel', 'Produce', 'https://www.themealdb.com/images/ingredients/Fennel.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (36, 'Tamarind Paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Tamarind%20Paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (37, 'Coconut Milk', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Coconut%20Milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (38, 'Water', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (39, 'plain flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/plain%20flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (40, 'chilled butter', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/chilled%20butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (41, 'cold water', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/cold%20water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (42, 'raspberry jam', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/raspberry%20jam.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (43, 'free-range egg, beaten', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/free-range%20egg,%20beaten.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (44, 'bread', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/bread.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (45, 'sultanas', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/sultanas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (46, 'cinnamon', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/cinnamon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (47, 'milk', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (48, 'double cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/double%20cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (49, 'eggs', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/eggs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (50, 'sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (51, 'nutmeg', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/nutmeg.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (52, 'mushrooms', 'Produce', 'https://www.themealdb.com/images/ingredients/mushrooms.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (53, 'English Mustard', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/English%20Mustard.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (54, 'Olive Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Olive%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (55, 'Beef Fillet', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Beef%20Fillet.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (56, 'Parma ham', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Parma%20ham.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (57, 'Puff Pastry', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Puff%20Pastry.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (58, 'Egg Yolks', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Egg%20Yolks.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (59, 'Aubergine', 'Produce', 'https://www.themealdb.com/images/ingredients/Aubergine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (60, 'Onion', 'Produce', 'https://www.themealdb.com/images/ingredients/Onion.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (61, 'Tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (62, 'Garlic', 'Produce', 'https://www.themealdb.com/images/ingredients/Garlic.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (63, 'Green Chilli', 'Produce', 'https://www.themealdb.com/images/ingredients/Green%20Chilli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (64, 'Red Chilli Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Red%20Chilli%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (65, 'Coriander Leaves', 'Produce', 'https://www.themealdb.com/images/ingredients/Coriander%20Leaves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (66, 'salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (67, 'Beef Brisket', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Beef%20Brisket.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (68, 'Thyme', 'Produce', 'https://www.themealdb.com/images/ingredients/Thyme.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (69, 'Rosemary', 'Produce', 'https://www.themealdb.com/images/ingredients/Rosemary.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (70, 'Bay Leaves', 'Produce', 'https://www.themealdb.com/images/ingredients/Bay%20Leaves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (71, 'beef stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/beef%20stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (72, 'Carrots', 'Produce', 'https://www.themealdb.com/images/ingredients/Carrots.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (73, 'Mustard', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Mustard.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (74, 'Potatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Potatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (75, 'Beef', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Beef.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (76, 'Broccoli', 'Produce', 'https://www.themealdb.com/images/ingredients/Broccoli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (77, 'sunflower oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/sunflower%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (78, 'Onions', 'Produce', 'https://www.themealdb.com/images/ingredients/Onions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (79, 'Olive oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Olive%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (80, 'Chorizo', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chorizo.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (81, 'All spice', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/All%20spice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (82, 'Cloves', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cloves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (83, 'Cinnamon stick', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cinnamon%20stick.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (84, 'Oregano', 'Produce', 'https://www.themealdb.com/images/ingredients/Oregano.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (85, 'Ancho Chillies', 'Produce', 'https://www.themealdb.com/images/ingredients/Ancho%20Chillies.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (86, 'Balsamic Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Balsamic%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (87, 'Plum Tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Plum%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (88, 'Tomato Ketchup', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tomato%20Ketchup.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (89, 'Dark Brown Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Dark%20Brown%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (90, 'Borlotti Beans', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Borlotti%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (91, 'Mushrooms', 'Produce', 'https://www.themealdb.com/images/ingredients/Mushrooms.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (92, 'Creme Fraiche', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Creme%20Fraiche.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (93, 'Beef Stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Beef%20Stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (94, 'Parsley', 'Produce', 'https://www.themealdb.com/images/ingredients/Parsley.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (95, 'Rapeseed Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Rapeseed%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (96, 'Celery', 'Produce', 'https://www.themealdb.com/images/ingredients/Celery.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (97, 'Leek', 'Produce', 'https://www.themealdb.com/images/ingredients/Leek.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (98, 'Vegetable Stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Vegetable%20Stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (99, 'Stilton Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Stilton%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (100, 'Sausages', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Sausages.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (101, 'Tomato Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tomato%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (102, 'Butter Beans', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Butter%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (103, 'Black Treacle', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Black%20Treacle.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (104, 'Banana', 'Produce', 'https://www.themealdb.com/images/ingredients/Banana.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (105, 'Vanilla Extract', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Vanilla%20Extract.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (106, 'Pecan Nuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Pecan%20Nuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (107, 'Raspberries', 'Produce', 'https://www.themealdb.com/images/ingredients/Raspberries.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (108, 'Swede', 'Produce', 'https://www.themealdb.com/images/ingredients/Swede.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (109, 'Red Wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Red%20Wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (110, 'Bay Leaf', 'Produce', 'https://www.themealdb.com/images/ingredients/Bay%20Leaf.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (111, 'Suet', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Suet.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (112, 'Green Beans', 'Produce', 'https://www.themealdb.com/images/ingredients/Green%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (113, 'Pepper', 'Produce', 'https://www.themealdb.com/images/ingredients/Pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (114, 'Shallots', 'Produce', 'https://www.themealdb.com/images/ingredients/Shallots.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (115, 'Bacon', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Bacon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (116, 'Stout', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Stout.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (117, 'Corn Flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Corn%20Flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (118, 'Oysters', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Oysters.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (119, 'Hazlenuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Hazlenuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (120, 'Lemon', 'Produce', 'https://www.themealdb.com/images/ingredients/Lemon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (121, 'Lemon Juice', 'Produce', 'https://www.themealdb.com/images/ingredients/Lemon%20Juice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (122, 'Double Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Double%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (123, 'Yogurt', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Yogurt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (124, 'Mint', 'Produce', 'https://www.themealdb.com/images/ingredients/Mint.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (125, 'Self-raising Flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Self-raising%20Flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (126, 'Almonds', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Almonds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (127, 'Almond Extract', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Almond%20Extract.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (128, 'Pink Food Colouring', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Pink%20Food%20Colouring.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (129, 'Apricot', 'Produce', 'https://www.themealdb.com/images/ingredients/Apricot.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (130, 'Marzipan', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Marzipan.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (131, 'Icing Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Icing%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (132, 'Goose Fat', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Goose%20Fat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (133, 'Beef Shin', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Beef%20Shin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (134, 'Chestnut Mushroom', 'Produce', 'https://www.themealdb.com/images/ingredients/Chestnut%20Mushroom.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (135, 'Bouquet Garni', 'Produce', 'https://www.themealdb.com/images/ingredients/Bouquet%20Garni.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (136, 'Tomato Puree', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tomato%20Puree.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (137, 'Celeriac', 'Produce', 'https://www.themealdb.com/images/ingredients/Celeriac.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (138, 'Cardamom', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cardamom.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (139, 'Yeast', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Yeast.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (140, 'Brie', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Brie.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (141, 'Prosciutto', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Prosciutto.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (142, 'Chicken', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chicken.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (143, 'Tomato', 'Produce', 'https://www.themealdb.com/images/ingredients/Tomato.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (144, 'Red Pepper', 'Produce', 'https://www.themealdb.com/images/ingredients/Red%20Pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (145, 'Lime', 'Produce', 'https://www.themealdb.com/images/ingredients/Lime.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (146, 'Allspice', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Allspice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (147, 'Soy Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Soy%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (148, 'Cornstarch', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cornstarch.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (149, 'Vegetable Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Vegetable%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (150, 'Sesame Seed Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Sesame%20Seed%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (151, 'Egg', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Egg.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (152, 'Starch', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Starch.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (153, 'Noodles', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Noodles.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (154, 'Minced Garlic', 'Produce', 'https://www.themealdb.com/images/ingredients/Minced%20Garlic.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (155, 'Bean Sprouts', 'Produce', 'https://www.themealdb.com/images/ingredients/Bean%20Sprouts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (156, 'Oyster Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Oyster%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (157, 'Cherry Tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Cherry%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (158, 'Salmon', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Salmon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (159, 'Black Olives', 'Produce', 'https://www.themealdb.com/images/ingredients/Black%20Olives.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (160, 'Ricotta', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Ricotta.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (161, 'Lemons', 'Produce', 'https://www.themealdb.com/images/ingredients/Lemons.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (162, 'Dark Rum', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Dark%20Rum.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (163, 'Maple Syrup', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Maple%20Syrup.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (164, 'Nutmeg', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Nutmeg.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (165, 'Breadcrumbs', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Breadcrumbs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (166, 'Red Onions', 'Produce', 'https://www.themealdb.com/images/ingredients/Red%20Onions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (167, 'Bread', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Bread.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (168, 'Pork', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Pork.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (169, 'Barbeque Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Barbeque%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (170, 'Hotsauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Hotsauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (171, 'Rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (172, 'Cucumber', 'Produce', 'https://www.themealdb.com/images/ingredients/Cucumber.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (173, 'Ground Beef', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Ground%20Beef.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (174, 'Minced Beef', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Minced%20Beef.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (175, 'Sesame Seed Burger Buns', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Sesame%20Seed%20Burger%20Buns.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (176, 'Iceberg Lettuce', 'Produce', 'https://www.themealdb.com/images/ingredients/Iceberg%20Lettuce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (177, 'Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (178, 'Dill Pickles', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Dill%20Pickles.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (179, 'Mayonnaise', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Mayonnaise.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (180, 'White Wine Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/White%20Wine%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (181, 'Onion Salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Onion%20Salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (182, 'Garlic Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Garlic%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (183, 'Paprika', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Paprika.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (184, 'Kielbasa', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Kielbasa.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (185, 'Cabbage', 'Produce', 'https://www.themealdb.com/images/ingredients/Cabbage.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (186, 'Sauerkraut', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Sauerkraut.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (187, 'Basil', 'Produce', 'https://www.themealdb.com/images/ingredients/Basil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (188, 'Marjoram', 'Produce', 'https://www.themealdb.com/images/ingredients/Marjoram.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (189, 'Caraway Seed', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Caraway%20Seed.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (190, 'Diced Tomatoes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Diced%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (191, 'Worcestershire Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Worcestershire%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (192, 'Spring Onions', 'Produce', 'https://www.themealdb.com/images/ingredients/Spring%20Onions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (193, 'Egg White', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Egg%20White.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (194, 'Bicarbonate Of Soda', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Bicarbonate%20Of%20Soda.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (195, 'Cinnamon Stick', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cinnamon%20Stick.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (196, 'Star Anise', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Star%20Anise.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (197, 'Coconut Cream', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Coconut%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (198, 'Filo Pastry', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Filo%20Pastry.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (199, 'Black Pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Black%20Pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (200, 'Green Pepper', 'Produce', 'https://www.themealdb.com/images/ingredients/Green%20Pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (201, 'Chilli Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Chilli%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (202, 'Beef Stock Concentrate', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Beef%20Stock%20Concentrate.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (203, 'Beetroot', 'Produce', 'https://www.themealdb.com/images/ingredients/Beetroot.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (204, 'Chicken Stock Cube', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Chicken%20Stock%20Cube.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (205, 'Cannellini Beans', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Cannellini%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (206, 'Dill', 'Produce', 'https://www.themealdb.com/images/ingredients/Dill.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (207, 'Buckwheat', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Buckwheat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (208, 'Enchilada sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Enchilada%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (209, 'shredded Monterey Jack cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/shredded%20Monterey%20Jack%20cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (210, 'corn tortillas', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/corn%20tortillas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (211, 'chicken breasts', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/chicken%20breasts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (212, 'Plain chocolate', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Plain%20chocolate.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (213, 'Granulated Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Granulated%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (214, 'Parmesan Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Parmesan%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (215, 'Plum tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Plum%20tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (216, 'White Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/White%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (217, 'Honey', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Honey.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (218, 'salted butter', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/salted%20butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (219, 'dark soft brown sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/dark%20soft%20brown%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (220, 'golden syrup', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/golden%20syrup.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (221, 'orange', 'Produce', 'https://www.themealdb.com/images/ingredients/orange.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (222, 'rolled oats', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/rolled%20oats.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (223, 'Christmas pudding', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Christmas%20pudding.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (224, 'Ginger paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ginger%20paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (225, 'Vegetable oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Vegetable%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (226, 'Cumin seeds', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cumin%20seeds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (227, 'Coriander seeds', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Coriander%20seeds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (228, 'Turmeric powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Turmeric%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (229, 'Chilli powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Chilli%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (230, 'Green chilli', 'Produce', 'https://www.themealdb.com/images/ingredients/Green%20chilli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (231, 'Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (232, 'fenugreek', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/fenugreek.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (233, 'Garam masala', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Garam%20masala.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (234, 'Squash', 'Produce', 'https://www.themealdb.com/images/ingredients/Squash.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (235, 'onion', 'Produce', 'https://www.themealdb.com/images/ingredients/onion.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (236, 'garlic', 'Produce', 'https://www.themealdb.com/images/ingredients/garlic.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (237, 'red pepper flakes', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/red%20pepper%20flakes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (238, 'white wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/white%20wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (239, 'heavy cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/heavy%20cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (240, 'Parmesan cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Parmesan%20cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (241, 'bowtie pasta', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/bowtie%20pasta.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (242, 'macaroni', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/macaroni.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (243, 'chicken stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/chicken%20stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (244, 'fajita seasoning', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/fajita%20seasoning.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (245, 'chicken breast', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/chicken%20breast.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (246, 'olive oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/olive%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (247, 'red pepper', 'Produce', 'https://www.themealdb.com/images/ingredients/red%20pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (248, 'cheddar cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/cheddar%20cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (249, 'parsley', 'Produce', 'https://www.themealdb.com/images/ingredients/parsley.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (250, 'cajun', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/cajun.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (251, 'cayenne pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/cayenne%20pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (252, 'white fish', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/white%20fish.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (253, 'vegetable oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/vegetable%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (254, 'flour tortilla', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/flour%20tortilla.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (255, 'avocado', 'Produce', 'https://www.themealdb.com/images/ingredients/avocado.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (256, 'little gem lettuce', 'Produce', 'https://www.themealdb.com/images/ingredients/little%20gem%20lettuce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (257, 'spring onion', 'Produce', 'https://www.themealdb.com/images/ingredients/spring%20onion.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (258, 'salsa', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/salsa.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (259, 'sour cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/sour%20cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (260, 'lemon', 'Produce', 'https://www.themealdb.com/images/ingredients/lemon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (261, 'Chicken Breasts', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chicken%20Breasts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (262, 'Vinaigrette Dressing', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Vinaigrette%20Dressing.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (263, 'Smoked Paprika', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Smoked%20Paprika.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (264, 'Refried Beans', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Refried%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (265, 'Hard Taco Shells', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Hard%20Taco%20Shells.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (266, 'Shredded Mexican Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Shredded%20Mexican%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (267, 'Grape Tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Grape%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (268, 'Jalapeno', 'Produce', 'https://www.themealdb.com/images/ingredients/Jalapeno.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (269, 'Avocado', 'Produce', 'https://www.themealdb.com/images/ingredients/Avocado.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (270, 'Green Salsa', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Green%20Salsa.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (271, 'Sour Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Sour%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (272, 'Chicken thigh', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chicken%20thigh.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (273, 'Soy sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Soy%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (274, 'Sake', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Sake.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (275, 'Granulated sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Granulated%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (276, 'Potato starch', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Potato%20starch.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (277, 'Chicken Legs', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chicken%20Legs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (278, 'Brandy', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Brandy.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (279, 'Chicken Stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Chicken%20Stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (280, 'tomato puree', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/tomato%20puree.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (281, 'thyme', 'Produce', 'https://www.themealdb.com/images/ingredients/thyme.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (282, 'bay leaves', 'Produce', 'https://www.themealdb.com/images/ingredients/bay%20leaves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (283, 'chestnut mushroom', 'Produce', 'https://www.themealdb.com/images/ingredients/chestnut%20mushroom.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (284, 'Linguine Pasta', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Linguine%20Pasta.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (285, 'Sugar Snap Peas', 'Produce', 'https://www.themealdb.com/images/ingredients/Sugar%20Snap%20Peas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (286, 'Red Chilli', 'Produce', 'https://www.themealdb.com/images/ingredients/Red%20Chilli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (287, 'King Prawns', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/King%20Prawns.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (288, 'Basil Leaves', 'Produce', 'https://www.themealdb.com/images/ingredients/Basil%20Leaves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (289, 'Lettuce', 'Produce', 'https://www.themealdb.com/images/ingredients/Lettuce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (290, 'Fromage Frais', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Fromage%20Frais.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (291, 'Clams', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Clams.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (292, 'Chopped Tomatoes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Chopped%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (293, 'Passata', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Passata.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (294, 'Vegetable Stock Cube', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Vegetable%20Stock%20Cube.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (295, 'Whole Milk', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Whole%20Milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (296, 'Mustard Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Mustard%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (297, 'Sweetcorn', 'Produce', 'https://www.themealdb.com/images/ingredients/Sweetcorn.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (298, 'Chicken Breast', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Chicken%20Breast.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (299, 'Harissa Spice', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Harissa%20Spice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (300, 'Dried Apricots', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Dried%20Apricots.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (301, 'Chickpeas', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Chickpeas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (302, 'Couscous', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Couscous.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (303, 'Cacao', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cacao.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (304, 'Vanilla', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Vanilla.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (305, 'Sea Salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Sea%20Salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (306, 'Cream Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Cream%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (307, 'Light Brown Soft Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Light%20Brown%20Soft%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (308, 'Dark Brown Soft Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Dark%20Brown%20Soft%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (309, 'Dark Chocolate Chips', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Dark%20Chocolate%20Chips.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (310, 'Dark Chocolate', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Dark%20Chocolate.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (311, 'Milk Chocolate', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Milk%20Chocolate.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (312, 'Salted Butter', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Salted%20Butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (313, 'Cocoa', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cocoa.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (314, 'Red Wine Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Red%20Wine%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (315, 'Corn Tortillas', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Corn%20Tortillas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (316, 'White Wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/White%20Wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (317, 'Ham', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Ham.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (318, 'Free-range Egg, Beaten', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Free-range%20Egg,%20Beaten.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (319, 'Cold Water', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Cold%20Water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (320, 'Tinned Tomatos', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tinned%20Tomatos.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (321, 'Gruyere cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Gruyere%20cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (322, 'Walnuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Walnuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (323, 'White Flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/White%20Flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (324, 'Brown Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Brown%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (325, 'Dried Fruit', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Dried%20Fruit.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (326, 'Single Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Single%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (327, 'Red Wine Jelly', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Red%20Wine%20Jelly.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (328, 'Shortcrust Pastry', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Shortcrust%20Pastry.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (329, 'Muscovado Sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Muscovado%20Sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (330, 'Raisins', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Raisins.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (331, 'Sun-Dried Tomatoes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Sun-Dried%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (332, 'Basmati Rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Basmati%20Rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (333, 'Dry White Wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Dry%20White%20Wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (334, 'Kale', 'Produce', 'https://www.themealdb.com/images/ingredients/Kale.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (335, 'Ginger Cordial', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Ginger%20Cordial.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (336, 'Mars Bar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Mars%20Bar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (337, 'Rice Krispies', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Rice%20Krispies.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (338, 'Chili Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Chili%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (339, 'Cashew Nuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Cashew%20Nuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (340, 'Orange Blossom Water', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Orange%20Blossom%20Water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (341, 'Lentils', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Lentils.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (342, 'Red Pepper Flakes', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Red%20Pepper%20Flakes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (343, 'Bramley Apples', 'Produce', 'https://www.themealdb.com/images/ingredients/Bramley%20Apples.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (344, 'Candied Peel', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Candied%20Peel.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (345, 'Orange', 'Produce', 'https://www.themealdb.com/images/ingredients/Orange.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (346, 'Grand Marnier', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Grand%20Marnier.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (347, 'Christmas Pudding', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Christmas%20Pudding.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (348, 'Custard', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Custard.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (349, 'Mascarpone', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Mascarpone.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (350, 'Flaked Almonds', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Flaked%20Almonds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (351, 'Ground Almonds', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Ground%20Almonds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (352, 'Sherry', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Sherry.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (353, 'Glace Cherry', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Glace%20Cherry.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (354, 'Currants', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Currants.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (355, 'Mixed Spice', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Mixed%20Spice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (356, 'Rose water', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Rose%20water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (357, 'Small Potatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Small%20Potatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (358, 'Italian Fennel Sausages', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Italian%20Fennel%20Sausages.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (359, 'Shiitake Mushrooms', 'Produce', 'https://www.themealdb.com/images/ingredients/Shiitake%20Mushrooms.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (360, 'Quinoa', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Quinoa.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (361, 'Feta', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Feta.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (362, 'Pickle Juice', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Pickle%20Juice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (363, 'Celery Salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Celery%20Salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (364, 'Pork Chops', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Pork%20Chops.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (365, 'Cider', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Cider.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (366, 'Minced Pork', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Minced%20Pork.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (367, 'Courgettes', 'Produce', 'https://www.themealdb.com/images/ingredients/Courgettes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (368, 'Lamb Shoulder', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Lamb%20Shoulder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (369, 'Garlic Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Garlic%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (370, 'Mozzarella', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Mozzarella.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (371, 'Egg Plants', 'Produce', 'https://www.themealdb.com/images/ingredients/Egg%20Plants.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (372, 'Sesame Seed', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Sesame%20Seed.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (373, 'Toor dal', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Toor%20dal.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (374, 'Ghee', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ghee.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (375, 'Chopped tomatoes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Chopped%20tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (376, 'Mustard Seeds', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Mustard%20Seeds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (377, 'Green Chili', 'Produce', 'https://www.themealdb.com/images/ingredients/Green%20Chili.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (378, 'Cilantro', 'Produce', 'https://www.themealdb.com/images/ingredients/Cilantro.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (379, 'Garam Masala', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Garam%20Masala.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (380, 'Apricot Jam', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Apricot%20Jam.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (381, 'Duck Legs', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Duck%20Legs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (382, 'strawberries', 'Produce', 'https://www.themealdb.com/images/ingredients/strawberries.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (383, 'meringue nests', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/meringue%20nests.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (384, 'ginger cordial', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/ginger%20cordial.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (385, 'Mixed Peel', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Mixed%20Peel.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (386, 'Black Pudding', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Black%20Pudding.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (387, 'Red Snapper', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Red%20Snapper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (388, 'Yellow Pepper', 'Produce', 'https://www.themealdb.com/images/ingredients/Yellow%20Pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (389, 'Scotch Bonnet', 'Produce', 'https://www.themealdb.com/images/ingredients/Scotch%20Bonnet.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (390, 'Malt Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Malt%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (391, 'Peas', 'Produce', 'https://www.themealdb.com/images/ingredients/Peas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (392, 'Pita Bread', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Pita%20Bread.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (393, 'Ground Pork', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Ground%20Pork.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (394, 'Rice Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Rice%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (395, 'Floury Potatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Floury%20Potatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (396, 'Semi-skimmed Milk', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Semi-skimmed%20Milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (397, 'White Fish Fillets', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/White%20Fish%20Fillets.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (398, 'Plain flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Plain%20flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (399, 'Jerusalem Artichokes', 'Produce', 'https://www.themealdb.com/images/ingredients/Jerusalem%20Artichokes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (400, 'Prawns', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Prawns.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (401, 'Gruyère', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Gruyère.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (402, 'Carrot', 'Produce', 'https://www.themealdb.com/images/ingredients/Carrot.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (403, 'French Lentils', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/French%20Lentils.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (404, 'Clotted Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Clotted%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (405, 'Fettuccine', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Fettuccine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (406, 'Baked Beans', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Baked%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (407, 'Lard', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Lard.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (408, 'Cheddar Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Cheddar%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (409, 'Parmesan', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Parmesan.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (410, 'Tarragon', 'Produce', 'https://www.themealdb.com/images/ingredients/Tarragon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (411, 'Chives', 'Produce', 'https://www.themealdb.com/images/ingredients/Chives.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (412, 'Fish Stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Fish%20Stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (413, 'Mussels', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Mussels.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (414, 'White Fish', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/White%20Fish.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (415, 'Strawberries', 'Produce', 'https://www.themealdb.com/images/ingredients/Strawberries.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (416, 'Blackberries', 'Produce', 'https://www.themealdb.com/images/ingredients/Blackberries.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (417, 'Broad Beans', 'Produce', 'https://www.themealdb.com/images/ingredients/Broad%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (418, 'Haddock', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Haddock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (419, 'Cumin Seeds', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cumin%20Seeds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (420, 'Sardines', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Sardines.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (421, 'Heavy Cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Heavy%20Cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (422, 'Cod', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Cod.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (423, 'Raw king prawns', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Raw%20king%20prawns.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (424, 'Chopped onion', 'Produce', 'https://www.themealdb.com/images/ingredients/Chopped%20onion.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (425, 'Freshly chopped parsley', 'Produce', 'https://www.themealdb.com/images/ingredients/Freshly%20chopped%20parsley.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (426, 'White wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/White%20wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (427, 'Minced garlic', 'Produce', 'https://www.themealdb.com/images/ingredients/Minced%20garlic.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (428, 'Cubed Feta cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Cubed%20Feta%20cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (429, 'Macaroni', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Macaroni.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (430, 'Garlic powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Garlic%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (431, 'Kosher salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Kosher%20salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (432, 'Black pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Black%20pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (433, 'Cayenne pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Cayenne%20pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (434, 'Monterey Jack Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Monterey%20Jack%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (435, 'garlic powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/garlic%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (436, 'Colby Jack Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Colby%20Jack%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (437, 'Duck Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Duck%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (438, 'Gochujang', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Gochujang.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (439, 'Dried Oregano', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Dried%20Oregano.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (440, 'Chopped Parsley', 'Produce', 'https://www.themealdb.com/images/ingredients/Chopped%20Parsley.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (441, 'Chocolate Chips', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Chocolate%20Chips.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (442, 'Condensed Milk', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Condensed%20Milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (443, 'White Chocolate Chips', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/White%20Chocolate%20Chips.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (444, 'Miniature Marshmallows', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Miniature%20Marshmallows.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (445, 'Wood Ear Mushrooms', 'Produce', 'https://www.themealdb.com/images/ingredients/Wood%20Ear%20Mushrooms.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (446, 'Tofu', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Tofu.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (447, 'Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (448, 'Digestive Biscuits', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Digestive%20Biscuits.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (449, 'Greek Yogurt', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Greek%20Yogurt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (450, 'Fruit Mix', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Fruit%20Mix.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (451, 'whole wheat', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/whole%20wheat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (452, 'lamb loin chops', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/lamb%20loin%20chops.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (453, 'shallots', 'Produce', 'https://www.themealdb.com/images/ingredients/shallots.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (454, 'carrots', 'Produce', 'https://www.themealdb.com/images/ingredients/carrots.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (455, 'turnips', 'Produce', 'https://www.themealdb.com/images/ingredients/turnips.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (456, 'celeriac', 'Produce', 'https://www.themealdb.com/images/ingredients/celeriac.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (457, 'charlotte potatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/charlotte%20potatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (458, 'fresh thyme', 'Produce', 'https://www.themealdb.com/images/ingredients/fresh%20thyme.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (459, 'oregano', 'Produce', 'https://www.themealdb.com/images/ingredients/oregano.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (460, 'Raspberry Jam', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Raspberry%20Jam.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (461, 'Kidney Beans', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Kidney%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (462, 'Curry Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Curry%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (463, 'Sushi Rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Sushi%20Rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (464, 'Mirin', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Mirin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (465, 'Fries', 'Produce', 'https://www.themealdb.com/images/ingredients/Fries.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (466, 'Doner Meat', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Doner%20Meat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (467, 'Garlic sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Garlic%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (468, 'Gouda cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Gouda%20cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (469, 'paprika', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/paprika.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (470, 'onion salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/onion%20salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (471, 'chili powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/chili%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (472, 'black pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/black%20pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (473, 'celery salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/celery%20salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (474, 'sage', 'Produce', 'https://www.themealdb.com/images/ingredients/sage.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (475, 'allspice', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/allspice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (476, 'basil', 'Produce', 'https://www.themealdb.com/images/ingredients/basil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (477, 'marjoram', 'Produce', 'https://www.themealdb.com/images/ingredients/marjoram.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (478, 'egg', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/egg.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (479, 'breadcrumbs', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/breadcrumbs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (480, 'onions', 'Produce', 'https://www.themealdb.com/images/ingredients/onions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (481, 'carrot', 'Produce', 'https://www.themealdb.com/images/ingredients/carrot.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (482, 'curry powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/curry%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (483, 'honey', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/honey.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (484, 'soy sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/soy%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (485, 'bay leaf', 'Produce', 'https://www.themealdb.com/images/ingredients/bay%20leaf.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (486, 'garam masala', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/garam%20masala.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (487, 'Smoked Haddock', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Smoked%20Haddock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (488, 'Water Chestnut', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Water%20Chestnut.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (489, 'Peanuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Peanuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (490, 'Sunflower Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Sunflower%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (491, 'Chilli', 'Produce', 'https://www.themealdb.com/images/ingredients/Chilli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (492, 'Ras el hanout', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ras%20el%20hanout.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (493, 'Pumpkin', 'Produce', 'https://www.themealdb.com/images/ingredients/Pumpkin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (494, 'Lamb', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Lamb.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (495, 'Saffron', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Saffron.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (496, 'Red Chilli Flakes', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Red%20Chilli%20Flakes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (497, 'Shortening', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Shortening.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (498, 'Canola Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Canola%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (499, 'Boiling Water', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Boiling%20Water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (500, 'Brown Lentils', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Brown%20Lentils.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (501, 'ginger', 'Produce', 'https://www.themealdb.com/images/ingredients/ginger.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (502, 'tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (503, 'lemon juice', 'Produce', 'https://www.themealdb.com/images/ingredients/lemon%20juice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (504, 'vine leaves', 'Produce', 'https://www.themealdb.com/images/ingredients/vine%20leaves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (505, 'fennel bulb', 'Produce', 'https://www.themealdb.com/images/ingredients/fennel%20bulb.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (506, 'lamb mince', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/lamb%20mince.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (507, 'potato', 'Produce', 'https://www.themealdb.com/images/ingredients/potato.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (508, 'basmati rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/basmati%20rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (509, 'chopped parsley', 'Produce', 'https://www.themealdb.com/images/ingredients/chopped%20parsley.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (510, 'coriander', 'Produce', 'https://www.themealdb.com/images/ingredients/coriander.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (511, 'clove', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/clove.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (512, 'Cashew nuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Cashew%20nuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (513, 'Khus khus', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Khus%20khus.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (514, 'Ginger garlic paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ginger%20garlic%20paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (515, 'Basmati rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Basmati%20rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (516, 'Full fat yogurt', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Full%20fat%20yogurt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (517, 'Bay leaf', 'Produce', 'https://www.themealdb.com/images/ingredients/Bay%20leaf.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (518, 'Red Chilli powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Red%20Chilli%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (519, 'Biryani masala', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Biryani%20masala.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (520, 'Madras Paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Madras%20Paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (521, 'cinnamon stick', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/cinnamon%20stick.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (522, 'Clove', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Clove.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (523, 'Tomato Purée', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tomato%20Purée.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (524, 'Greek yogurt', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Greek%20yogurt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (525, 'red chili', 'Produce', 'https://www.themealdb.com/images/ingredients/red%20chili.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (526, 'Thai red curry paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Thai%20red%20curry%20paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (527, 'vegetable stock cube', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/vegetable%20stock%20cube.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (528, 'coconut milk', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/coconut%20milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (529, 'fish sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/fish%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (530, 'rice noodles', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/rice%20noodles.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (531, 'lime', 'Produce', 'https://www.themealdb.com/images/ingredients/lime.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (532, 'king prawns', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/king%20prawns.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (533, 'Lamb Leg', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Lamb%20Leg.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (534, 'Butternut Squash', 'Produce', 'https://www.themealdb.com/images/ingredients/Butternut%20Squash.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (535, 'Lasagne Sheets', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Lasagne%20Sheets.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (536, 'Mozzarella Balls', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Mozzarella%20Balls.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (537, 'Lamb Kidney', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Lamb%20Kidney.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (538, 'Chopped Onion', 'Produce', 'https://www.themealdb.com/images/ingredients/Chopped%20Onion.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (539, 'Bulgur Wheat', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Bulgur%20Wheat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (540, 'Lamb Mince', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Lamb%20Mince.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (541, 'Bun', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Bun.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (542, 'Prunes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Prunes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (543, 'mozzarella balls', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/mozzarella%20balls.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (544, 'baby plum tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/baby%20plum%20tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (545, 'fresh basil', 'Produce', 'https://www.themealdb.com/images/ingredients/fresh%20basil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (546, 'farfalle', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/farfalle.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (547, 'extra virgin olive oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/extra%20virgin%20olive%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (548, 'Green Olives', 'Produce', 'https://www.themealdb.com/images/ingredients/Green%20Olives.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (549, 'tuna', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/tuna.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (550, 'pepper', 'Produce', 'https://www.themealdb.com/images/ingredients/pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (551, 'Coconut cream', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Coconut%20cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (552, 'Massaman curry paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Massaman%20curry%20paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (553, 'Tamarind paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Tamarind%20paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (554, 'Brown sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Brown%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (555, 'Fish Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Fish%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (556, 'chilli', 'Produce', 'https://www.themealdb.com/images/ingredients/chilli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (557, 'Jasmine Rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Jasmine%20Rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (558, 'Chestnuts', 'Produce', 'https://www.themealdb.com/images/ingredients/Chestnuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (559, 'Wild Mushrooms', 'Produce', 'https://www.themealdb.com/images/ingredients/Wild%20Mushrooms.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (560, 'Sage', 'Produce', 'https://www.themealdb.com/images/ingredients/Sage.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (561, 'Truffle Oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Truffle%20Oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (562, 'Paneer', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Paneer.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (563, 'Naan Bread', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Naan%20Bread.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (564, 'Doubanjiang', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Doubanjiang.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (565, 'Fermented Black Beans', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Fermented%20Black%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (566, 'Sichuan pepper', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Sichuan%20pepper.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (567, 'Scallions', 'Produce', 'https://www.themealdb.com/images/ingredients/Scallions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (568, 'Goat Meat', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Goat%20Meat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (569, 'Mincemeat', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Mincemeat.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (570, 'Mulukhiyah', 'Produce', 'https://www.themealdb.com/images/ingredients/Mulukhiyah.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (571, 'Chinese Broccoli', 'Produce', 'https://www.themealdb.com/images/ingredients/Chinese%20Broccoli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (572, 'Desiccated Coconut', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Desiccated%20Coconut.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (573, 'Custard Powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Custard%20Powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (574, 'Ginger Paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ginger%20Paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (575, 'Anchovy Fillet', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Anchovy%20Fillet.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (576, 'Veal', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Veal.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (577, 'Orange Zest', 'Produce', 'https://www.themealdb.com/images/ingredients/Orange%20Zest.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (578, 'Lemon Zest', 'Produce', 'https://www.themealdb.com/images/ingredients/Lemon%20Zest.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (579, 'Oxtail', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Oxtail.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (580, 'Fresh Thyme', 'Produce', 'https://www.themealdb.com/images/ingredients/Fresh%20Thyme.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (581, 'rice stick noodles', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/rice%20stick%20noodles.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (582, 'dark soy sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/dark%20soy%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (583, 'oyster sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/oyster%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (584, 'white vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/white%20vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (585, 'water', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/water.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (586, 'peanut oil', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/peanut%20oil.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (587, 'Chinese broccoli', 'Produce', 'https://www.themealdb.com/images/ingredients/Chinese%20broccoli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (588, 'Spinach', 'Produce', 'https://www.themealdb.com/images/ingredients/Spinach.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (589, 'Beef Gravy', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Beef%20Gravy.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (590, 'Cheese Curds', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Cheese%20Curds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (591, 'Spaghetti', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Spaghetti.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (592, 'Pilchards', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Pilchards.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (593, 'Fennel Seeds', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Fennel%20Seeds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (594, 'Haricot Beans', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Haricot%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (595, 'Blueberries', 'Produce', 'https://www.themealdb.com/images/ingredients/Blueberries.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (596, 'Peanut Cookies', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Peanut%20Cookies.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (597, 'Gelatine Leafs', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Gelatine%20Leafs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (598, 'Golden Syrup', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Golden%20Syrup.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (599, 'Peanut Brittle', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Peanut%20Brittle.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (600, 'Peaches', 'Produce', 'https://www.themealdb.com/images/ingredients/Peaches.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (601, 'Oatmeal', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Oatmeal.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (602, 'Ground Ginger', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ground%20Ginger.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (603, 'Pears', 'Produce', 'https://www.themealdb.com/images/ingredients/Pears.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (604, 'Rocket', 'Produce', 'https://www.themealdb.com/images/ingredients/Rocket.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (605, 'Tiger Prawns', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Tiger%20Prawns.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (606, 'Creamed Corn', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Creamed%20Corn.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (607, 'Ciabatta', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Ciabatta.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (608, 'Squid', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Squid.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (609, 'Baguette', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Baguette.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (610, 'Italian fennel sausages', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Italian%20fennel%20sausages.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (611, 'smoky paprika', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/smoky%20paprika.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (612, 'fennel seeds', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/fennel%20seeds.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (613, 'red wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/red%20wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (614, 'chopped tomatoes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/chopped%20tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (615, 'pitted black olives', 'Produce', 'https://www.themealdb.com/images/ingredients/pitted%20black%20olives.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (616, 'rigatoni', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/rigatoni.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (617, 'pecorino', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/pecorino.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (618, 'anchovy fillet', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/anchovy%20fillet.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (619, 'basil leaves', 'Produce', 'https://www.themealdb.com/images/ingredients/basil%20leaves.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (620, 'Mackerel', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Mackerel.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (621, 'Red Chili', 'Produce', 'https://www.themealdb.com/images/ingredients/Red%20Chili.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (622, 'Tamarind ball', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tamarind%20ball.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (623, 'Canned tomatoes', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Canned%20tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (624, 'Wholegrain Bread', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Wholegrain%20Bread.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (625, 'Red Onion', 'Produce', 'https://www.themealdb.com/images/ingredients/Red%20Onion.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (626, 'Apple Cider Vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Apple%20Cider%20Vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (627, 'Pine nuts', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Pine%20nuts.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (628, 'Baby Aubergine', 'Produce', 'https://www.themealdb.com/images/ingredients/Baby%20Aubergine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (629, 'Paella Rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Paella%20Rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (630, 'Frozen Peas', 'Produce', 'https://www.themealdb.com/images/ingredients/Frozen%20Peas.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (631, 'Jam', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Jam.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (632, 'lean minced beef', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/lean%20minced%20beef.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (633, 'dried oregano', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/dried%20oregano.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (634, 'hot beef stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/hot%20beef%20stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (635, 'worcestershire sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/worcestershire%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (636, 'spaghetti', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/spaghetti.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (637, 'parmesan', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/parmesan.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (638, 'penne rigate', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/penne%20rigate.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (639, 'red chilli flakes', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/red%20chilli%20flakes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (640, 'italian seasoning', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/italian%20seasoning.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (641, 'Parmigiano-Reggiano', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Parmigiano-Reggiano.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (642, 'Cashews', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Cashews.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (643, 'Medjool dates', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Medjool%20dates.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (644, 'vanilla extract', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/vanilla%20extract.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (645, 'self-raising flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/self-raising%20flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (646, 'bicarbonate of soda', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/bicarbonate%20of%20soda.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (647, 'demerara sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/demerara%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (648, 'black treacle', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/black%20treacle.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (649, 'ice cream', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/ice%20cream.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (650, 'muscovado sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/muscovado%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (651, 'Spring onions', 'Produce', 'https://www.themealdb.com/images/ingredients/Spring%20onions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (652, 'Harissa', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Harissa.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (653, 'Ground cumin', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Ground%20cumin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (654, 'rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (655, 'vegetable stock', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/vegetable%20stock.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (656, 'salmon', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/salmon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (657, 'asparagus', 'Produce', 'https://www.themealdb.com/images/ingredients/asparagus.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (658, 'Pretzels', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Pretzels.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (659, 'Caramel', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Caramel.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (660, 'Caramel Sauce', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Caramel%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (661, 'Toffee Popcorn', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Toffee%20Popcorn.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (662, 'Vermicelli', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Vermicelli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (663, 'Monkfish', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Monkfish.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (664, 'Baby Squid', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Baby%20Squid.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (665, 'Vine Tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/Vine%20Tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (666, 'Redcurrants', 'Produce', 'https://www.themealdb.com/images/ingredients/Redcurrants.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (667, 'Dijon Mustard', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Dijon%20Mustard.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (668, 'Tabasco Sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Tabasco%20Sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (669, 'Salt Cod', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Salt%20Cod.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (670, 'Ackee', 'Produce', 'https://www.themealdb.com/images/ingredients/Ackee.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (671, 'Cooking wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Cooking%20wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (672, 'Rice Stick Noodles', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Rice%20Stick%20Noodles.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (673, 'English Muffins', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/English%20Muffins.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (674, 'Smoked Salmon', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Smoked%20Salmon.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (675, 'Pecorino', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Pecorino.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (676, 'Apples', 'Produce', 'https://www.themealdb.com/images/ingredients/Apples.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (677, 'Zucchini', 'Produce', 'https://www.themealdb.com/images/ingredients/Zucchini.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (678, 'Rhubarb', 'Produce', 'https://www.themealdb.com/images/ingredients/Rhubarb.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (679, 'Herring', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Herring.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (680, 'Rice wine', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/Rice%20wine.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (681, 'Black Beans', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/Black%20Beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (682, 'brown sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/brown%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (683, 'ground ginger', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/ground%20ginger.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (684, 'minced garlic', 'Produce', 'https://www.themealdb.com/images/ingredients/minced%20garlic.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (685, 'cornstarch', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/cornstarch.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (686, 'stir-fry vegetables', 'Produce', 'https://www.themealdb.com/images/ingredients/stir-fry%20vegetables.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (687, 'brown rice', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/brown%20rice.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (688, 'lemons', 'Produce', 'https://www.themealdb.com/images/ingredients/lemons.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (689, 'red onions', 'Produce', 'https://www.themealdb.com/images/ingredients/red%20onions.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (690, 'chicken thighs', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/chicken%20thighs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (691, 'garlic clove', 'Produce', 'https://www.themealdb.com/images/ingredients/garlic%20clove.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (692, 'ground cumin', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/ground%20cumin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (693, 'chilli powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/chilli%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (694, 'turmeric', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/turmeric.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (695, 'potatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/potatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (696, 'green beans', 'Produce', 'https://www.themealdb.com/images/ingredients/green%20beans.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (697, 'Thai green curry paste', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Thai%20green%20curry%20paste.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (698, 'Thai fish sauce', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Thai%20fish%20sauce.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (699, 'sausages', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/sausages.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (700, 'horseradish', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/horseradish.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (701, 'cherry tomatoes', 'Produce', 'https://www.themealdb.com/images/ingredients/cherry%20tomatoes.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (702, 'Turkey Mince', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Turkey%20Mince.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (703, 'Capers', 'Canned and Preserved Foods', 'https://www.themealdb.com/images/ingredients/Capers.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (704, 'Tuna', 'Meats and Proteins', 'https://www.themealdb.com/images/ingredients/Tuna.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (705, 'Tahini', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Tahini.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (706, 'Goats Cheese', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/Goats%20Cheese.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (707, 'green red lentils', 'Nuts, Seeds, and Legumes', 'https://www.themealdb.com/images/ingredients/green%20red%20lentils.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (708, 'zucchini', 'Produce', 'https://www.themealdb.com/images/ingredients/zucchini.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (709, 'spinach', 'Produce', 'https://www.themealdb.com/images/ingredients/spinach.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (710, 'lasagne sheets', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/lasagne%20sheets.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (711, 'vegan butter', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/vegan%20butter.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (712, 'flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (713, 'soya milk', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/soya%20milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (714, 'mustard', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/mustard.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (715, 'vinegar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/vinegar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (716, 'self raising flour', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/self%20raising%20flour.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (717, 'coco sugar', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/coco%20sugar.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (718, 'cacao', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/cacao.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (719, 'baking powder', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/baking%20powder.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (720, 'flax eggs', 'Dairy and Eggs', 'https://www.themealdb.com/images/ingredients/flax%20eggs.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (721, 'almond milk', 'Beverages and Sweeteners', 'https://www.themealdb.com/images/ingredients/almond%20milk.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (722, 'vanilla', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/vanilla.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (723, 'Rice Vermicelli', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Rice%20Vermicelli.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (724, 'Egg Rolls', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Egg%20Rolls.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (725, 'Paccheri Pasta', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Paccheri%20Pasta.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (726, 'Roasted Vegetables', 'Produce', 'https://www.themealdb.com/images/ingredients/Roasted%20Vegetables.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (727, 'Mixed Grain', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Mixed%20Grain.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (728, 'Kosher Salt', 'Baking and Pantry', 'https://www.themealdb.com/images/ingredients/Kosher%20Salt.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (729, 'Wonton Skin', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Wonton%20Skin.png');
INSERT INTO ingredient (id, name, category, image_url) VALUES (730, 'Udon Noodles', 'Grains and Cereals', 'https://www.themealdb.com/images/ingredients/Udon%20Noodles.png');
UPDATE ingredient SET category = 'PRODUCE' WHERE category LIKE 'produce%';
UPDATE ingredient SET category = 'DAIRY_AND_EGGS' WHERE category LIKE 'dairy%';
UPDATE ingredient SET category = 'MEAT_AND_PROTEINS' WHERE category LIKE 'meat%';
UPDATE ingredient SET category = 'BAKING_AND_PANTRY' WHERE category LIKE 'baking%';
UPDATE ingredient SET category = 'CANNED_AND_PRESERVED_FOODS' WHERE category LIKE 'canned%';
UPDATE ingredient SET category = 'BEVERAGES_AND_SWEETENERS' WHERE category LIKE 'beverages%';
UPDATE ingredient SET category = 'NUTS_SEEDS_AND_LEGUMES' WHERE category LIKE 'nuts%';
UPDATE ingredient SET category = 'GRAINS_AND_CEREALS' WHERE category LIKE 'grains%';
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('adalovelace', 'ada.lovelace@example.com', '$2a$10$LGSdYZpg95cJtHmnfDxHsuSS4xZz7jYpWtqQYrJDyIxoCy3mTFW3', 'Ada', 'Lovelace');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (1, 3), (1, 14), (1, 25), (1, 50), (1, 101);
INSERT INTO user_app_setting (user_id)
VALUES (1);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('dennisritchie', 'dennis.ritchie@example.com', '$2a$10$kYwTtTeA34A3VJv6tYCFIetNhrPSV6cjNPtbDHc7IiBvFFt.qjF12', 'Dennis', 'Ritchie');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (2, 2), (2, 13), (2, 45), (2, 150), (2, 200);
INSERT INTO user_app_setting (user_id)
VALUES (2);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('bilge', 'bilge@gmail.com', '$2a$10$i.35wmPZaoq2TUtIQoPNR.sO6JlEiSrDqdC/ZI9gfbbCeV5wVZjPG', 'Bilge', 'Ç');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (3, 10), (3, 30), (3, 40), (3, 230), (3, 310);
INSERT INTO user_app_setting (user_id)
VALUES (3);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('semih', 'semih@gmail.com', '$2a$10$2Ng8p8m.HgcTXjKks5OYTumbZHd8gcd1/dz3zKShbXU3.LPAjk0z6', 'Semih', 'G');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (4, 5), (4, 60), (4, 100), (4, 150), (4, 300);
INSERT INTO user_app_setting (user_id)
VALUES (4);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('berat', 'berat@gmail.com', '$2a$10$4YPmofconhSfQvOyZu7YYujlyC59zQqy.rfegy0fKcmOKOVQL9PVW', 'berat', '');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (5, 15), (5, 70), (5, 110), (5, 220), (5, 400);
INSERT INTO user_app_setting (user_id)
VALUES (5);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('yasins', 'yasins@gmail.com', '$2a$10$sC6xo.tapKsS.L5AhWhSNeH3lzA8phY5jcwMynmvTovvEd5CSmIOS', 'yasin', 'ler');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (6, 25), (6, 75), (6, 120), (6, 250), (6, 500);
INSERT INTO user_app_setting (user_id)
VALUES (6);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('barbara', 'barbara.liskov@example.com', '$2a$10$IUDzDtWl6/HEwSRP6joW5ePz8Gwv9X5eNUM183Eun1swFOyzA.Vta', 'Barbara', 'Liskov');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (7, 1), (7, 50), (7, 200), (7, 430), (7, 700);
INSERT INTO user_app_setting (user_id)
VALUES (7);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('stevewozniak', 'steve.wozniak@example.com', '$2a$10$kTW4hEFaI2dW7coRry0ideVpsKYIQIuwv8aCPgVSHMJubC/yDttfq', 'Steve', 'Wozniak');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (8, 100), (8, 150), (8, 350), (8, 450), (8, 455), (8, 500), (8, 600), (8,653), (8, 655);
INSERT INTO user_app_setting (user_id)
VALUES (8);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('margarethamilton', 'margaret.hamilton@example.com', '$2a$10$C6kZUjSWgzuRtS6n35KsGuFRL2JOnOLOdZl92Yr7vg8MslLB9v8e6', 'Margaret', 'Hamilton');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (9, 12), (9, 60), (9, 240), (9, 310), (9, 315);
INSERT INTO user_app_setting (user_id)
VALUES (9);
INSERT INTO user (username, email, password, first_name, last_name)
VALUES ('test', 'test@gmail.com', '$2a$10$1DlgITmr3HmqUhB.wmVV6ON0u5Qcua7pbswQhNbEfHjY0lhtuacwq', 'test', 'test');
INSERT INTO fridge_ingredient (user_id, ingredient_id)
VALUES (10, 1),(10, 2), (10, 3), (10, 4), (10, 5), (10, 6), (10, 7),
(10, 8), (10, 9), (10, 10), (10, 11), (10, 12), (10, 13), (10, 14),
(10, 15), (10, 16), (10, 17), (10, 18), (10, 19), (10, 20), (10, 21),
(10, 22), (10, 23), (10, 24), (10, 25), (10, 26), (10, 27), (10, 28),
(10, 29), (10, 30), (10, 31), (10, 32), (10, 33), (10, 34), (10, 35),
(10, 36), (10, 37), (10, 38), (10, 39), (10, 40), (10, 41), (10, 42),
(10, 43), (10, 44), (10, 45), (10, 46), (10, 47), (10, 48), (10, 49),
(10, 50), (10, 51), (10, 52), (10, 53), (10, 54), (10, 55), (10, 56);
INSERT INTO user_app_setting (user_id)
VALUES (10);
-- Recipes:
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (1, 'Apple Frangipan Tart', 'DESSERTS_AND_SWEETS', 'Preheat the oven to 200C/180C Fan/Gas 6.
Put the biscuits in a large re-sealable freezer bag and bash with a rolling pin into fine crumbs. Melt the butter in a small pan, then add the biscuit crumbs and stir until coated with butter. Tip into the tart tin and, using the back of a spoon, press over the base and sides of the tin to give an even layer. Chill in the fridge while you make the filling.
Cream together the butter and sugar until light and fluffy. You can do this in a food processor if you have one. Process for 2-3 minutes. Mix in the eggs, then add the ground almonds and almond extract and blend until well combined.
Peel the apples, and cut thin slices of apple. Do this at the last minute to prevent the apple going brown. Arrange the slices over the biscuit base. Spread the frangipane filling evenly on top. Level the surface and sprinkle with the flaked almonds.
Bake for 20-25 minutes until golden-brown and set.
Remove from the oven and leave to cool for 15 minutes. Remove the sides of the tin. An easy way to do this is to stand the tin on a can of beans and push down gently on the edges of the tin.
Transfer the tart, with the tin base attached, to a serving plate. Serve warm with cream, crème fraiche or ice cream.', 'https://www.themealdb.com/images/media/meals/wxywrq1468235067.jpg', 950, 150, 0, 28, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (2, 'Apple & Blackberry Crumble', 'DESSERTS_AND_SWEETS', 'Heat oven to 190C/170C fan/gas 5. Tip the flour and sugar into a large bowl. Add the butter, then rub into the flour using your fingertips to make a light breadcrumb texture. Do not overwork it or the crumble will become heavy. Sprinkle the mixture evenly over a baking sheet and bake for 15 mins or until lightly coloured.
Meanwhile, for the compote, peel, core and cut the apples into 2cm dice. Put the butter and sugar in a medium saucepan and melt together over a medium heat. Cook for 3 mins until the mixture turns to a light caramel. Stir in the apples and cook for 3 mins. Add the blackberries and cinnamon, and cook for 3 mins more. Cover, remove from the heat, then leave for 2-3 mins to continue cooking in the warmth of the pan.
To serve, spoon the warm fruit into an ovenproof gratin dish, top with the crumble mix, then reheat in the oven for 5-10 mins. Serve with vanilla ice cream.', 'https://www.themealdb.com/images/media/meals/xvsurr1511719182.jpg', 1148, 45, 0, 0, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (3, 'Apam balik', 'DESSERTS_AND_SWEETS', 'Mix milk, oil and egg together. Sift flour, baking powder and salt into the mixture. Stir well until all ingredients are combined evenly.
Spread some batter onto the pan. Spread a thin layer of batter to the side of the pan. Cover the pan for 30-60 seconds until small air bubbles appear.
Add butter, cream corn, crushed peanuts and sugar onto the pancake. Fold the pancake into half once the bottom surface is browned.
Cut into wedges and best eaten when it is warm.', 'https://www.themealdb.com/images/media/meals/adxcbq1619787919.jpg', 1064, 120, 0, 20, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (4, 'Ayam Percik', 'MAIN_DISHES', 'In a blender, add the ingredients for the spice paste and blend until smooth.
Over medium heat, pour the spice paste in a skillet or pan and fry for 10 minutes until fragrant. Add water or oil 1 tablespoon at a time if the paste becomes too dry. Don''t burn the paste. Lower the fire slightly if needed.
Add the cloves, cardamom, tamarind pulp, coconut milk, water, sugar and salt. Turn the heat up and bring the mixture to boil. Turn the heat to medium low and simmer for 10 minutes. Stir occasionally. It will reduce slightly. This is the marinade/sauce, so taste and adjust seasoning if necessary. Don''t worry if it''s slightly bitter. It will go away when roasting.
When the marinade/sauce has cooled, pour everything over the chicken and marinate overnight to two days.
Preheat the oven to 425 F.
Remove the chicken from the marinade. Spoon the marinade onto a greased (or aluminum lined) baking sheet. Lay the chicken on top of the sauce (make sure the chicken covers the sauce and the sauce isn''t exposed or it''ll burn) and spread the remaining marinade on the chicken. Roast for 35-45 minutes or until internal temp of the thickest part of chicken is at least 175 F.
Let chicken rest for 5 minutes. Brush the chicken with some of the oil. Serve chicken with the sauce over steamed rice (or coconut rice).', 'https://www.themealdb.com/images/media/meals/020z181619788503.jpg', 710, 150, 0, 2, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (5, 'Bakewell tart', 'DESSERTS_AND_SWEETS', 'To make the pastry, measure the flour into a bowl and rub in the butter with your fingertips until the mixture resembles fine breadcrumbs. Add the water, mixing to form a soft dough.
Roll out the dough on a lightly floured work surface and use to line a 20cm/8in flan tin. Leave in the fridge to chill for 30 minutes.
Preheat the oven to 200C/400F/Gas 6 (180C fan).
Line the pastry case with foil and fill with baking beans. Bake blind for about 15 minutes, then remove the beans and foil and cook for a further five minutes to dry out the base.
For the filing, spread the base of the flan generously with raspberry jam.
Melt the butter in a pan, take off the heat and then stir in the sugar. Add ground almonds, egg and almond extract. Pour into the flan tin and sprinkle over the flaked almonds.
Bake for about 35 minutes. If the almonds seem to be browning too quickly, cover the tart loosely with foil to prevent them burning.', 'https://www.themealdb.com/images/media/meals/wyrqqq1468233628.jpg', 644, 60, 0, 16, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (6, 'Bread and Butter Pudding', 'DESSERTS_AND_SWEETS', 'Grease a 1 litre/2 pint pie dish with butter.
Cut the crusts off the bread. Spread each slice with on one side with butter, then cut into triangles.
Arrange a layer of bread, buttered-side up, in the bottom of the dish, then add a layer of sultanas. Sprinkle with a little cinnamon, then repeat the layers of bread and sultanas, sprinkling with cinnamon, until you have used up all of the bread. Finish with a layer of bread, then set aside.
Gently warm the milk and cream in a pan over a low heat to scalding point. Don''t let it boil.
Crack the eggs into a bowl, add three quarters of the sugar and lightly whisk until pale.
Add the warm milk and cream mixture and stir well, then strain the custard into a bowl.
Pour the custard over the prepared bread layers and sprinkle with nutmeg and the remaining sugar and leave to stand for 30 minutes.
Preheat the oven to 180C/355F/Gas 4.
Place the dish into the oven and bake for 30-40 minutes, or until the custard has set and the top is golden-brown.', 'https://www.themealdb.com/images/media/meals/xqwwpy1483908697.jpg', 734, 180, 0, 4, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (7, 'Beef Wellington', 'MAIN_DISHES', 'Put the mushrooms into a food processor with some seasoning and pulse to a rough paste. Scrape the paste into a pan and cook over a high heat for about 10 mins, tossing frequently, to cook out the moisture from the mushrooms. Spread out on a plate to cool.
Heat in a frying pan and add a little olive oil. Season the beef and sear in the hot pan for 30 secs only on each side. (You don''t want to cook it at this stage, just colour it). Remove the beef from the pan and leave to cool, then brush all over with the mustard.
Lay a sheet of cling film on a work surface and arrange the Parma ham slices on it, in slightly overlapping rows. With a palette knife, spread the mushroom paste over the ham, then place the seared beef fillet in the middle. Keeping a tight hold of the cling film from the edge, neatly roll the Parma ham and mushrooms around the beef to form a tight barrel shape. Twist the ends of the cling film to secure. Chill for 15-20 mins to allow the beef to set and keep its shape.
Roll out the puff pastry on a floured surface to a large rectangle, the thickness of a £1 coin. Remove the cling film from the beef, then lay in the centre. Brush the surrounding pastry with egg yolk. Fold the ends over, the wrap the pastry around the beef, cutting off any excess. Turn over, so the seam is underneath, and place on a baking sheet. Brush over all the pastry with egg and chill for about 15 mins to let the pastry rest.
Heat the oven to 200C, 400F, gas 6.
Lightly score the pastry at 1cm intervals and glaze again with beaten egg yolk. Bake for 20 minutes, then lower the oven setting to 180C, 350F, gas 4 and cook for another 15 mins. Allow to rest for 10-15 mins before slicing and serving with the side dishes of your choice. The beef should still be pink in the centre when you serve it.', 'https://www.themealdb.com/images/media/meals/vvpprx1487325699.jpg', 1000, 150, 0, 2, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (8, 'Baingan Bharta', 'MAIN_DISHES', 'Rinse the baingan (eggplant or aubergine) in water. Pat dry with a kitchen napkin. Apply some oil all over and
keep it for roasting on an open flame. You can also grill the baingan or roast in the oven. But then you won''t get
the smoky flavor of the baingan. Keep the eggplant turning after a 2 to 3 minutes on the flame, so that its evenly
cooked. You could also embed some garlic cloves in the baingan and then roast it.
2. Roast the aubergine till its completely cooked and tender. With a knife check the doneness. The knife should slid
easily in aubergines without any resistance. Remove the baingan and immerse in a bowl of water till it cools
down.
3. You can also do the dhungar technique of infusing charcoal smoky flavor in the baingan. This is an optional step.
Use natural charcoal for this method. Heat a small piece of charcoal on flame till it becomes smoking hot and red.
4. Make small cuts on the baingan with a knife. Place the red hot charcoal in the same plate where the roasted
aubergine is kept. Add a few drops of oil on the charcoal. The charcoal would begin to smoke.
5. As soon as smoke begins to release from the charcoal, cover the entire plate tightly with a large bowl. Allow the
charcoal smoke to get infused for 1 to 2 minutes. The more you do, the more smoky the baingan bharta will
become. I just keep for a minute. Alternatively, you can also do this dhungar method once the baingan bharta is
cooked, just like the way we do for Dal Tadka.
6. Peel the skin from the roasted and smoked eggplant.
7. Chop the cooked eggplant finely or you can even mash it.
8. In a kadai or pan, heat oil. Then add finely chopped onions and garlic.
9. Saute the onions till translucent. Don''t brown them.
10. Add chopped green chilies and saute for a minute.
11. Add the chopped tomatoes and mix it well.
12. Bhuno (saute) the tomatoes till the oil starts separating from the mixture.
13. Now add the red chili powder. Stir and mix well.
14. Add the chopped cooked baingan.
15. Stir and mix the chopped baingan very well with the oniontomato masala mixture.
16. Season with salt. Stir and saute for some more 4 to 5 minutes more.
17. Finally stir in the coriander leaves with the baingan bharta or garnish it with them. Serve Baingan Bharta with
phulkas, rotis or chapatis. It goes well even with bread, toasted or grilled bread and plain rice or jeera rice.', 'https://www.themealdb.com/images/media/meals/urtpqw1487341253.jpg', 920, 90, 0, 4, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (9, 'Beef Brisket Pot Roast', 'MAIN_DISHES', '1 Prepare the brisket for cooking: On one side of the brisket there should be a layer of fat, which you want. If there are any large chunks of fat, cut them off and discard them. Large pieces of fat will not be able to render out completely.
Using a sharp knife, score the fat in parallel lines, about 3/4-inch apart. Slice through the fat, not the beef. Repeat in the opposite direction to make a cross-hatch pattern.
Salt the brisket well and let it sit at room temperature for 30 minutes.
2 Sear the brisket: You''ll need an oven-proof, thick-bottomed pot with a cover, or Dutch oven, that is just wide enough to hold the brisket roast with a little room for the onions.
Pat the brisket dry and place it, fatty side down, into the pot and place it on medium high heat. Cook for 5-8 minutes, lightly sizzling, until the fat side is nicely browned. (If the roast seems to be cooking too fast, turn the heat down to medium. You want a steady sizzle, not a raging sear.)
Turn the brisket over and cook for a few minutes more to brown the other side.
3 Sauté the onions and garlic: When the brisket has browned, remove it from the pot and set aside. There should be a couple tablespoons of fat rendered in the pot, if not, add some olive oil.
Add the chopped onions and increase the heat to high. Sprinkle a little salt on the onions. Sauté, stirring often, until the onions are lightly browned, 5-8 minutes. Stir in the garlic and cook 1-2 more minutes.
4 Return brisket to pot, add herbs, stock, bring to simmer, cover, cook in oven: Preheat the oven to 300°F. Use kitchen twine to tie together the bay leaves, rosemary and thyme.
Move the onions and garlic to the sides of the pot and nestle the brisket inside. Add the beef stock and the tied-up herbs. Bring the stock to a boil on the stovetop.
Cover the pot, place the pot in the 300°F oven and cook for 3 hours. Carefully flip the brisket every hour so it cooks evenly.
5 Add carrots, continue to cook: After 3 hours, add the carrots. Cover the pot and cook for 1 hour more, or until the carrots are cooked through and the brisket is falling-apart tender.
6 Remove brisket to cutting board, tent with foil: When the brisket is falling-apart tender, take the pot out of the oven and remove the brisket to a cutting board. Cover it with foil. Pull out and discard the herbs.
7 Make sauce (optional): At this point you have two options. You can serve as is, or you can make a sauce with the drippings and some of the onions. If you serve as is, skip this step.
To make a sauce, remove the carrots and half of the onions, set aside and cover them with foil. Pour the ingredients that are remaining into the pot into a blender, and purée until smooth. If you want, add 1 tablespoon of mustard to the mix. Put into a small pot and keep warm.
8 Slice the meat across the grain: Notice the lines of the muscle fibers of the roast. This is the "grain" of the meat. Slice the meat perpendicular to these lines, or across the grain (cutting this way further tenderizes the meat), in 1/4-inch to 1/2-inch slices.
Serve with the onions, carrots and gravy. Serve with mashed, roasted or boiled potatoes, egg noodles or polenta.', 'https://www.themealdb.com/images/media/meals/ursuup1487348423.jpg', 870, 45, 0, 12, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (10, 'Beef Sunday Roast', 'MAIN_DISHES', 'Cook the Broccoli and Carrots in a pan of boiling water until tender.
Roast the Beef and Potatoes in the oven for 45mins, the potatoes may need to be checked regularly to not overcook.
To make the Yorkshire puddings:
Heat oven to 230C/fan 210C/gas 8. Drizzle a little sunflower oil evenly into 2 x 4-hole Yorkshire pudding tins or a 12-hole non-stick muffin tin and place in the oven to heat through
To make the batter, tip 140g plain flour into a bowl and beat in four eggs until smooth. Gradually add 200ml milk and carry on beating until the mix is completely lump-free. Season with salt and pepper. Pour the batter into a jug, then remove the hot tins from the oven. Carefully and evenly pour the batter into the holes. Place the tins back in the oven and leave undisturbed for 20-25 mins until the puddings have puffed up and browned. Serve immediately.
Plate up and add the Gravy as desired.', 'https://www.themealdb.com/images/media/meals/ssrrrs1503664277.jpg', 1058, 150, 0, 2, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (11, 'Braised Beef Chilli', 'MAIN_DISHES', 'Preheat the oven to 120C/225F/gas mark 1.
Take the meat out of the fridge to de-chill. Pulse the onions and garlic in a food processor until finely chopped. Heat 2 tbsp olive oil in a large casserole and sear the meat on all sides until golden.
Set to one side and add another small slug of oil to brown the chorizo. Remove and add the onion and garlic, spices, herbs and chillies then cook until soft in the chorizo oil. Season with salt and pepper and add the vinegar, tomatoes, ketchup and sugar.
Put all the meat back into the pot with 400ml water (or red wine if you prefer), bring up to a simmer and cook, covered, in the low oven.
After 2 hours, check the meat and add the beans. Cook for a further hour and just before serving, pull the meat apart with a pair of forks.', 'https://www.themealdb.com/images/media/meals/uuqvwu1504629254.jpg', 1130, 45, 0, 60, 0, NOW());
INSERT INTO recipe (id, name, category, description, image_url, calories, cooking_time, comment_count, like_count, save_count, created_at)
VALUES (12, 'Beef stroganoff', 'MAIN_DISHES', 'Heat the olive oil in a non-stick frying pan then add the sliced onion and cook on a medium heat until completely softened, so around 15 mins, adding a little splash of water if they start to stick at all. Crush in the garlic and cook for a 2-3 mins further, then add the butter. Once the butter is foaming a little, add the mushrooms and cook for around 5 mins until completely softened. Season everything well, then tip onto a plate.
Tip the flour into a bowl with a big pinch of salt and pepper, then toss the steak in the seasoned flour. Add the steak pieces to the pan, splashing in a little oil if the pan looks particularly dry, and fry for 3-4 mins, until well coloured. Tip the onions and mushrooms back into the pan. Whisk the crème fraîche, mustard and beef stock together, then pour into the pan. Cook over a medium heat for around 5 mins. Scatter with parsley, then serve with pappardelle or rice.', 'https://www.themealdb.com/images/media/meals/svprys1511176755.jpg', 1128, 120, 0, 8, 0, NOW());